forked from pioneerspacesim/pioneer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.txt
2880 lines (2519 loc) · 130 KB
/
Changelog.txt
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
January 2018
* New Features
* F2 sector view UI moved to ImGui (#4204)
* Hyperjump planner for F2 sector view (#4241)
* Lua API StarSystem has new 'govtype' attribute (#4236)
* Unexplored systems in the sector view zoomed out mode are now grey. (#4229)
* Commodity market shows description of the commodity selected (#4213)
* Allow custom factions to make claims (#4233)
* Don't show radar in hyperspace (#4559)
* CustomSystem input syntax adapted for easier data entry (#4238)
* Sectorview zoomout prettier homeworld labels (#4245)
* Hydrogen scooping from small planets with hydrogen atmosphere (#4254)
* Commodity market shows import/export icons if trade computer exists (#4227)
* access all systembody attributes in lua (#4256)
* Move LowThrust Setting to ImGui (#4261)
* Small display changes (#4279)
* Keepers new textures and patterns for ships (#4286)
* Internal Changes
* Happy new year! (#4240)
* Errors parsing Ship and Space Station data files will now make the game fail during load, instead of leaving those objects in an indeterminate state to cause a hard-to-diagnose crash later. (#4230)
* Fix spelling error in docs (#4244)
* Remove unused strings (#4250)
* Add forgotten copyright headers to ImGui-files (#4263)
* Trivial micro change of variable (#4264)
* Some hash_random related fixes (#4257)
* Change lua_pushinteger for lua_pushnumber to preserve value of seed (#4255)
* Updatefuel code duplication (#4262)
* CityOnPlanet rewrite: recursive to iterative (#4266)
* New calculations for station commodity stocks (#4267)
* Asteroid mining results controlled by lua (#4272)
* Route planner optimisations (#4283)
* Remove unused variable and update the comment (#4290)
* CityOnPlanet setuserdata optimized (#4289)
* Updates to Geom class (#4292)
* Minor optimisations around avoiding isqrt (#4294)
* Fixes
* Planar and azimuthal radar at same time (#4265)
* Tradeships getSystemAndJump checking (#4268)
* Fudge-fix projectile ray tracing (#4278)
* Fix ship stat CSV output (#4277)
* Make the black hole system navigable (#4282)
* Modelcompiler fixes for x64 linking (#4285)
* Set the user data for city geom objects (#4284)
* Fix broken Lua->C seed transfers in Face & CustomSystem (#4296)
December 2017
* New Features
* Rounded rewards (#4195)
* Save files are now written in gzip format so they don't need a custom tool to extract (#4205)
* WKFO's Military hyperdrive sound effects (#4202)
* Add VS2017 Build files (#4217)
* Force time acceleration if right mouse button is held down (#4225)
* Internal Changes
* Refactor buffers to have a capacity and size (#4201)
* Add GZipFormat source files to VS2015 Solution (#4212)
* Library version information logging to aid debugging (#4209)
* Some minor code cleanup (#4211)
* Query the maximum AA samples (#4224)
* Fixes
* tradeships.lua unexplored crashfix (#4220)
* AlertState cache cleared on load (#4218)
November 2017
* New Features
* Adding base to Moon (JAXA lava cave location) (#4186)
* Internal Changes
* Added -skipmenu/-sm flag (#4185)
* Fixes
* Fix the MainMenu nil args crash (#4198)
October 2017
* Internal Changes
* Work around for pioneer crashing at start due to bug in new SDL 2.0.6 (#4174)
* Removed unnecessary symlink + pioner now executes from any place (#4179)
* Begin removing direct libpng usage (#4182)
* OSX Binary Build script (#4183)
* Part 2 of removing the libpng files (#4184)
* Fixes
* Fix crash on MacOS (#4176)
* Fix bug in SAR mission regarding available passengers (#4175)
* Trigger onShipDestroyed on fatal crash into city (#4180)
September 2017
* New Features
* Attack outlaws immediately (#4089)
* New music tracks (#4139)
* Allow planets to have rings (#4146)
* Internal Changes
* Ignore all Pioneer x64 Visual Studio files (#4125)
* VS2015, Fix 64-bit SSE2 flag warning #4114
* Spread the terrain skirts wider to avoid some sparklies (#4147)
* XCode, update project and config files (#4152)
* Fix module instances being created twice (#4124)
* Don't show 'None' for drive specs when asking to service engine (#4171)
* PushStyleVar now pushing also vector variables (#4138)
* Fixes
* Fix orbital stations sharing an orbit (#4129)
* Make orbit radius relative to GetPhysRadius, clamp to frame radius (#4131)
* Avoid division by zero doing AABB ray test (#4135)
* Fix cities overlapping (#4137)
* Use fabs for double instead of abs for cross-platform compatibility (#4145)
* Set ARFlags for OSX builds (#4080)
* Stop tradeships crashing into landing pads while trying to hyperspace (#4150)
* Fix missile death notifications, clear thrusters and AI on target death (#4156)
* Fix engineers constantly repairing engines, and negative jump counter (#4161)
* Fix combat rating messages not being in sync with actual ranks (#4165)
* Fix heading jump when switching reference frames with RMB held down (#4170)
* Don't fail assassins when entering mission system (#4167)
* Fix autopilot tooltip when (nav)targeting other ships (#4166)
August 2017
* New Features
* Moved remaining cpanel UI to imgui/lua (#4093)
* Hide mouse pointer when GUI is not drawn (#4066)
* Make all main menu button tooltips translatable (#4072)
* Setspeed indicator, larger hud size, more frame info (#4065)
* Show alerts near the reticule with imgui (#4079)
* Add Eros and Phoebe (#4084)
* Adding TRAPPIST-1 (#4085)
* Make Ctrl-clicking select the set-speed target (#4086)
* Orbit stations lobby shows orbit info (#4091)
* Add Earth g comparison in system info view (#4101)
* Add search field to BBS adverts (#4109)
* Orbit and ground station use different welcome messages (#4116)
* Internal Changes
* Change laser to weapon in some core en.json (#4069)
* Removing unused cpanel icons (#4076)
* Putting back the lagrange icons (#4087)
* Silence GCC warning (#4090)
* Move Brasilia a little bit (#4102)
* Move game start location for Earth back to London (#4092)
* Add SystemPath to the ObjectViewerView (#4107)
* Fixes
* Additional sort order fix (#4062)
* Fix occasional nil dereference (#4073)
* Add missing flight state in crew rooster (#4082)
* Fix Star/planet/gas giants popping into view (#4083)
* Show a warning message if trying to hyperjump with wheels down. (#4074)
* Fix player not being fined for murder and piracy (#4096)
* Adding gun and light tags to Mola Ramsayi (#4097)
* Fix AI ships not hyper-jumping (#4098)
* Workaround for issue 4098 (#4103)
* Fix zero mass asteroids in custom systems (#4108)
* Fix autopilot being confused by bespoke thrusters (#4113)
July 2017
* New Features
* Added Swap button for sector map (#4039)
* New default keybindings (#4050)
* Fail hyperdrive when wheels are down (#4049)
* New music for ship-destroyed (#4038)
* Internal Changes
* Install package for OS X (July 2017) (#4047)
* VS2015, 64bit linking fix (#4046)
* Cleaup 64-bit warnings in vs2015 (#4051)
* Fixes
* Adding some missing letters to Orbiteer for Turkish translation (#4043)
* Fix comparison for "most important" object (#4053)
* Handle assimp major versions greater than 3 (#4055)
* Removing collision mesh for those little fin things top and bottom (#4044)
* Fix segfault when exiting Pioneer (#4057)
* Avoid crash on ESCaping a UI Dropdown (#4060)
June 2017
* New Features
* Move time and time accel window to lua (#4025)
* Internal Changes
* Remove WindowSDL class (#4018)
* Support modifier keys in lua (#4026)
* Fix all GCC 7.1.1 warnings (#4029)
* Decreased density for speedlines (#4031)
* Configurable Speedlines via ini (#4037)
* Fixes
* Fix for incorrectly implemented comparison function crashing Pioneer upon entering system (#4024)
* Fixed a crash pumping fuel into full tank (#4032)
May 2017
* New Features
* In-space indicators have icons and let you select collapsed ones (#3995)
* Show combat target pro- and retrograde velocities (#4007)
* New ship added Mola Ramsayi (#4006)
* Simple atmospheric crush pressure (#4005)
* Internal Changes
* Remove unimplemented method declarations (#4010)
* Make Propulsion a component (#3989)
* Upgraded Assimp to v.3.2.0 in Xcode project (#4011)
* Make FixedGuns a component (#4012)
* Fixes
* Restore correct mouse position after MMB/RMB movement (#4004)
* Remove remaining legacy camera button (#4014)
April 2017
* New Features
* New imgui-driven GUI reticule (#3868)
* New Advice/rumour module for BBS (#3978)
* Implement an alternative 2D Azimuthal Equidistant Projection Radar (#3986)
* Add :space_station_type to CustomSystemBody (#3990)
* Use ffmpeg to record video realtime (#3992)
* Internal Changes
* Updated Xcode project for Mac OSX build (#3960)
* Update libassimp version requirement in COMPILING.txt (#3958)
* Update to full (correct) Creative Commons Attribution-shareAlike 3.0 (#3971)
* VS2015 win32 & x64 plus reorganisation (#3975)
* Fix most build warnings (#3982)
* Fix all build warnings (#3985)
* Include sigc++ directly from pioneer-thirdparty and build as static lib (#3981)
* clang only warnings silenced on other platforms (#3983)
* Replace switch default with explicit list in RandomColor (#3991)
* Fixes
* Bugfix for issue #3967 related to PR #3948 (#3968)
* Ever damage ship when docking (#3953)
* Add screenshot support for OpenGL 2.1 renderer (#3977)
* Initialise the TextureFont to 0 (#3980)
* Fix minor error in buildfiles (#3973)
* Fix output message copy-paste error (#3984)
* Fix Mac build (#3987)
* Fixup the modelview linker inputs (#3999)
* Fix sqrt exception (#4002)
* Avoid damaging ships when you have permission to dock (#3998)
March 2017
* New Features
* Orthographic view in modelviewer (#3936)
* OpenGL 2.1 support (#3934)
* Thruster colors can be modified globally or per direction (#3948)
* Police patrol (#3954)
* Internal Changes
* Upgrade of Xcode project for Mac OSX build (#3937)
* Resolve the mismatched attribute numbering (#3938)
* Refactor the Vertex, Index, etc buffers (#3941)
* Eliminate the evil trailing whitespace (#3942)
* All white spaces be gone! (#3943)
* Configure cleanup (#3955)
* Fixes
* Fix bug making trade computer un-installable (#3947)
* Fix PhysRadius calculation for low orbiting bodies (#3957)
February 2017
* New Features
* Slowly position ship to landing tag when landing on planetary bases (#3901)
* Internal Changes
* Remove the LineMaterial as it is unused (#3929)
* Collision with docking surface entirely moved on SpaceStation (#3920)
* Choose enemy ships by role, not hull mass (#3906)
* Generous Minimum PhysRadius (#3491)
* GLEW resurrection, initial code and project changes (#3925)
* Fixes
* Destructor on AICmdKill ensure no gun fire (#3926)
* Avoid CTD when trade ship try to decide hyperjump (#3919)
* Fix some orbital data in Sol system (#3889)
* Avoid jousting when docking on orbitals at high time steps (#3933)
January 2017
* New Features
* Toggle cursor position when flying (#3909)
* Can no longer set speed above lightspeed (#3908)
* Internal Changes
* Correct and clarify a misleading comment (#3898)
* Use the gas giant textures RAW instead of Billboard (#3897)
* MERRY HAPPY 2017 (#3899)
* Remove IsPlayerShip from Ship (#3904)
* Handle collision/docking better (#3915), (#3912)
* Fixes
* Never spawn toothless pirates (#3903)
December 2016
* Fixes
* Set ImgUI shaders to version 140 to work around junk Intel drivers (#3885)
* Fix translations (#3890)
* Use dynamic vertex buffers for UI labels (#3887)
* Provide config flag and warning to work around Intel pointsprite bug (#3895)
* Internal Changes
* Convert more PNG files to DDS (#3883)
* Render error check (#3884)
* Keep quit confirmation messages modern and stylish (#3896)
November 2016
* Fixes
* Set delta-t to 1/60 if it is <= 0 (#3854)
* fix pattern selection if no pattern present (#3855)
* Lobby: Disconnect the property listeners when the docked station changes (#3857)
* Docking message should not mention auto refuel (#3863)
* Player shouldn't sell fuel they don't have (#3864)
* Render the navlights for orbital stations (#3874)
* Jitter fix (#3872)
* fix navbutton crash without target (#3865)
* Fix orphaned connections in WorldView (#3876)
* Disable the modelcompiler multithreading (#3879)
* Fix undefined renderer bug in SGM LOD loader (#3880)
* Internal Changes
* Freebsd patches (#3851)
* Enhance serializer crash output (#3853)
* Custom system checking (#3856)
* Sprinkle SpaceStation with asserts to find naughty bug (#3861)
* isnan is std, MXE build complained (#3867)
* Add GL_CFLAGS value to AM_CFLAGS (#3870)
* Remove GL buffer init fills, add init checks (#3877)
* Optimisation: Reserve VA capacity correctly for Gui::TextLayout (#3878)
October 2016
* New Features
* Added military drives from 5 to 9 (#3830)
* Thruster upgrades (#3831)
* Calculate selling price including equipment (#3835)
* Remove autorefuel (#3837)
* Rename scanner -> radar; radar mapper -> target scanner (#3825)
* Fixes
* Search&Rescue: set ship look and bugfix (#3823)
* Fixing the scaled down collision mesh of New Ground station (#3833)
* Updating the Bluenose Medium LOD with the correct mesh (#3845)
* Avoid crash if player jumps to next system (#3848)
* Internal Changes
* Add "override" to silence warnings in clang (#3828)
* Update the .gitignore file for more vs2015 files outputs (#3829)
* Fix ARFLAGS to remove warning (#3827)
* Attempt to find the nearest matching exact name (#3832)
* Terrain gen cleanup (#3834)
* Introduce imgui library, make load screen use it (#3826)
* Simple reduction in memory usage (#3838)
* Put imgui.ini into user config dir (#3843)
* Arm asm fix (#3847)
* Don't try to instance zero entries (#3849)
* Update attrib binding locations (#3850)
September 2016
* New Features
* Set ship texture patterns from lua (#3811)
* Fixes
* Model pattern range and status checking (#3814)
* New seed and new locations of star ports for New Hope in Epsilon Eridani (#3818)
* Internal Changes
* Update GasGiant config, detail and initialisation timing (#3792)
* Change SAR mission rewards (#3806)
* Made NavLights responsible for their billboard rendering (#3809)
* Adding an editorconfig file to define coding style (#3810)
* Add annotations to ShipDef (#3812)
* Additional mesh optimisation (#3813)
* Unused files from JobSwarm experiments 4 years ago! (#3816)
* Belt and braces approach to sanity checking for patterns (#3817)
* Brighter luminosity for random colours (#3815)
* Minor performance cleanup (#3820)
* Use a function to access the s_patchFaces to silence a gcc warning (#3822)
* Multi-Threading modelcompiler (#3821)
August 2016
* New Features
* F3 and F4 Toggles between worldview and their thing (#3765)
* Navbutton added to mission screens (#3736)
* Add a TCP Lua console (#3768)
* Low altitude hyperjumps are illegal (#3753)
* Add button to Settings menus so user can open their Pioneer folder (#3790)
* Navigation button update to allow for dynamicBodies as nav targets (SAR and general) (#3789)
* Loads of SAR improvements ! (#3795)
* Fixes
* Fix crash in by Search & Rescue missions (#3770)
* NaN in your numbers (#3772)
* Fix hyperspace star streaks (#3773)
* prefix std:: to isnan so it builds on Linux (#3775)
* Use ImageMagick to fix the iCCP profile problem (#3778)
* Fix crash when jumping into empty system (#3791)
* Fix risk of game crash from SAR when landing on wrong planet (#3797)
* Fix potential instability in SAR (#3802)
* Internal Changes
* Add a function for typesetting time intervals (#3764)
* Restore Starfield colourisation (#3774)
* Animated city buildings, instancing improvement (#3777)
* Small code cleanup in SAR (#3798)
* Make colour range of stars more narrow (#3793)
July 2016
* New Features
* Point sprite background stars (#3757)
* Fixes
* SAR: fix fuel transfer (#3755)
* SAR: fix wrong distance (#3650)
* Fix grammar error in module-cargorun (#3748)
* Internal Changes
* Swap LuaVector for a table (#3747)
* Faster float convert (#3751)
* Revert my changes to use atoi and atoll (#3754)
* XCode now compiles again (#3759)
June 2016
* New Features
* Improve distance format, by introducing ly and Mm (#3745)
* GPU jobs for generating gas giant textures (#3719)
* Add some flare for black market, through flavoured slogans (#3744)
* Passenger warns when jumping to wrong system with right name (#3746)
* Fixes
* Prevent the galaxy map from crashing if in hyperspace (#3714)
* Eclipse r600 (#3721)
* Internal Changes
* Enable using dedicated nVidia GPUs in Windows laptops with Optimus (#3715)
* Minor Noise library improvements (#3716)
* Add AMD Power Xpress performance flag keyword and value (#3717)
* Add EXTRA_CXXFLAGS to CXXFLAGS for assimp's version check (#3718)
* Keep cargo if buying a new ship (#3725)
* Disable Continue button if no saved game to load (#3731)
* Don't hard code strings we already have in translation system (#3728)
* Make trade analyzer removable again. Undo #3474, close #3742 (#3743)
May 2016
* New Features
* Sfx ini configuration file (#3697)
* Fixes
* Textures can be anonymous (#3693)
* Fix ship systeminfo crash (#3699)
* Make Autopilot purchasable from everywhere (#3701)
* Fix CTD for missile target hyperjumps (#3704)
* Fix CTD caused by S&R after-mission states (#3648)
* Fix crash when player explodes in-dock (#3710)
* Clean up the police tables on ship destruction (#3709)
* Internal Changes
* Landing resets time compression (#3696)
* Rework SFX rendering to fix giant sprites (#3695)
* Internal renderer cleanup (#3702)
* Small filename consistency fix (#3707)
* Change the Lua AIKill command to check how legit is its target (#3708)
* Optimise Eclipse Calculations (#3711)
April 2016
* New Features
* First commit of the Bluenose frieghter (#3668)
* Change to GetPosition and GetVelocity LuaShip functions (#3679)
* Back port some of Marcels hometowns mod (#3676)
* Fixes
* Fix ModelViewer crash (#3672)
* Fix editing the gas giants in ObjectViewer editor mode (#3677)
* Legal custom cargo (#3692)
* Internal Changes
* NavLight Billboard Gathering (#3667)
* Change DrawPointSprites to really use Point Sprites (#3670)
* Lua debug tools, part one (#3675)
* Updated Xcode project to fix "missing vtable" error (#3686)
* Saving changes (#3684)
* SpawnShipNear velocity matching (#3674)
* Pre-convert to DDS more textures (#3687)
* Fire once warnings (#3689)
* Texture code tidy (#3691)
March 2016
* New Features
* Ship stat planner addon for Blender. Exports ship.json (#3639)
* Bowfin fighter for Kaluri/CIW (#3641)
* Invisible disabled button for commodity market (#3605)
* Include modelcompiler in OSX build (#3660)
* Minor changes and tweaks
* gun locator tag fix (#3633)
* Ability to set Combat and Nav targets to null validly (#3634)
* Redirect stdout for modelviewer mode (#3640)
* Kanara resize (75%) (#3642)
* RandomColor Port for better random colours (#3644)
* Bowfin: Deleting some duplicate .dae mesh files (#3653)
* Fixes
* Fix rare crash. #3645
* Fix OSX shader compilation (#3652)
* Fix wrong price for Kanara (#3666)
* Fix crash on del/bkspc in sector map search for non-UTF8 char (#3662)
* Internal Changes
* Remove redundant LuaAPI function: SetEnabled() (#3491)
* vector2 template class (#3646)
* vector2 template class (#3646)
* Fix some GCC build warnings (#3661)
* Don't compress normal maps (#3663)
February 2016
* Minor changes and tweaks
* New behaviour of ESC button (#3618)
* Fixes
* Fix Character.lua / Ship.lua import relationship (#3617)
* Fix Search and Rescue bug not recognizing a competed mission (#3621)
* Only get the SystemBody pointer on system bodies and NOT on ships (#3632)
* Internal Changes
* GL_INVALID_OPERATION warning (win32) (#3620)
* Reduce size of terrain patch skirts (#3622)
* Rendering cleanup, possible perf improvements (#3623)
* Cleaning up Pi.h (#3624)
* Fix terrain cracks (#3625)
* Remove IGNORE_FLAG etc (#3628)
* Moar profiling (#3629)
January 2016
* New Features
* Barnard's star update (#3584)
* Anisotropic Texture Filtering (#3586)
* Minor changes and tweaks
* Search and rescue missions tweaked and fixed #3589
* Fixes
* TextureDescriptor usage updated (#3591)
* Fix ObjectViewer crash/hang (#3588)
* Fix for broken SGM file loading (#3597)
* Show the correct pattern on the ship info screen (#3598)
* Fix serialization bug in S&R missions (#3607)
* Missing text fix (#3608)
* Fix for console window crash (#3611)
* Fix for #3602 and #3517 (#3603)
* Fix bad text size (#3612)
* Fix the vcacheopt type narrowing conversions that I caused (#3613)
* Fix number of police ships being opposite of lawlessness (#3614)
* Internal Changes
* Optional use of std::chrono for Profiler (#3593)
* SGM graceful failure (#3592)
* Convert geometry to use 32-bit indices (#3585)
* Remove TextureDescriptor default constructor arguments (#3594)
* Text rendering performance improvements (#3599)
* Fix #ifdef to allow compilation on various BSDs (#3600)
* MERRY HAPPY 2016 (#3615)
December 2015
* New Features
* PgUp/PgDn increments time acceleration (configurable) (#3544)
* New-UI galactic view (#3549)
* Search & Rescue mission script (#3529)
* New config value UIScaleFactor to scale text and images in the UI (#3552)
* Add return location to mission screen for Search & Rescue missions (#3570)
* One button (F9) is sufficient for changing missile/scanner view (#3556)
* Added pump down button to the EconTrade screen (#3567)
* Fixes
* Fix typo in language strings (#3382)
* Fix crash upon illegal activity in uninhabited system (#3555)
* Fix BBS icon for new S-R mission module (#3558)
* Galactic view fixes (#3557)
* Fix rounding of the 'heading' display (#3550, #3561)
* Fix UI scaling for small displays (#3568)
* Launch ship if necessary at start of AIDockWith (#3563)
* Deimos Seed (#3572)
* Flying empty fix (#3516)
* Fixed translations for the names of the Galactic arms (#3566)
* Fixed OS X 10.11 OpenSSL issue (#3579)
* Remove incorrect assertion on max planet detail (#3577)
* Fixed deprecated libraries in OS X 10.11 (#3580)
* Internal Changes
* Face parts (head/hair/eyes/nose/mouth) can now be non-gendered (#3548)
* Face parts can now all be the same size to make alignment easier (#3548)
* Added forgotten strings to translation system (#3551)
* Minor code adjustment to make ccache effective again (#3562)
* Remove the neighbour system from GeoPatch (#3569)
* Make DetailLevel a class and initialise all members (#3575)
* Improve the error message when a save game cannot be opened (#3578)
November 2015
* New Features
* New random number generator! (#3485)
* More moons for Jupiter, and a low Earth orbit station (#3503)
* Three new faction specific police ships, and new crimes added (#3254)
* Three new faction specific fuel clubs (#3504)
* All stations now have a Tech Level, in range 1-12 (#3505)
* Compact Use Equip Widget (#3507)
* Normal Mapping for objects (ships, stations etc) (#3515)
* Make Autosave optional (#3518)
* Show stable Lagrange point in system view (#3536)
* Fixes
* Fix stations placed on top of each other (#3498)
* Updated premake script to generate usable CodeBlocks project (#3521)
* Fix negative latitude longitude issue (#3531)
* Fix AIWarning giving the wrong errror msg (#3532)
* Fix strings not in translation system (#3538)
* Lagrange Points in turquoise-ish (#3539)
* Fix the broken win32 cross compile (#3542)
* Fixed XCode Project file (#3540)
* Fix cockpit loading (#3546)
* Internal Changes
* All crime handling moved to Lua (#3254)
* CargoRun missions first unload all mission cargo (#3510)
* Change OpenGL Extensions from Compatibility to Core (#3514)
* Direct buffer population (#3513)
* Deprecate Visual Studio 2013 (#3519)
* Updated vs2015 libraries and DLLs (#3520)
* Clang warnings (#3524)
* Clean up OpenGL pollution (#3526)
* Fix the last real Clang warning (#3528)
* Delete Form/FormController, which are no longer used (#3533)
* Minor code cleanup (#3545)
October 2015
* New Features
* Fade orbits faster and darker (#3469)
* Commodity Market rewrite (#3467)
* OS X Homebrew Build script (#3447)
* Make trade analyzer module into a software module (#3474)
* Show latitude/longitude ()#3499)
* Fixes
* Miscellaneous warnings fixes (#3472)
* Commodity language fix (#3476)
* Split the flightstate DOCKING into an UNDOCKING state as well (#3481)
* Account for the fuel mass in hyperspace range calculation (#3489)
* Bad Terrain, no cookie! (#3490)
* Small time acceleration limitation fix (#3506)
* Internal Changes
* Exposing full color values instead of only alphas in skin.ini (#3486)
* GLSL preprocessor includes (#3488)
* Simplified Star Shader (#3487)
* Change forced time acceleration around ships (#3445)
* Present a clearer warning to the user if OpenGL fails to initialise (#3496)
* Eclipse tidy (#3501)
September 2015
* New Features
* Control how many stars in the sky (#3431)
* Two state hyperspace button (#3438)
* Terrain detail textures (#3448)
* Progress bar during start up better scaled (#3261, #3462)
* Orbit fading (#3460)
* Fixes
* Fix undefined symbols for static const members (#3446)
* Resolve Detail Texturing abort (#3452)
* Fix compilation issue due to BG_STARS_MAX/MIN (#3457)
* Fix empty crew for hire advert (#3465)
* Fix crew for hire load glitch (#3468)
* Fix Crew-for-hire duplicate/disappear (#3466)
* Internal Changes
* Remove planetary scaling during rendering (#3434)
* Remove the animation Interpolate optimisation (#3435)
* Add license badge to README, markdown now supports it (#3464)
August 2015
* New Features
* Orbital planner got some new features (#3426)
* Fixes
* Fix NAN for planned orbit (#3437)
* Fix math typo (#3440)
* Internal Changes
* Changed/removed some non-portable C++11 usage (#3444)
July 2015
* New Features
* Add first initial support for Arab fonts (#3416)
* New (smaller) space station added (#3414)
* Allow custom stations to have realistic orbit heights (#3410)
* New SensorType API and BodyScanner equipment (#3287, #3396)
* Fixes
* Proposed fix for the MINGW32 issue #3409 (#3418)
* Fixed color of labels starting with empty strings (#3425)
* Internal Changes
* Numerous optimisations (#3419)
* Remove output spamming messages (#3421)
* Sort terrain gen (#3420)
* Inactivate BodyScanner equipment testing code (#3422)
* Drawing optimisations (#3424)
* Render far away (#3428)
* Modelviewer refactor (#3429)
* Cleanup build warnings (#3433)
June 2015
* New Features
* Allow up to 3 orbits a spacestation can occupy (#3392)
* Fixes
* Calculate the correct distribution of orbitals, may affect saved games (#3389)
* Fix crash on start and crash on game load (#3399, #3387, #3400, #3402)
* Fix crash when using Chinese languge (#3405)
* Init model label in SpaceStation and CargoBody LoadFromJson (#3406)
* Fix redirection of stderr to avoid undefined behaviour on posix (#3373)
* Fix save/load crash (#3387) for real this time (#3407)
* Fix another save/load crash triggered by floating cargo (#3412, #3413)
* Fix terrain max depth calculation (#3411)
May 2015
* New Features
* New mission: cargo run (#3274)
April 2015
* New Features
* Confirm quit question added (#3374)
* Enable vsync (#3385)
* Fixes
* Broken cockpit rotations using headlook (#3381)
* Internal Changes
* luacheck changes (#3383)
* Cppcheck changes (#3384)
March 2015
* Fixes
* Fix modelcompiler (#3356)
* Attempt to avoid calling methods on a nil object (#3357)
* Fix missing specular highlights (#3367)
* Fix compilation of planetrings shader (#3370)
* New Features
* Mouselook for internal camera (#3361)
* Migrating the save-game serialisation from a binary flat file to JSON (#3355)
* Internal Changes
* Fix VS2013 profiling configuration (#3368)
* Rendering statistics (#3371)
* Instanced model rendering for cities (#3372)
* Update the sgm file version (#3375)
February 2015
* Fixes
* Romanian characters added, fixes #3314 (#3318)
* Fix the libcurl linking for Profile, PreRelease and Debug (#3354)
* Script and UI API changes
* ServerAgent class for simple network communication (#3342)
* Internal Changes
* LuaSerializer refactoring to diminish coupling with LuaObject (#3349)
January 2015
* New Features
* Many point stars on starless galaxy (#3321)
* Fixes
* Fix 3310 (#3312)
* Fix 3313 (#3316)
* Fix Ship:onShipEquipmentChanged (#3326)
* Ship launch thrust timer fix (#3330)
* Fix the UI strange rendering (#3332)
* Update the ToolTip text layout (#3334)
* Prevent issue #3340 assert (#3341)
* Internal Chnages
* Remove DrawPoints & DrawLines methods (#3303)
* Dummy renderer for headless tools (#3306)
* Fix scanner drawing post-load (#3309)
* Faster text buffer rendering (#3304)
* Ignore any sgm files in the repository (#3315)
* Faster deduplication of collision data (#3319)
* Stop vs2013 using the whole program optimisation (#3333)
* Equipment strings moved to new translation module (#3295)
* modelcompiler no GL, no SDL, build support for compiled models (#3339)
* Optimisation
* Animation interpolation optimisation (#3327)
* Ship nearby optimise (#3328)
December 2014
* New Features
* New Multi Scoop equipment, and merge cargo and fuel scoop slots
to a single one (#3267)
* New OPLI ship Storeria (#3257)
* Our two space stations decommissioned (hoop and big_crappy) and three new jaw
dropping amazing ones enter service! (#3099)
* Fixes
* Fix string "NONE" in ShipInfo not using the translated version (#3268)
* Require OpenGL 3.1 context when opening the SDL window (#3269)
* Move parentheses to correct position for ATLAS_SIZE test (#3299)
* Minor changes and tweaks
* Switch font texture U/V coordinates to unsigned int (#3273)
* README updated to markdown format (#3276)
* Ship and station labels can now include line breaks (#3188)
* Changed to compile as c++ for all build configurations (#3288)
* Handle non-core strings for lua equipment (#3279)
* Use counter not named bays for stations (#3291)
* Internal Changes
* Fix spelling error in DeliverPackage
* Better descriptions for translation strings in ui-/core (#3272)
* Change the Star Color structures to use Color instead of Uint8 (#3285)
* Remove the Colours.h/cpp files (#3289)
* Several bugfixes to the Lua serializer triggered by recent code (#3279)
* Remove redundant code and translation strings (#3294)
* Optimise VertexBuffer usage for SG Nodes (#3300)
* Bundle Collision with SGM file (#3297)
November 2014
* New Features
* Update to use OpenGL 3.2 (#3219)
* Script and UI API changes
* Added random number from Poisson distribution (#3242)
* Minor changes and tweaks
* Introduce special footer when player is in equipment market,
fixes #3117 (#3238)
* A smarter ShipMarket in SpaceStation (#3243)
* Fix Anti-Aliasing (#3246)
* Remove defunct shader programs (#3258)
* Extra checking for program creation (#3253)
* Fix (unnoticeable) logical error in cargo code (#3261)
* Add CppCheck file. (#3266)
* Fixes
* Update deprecated gun tag on Lunar shuttle (#3245)
* Fix Open GL errors causing MXE build not working (#3251)
* Internal Changes
* The OSX build showed these might be shadowed (#3248)
* Json ship definitions (#3252)
* Disable shader validation due to OSX bug (#3260)
* Remove GLEW, use glLoadGen, downgrade to OpenGL 3.1 (#3265)
October 2014
* Art
* Lunar Shuttle facelift (#3230)
* Apsis icon and crosshair polish (#3223)
* Minor changes and tweaks
* More variation in city size / dimension (#3227)
* New Features
* We now have a build script for NixOS Linux (#3208)
* Flying with gears down increases drag (#2509, #3207)
* New Trade Analyzer ship component (#3200)
* Added Horizon Culling for planets (#3216)
* Second Hand ship equipment advert for BBS (#3220)
* Google Breakpad (MSVC only) (#3211)
* Fixes
* Remove detail changes (#3213)
* Replace #pragma once by traditional include guards. (#3215)
* Fix #3224 (#3225)
* Re-init the cockpit when we buy a new ship (#3226)
* Fix ObjectViewer crash for non-planets (#3228)
* Fix alpha blending and render to texture (#3229)
* Fix the crosshair rendering (#3232)
* Match the BeginFrame with an EndFrame (#3235)
* Deadzone (#3236)
September 2014
* New Features
* System exploration (#3201)
* Fixes
* Fix wrong reinitialization of random generator (#3156)
* Fix crash at Daniel's Haven (#3157)
* Cargo body needs to save/load its self destruct timer (#3170)
* Fix mismatch between saving/loading code (#3172)
* Fix behaviour of autosave system (#3163, #3101)
* Fix possible crash when accepting mission in paused (#2732, #3169)
* Fix compilation errors on Mac OS X (#3182,#3183)
* Fix the Line3D rendering issue (#3190)
* Fix the construction of the Circle drawables. (#3192)
* Fix orientation of galaxy density map (#3197)
* Remove invalid asserts (#3206)
* Attributes for uv coords should be vec4 not vec2 (#3205)
* Minor changes and tweaks
* Show buy and sell prices in commodity market (#3153)
* Add new author's names to name generator (#3155)
* Commodity sell price too low (#3161)
* Make Stars visible during eclipse (#3100)
* Cap maximum number of police GoodsTraders (#3165)
* Better background intensity calculation for Eclipse (#3171)
* Randomize planet phase angle (#3135)
* Terrain detail / depth changes (#3184)
* Output SDL version on start (#3196)
* Player defined Ship names (#3176)
* Update galaxy colour image (#3197)
* Script and UI API changes
* Allow to set lawlessness in custom systems (#3166)
* FileSystem.ReadDirectory now includes timestamps for files (#3163)
* Expose pause/unpause events to Lua (#3169)
* Internal Changes
* Improve galaxy image handling (#3154)
* Refactor galaxy generation code (#2773, #3167)
* Recreate folder structure for sgm batch export (#3162)
* Cargo body improvement (#3168)
* Easier to model docking - Part 1 (#3075)
* Const-correctness in CustomSystems and Factions (#3174)
* Restrict FreeType to a single translation unit (#3175, #1203)
* Game views refactoring (#3181)
* More drawable classes, minor fixes (#3187)
* More cache unification (#3193)
* Refactor face generator code to support some future changes (#3180)
* Shader Attributes and required refactoring (#3194)
* Refactoring: Get rid of global Galaxy object (#3198)
* Galaxy density map, factions, custom systems controlled by GalaxyGenerator (#3199)
August 2014
* New features
* Bring Luomu's game msg log over from the SSP fork (#2527)
* Display ships in system view (#3115)
* Display ship heading and pitch (#3108)
* Advanced radar mapper works in system orbital view (#3122)
* Draw periapsis/apoapsis as icons on system view orbits (#3133)
* Improved Joystick Binding (#3141)
* Minor changes and tweaks
* Consistent set nav target on click in SystemView (#3125)
* Write opengl.txt earlier to help debugging (#3138, #3137, #3132)
* Bigger font for msg log (3143)
* Add support for patterns to space stations (#3151)
* Script and UI API changes
* Ship:UseECM() returns recharge time and success state.
* Update COMPILING.txt, and add Doxygen support (#3136)
* Fixes
* Fix trade ship without atmoshield causing crash in system with only
stations on worlds with atmosphere (#3107)
* Fix crash when clicking a view change button (F1-F4) while a new-ui
message box is being displayed (#3111, #3110)
* Zoom out button before zoom in in system,sector,galactic view (#3112)
* Fix an Exit Game widget crash. (#3106)
* Fix bad faction colour only being applied to uninhabited (#3116)
* Destroy Hyperspace clouds after 2 days of ingame time (#3118)
* Fix system view ship crash (#3119)
* Fix refreshing assertion in SystemInfoView (#3120)
* Fix unnecessary limit on ship base price (#3129, #3130)
* Fix crash from TradeShips trying to serialize dead ships (#3126, #3123)
* Fix Fuel club discount not being applied (#3140)
* Fix system information updating during hyperjump (#3150)
July 2014
* New features
* New ship AC33 (Military version of venturestar), and updated meshes for
other ALBR ships, Deneb and Venturestar, and updated textures (#3008)
* Attitude-hold flight modes, accessed from the in-flight F4 menu (#3014)
* NewUI graphics for the cpanel (#3084)
* Economy screen improvements (#3081)
* Add orbital transfer planner to system view (#3079)
* Minor changes and tweaks
* Include the Lua stack top in the debug overlay.
* Don't list lasers under "Equipment" in InfoView, since already listed
under forward/read mounts (#3010)
* Minor cpanel widget spacing adjustment (#3094)
* General cleanup (#3086)
* added ship:UseECM() (#3092)
* Life Emergence Respects Stellar Lifespans (#3015)
* Resize scanner (#3093)
* Add hud icons (#3096)
* Fixes
* Fix potential Lua stack overflows when calling Lua methods (#3003)
* Fix Lua stack leaks when triggering Lua UI templates from C++
(#3004, #2996, #2997, #2999, #3000, #3001)
* Fix crash on game start on Mac OS X builds (#2995, #2993)
* Fix hyperrange bug (#3007, #3017)
* Fix invalid orbital plane for lone orbital stations (#3022, #3018, #3026)
* Fix use of fuel when hyperjumping (#3024, #3019, #3028)
* Fix directory enumeration on POSIX systems when built with a
PIONEER_DATA_DIR value that contains a trailing slash (#3031, #2545)
* Fix hyperspace details shown in the Sector View (#3037, #3033)
* Fix crash when the player collides with floating cargo (#3043, #3041)
* Fix incorrect usedCargo values (#3036, #3035, #3020, #3044)
* Fix incorrect cargo/free space values on game load (#3052, #3049)
* Fix empty cargo lists (#3044, #3039, #3040)
* Fix crash and skipped updates when firing missiles (#3044, #3038)