forked from Stellarium/stellarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1459 lines (1292 loc) · 72.3 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
23.4 [2023-12-23]
The Stellarium Team has released version 23.4.
The major changes of this version:
- New plugin: Lens Distortion Estimator (experimental)
- Changed GUI: ability to change the look via normalStyle.css
- Added new MESA for Windows packages
- Added support Windows/ARM64 packages
- Added support the origins of nomenclature names
- Improvements in plugins and AstroCalc tools
- Improvements for performance on macOS/ARM64
Behind the scenes, many more minor issues were fixed.
TELESCOPE USERS
We have identified and fixed some bugs in the TelescopeControl plugin on
the Qt6-based releases.
Telescope users, please try whether this solves your problems.
If not, we are looking for those of you with programming skills to help
us fixing remaining issues. Reward possible!
23.3 [2023-09-25]
The Stellarium Team has released version 23.3.
The major changes of this version:
- New plugin: Missing Stars
- Allow semitransparent landscapes
- Added discovery circumstances for Solar system bodies
- Improve orbit drawing for minor bodies
- Show named impact features as ellipses
- Major changes in Navigational Stars plugin
- Observing List fixes
- Unambiguous comet names
Behind the scenes, many more minor issues were fixed.
TELESCOPE USERS
We have identified and fixed some bugs in the TelescopeControl plugin on
the Qt6-based releases.
Telescope users, please try whether this solves your problems.
If not, we are looking for those of you with programming skills to help
us fixing remaining issues. Reward possible!
23.2 [2023-07-02]
The Stellarium Team has released version 23.2.
The major changes of this version:
- vectorize marker of deep-sky objects
- updated support locations
- discovery circumstances for solar system objects
Behind the scenes, many more minor issues were fixed.
TELESCOPE USERS
Like in the 1.* series, it seems the TelescopeControl plugin at least on
Windows works better in the Qt5-based releases. Just install this if you
are affected. We are looking for telescope users with programming skills
to help us fixing this issue. Reward possible!
23.1 [2023-03-27]
The Stellarium Team has released version 23.1.
From now on, releases will have version numbers indicating a year.release
scheme. For Windows, the version of the Qt framework used is visible as part
of the package name. Details are in the User Guide.
PLEASE UPDATE!
This issue mitigates a potential security issue (reported as CVE-2023-28371),
where scripts were allowed to write output text and screenshots to other places
on users' systems apart from the Stellarium user data directory or configured
screenshot directory. Running unknown scripts (which is a Bad Idea(tm) to begin
with) could have exploited that by attackers (script authors) writing even
command files to vulnerable places. We have not received a report where this
would have caused a problem.
However, now users must explicitly allow such behaviour in the settings
tab of the Script Console.
Apart from that, this release mostly aimed at fixing issues in the 1.*
series, but also brought a few new features:
- Much improved "Solar System observer" and other "Planet observers".
- Solar dates along the ecliptic
- Fixed issues with Observation Lists, and removed need for the extra
edit dialog.
- Updated shader code for smoother projection
- Allow texture decimation on the fly for very weak systems like
Raspberry Pi 3.
- Solar limb darkening
- Proper shadow edge for satellites
Behind the scenes, many more minor issues were fixed.
TELESCOPE USERS
Like in the 1.* series, it seems the TelescopeControl plugin at least on
Windows works better in the Qt5-based releases. Just install this if you
are affected. We are looking for telescope users with programming skills
to help us fixing this issue. Reward possible!
1.2 [2022-12-25]
The Stellarium Team has released version 1.2.
This release mostly aimed at fixing issues but also brought a few new features:
- New projection: Equirectangular (fills the screen)
- Improved rendering of Milky Way, Zodiacal Light and landscapes
- Improved rendering of the Moon
- Improved HiDPI behaviour
- Use Noto as default font
- Added Modern (IAU), Tikuna and Seri sky cultures
- Added Chinese and Bahai calendars (Calendars plugin)
Behind the scenes, several minor issues were fixed.
1.1 [2022-10-31]
The major changes of this version:
- Added support OpenGL 3.3 Core profile
- Changed core: switch to use CalcMySky v0.2.1
- Changed GUI: allow user CSS
- Fixed compiling with Qt 6.4
- Fixed Telescope Control plugin
1.0 [2022-10-01]
The Stellarium team did it. Stellarium 1.0 is here!
What makes this 1.0?
- After more than 20 years of development the program is finally accurate
enough for historical application.
- This is the first release based on the Qt6 framework, so the project is
safe for future development. These packages are tagged with a version
number like 1.22.3.
- We keep releasing Qt5-based packages for legacy or obsolete systems.
This may include many Windows users who have to run ANGLE mode.
These packages are tagged with a version number like 0.22.3.
What is new for users?
- A new, much better skylight model (Not for MacOS and OpenGL ES2 systems,
sorry.)
- Many details around eclipses
- Updated Observation List features
- New features in AstroCalc tool
- HiDPI improvements
- Better dithering
- Able to use Windows location service (Windows)
- New skyculture: Samoan
- Updated several skycultures
- Updates in Angle Measure, Satellites, Oculars, Remote Control, Pulsars
plugins
- Many more bugfixes.
A huge thanks to the people who helped us a lot by reporting bugs, and
especially contributed in development!
Clear Skies!
Alexander and Georg
0.22.2 [2022-07-07]
The major changes of this version:
- Added recognition licenses for skycultures
- Many improvements in the Satellites plugin, esp. display of earth shadow
and filtering
- Improvements in AstroCalc: graphs, eclipses, transits
- Improvements in Meteor Showers, Exoplanets and the Navigational Stars plugins
- Updated DSO catalog
- Fixed ANGLE mode for some rare cases
- A large number of bug fixes and closed feature requests and enhancements
(see full list of changes).
Behind the scenes, we are preparing for a major upgrade of the internal
Qt framework.
Enjoy!
Alexander and Georg
0.22.1 [2022-04-16]
The major changes of this version:
- Added fixed equatorial grid/line
- Added new sky cultures
- Fixed building Stellarium (AppImage)
- Updated DSO catalog
0.22.0 [2022-03-27]
The major changes of this version:
- AstroCalc: Eclipse Finder
- AstroCalc: RTS (Rises, Transits, Settings)
- Switch from Bortle scale to physical brightness values for light pollution.
- Allow tweaks for the atmosphere brightness/color model and tone mapping
- Several new calendars in the Calendars plugin
- Seasonal polar caps on Mars
- New and improved sky cultures
- Larger textures allowed in Scenery3D
- Improved OnlineQueries and Satellites plugin
- Many fixes in core and plugins.
- Technical preparations towards a major upgrade of the internal Qt framework.
0.21.3 [2021-12-25]
The major changes of this version:
- Better handling of minor bodies with outdated orbital elements
- "Goto next day at same altitude" functionality for selected objects
- Mark a few special points on the planets
- Three refined Arab skycultures
- Updated Mul-Apin skyculture with new artwork
- Improved OnlineQueries and Satellites plugin
- Fixed a problem with LX200 telescopes
- Many fixes in core and plugins
0.21.2 [2021-09-27]
The major changes of this version:
- Annual aberration correction. Planet positions are finally very accurate!
- Bookmarks replaced by Observation Lists
- Politically neutral geonames
- Right-click opens plugin configuration
- Improved computation of rising, transit, setting times
- "Goto next twilight" functionality
- Two new Greek skycultures
- Updated Mul-Apin skyculture with new artwork
- Improved fidelity of Lunar eclipses
- Fixed display of stellar proper motion
- Many fixes in core and plugins
0.21.1 [2021-06-24]
The major changes of this version:
- Updated designations of stars and handling of list of designations
and common names those stars
- Updated Almagest and al-Sufi skycultures
- Many changes in plugins
- Many fixes in core and plugins for support HiDPI devices
- Enhancements in visualization of markings and in scripting engine
0.21.0 [2021-03-28]
The major changes of this version:
- We have finally completed our work on accurate planet axes,
including Lunar libration
- Visualisation of Earth shadow for Lunar eclipses
- Better texture for the Lunar surface
- Added the latest algorithms for planet magnitudes
- Enhanced Calendars plugin
- Replaced "arabic" by more accurate "al-Sufi" skyculture
- Planets are now scalable and Solar glare switchable for didactic
applications
We have also published a scientific paper about the application of
Stellarium in cultural astronomy: https://doi.org/10.1558/jsa.17822
0.20.4 [2020-12-28]
The major changes of this version:
- Added Calendars plugin
- Many changes in AstroCalc tool and core of Stellarium
- Many changes in plugins
- Updated DSO catalog
0.20.3 [2020-09-27]
The major changes of this version:
- Fixed nutation and, with it, season beginning times
- Many changes in AstroCalc tool and core of Stellarium
- Many changes in Oculars and Satellites plugins
- Updated DSO catalog
0.20.2 [2020-06-22]
The major changes of this version:
- Many changes in AstroCalc tool and core of Stellarium
- Many changes in scripting engine and Script Console
- Many changes in Oculars and Satellites plugins
- Updated DSO catalog
0.20.1 [2020-04-20]
The major changes of this version:
- Restore working Stellarium in ANGLE mode on Window
- Many changes in scripting engline and Script Console
- Fixes in GUI and plugins
- Updated DSO catalog
0.20.0 [2020-03-29]
The major changes of this version:
- Refactoring and updating the GUI
- Deep refactoring code, related to Solar system
- Many improvements in the code of plugins
0.19.3 [2019-12-22]
The major changes of this version:
- Direct ASCOM support for Telescope Control plugin on Windows
- Refactoring the GUI
- Many improvements in the code
- Added many DSO textures
- Improvements in DSO catalog
- Many improvements in AstroCalc tool
0.19.2 [2019-09-29]
The second bugfix release for series 0.19
0.19.1 [2019-06-22]
The first bugfix release for series 0.19
0.19.0 [2019-03-24]
The major changes of this version:
- 5 new sky cultures
- Refactoring the code: many improvements and fixes
- Added many DSO textures
- Many improvements for Scripting Engine
0.18.3 [2018-12-22]
The major changes of this version:
- Improvements and fixes for AstroCalc tool
- Added new sky cultures
- Added many DSO textures
- Refactoring the GUI
- Many improvements in the code
0.18.2 [2018-08-15]
The major changes of this version:
- Improvements and fixes for AstroCalc tool and plugins
- Added support Abell Catalog of Planetary Nebulae and ESO/Uppsala Survey of the ESO(B) Atlas
- Added few new scripts
- Updated code and data
0.18.1 [2018-07-01]
The major changes of this version:
- Improvements and fixes for Hierarchical Progressive Surveys [HiPS] support
- Updated code of plugins
- Updated code and data
- Updated GPS handling
- Added rise, transit and set times for celestial objects
- Added dithering support
0.18.0 [2018-03-25]
The major changes of this version:
- Added support Hierarchical Progressive Surveys [HiPS] (Hello visualization of
multiwavelength universe in the Stellarium)
- Updated and extended AstroCalc tool
- Added support a Hickson Compact Group collection
- Updated code and data
0.17.0 [2017-12-21]
Version 0.17.0 is based on Qt 5.9.3, but it can still be built from sources with Qt 5.4.
The major changes of this version:
- Added support for nomenclature of planetary surface (SOCIS 2017 project)
- Added improvements for AstroCalc tool
- Added improvements for Oculars plugin
- Added improvements for Exoplanets plugin
- Added INDI support for Telescope Control plugin
- Updated code and data
0.16.1 [2017-09-22]
Version 0.16.1 is based on Qt 5.6.2, but it can still be built from sources with Qt 5.4.
This version is bugfix release with some important features:
- Added moons of Saturn, Uranus and Pluto
- Added improvements for AstroCalc tool
- DSO catalog was updated to version 3.2:
-- Added support 'The Strasbourg-ESO Catalogue of Galactic Planetary Nebulae' (Acker+, 1992)
-- Added support 'A catalogue of Galactic supernova remnants' (Green, 2014)
-- Added support 'A Catalog of Rich Clusters of Galaxies' (Abell+, 1989)
- Added support asterisms and outlines for DSO
- Added improvements for the GUI
Full list of changes: https://launchpad.net/stellarium/0.16/0.16.1
0.16.0 [2017-06-21]
Version 0.16.0 is based on Qt5.6.2. It can still be built from sources with Qt5.4.
5 blueprints and 38 bugs and wishlist items have been targeted.
New features include
- RemoteSync plugin, which allows running several connected instances of Stellarium.
- Non-spherical models for solar system objects like asteroids and small moons.
- Solar system config file is now split into two parts.
- AstroCalc feature extension: What's Up Tonight, graphs, ...
- DSO: Addition of catalogs of peculiar galaxies
- New Skycultures: Belarusian, Hawaiian Star Lines
- Telescope plugin: support for the RTS2 telescope system.
- Location can now be read from a GPS device.
Full list of changes: https://launchpad.net/stellarium/0.16/0.16.0
0.15.2 [2017-03-21]
The Stellarium development team after three months of development is proud to announce
the second correcting release of Stellarium in series 0.15.x - version 0.15.2. This
version contains few closed bugs (ported from series 1.x) and some new additions and
improvements.
A huge thanks to our community whose contributions help to make Stellarium better!
Full list of changes: https://launchpad.net/stellarium/0.15/0.15.2
0.15.1 [2016-12-25]
Version 0.15.1 introduces a few new exciting features.
- The Digital Sky Survey (DSS) can be shown (requires online connection).
- AstroCalc is now available from the main menu and gives interesting new computational insight.
- Stellarium can act as Spout sender (important for multimedia environments; Windows only).
In addition, a lot of bugs have been fixed.
- wait() and waitFor() in the Scripting Engine no longer inhibits performance of moves.
- DE430/431 DeltaT may be OK now. We still want to test a bit more, though.
- ArchaeoLines also offers two arbitrary declination lines.
- Added support of time zones dependent by location.
- Added new skyculture: Sardinian.
- Added updates and improvements in catalogs.
- Added improvements in the GUI.
- Added cross identification data for stars from Bright Star Catalogue, 5th Revised Ed. (Hoffleit+, 1991).
Full list of changes: https://launchpad.net/stellarium/0.15/0.15.1
0.15.0 [2016-07-31]
In memory of our team member Barry Gerdes.
Version 0.15.0 is based on Qt5.6. Starting with this version, some graphics cards
have been blacklisted by Qt and are automatically forced to use ANGLE on Windows.
We introduce a major internal change with the StelProperty system.
This allows simpler access to internal variables and therefore more ways of operation.
Most notably this version introduces an alternative control option via RemoteControl,
a new webserver interface plugin.
We also introduce another milestone towards providing better astronomical accuracy for
historical applications: experimental support of getting planetary positions from JPL DE430 and
DE431 ephemerides. This feature is however not fully tested yet.
- Added StelProperty system
- Added new plugin for exhibitions and planetariums - Remote Control
- Added new skycultures: Macedonian, Ojibwe, Dakota/Lakota/Nakota,
Kamilaroi/Euahlayi
- Updated code of plugins
- Added Bookmarks tool and updated AstroCalc tool
- Added new functions for Scripting Engine and new scripts
- Added Miller Cylindrical Projection
- Added updates and improvements in DSO and star catalogues (include initial
support of The Washington Double Star Catalog)
- azimuth lines (also targetting geographic locations) in ArchaeoLines plugin
- Many fixes and improvements...
In addition, we prepared a new user guide.
Full list of changes: https://launchpad.net/stellarium/0.15/0.15.0
0.14.3 [2016-03-20]
Bugfix release:
- Added Bengali description for landscapes (LP: #1548627)
- Added background transparency in Oculars plugin (LP: #1511393)
- Fixed serial port issue on Windows version (LP: #1543813)
- Fixed MESA mode on Windows (LP: #1509735)
- Fixed Stellarium crashes in ocular view of Saturn/Neptune/Uranus (LP: #1495232)
- Fixed artifacts in rendering of Mercury in the Sun (LP: #1533647)
- Fixed loading scenes for Scenery 3D plugin (LP: #1533069)
- Fixed movement of radiant when time is switched manually (LP: #1535950)
- Fixed changing name of planet (LP: #1548008)
0.14.2 [2016-01-08]
Bugfix release:
- Reduce planet brightness in daylight (LP: #1503248)
- Fixed perspective mode with offset viewport in scenery3d (LP: #1509728)
- Fixed wrong altitudes for some locations (LP: #1530759)
- Fixed some skyculture links
- Fixed editing some shortcut keys (LP: #1530567)
- Fixed drawing reticle for telescope (LP: #1526348)
- Refactoring coloring markers of the DSO
- Removed info about Moon phases (avoid inconsistency for strings).
- Updated default config options
- Updated icons for View dialog
- Updated Stellarium DSO Catalog
- Added list of dwarf galaxies (Search Tool)
- Added improvements in Scenery 3D plugin
0.14.1 [2015-12-02]
Bugfix release:
- Added support for side-by-side assembly technology (LP: #1400045)
- Enhancements of the Ocular plugin: add OAG support (LP: #1354427)
- Added Belarusian translation for landscapes and sky cultures (LP: #1520303)
- Added designations for few stars in Scorpius (LP: #1518437)
- Fixed constellation art brightness and zooming (LP: #1520783)
- Fixed number of satellite orbit segments resets (LP: #1510592)
- Fixed certain outplanet moons with wrong Longitudes (LP: #1509693, #1509692)
- Fixed saving settings for some View panel options (LP: #1509639)
- Fixed fails to run up on Windows when invoked from a different directory (LP: #1410529)
- Fixed wrong value of ecliptic obliquity (LP: #1520792)
- Fixed segmentation fault (core dumped) while try update stars catalog (LP: #1514542)
- Tentative fix for support 4K resolution (GUI scaling) (LP: #1372781)
0.14.0 [2015-10-24]
A big leap forward in astronomical accuracy for historical applications:
- Precession now follows the IAU2006 model in the long-time version from Vondrak
et al. 2011.
- Nutation is applied (IAU2000B solution). Given that nobody has observed it without
telescope and the model does not give limits of applicability, we limit its application
to 1500..2500
- Application of DeltaT has been simplified and made a bit more intuitive.
We now dare to add another coordinate system: Ecliptic coordinates of date.
We can therefore now show that planetary positions given by the commonly used solution
VSOP87 is applicable to -4000..+8000 only, and its use outside this range will give
somewhat artificial results. There is more to follow in future versions.
The other big addition is a greatly improved collection of DSO data with lots of
possibilities in a new GUI tab to select for object type and/or catalog. In total,
15 catalogs are now built-in!
Also the Meteor Shower, Satellites, Telescope Control and 3D Sceneries plugins have
been improved.
Landscapes can have switchable labels, so you can e.g. indicate mountain peaks.
In total 83 bugs and wishlist items were fixed or at least decided.
A platform-specific change for Windows: OpenGL binding is now dynamic. That means, there are
no more separate OpenGL/ANGLE/MESA downloads, but after installation you will have separate
commands in the start menu which force ANGLE or MESA modes.
Full list of changes: https://launchpad.net/stellarium/0.14/0.14.0
0.13.3 [2015-04-25]
Bugfix release with few new features.
This version is contains over 30 closed bugs, who include some wishes and new nice features - like
visualization of the 3D landscapes and extra DSO catalogs.
Full list of changes: https://launchpad.net/stellarium/0.13/0.13.3
0.13.2 [2015-01-20]
Major bugfix release with few new features.
This version is contains over 70 closed bugs, who include some wishes and new nice features - like
visualization of the zodiacal light and new sky cultures.
Full list of changes: https://launchpad.net/stellarium/0.13/0.13.2
0.13.1 [2014-10-19]
Bugfix release with few new features.
- Added: Light layer for old_style landscapes
- Added: Auto-detect location via network lookup.
- Added: Seasonal rules for displaying constellations
- Added: Coordinates can be displayed as decimal degrees (LP: #1106743)
- Added: Support of multi-touch gestures on Windows 8 (LP: #1165754)
- Added: FOV on bottom bar can be displayed in DMS rather than fractional degrees (LP: #1361582)
- Added: Oculars plugins support eyepieces with permanent crosshairs (LP: #1364139)
- Added: Pointer Coordinates Plugin can displayed not only RA/Dec (J2000.0) (LP: #1365784, #1377995)
- Added: Angle Measure Plugin can measure positional angles to the horizon now (LP: #1208143)
- Added: Search tool can search position not only for RA/Dec (J2000.0) (LP: #1358706)
- Fixed: Galactic plane renamed to correct: Galactic equator (LP: #1367744)
- Fixed: Speed issues when computing lots of comets (LP: #1350418)
- Fixed: Spherical mirror distortion work correctly now (LP: #676260, #1338252)
- Fixed: Location coordinates on the bottom bar displayed correctly now (LP: #1357799)
- Fixed: Ecliptic coordinates for J2000.0 and grids diplayed correctly now (LP: #1366567, #1369166)
- Fixed: Rule for select a celestial objects (LP: #1357917)
- Fixed: Loading extra star catalogs (LP: #1329500, #1379241)
- Fixed: Creates spurious directory on startup (LP: #1357758)
- Fixed: Various GUI/rendering improvements (LP: #1380502, #1320065, #1338252, #1096050, #1376550, #1382689)
- Fixed: "missing disk in drive <whatever>" (LP: #1371183)
Full list of changes: https://launchpad.net/stellarium/0.13/0.13.1
0.13.0 [2014-07-19]
This version based on Qt 5 and has new modulated core, and new features (example: normal mapping) and fixes for 115 bugs, including:
New plugin: Equation of Time - provides solution for Equation of Time.
New plugin: Field of View - provides shortcuts for quick changes field of view.
New plugin: Navigational Stars - marks 58 navigational stars on the sky.
New plugin: Pointer Coordinates - shows the coordinates of the mouse pointer.
New plugin: Meteor Showers - provides visualization of meteor showers.
New translatable strings and new textures.
Improved Landscapes: New Polygonal type, texture saving for shperical, and optional light pollution/streetlight layer.
Comet Tails
New version of the Satellites plugin: introduces star-like satellites and bug fixes.
New version of the Exoplanets plugin: displaying of the potential habitable exoplanets; improvements for performance and code refactoring.
New version of the Angle Measure plugin: displaying of the position angle.
New version of the Quasars plugin: improvements for performance; added marker_color parameter.
New version of the Pulsars plugin: improvements for performance; display pulsars with glitches; setting color for marker for different types of the pulsars.
New versions of the Compass Marks, Oculars, Historical Supernovae, Observability analysis and Bright Novae plugins: bug fixing, code refactoring and improvements.
Full list of changes: https://launchpad.net/stellarium/0.13/0.13.0
0.12.4 [2013-09-26]
Bugfix release.
- fixed crash Stellarium when enabled binoculars in the Oculars plugin (LP: #1222742);
- added render nighttime landscapes without lighting (LP: #1223052);
0.12.3 [2013-09-08]
Bugfix release with new plugin.
- new plugin - Bright Novae;
- added intermediate value to ZHR of shooting stars between 80 and 10000 (LP: #1208106);
- fixed search tool (LP: #1208296, #1211198);
- fixed behaviour for shortkeys of few plugins (LP: #1208291);
- fixed Flamsteed designations for few Virgo stars (LP: #1222094);
- fixed saving Milky Way brightness via GUI (LP: #1220477)
0.12.2 [2013-08-04]
Bugfix release with few new features.
New version of the Satellites plug-in (0.8.1):
- automatic adding of new satellites on update from selected update sources;
by default, only new naked-eye satellites are auto-added
- automatic removal of satellites if they are no longer listed in the update
sources
- "user-defined" flag protecting satellites from update/removal
- satellites can be added to/removed from satellite groups from the GUI
- custom satellite groups can be defined
- the default satellite group names and satellite descriptions are translatable
Added:
- Variable stars support (LP: #665014)
- Automatic change of landscape on planet change (LP: #1173254)
- Flamsteed designation for stars and search tool (LP: #1190503)
Changed:
- Repacked default star catalogs (LP: #926588)
- Update DSO features (LP: #1115035, #1172402, #1180493)
- Improved Quasars plugin (LP: #1169232, #1181688)
- Improved Pulsars plugin (LP: #1169230, #1181688)
- Improved Oculars plugin (LP: #1170239, #1188340)
- Improved Historical Supernovae plugin (LP: #1180962)
- Improved Observability analysis plugin (LP: #1171182)
- Improved Exoplanets plugin (LP: #1177871)
- Improved Satellites plugin (LP: #955780)
- Improved search tool (LP: #1181534, #1184599, #1180962)
- Improved scripting engine (LP: #1202637, #1091626)
Fixed:
- Satellites plugin cause crash when enabled in distant past (LP: #955780)
- Landscape colour saturation at summer noon (LP: #1115364)
- wrong rendering of Planet's shadow (LP: #1131847)
- stellarium crashes (LP: #1157930, #1177871, #1194838, #1173355, #1184599)
- mismatched malloc/delete (LP: #1172931)
- error in template code (LP: #1178257)
- undefined template function in vecmath (LP: #1178391)
- Setting Startup date and time (Other:) sets time to UTC, not my local (EDT) time (LP: #1198570)
- Debug messages don't completely convert paths to local directory separator (LP: #682633)
- Garbled text hovering over time/date (LP: #1176424)
- Set time to now (Icon not illuminated) (LP: #1178498)
- Tongan translation discrepancies (LP: #1181945)
- POD document (LP: #1184459)
- No orbits displayed for some planets' satellites (LP: #834727)
0.12.1 [2013-04-21]
Bugfix release with few new features.
Added:
- Use different formulae for DeltaT calculations (LP: #1106658)
- Show/hide starts at magnitude > X feature (LP: #880256, #1132010)
- Added translations for Inno Setup installer (LP: #1159080)
- Added Caldwell catalog
- New skyculture: Tongan
- New feature for Oculars plugin: support Barlow/Shapley lenses
- Control brightness of the milky way (LP: #1106755)
- Satellites plugin: New Galileo satellites (LP: #1169252)
- Control brightness of the landscapes at startup (LP: #1149882, #603376)
Changed:
- Repacked default star catalogs (LP: #1124221)
- Repacked locations catalog (LP: #1131036)
- Refactored GUI
- Update textures for DSO (LP: #1126959, #1114645)
- Improved accuracy for NEO (LP: #1100766, #1080154)
Fixed:
- Sidereal day & sunrise/sunset (LP: #1106754)
- Wrong solar day (LP: #1113249)
- Pluto and Charon are not tidally locked in Stellarium (LP: #968738)
- Search problem in different language (LP: #1131034)
- Bortle light pollution scale setting not working (LP: #1121630)
- The preference of "Render Solar Shadow" cannot be saved (LP: #1114279)
- Background color of the night sky (LP: #1085375)
- Time is slightly off (from system time) (LP: #1113222)
- Dynamic plugins don't load on windows (LP: #1168958)
- Cursor jumps out of altitude input box (LP: #1156112)
- Missing splash screen on Windows and Mac OS X (LP: #1131942)
- Satellite event times differ (LP: #1114644)
- Plugin "Time Zone" display problem on Mac OSX (LP: #1114330)
- Yellow/Black Checkered Flag while Object Picture is Loading (LP: #1113064)
- Omega Centauri strange appearance on Mac (LP: #1114645)
- Planet display bug (LP: #1114036)
- Star on meridian has wrong hour angle (LP: #1131206)
- Location window spin box up/down behavior (LP: #1093229)
0.12.0 [2013-01-31]
New rendering engine, editable keybindings, bug fixes and improvements.
Added:
- New rendering engine (LP: #673183)
- Editable keybindings (LP: #1098851, #1035635, #832256, #789002)
- Scripting for plugins (LP: #1040242)
- Some transneptunian objects (LP: #899084, #1051205)
- New geographical locations (LP: #1051803)
- New textures for DSO
- DeltaT and lunar acceleration computation (LP: #575621)
Changed:
- Improving the scripting engine (LP: #1059368)
- Improving the plugins (LP: #1082167, #1042714)
- Improving the coordinate grids (LP: #1036294)
- Improving the constellation boundaries (LP: #1039072)
- Improving the search tool
Fixed:
- Clang Wself-assign warning during build process on some platforms (LP: #1097358)
- Bugs in Observability plugin (LP: #1042059, #1054599, #1053058)
- Bugs in TUI plugin (LP: #1083380)
- Bugs in Satellites plugin (LP: #1048220)
- Bugs in Compass plugin (LP: #695891)
- Bugs in scripting engine (LP: #1046518, #1092781)
- Font corruption bugs (LP: #597633, #778747, #819278, #903310)
- Screen flashing in fullscreen mode (LP: #716695, #824788)
- Lost nebula images (LP: #1042393, #1051038)
- Bugs in Night Vision mode (LP: #578367)
- Bugs in GUI and Core (LP: #1090722, #1082510, #1071455, #1071458, #1056868, #1054600, #1045111, #1040944, #1077545)
- Crashes (LP: #1043640, #1044654, #1045783)
0.11.4 [2012-08-26]
Bug fix release with new features.
Added:
- New plugin: Exoplanets
- New plugin: Observability analysis
- Get geometric altitude and azimuth for script engine (LP: #1010617)
- Sky image loading with altitude/azimuth coordinates (LP: #1023548)
- New hotkey for star name labels (LP: #1032989)
- Option to activate/deactivate the Nebula Background Images button via GUI (LP: #925247)
- Return to user set location and landscape (LP: #981507)
- Display degrees and minutes for FOV of CCD (LP: #998761)
- Adding all possible satellites (LP: #1006495)
- Building a Windows x64 packages (LP: #1003041, #1027607)
- Apply atmosphere effect only on bodies with atmosphere (LP: #971875)
Fixed:
- Various Stellarium freezes and crashed (LP: #1005155, #1030913, #940638, #992267, #1033380, #951967, #1040054)
- Various plugins issues (LP: #751381, #892027, #1006134, #1040066, #1040085)
- Various issues for nebulae (LP: #1026021, #744517)
- Add/subtract one sidereal year jumps wrong amount (LP: #1006208)
- Various small issues, typos and mistakes (LP: #1022506, #1032469, #1019247, #985204)
- Various issues in Scripting Engine (LP: #1023934, #1017148, #1017154, #730180)
Changed:
- New tab in the configuration window to control the selected object information.
- Improvement Night Vision mode
- Extend list of default scripts
0.11.3 [2012-05-18]
Bug fix release.
Added:
- ecliptic grid (LP: #834307)
- world observatories to the locations list (LP: #891643)
- allow configuration of url for SIMBAD lookups (LP: #948528)
- opportunity to freely choose the object information to display (LP: #834325)
- Pluto texture (LP: #906766)
Fixed:
- No objects under horizon (LP: #952532)
- (MinGW-w64) CMake does not detect Win64 (LP: #951465)
- (MinGW-w64) Compilation errors (LP: #951405, #951742)
- Oculars FOV (LP: #971066, #962691)
- "Galactic Plane" string does not get translated when language is switched (LP: #976515)
- Use freedesktop specification for Unity quicklists (LP: #959893)
- Apparent diameter of planets with rings (LP: #960904)
- Crash [assert] when FOV is small and Quasars or Historical Supernovae plugins is enabled (LP: #961011)
- Angle Measure plug-in reads the wrong options from the configuration file (LP: #954205)
- Crash in debug mode on displaying constellation borders (LP: #951967)
- Star halo "dances" for small Solar System objects (LP: #805810)
- RTL-languages is not displayed correctly when using gravity labels (LP: #801668)
- Orbits with close perihelions are not displayed correctly (LP: #640455)
- Precision of angular diameter lower than intended (LP: #955635)
- Moons' orbit lines broken by parent planet movement with time (LP: #889712)
- Invalid user defined location cause Stellarium to crash (LP: #860220)
- Difficulty to select zoomed in planets and moons (LP: #854374)
- Altazimutal grid not overlapping equatorial grid when located on poles (LP: #775972)
- Global key bindings not global (LP: #687288)
- Screenshot write permission fail (Vista/7) (LP: #568086)
- Wrong planet phases as seen from more outer planets (LP: #803305)
- Zoom in/out command sticks (LP: #712112)
- Importing SSOs causes some strange effects (LP: #969211)
- Not updated values of dimensions of CCD while changes telescopes (LP: #998726)
- Gravity labels rendered incorrectly (LP: #998121)
- Keyboard shortcut for subtract one sidereal year don't works (LP: #997873)
0.11.2 [2012-03-10]
The main theme of this version seems to be localization:
- most of the text used by the default plug-ins is now translatable
- landscape names are now translatable
- country names are now translatable
- scripts names and descriptions are now translatable
Oculars plug-in:
- added an optional control panel displayed in the upper-right corner of the screen as an alternative to the pop-up menu that was used to control it in the previous version;
- overhaul of the pop-up menu, the underlined letters in it can be used as keyboard shortcuts;
- added the ability to rearrange the items in the lists of oculars, telescopes and sensors;
- fixed the inappropriate flipping of the binoculars view;
Satellites plug-in:
- fixed title bar of the Satellites config window not being resized with the rest of the window (LP: #900575)
- catalog numbers are now used to identify satellites, preventing bugs with duplicate satellites and satellites renamed in the source lists
- catalog number and international designator are now displayed for each satellite
- a simple windows to add satellites has been added (LP: #898476)
Added:
- Ctrl+C binding to copy selected object info text to clipboard.
- to the Windows installer options to remove files left over from the previous installation.
- windows no longer can be dragged to unreachable positions.
- the "Save settings" button now saves the current main window position, too.
- the language list is now sorted by language name, not language code.
- the "Reload style" action has been removed, as the underlying feature no longer works. If you decide to design a new visual style for Stellarium, please contact us to give you a version where it works.
- distance in km (if the distance is below 0.1 AU) to the information displayed about Solar System objects. (LP: #894472)
- the StelGui::getSkyGui() method to allow plug-in developers to create their own toolbars and other GUI elements.
- an option to show the galactic coordinates grid and the galactic plane.
- several trans-Neptunian objects (TNOs): Sedna, Quaoar, Orcus, Haumea.
- the Quasars plug-in.
- the Pulsars plug-in.
- more detailed information is now added to the log file for Mac OS X.
- (experimental) modelling of atmospheric extinction for point objects.
- changed the position of the text in the Text User Interface plug-in. (LP: #911594)
- a checkbox allowing the SIMBAD on-line search to be enabled/disabled.
Fixed:
- startup script crash (LP: #689657)
- plugin names localization in the Configuration window (LP: #807402)
- resizing of the tabs in Configuration and View windows on language change (LP: #821386)
- sky lines' labels not translated on language change (LP: #811659)
- "Get catalog" button not translated on language change (LP: #890608)
- last star catalog not being offered for download (LP: #538291, LP: #890789)
- proxy configuration without username/password
- Telescope Control plug-in: mishandling of IP connections in the telescope configuration window (LP: #843837)
- Pluto's moon Hydra preventing the constellation from being selected in Search and scripts (LP: #894780)
- scripting code still being included despite ENABLE_SCRIPTING set to 0 (LP: #811505)
- constellations lines and names not displayed (LP: #945146)
- newly created location cannot be set as default (LP: #889931)
0.11.1 [2011-11-04]
Bug fix release.
Added:
- new skyculture: Arabic
- new moons and rings (LP: #815484, #834336)
- new translations for landscapes and sky cultures (LP: #849292)
- geostationary satellites (LP: #837274)
- new cities (LP: #856343, #860206)
Fixed:
- misspelling on a star name (LP: #884795)
- location window: map pointer position is updated on longitude/latitude change.
- location window: fixed checking "Use as default" changing the name of the selected location to "New Location" (LP: #881613)
- Solar System Editor plug-in: a bug in the parsing of MPC lists: the epoch's Julian Day value was wrong by 0.5 JD (LP: #836839)
- Solar System Editor plug-in: crash while trying to browse for a local file (LP: #837396)
- Historical Supernovae plug-in: the plug-in's name (LP: #803157)
- Historical Supernovae plug-in: supernovae selected instead of nearby stars (LP: #835815)
- doesn't load localised description of skyculture/landscape if applanguage=system_default (LP: #845924)
- add/remove landscapes dialog bug in OSX 10.6.8 (LP: #812008)
- horizon line setting not saved (LP: #811945)
- the orbital period of Himalia (LP: #806174)
- "flag_show_fps" and "flag_show_fov" had no effect (LP: #728294)
- crash on selecting a landscape with misspelled planet name (LP: #835422)
- crash on selecting off-Earth location in the Location window (LP: #834886)
- crash on switching language while the Location window is open (LP: #824936)
- crash on using custom distortion file (LP: #871313)
0.11.0
New feature: atmosphere refraction support.
New plugin: Historical Supernovae.
New translatable strings: landscapes.
New moons of solar system planets (LP: #730686).
New feature: using different symbols for nebula icons.
TimeZone plug-in: fixed a bug preventing the saving of custom time zones. (LP: #720107)
Ocular plug-in: Corrected the calculation of CCD FOV.
Ocular plug-in: Implemented rotating the CCD bounding box.
Ocular plug-in: Made Telrad & CCD mutually exclusive.
Ocular plug-in: Implemented better binoculars support (LP: #695568).
Ocular plug-in: Redesign dialog.
SVMT plug-in: Adding QtWebKit dependency.
Satellite plug-in: improve of code.
Solar System Editor plug-in: fixed MPES online search and updated hard-coded URLs (LP: #725870).
Skycultures: two new skyculture descriptions in Norwegian (Bokmål).
Redesign search tool (LP: #730687).
Improved texture manager.
Various problems resolved (LP: #730069, #772206, #683255, #657455, #785574, #515311, #730075, #711887, #688978, #616748, #589634)
0.10.6 [2010-12-05]
New feature for installing landscapes from ZIP archives.
New plugin: Solar System editor.
New plugin: Time Zone manual override.
New translatable strings: stars and nebulae.
Selected plugins loaded by default.
Fixed on change of sky culture. (LP: #595914).
Fixed clearing of single constellation selection. (LP: #600889).
Fixed constellation art engine, removing distortion of images. (LP: #629405).
Changed GUI styles (all dialogs now use "Title Bar", the two different tabbed widget implementations are styled consistently).
Changed Solar System engine, allowing "Comets" and "Minor planets" to be handled as classes of objects separate from "Planets".
Translatable plugin names, descriptions and some other strings.
Oculars plugin: now uses a configuration file instead of SQL (LP: #596453).
Oculars plugin: added manual override of keyboard shortcuts (LP: #514530).
Oculars plugin: CCD sensors formula fixed (LP: #604975).
Satellites plugin: added new orbit prediction engine.
Satellites plugin: added trajectory visualization.
Satellites plugin: fixed problems leaving satellite TLEs out of date (LP: #616627).
Satellites plugin: can now update TLEs from a local file.
Satellites plugin: satellite visibility can now be saved from satellites dialog.
Telescope control plugin: fixed bad serial port names on Windows (LP: #596167).
Telescope control plugin: fixed telescopes disappearance on startup (LP: #608533).
Telescope control plugin: added manual equinox/epoch override (LP: #608544).
Various rendering problems resolved (LP: #569701, #596678, #641855, #642990, #666837, #629405, #591971, #615006, #671633).
SQLite dependency dropped. The Qt SQLite driver no longer needs to be packaged with Stellarium.
0.10.5 [2010-06-02]
Bug fix release.
Fixed:
- various problems with OpenGL shaders. If you experience problems with unreadable fonts, try adding the line "use_qpaintenginegl2 = false" in the [main] section of the configuration file (config.ini).
- distorted menu icons on Windows. (LP: #512060)
- LC_NUMERIC locale not being set properly, causing problems on some systems with old_style landscapes (LP: #518809) and the Satellites plug-in (LP: #522520). (fix proposed by Hleb Valoshka and others)
- planet orbits not being toggled by pressing 'O'. (LP: #536684)
- setting landscape altitude (patch by Georg Zotti).
- making a series of location changes in a script. (LP: #500192)
- telescope control sending RA=0 for objects with RA between (12 and 24?) on Intel Macs. (LP: #544250, fix proposed by David Hulse)
- windows and toolbars not being affected by night vision mode. (LP: #539665)
- a crash on Windows when exiting Stellarium after a search. (LP: #534674)
- the Oculars plug-in not closing its SQL database on exit.
- the last star catalog not being offered for download. (LP: #538291)
- system clock running fast on some Windows systems using ACPI power managment (LP: #514184)
- the top labels of vertical grid lines not being displayed, and improper label rotation.
- script engine was recoded thread-free, this fixes many script related bugs.
- handling of negative/large dates in scripts.
- wrong time at startup when a time zone different than "system_default" is set in the configuration file (LP: #487232)
Changed:
- the Date/Time window is now synchronised with the date/time displayed in the toolbar, instead of showing the last date/time that has been entered.
- the visual style of some plug-ins.
- optimized loading of cities.
- optimized loading of planet textures (lazy loading).
- restructured src/ subdirectories to match code dependencies. Directories modules/, external/ and planetsephems/ are now under core/.
- stars positions and grid are now coded in float instead of double, to avoid huge memory consomption when loading all 9 star catalogs.
- improved management of OpenGL context in StelPainter.
- StelStyle class was moved from core to GUI library.
- GUI related resources are now compiled as part of GUI library.
- don't use a generated config.h anymore (use simple compile definitions instead).
- suppressed most compilation warnings with -Wextra even without the -Wno-unused-parameter flag.
- suppressed all the TelescopeMgr/Telescope code within the core. It is replaced by the TelescopeControl plugin.
- suppressed many unused files from installation target.
Added:
- option to create a desktop shortcut in the Windows installer.
- time dragging: Hold down Ctrl+Space and drag the mouse across the sky to change time speed.
- re-added the "planet trails" feature. Toggle with Shift+T.
- some Sky-Watcher mounts to the list of devices supported by the Telescope Control plug-in.
- yet unused code for computing atmosphere refraction and extinction.
0.10.4 [2010-02-22]
Bug fix release.
Fixed unpredictable openGL related crashes on win32.
Fixed run on MacOSX Tiger/Leopard/Snow Leopard.
Disable OpenGL shaders by default for stars and atmosphere. User activate it by setting use_glshaders = true in the [main] section of the config.ini
Fixed the handling of the Qt -graphicssystem parameter. Now it is ignored if it is not used properly.
Improved OpenGLES2 support (not finished yet).
Added Qt widgets flags on the main windows to avoid filling background (this boosted the program a lot on linux).
0.10.3 [2010-01-28]
Based on Qt 4.6.x
Bundling of plugins: Satellites, Oculars, AngleMeasure, CompassMarks, TelescopeControl, TextUserInterface.
New script engine improvements including variable script running speed, and a script console (activate with F12).
Made tabs in GUI smaller by moving titles under the icons.
Updated the plugin API to allow to compilation and easy distribution of static plugins.
Added plugins window.
Got rid of the boost library dependency.
The whole sky display viewport is now contained in a class deriving from QGraphicsWidget, allowing to move and resize it as a normal widget.
Generalized the use of shared pointers for StelObject management.
Use vertex shaders for computation of atmosphere color if OpenGL supports it.
Optimized openGL calls by replacing glBegin()/glEnd() by the use of vertexArray.
Optimization of critical parts of the projection code.
Added code for managing and displaying non-convex polygons + unit tests.
Recoded the StelGrid code to support non ponctual sky regions, and optimized API (new class StelSphericalIndex + unit tests)
Optimized many part of the code by reducing creation of temporary Vec3d/Vec3f.
Optimized JSON parser (x25 speed improvement) + unit tests.
Migrated all text drawing system to QFont. This fixes long standing bugs for displaying arabic and asian characters in the sky. Also allow to get rid of 6 source files and of the freetype dependency (managed internally to Qt)
Switch default back end mode to native for Windows as ATI drivers often have problems, still raster default for other platforms. Add --graphics-system option.
Fixed magnitude computation for most of the planets.
Use GL Shader for stars rendering if OpenGL >= 2.1.
Re-organized the startup by moving log and command line processing to main.cpp.
Re-coded all the management of extra star catalogs.
Implemented partial support of OpenGLES 2.0.
Moved official plugins code into plugins/ and changed the cmake config so that they are automatically compiled in static.
Re-coded the texture engine based on Qt loading features (Got rid of explicit libjpeg and libpng dependencies!).
Allowed to first render the sky in a frame buffer.
Moved the code related to viewport distortions into a new class StelViewportEffect based on frame buffer object.
Added working cmake targets for compilig and runing unit tests.
Added a delay before making Simbad name lookup queries to avoid sending too many requests.
Added the Aztec sky culture.
Many minor fixes and optimizations.
0.10.2 [2009-03-09]
Based on Qt 4.5.
Display constellations lines using nicely distorted arcs.
Fixed GUI problems when creating a new location.
Fixed the grid lines wrap around at the discontinuities in cylindrical and Mercator projection.
Hide the planet computation problems after year 80608.
Use the Qt raster engine by default. This fixes mac rendering bugs and speeds up greatly the GUI rendering.
Improved management of intersection of viewports with large FOV and projections with singularities.
Added Hammer-Aitoff projection allowing full sky overview.
Fixed various bugs.
0.10.1 [2009-02-02]
Added reset all config options button.
Added code for uncompressing gzip files (borrowed from from libkde)
Allowed for gzip compressed JSON files.
Fixed flip buttons bug.
Fixed min FPS feature.
Implemented screenshots inverted colors feature + associated GUI.
Re-coded grid display from scratch. It is now much faster and much more robust.
Refactored large part of the Navigator and Projector classes. Added a StelPainter class allowing many optimizations and simpler API.
Re-added telescope control key bindings.