-
Notifications
You must be signed in to change notification settings - Fork 36
/
changelog.txt
1568 lines (1290 loc) · 46.2 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
v3.5.0:
-------
- Switch builds work again.
v3.4.0:
-------
- New Resolution system. You can configure a relative resolution for the launcher but also for every game.
v3.3.0:
-------
- Added Support for Keen 1 version 1.34
- Added Support for Keen 6 version 1.50
v3.2.0:
-------
- More collision fixes, especially relevant in Keen 2
- Improved the Video engine a bit. Changing resolutions on the fly now work better
- Fixed some ledge grabbing issues
v3.1.2:
-------
- Added option for showing/hiding achievements
v3.1.1:
-------
- Colission fixes
- F10 is working again
v3.0.9:
-------
- Bug fixes with changed aspect ratio and resolutions
- Multiplayer fixes
- Many gameplay bug fixes
v3.0.0:
-------
- New Engine with parallax scrolling feature
- Added support for Cosmos the Cosmic Adventure
- Many bug fixes, some general improvements
v2.8.3:
-------
- Added option for turning of logfile
v2.8.2:
-------
- Improved carmack decompression routine.
- Sliding through entrances/doors improved
v2.8.1:
-------
- More Keen Galaxy engine fixes
- Menu fixes
v2.8.0:
-------
- Removed legacy SDL 1.2 code at many parts
- More stable graphics engine
- SDL2 is not an option anymore
- Improved logging
- Open GL 2.1 is minimum now
- Lots of OpenGL fixes
- Boost library now is optional
- C++17
v2.7.9:
-------
- Added support for Flatpak
v2.7.8:
-------
- More logging. Code cleanups
v2.7.7:
-------
- Now you can configure the base url. If http does not work on your side,
feel free to set it to https.
- Update to SDL 2.0.14 for Windows builds
- Some Memory cleanups
v2.7.6:
-------
- Foot improvement on some mods. With Eight Accumlators now it works correclty.
v2.7.5:
-------
- Achivement System improved. Now you can see what achivements you got
and how much is yet missing
- Quit Menu now shows three ways to quit your current game
v2.7.4:
-------
- Virtual pad control improvements
v2.7.3:
-------
- Smarter Game store. Catalogue entries can be read later at runtime and in the background
v2.7.2:
-------
- Disc color now is white
- Touch buttons give feedback when pressed/touched
- Improved overall direction and buttons control
- No more ugly vpad background
v2.7.1:
-------
- Added disc to the virtual dpad and improved overlay controls
- Using a newer SDL2 mixer function for creating the audio device
v2.7.0:
-------
- More Keen Dreams fixes
- More Lua support and remaining python code is now completely removed
- Added sound buffer amplifier for improving the sound/music quality hopefully on certain systems
v2.6.3:
-------
- We have eight control presets which got some standard names.
Feel free to save you favorite settings there
- Control Overlay for touch devices now have individual height and width settings
- Bug fixes in the Keen dreams engine
- Crash fixes
- Readme updates
v2.6.2:
-------
- More sounds are now played
- Collision fixes
- AI fixes
- Added 5 control presets which can be saved and loaded. Enjoy :-)
v2.6.1:
-------
- More lua support. Oblivion v1.4 fully working
- More crash fixes, especially for Keen 6 DEMO
v2.6:
-----
- Fixing mute music after saving a game
- Added PC Speaker Volume option
v2.5.5:
-------
- Improved controller configuration for multiplayer
- Multiplayer experience
v2.5.4:
-------
- MacOs Supported and uses Docker. Yay!
- Level swap when Hardmode in Episode 1 works once again
v2.5.3:
-------
- Secret Ending In Keen 5 is unlockable
- Crash fixes with older save game files
v2.5.2:
-------
- Improved blinking sprites for home-made creations
- Keen dreams improvements with level signs
- Now you can remove gameplay and menu bindings
- Collision detection improvements
- Splitting up the control settings a bit better
- Since you can unbind Super Run option got removed.
v2.5.1:
-------
- Ceilick Ai improvements
- Small bug fix with sprite export in Galaxy Keen.
Now all of them should be exported correctly
- Reenabled tar.gz linux generic packaging, this time for automated builds
- Prepared code for debian linux packaging, this time for automated builds.
It's disabled because dpkg -i still fails
v2.5.0:
-------
- LUA support will replace Python scripting
- Quickload in the galaxy died dialog ("You didn't make it past...")
- Quicksave and Quickload can be mapped any keyboard and joystick buttons
- Improved gui colors in the launcher menus
v2.4.6:
-------
- New Export graphics feature
- Super Run option. The run button now only works when you enable that option
v2.4.5.3:
---------
- Pole colission detection improvements
- Story page improvements
- General collision detection improvement
- Gamepad now can be connected or disconnected while software is running
v2.4.5:
-------
- QED Fixes
- Improved Savegame menu style and overall functionality
- Minor GUI improvements
- Ai fixes
v2.4.4:
-------
- Boost libraries are now optional, thanks to TinyXML2 code
- Added compatibility to the osxcross toolchain so MacOS in future will receive
updates
- AutoGun working in Keen 4-6
- Better Analog controls handling in Keen 4-6
- Created a nice create bundle script
v2.4.3:
-------
- Finally, loading the game list is much faster. Enjoy!
- Integer scaling improvements
- Fixes to the load of high-res tiles in keen5 and 6
- Some bug fixes
v2.4.2:
-------
- SDL_Cursor now should work as intended
- Finally added some scroll arrows to list views
- More loading feedback especially for galaxy audio
- Adding some emscripten code so GsKit is compatible with WASM
- Some resolution and rendering improvements
- Keen dreams freezes less especially when using cheat codes
- Fixed broken Messie to Player interaction
- Added Quicksave (F6) and Quickload (F9) so dying is less tedious
- Added Integer scaling of video resoltion
- Added 640x360 game resolution which scales nice to 1920x1080
v2.4.1:
-------
- Added achievements feature. Special thanks to XRackProject for her assets
v2.4.0:
-------
- Fixed problem with some dialogs in vorticon keen engine
- Improved the code for save game menus
- Added option where you can choose whether you type your save game
or a timestamp is automatically entered instead
- Disabled button cannot be triggered anymore as it should be
v2.3.9:
-------
- Removed smaller UI annoyances
v2.3.8:
-------
- Virtualpad improvements
- Android improvements
- Settings improvements for horizontal border size
- Crash fixes, bug fixes
v2.3.6:
-------
- Scrollbar improvements
- Crash fixes, bug fixes
v2.3.5:
-------
- Search path issues fixed
- New font added for better scalibility
- Updated GsKit, many code cleanups in the library
- Settings fixups
- Modern setting makes the dithering effect a bit smoother when Galaxy is shown
- Brought back the info menu for help and ordering info
- More log messages for better feedback
v2.3.4:
-------
- Code cleanups, fixes
v2.3.3:
-------
- Tweaked Game menu design
- Optimized compilation process
- Reduce some compiler warnings
- Overall code modernization
- AI improvements thanks to our issue reporters
- Collision improvements with switches
v2.3.1:
-------
- More Python support for mods
- Menu (sandwich) button can be disabled if wished
- Updated SDL2 dlls for windows
v2.3.0:
-------
- Improved loading of special sprites
- Bug fixes when more players are loaded
- Portrait bitmaps loading finally working
v2.2.9:
-------
- Added a Macro for completly building without the virtual pad
- Cleanups by removing entire files
v2.2.8:
-------
- Compilation fixes
- Adjustments for Android SDL2 Port
v2.2.7:
-------
- Optimized Catalog Downloader. Now it downloads in the background
- Much improved Downloader
- Retry option added, when downloading catalogue fails or is not yet finished
v2.2.6:
-------
- Bug fixes
- Code cleanups
v2.2.5:
-------
- Audio Setting fixes
- Many Virtual Pad improvements
- Some AI fixes
- Foot fix with multiple players
- Save game fixes
v2.2.3:
-------
- Video/Display change fixes
- Virtual Pad improvements
- Tilting screen finally works as intended
v2.2.2:
-------
- More settings in the Launcher finally working!
- Council fixes
- Pole collision improvements
v2.2.1:
-------
- Thumb animation
- Code for settings that can be opened when in game launcher
v2.2.0:
-------
- Cleaned Repository
- More unified Menu for both Galaxy and Vorticon games
- Faster Builds
- Many bug fixes
- Player selection in Keen 4 Plus. Play as Lindsey, Council or Kyle
- Different character in Multiplayer mode
- Added support for Mod, Midi and FLAC
- Improved virtual gamepad for mobile version yet to come
v2.1.2:
-------
- Load Bitmap fixes
- Sprite selection screen when Single player mode (Galaxy)
v2.1.1:
-------
- Sprite Refinements (Galaxy)
v2.1.0:
-------
- lots of tidy ups in the menu code. Now a very unified menu is used
for both vorticon and galaxy keen. This reduced the code by many previously copied
files.
- More python support. First mod using no Exe file uses python scripts
for the engine, MoMGalaxy. Now it has some more features more to the original
Keen and less glitches.
v2.0.8:
-------
- More cleanups, improved audio volume management.
v2.0.7:
-------
- More Audio fixes, cleaned up code, less crashes
v2.0.6:
-------
- Full integration of SDL_mixer, IMF fixes. Now it sounds a bit better.
- Audio Code cleanups
- Improve CMake scripts
- Fixed some crashes
v2.0.5:
-------
- SDL_mixer added which fixes many problems
v2.0.2:
-------
- Bug fixes basically
- Bug that same music was loaded in all the levels fixed
v2.0.1:
-------
- Path fixes under windows
- Updated GsKit
v2.0.0:
-------
- Many AI fixes in keen 4, 5 and 6
- Platform sprite corrections in Keen 5
- New Application logo
- Many collision fixes
- Smoother scrolling with vsync
- GUI improvements
- Multiplayer improvements
- Sprite class now uses GsSurface in order to increase performance
and reduce crashes
v1.9.9.9:
---------
- More errors messages, better checking of resources files (Special thanks to Mewingtree)
- Keen 10 Mod: Mirror Menace starting to finally work!
- Berkaloid AI fixes
- Bipship AI fixes
- Simplification of options
- Added option for turning off frame skipping
v1.9.9.8:
---------
- Keen 6 Demo working now (Special thanks to Mewingtree)
- Graphical artifacts fixed in SDL 1.2
- HUD in Vorticon Keen with SDL 1.2 displayed correctly again
v1.9.9.7:
---------
- Improved Progress bar when downloading games, fancier animation, better feedback
- More warnings and error handling
- Improved Keen dreams performance a bit when lower resolutions are used
- better handling with Mods and defective offsets.
v1.9.9.6:
---------
- Better feedback for the user, more error messages and warnings,
especially for misconfigured CG and first time user
v1.9.9.5:
---------
- Code cleanups (SaveController)
- Mouse scrolling improved. It seems to work again in most of the mice.
Also horizontal scrolling is implemented now.
v1.9.9.4:
---------
- Fixes for better mod support
- Standard Resolution is now at 800x600
- Added instructions for building under Fedora
v1.9.9.3:
---------
- Improved log responsiveness
- More error messages are now logged in minizip code
- Tidied up code in general
- More C++ use
v1.9.9.2:
---------
- Menu UI Fixes.
- Removed Dosbox Fusion code
- Bug fixes
v1.9.9.1:
---------
- More improvements on the story and finales texts of the galaxy games.
v1.9.9.0:
---------
- Mod and engine fixes
v1.9.8.8:
---------
- New Horizontal borders
- Screen now occupy colors
- Bug fixes
v1.9.8.7:
---------
- Modern style option finally does something (translucent Keen in hidden areas)
- A lot of more and improved error catching
- Lots of bug fixes
- Improved mods compatibility
v1.9.8.3:
---------
- Hackable Lindsey Messages through python3
- Problems with doors and ship levels fixed
v1.9.8.2:
----------
- More python support. Oracle Member Texts are fully hackable
- More Computer Wrist and Page stuff to read within the game
v1.9.7:
----------
- More python support
- Bug Fixes
v1.9.6:
----------
- Keen learns to run in the galaxy engine
- Bug fixes in Dreams and much better timer
- Basic Python3 support
- Patcher fixes for better mod compatibility
v1.9.5 Beta:
------------
- Game Center added
- Sandwich Menu that a lot of android users will make happy
- Now there is a cheat menu made mobile devices that can not use keyboard shortcuts
- Updated Readme
v1.9.2 Beta:
------------
- Graphical bug fixes
- Improved physics, especially collision detection
- More and improved sounds effects, especial when keen on the map is
using the swim suit
v1.9 Beta:
----------
- Integrated RefKeen to CG so Keen Dreams runs as the last planned game. It's fully playable now
- Minor fixes
v1.8.2.1 Release:
-----------------
- Message Box is shown in Keen 5 when fuses are broken
- Soft collision detection, so Sprites can go through narrow sections in the games (Keen 5 for example has some levels with that issue)
- Save name issues solved
v1.8.2 Release:
---------------
- Lots of bug fixes
- Vgamepad improved
- Improved SDL 2 support with proper combination of OpenGL
v1.8.0 Release:
---------------
- Dosbox fusion
- A lot of dosbox fixes
- Better mouse controls
v1.7.3 Release:
---------------
- New submenu for mods
- More fixes and AI improvements
v1.7.2 Release:
---------------
- A lot of fixes
v1.7.2 Beta:
------------
- More native resolutions if higher modes are used, especially in the launcher
- Some improved physics
- general bugs fixes as usual
- Shorter game names
v1.7.1 Alpha:
-------------
- Last window size is now saved automatically.
- Heavy engine independent code cleanups which will make CG more flexible for new game engines besides Commander Keen
- New GsLib will take more work at low level functions and will as wrapper for SDL and GUI elements
- Multiple selection problem should be fixed now.
- Even more smooth effects readded
- More bug fixes
- New pump event concept will solve a lot of deadlocks we previously had on the android versions.
v1.6.5.5 Release:
-----------------
- Added Scrollbar for a bigger list of games
- Wormmoutch bites again!
v1.6.5.3 Beta:
--------------
- More effects readded
- Many bug fixes especially Keen 1,2 and 4
v1.6.5 Beta:
------------
- Internal Keen game resolution now selectable to 320x240 and 640x480
- Gems and keycards are now reput in the level when one of multiplayer keen dies, making levels finishable in such cases
- Full SDL 2.0 support
- Intro Screen added
- New Overlay theme for android
- Terror in Space mod supported
- And a big bunch of bugs were resolve on the run
v1.6.1 Release:
---------------
- A lot of bug fixes the last had
- Keen can now stand on another keen in multiplayer mode
v1.6 Release:
-------------
- XML based Savegame states in both galaxy and vorticon engine which in future
will make those savegames more robust, when coming from older or newer versions.
This means hopefully, no more crashes in savegames.
- Up to four Players in Galaxy, with everyone having it's HUD
- The HUD are now a bit translucent by default
- Three new difficulty levels, making it six now...
- Some enemies have new colours depending on how you play Keen
v1.4.4 Release:
---------------
- More general bug fixes
- Some neat menu and dialog effects
- Now rending engine which drawing the game scene faster
v1.4.3 Release:
---------------
- Teleportation Fixes in Keen 8. No effect in Keen 6 but the mod was unplayable (thanks to arjwz)
- Carmack Unpack Fixes
v1.4.2 Release:
---------------
- More bug fixes (thanks to arjwz)
v1.4.1 Release:
---------------
- Graphical glitch fixes, which were seen in Vorticons Keen without HQP
v1.4 Release:
-------------
- Keen 6 improvements
- Rendering time improvements
v1.4 Beta:
----------
- SDL_Image now used for HQP
- Sound improvements and music fixes (Thanks to NY00123)
- XCode Updates (Thanks to Pizza2004)
- Full Keen 6 Support
- Full Keen 8 Support (Mod by Ceilick)
- AI Fixes for Keen 5 Enemies
v1.2 Beta:
----------
- More game state fixes
- Keen 5 support is fully implemented
- Partial Keen 6 support. Only one AI works so far.
- HQP Support for new music tunes. The next HQP will feature new Keen 4 tunes with better quality, which can be played with that version
v1.0 Release:
-------------
- Everything but with more bug fixes
v1.0 RC:
--------
- HUD Effects implemented. might become optional if demanded
- The try-again message is back and much better to the original
- As usual a lot of bug fixes.
- Routine for better speed and AI
- Now menu is opened when any button in the title screen is pressed.
v1.0 Beta6:
-----------
- Some AIs are better
- More Mods are now compatible
- Better Player AI and Controls
- Smoother animations
v1.0 Beta5:
-----------
- Some AIs are better
- keen 7 more compatible
- Better Player AI and Controls
- Framerate should be a bit too
v1.0 Beta4:
-----------
- Change in version numbering. For the reason of that see the PCKF Forum
- More Keen 5 support. Elevators (on map) and some Platforms are now working. Exit Door also trigger the exit level event now. Support got much better.
- About 20 collision bug have been fixed providing a better experience
- New transition effects
- Better Timer, faster code.
- New Scalers (Thanks to NY00123 for deep research)
- Aspect Correction (Also thanks to NY00123)
- Vertical Blockers now also work in any map.
- The Readme has been updated and explains better the mission of CG. You can also read that on Github for those who are interested and might want to discuss it on IRC or whereever you find me.
- Flying Foot is in!
- Inchworms are in!
- Keen 7 mod Support. I think fully, as far I can see (Great Mod Ceilick)
- New Item effects
- Better playability in the underwater Level.
- More general effects
- Better Enemy AIs although some still need more work.
- Secret level fully working
- GameState loading and saving improved a lot
- Mimrocks improved
v0.4.0 Beta3:
-------------
- Menus con now be controlled by the mouse and behave like Window Frames
- Galaxy engine has also much better menus
- Engine got some changes which make it more stable
- Galaxy got save and load game feature
- New Launcher Menu
- New video rendering engine
- Improved handheld support
- Improved AIs in Galaxy engine
- Improved Multiplayer Experience. Now there is a special cambutton, so players can cooperate
- More Input devices are now supported.
- New Galaxy AIs
- fixed about 30 bugs
v0.3.8 Alpha:
-------------
- Resizable Windows and playable at any resolution
- More Enemies in Galaxy Support
- Lots of speed ups
- Better Galaxy Support
- Better Sound Support
v0.3.5:
-------
- Fixes in the finale of Ep1
- Now Rising points dissappear fading
- Better Audio read out for Galaxy
- Stereo Sound fixes
- CalcVisibility is now also used in Galaxy, what make the engine much faster when having many objects
v0.3.4:
-------
- Slugs are smarter and can kill now
- Keen can get and use the diving suit
- Miragia now behaves correctly on map
- Keen now dies correctly and a selection dialog is shown
v0.3.3.4:
---------
- New automation theorie based actions for AI in the Keen Player galaxy structure, for better and faster gameplay
- Fixed small issues
v0.3.3.3:
---------
- Now Council Members trigger and make the level exit. Neat!
- New Collision Model for Galaxy. Hopefully better especially on sloped tiles. Also that part of the code got smaller
- Vertical and Drop Platforms work which will make more levels finishable
- Keen now can jump through some tiles and also leave platforms
- Now the platforms also move Keen
- The Platform AIs have a special directory in the source code
- Cheat codes in Galaxy are implemented: God-mode, Jump-cheat, No clipping and get all items!
- Songlist of some mods can alternatively be used
v0.3.3.2:
---------
- Thanks to Malvineous IMF Player got a bit faster. He found an interesting slow down in our code
- Now switches for platforms and bridges work
- Big IMF Bug I discovered has been fixed which produced crashes on some systems
- Better Platform code
- Some PC-Speaker sound improvements
- New CG Core which has a bit less code, is easier to understand,
uses more smartpointers and also seems to be a bit faster.
- Less graphic glitches in OpenGL Mode
v0.3.3.1:
---------
- Tied up some code!
- New Audio System!
- New Graphics System!
- Fixes in the IMF Player
- Audio changes now Keen Galaxy has sounds (also thanks to FCTW for his help!)
- Keen 5 Support initial support. (Thanks to furan for his help and cleaning up some code is it!)
- Council members, slugs and platforms are in. They don't work properly yet (Also many thanks to FCTW!)
- New Packages are available. Now Windows Installer is shipped and the Deb Packages are updated!
v0.3.3:
-------
- New audio system/manager
- Vorticon can also open and play IMF Files for music
- Fixes of a whole bunch of bugs
- Savegame system should work better
- On embedded systems the save state is written automatically putting date and level number
- more space for name in the save/load game section
- Small performance improvements, especially when loading Vorticon Keen games
- Better stereo Sound!
- Physics improvements
- Galaxy Keen now plays ingame music, finally!!!
v0.3.2.5:
---------
- Keen now can climb poles (Galaxy)
- Keen now can hang on cliff and climb then up (Galaxy)
- Some bug fixes.
- Many new features in Galaxy. Keen can do a lot of things now...
- improved some galaxy physics
v0.3.2.4:
---------
- Less load time
- Added nice Loading Screen
- Diagonal Keys are now supported
- Improved the hq sound quality
- minor bug fixes
- New threadpool which is used by the Loading Screen
v0.3.2.3:
---------
- Now Game shouldn't crash when playing music
- improved Vorticon physics
v0.3.2.2:
---------
- Music is now streamed
- Added tremor support
- Even better Sound support
- Several physic changes
- Keen now can walk in levels in Galaxy
- More mods are supported
v0.3.2.1:
---------
- more AI fixes
- Added support for mods which use the palette patch code
- 48 Khz is back again, after many months, but this time working correctly!
- better push and bump physics
- more of the Galaxy Engine. Keen now can walk on map.
- Added Cannon fire sound
- Added HUD Display, the one Chad had suggested
- Small memory issues fixed
- Improved memory management for foes.
- Keen 4 now works and can be played on map
- even faster and more Badass!
v0.3.2:
---------
- OpenGL improvements especially for iPhone!!
- Faster Game loads!
- Other segfault fixes!!
- Improved Mod support (Especially for Keen X and Yorphius II)
- Now HQ Sprites are supported!
- faster loading maps algorithm and less memory used
- more Galaxy Code!
- Code cleanups!
- Improved Patch-Code
- Improved Garg AI
- Improved Scrub AI
- Teleporter fixes
- Now enemies blink, when they get a hit
- Small improvement of the player physics
- New configuration file parser which makes loading and saving even faster!
v0.3.1.3:
---------
- Savegames are now separated per game
- bit more galaxy code
- fixed filename search problems
- even faster and more colourful menu
v0.3.1.2:
---------
- a bit faster and more colourful menu
v0.3.1.1:
---------
- Volume sliders
- Camera bounds config
- Older savegame compatibility... (to version 0.3.0.4)
v0.3.1.0:
---------
01-03-2010
- Most of the bugs reported on Trac have been fixed.
- We have finally another release!
31-01-2010
- Improved Bump function, which makes Keen push, when touched by a yorp a similar foe
- Imrpoved the yorp behaviour, when Keen touches him. It should be like in the original also.
- Scrubs got stuck when walking over just one tile. fixed...
- Changes in the Voritcon Elite. It should be like in the original now. Please verify!
- Changes in the Tank Robot AI Ep 1
19-01-2010
- Changes in the Vortininja Ep3
- Changes in the Tank Robot AI Ep 1
17-01-2010
- Improved AI of Tank Robots, Elite, Ninjas, Gargs, Foob, Vortikids. The still need to be checked against doskeen
- Improved the player-physics a bit
- Fixed many other crashes
07-01-2010
- Improved Multiplayer experience a bit (Still WIP)
06-01-2010
- New collision system which now is shared with all foes and the player
- improved some AI (Tulip). Some are still missing
- fixed memory leaks
- fixed other issues and crashes
- Small speed up!
30-12-2009
- Added more Keen4 code and fixed errors with the huffman decompression
- Fixed AI Bugs of baby-vorticon
- Fixed AI Bugs of meep
- Fixed minor problems we had with AI
- Fixed an animation errors with priority tiles
29-12-2009
- Fixed some enemy issues
- Integrated some Keen 4 Code, which still is under construction
- Integrated a better unlzexe algorithm.
- Nessie now should work correctly!
- Changed Tile animation speed
18-12-2009
- Added enemies of Ep 2 back. All are avialable now, but still buggy.
- fixed minor collision problems
- fixed other minor issues and segfaults
16-12-2009
- Slippery ice tiles are working again as before! Keen can semi/slide on them
15-12-2009
- Minor fixes
- New effects class. Vibration and Vorticon shot scene in EP1 are working again.
- New Merge Colour effect, which can be seen, when player enters a level
13-12-2009
- Added Vorticon Elite back to CG
12-12-2009
- Added Tank-Robot of Episode 2 back
- Physics improvements
- Teleporter in Episode 3 don't need the exe file. But it's calculated now...
- Teleporter are now read from the Exe-file in Episode 1
- Improved AI (Yorp)
- Removed some ugly tiles on the title screen
10-12-2009
- Fixed some hidden segfaults and wrong inits, which provoked the yorps getting unstunnable
- Now using the fonts.bmp file, we can use other font graphics (with hi-colour support!)
09-12-2009
- Fixed ice cannons to the engine. Now they are working again
08-12-2009
- Corrected start inventory for all Episodes
- The Stone with Rope in Episode 1 Level 16 is working again!
- The Tank Robot of Episode 1 is working again!rtin
07-12-2009
- Added Easy mode. It's still has no function
- Menus have been stripped down a bit (Pizza2004)
06-12-2009
- Now the YourPartsAreMissing has the original icons
- The pogo is frozen. I did that for testing
- Player doesn't fall anymore when level starts
- Autoraygun option is working correctly again!
- Godmode on map is working correctly again
- The option level-replayability is working once again!
- Yorps are screaming correctly again, when they are shot
05-12-2009
- New Playgame Engine System
- The entire Code has been rewritten in order to support more games (Galaxy for example)
- Much more solid engine
- New and innovative Savegame System (Pizza2004)
- New Physics [WIP] (Tulip)
- Better timer that makes the game much faster (Pickle)
v0.3.0.4:
---------
24-09-2009
- New Map System. Now maps of any size can be used for CG
11-09-2009
- many bugs fixes (Many thanks to James K. Beard)
- Graphical improvements and performance (Pickle)
06-09-2009
- The new Graphics Engine is fully implemented and can
handle and speedup all the graphics (tiles, sprites, bitmaps, etc)
- Improved Sound-System. Now 16 Bit is supported! (Many thanks to Pickle for his work!)
- Improved 2-player camera and minor issues! (Many thanks to Pizza2004!)
31-08-2009
- graphics system nearly fully implemented
- load menu cancel fixed
- deleted savegames that came with
- changed the way the camera works while in 2 player mode
26-08-2009
- better twirl on menus
- fixed some bugs that basically froze gameplay
- fixed and improved the aspect ratio feature
- beginnings of new graphics system implemented
25-08-2009
- New Palette system (Thanks to Caitlin Shaw)
- Physics improvement (Thanks to guys of the PCKF Forum)