forked from scummvm/scummvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1610 lines (1348 loc) · 60.5 KB
/
NEWS
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
For a more comprehensive changelog of the latest experimental code, see:
https://github.com/scummvm/scummvm/commits/
1.7.0 (????-??-??)
1.6.0 (2013-05-31)
New Games:
- Added support for 3 Skulls of the Toltecs.
- Added support for Eye of the Beholder.
- Added support for Eye of the Beholder II: The Legend of Darkmoon.
- Added support for Hopkins FBI.
- Added support for Tony Tough and the Night of Roasted Moths.
- Added support for The Journeyman Project: Pegasus Prime.
- Added support for the Macintosh version of Discworld 1.
General:
- Added a new save/load chooser based on a grid of thumbnails. This is only
supported for resolutions bigger than 640x400. The old chooser is still
available and used for games without thumbnail support. It is possible to
select the old one as default too.
- Rewrote VideoDecoder subsystem.
- Added Galician translation.
- Added Finnish translation.
- Added Belarusian translation.
- Using the mouse wheel on a slider widget now changes the value by the
smallest possible amount. This is more predictable than the old behaviour,
which was to change the value by "one pixel" which would sometimes not
change it at all.
- Updated MT-32 emulation code to latest munt project snapshot.
- Added FluidSynth settings dialog, mainly for reverb and chorus settings.
- Fixed crash on certain Smacker movies.
Cine:
- Improved audio support for Amiga and AtariST versions of Future Wars.
Now music fades out slowly instead of stopping immediately. Sound
effects are now properly panned, when requested by the game.
CGE:
- Soltys contains a puzzle requiring the ALT key to be pressed while clicking
on an object. This puzzle has been disabled on devices not using this key.
Drascula:
- Resolved multiple UI issues with the original save/load screen.
- Added advanced savegame functionality, including savegame timestamps and
thumbnails and the ability to load and delete savegames from the launcher.
It's now possible to use the ScummvM save/load dialogs.
- The F7 key (previously unmapped) now always shows the ScummVM load screen.
The F10 key displays either the original save/load screen, or the ScummVM
save screen, if the user has selected to use the ScummVM save/load
dialogs.
Dreamweb:
- Now that the game is freeware, there is a small extra help text showing
the available commands in the in-game terminals when the player uses the
'help' command. Previously, players needed to consult the manual for the
available commands. Since this reference to the manual is a form of copy
protection, this extra line can be toggled by the ScummVM copy protection
command line option.
Groovie:
- Simplified the movie speed options, and added a custom option for The 7th
Guest. Movie options are now "normal" and "fast", with the latter changing
the movie speed in T7G to match the faster movie speed of the iOS version.
The game entry might need to be readded in the launcher for the new setting
to appear.
SAGA:
- Added music support for the Macintosh version of I Have No Mouth and, I
Must Scream.
SCUMM:
- Implemented Monkey Island 2 Macintosh's audio driver. Now we properly
support its sample based audio output. The same output is also used for
the m68k Macintosh version of Indiana Jones and the Fate of Atlantis.
- Improved music support for the Macintosh version of Monkey Island 1. It
now uses the original instruments, rather than approximating them with
General MIDI instruments, and should sound a lot closer to the original.
- Added sound and music support for the Macintosh version of Loom.
- Handle double-clicking in the Macintosh version of Loom.
- Major bugfixes in INSANE (the Full Throttle bike fights).
TOUCHE:
- Added support for Enhanced Music by James Woodcock
(http://www.jameswoodcock.co.uk/category/scummvm-music-enhancement-project/).
1.5.0 (2012-07-27)
New Games:
- Added support for Backyard Baseball 2003.
- Added support for Blue Force.
- Added support for Darby the Dragon.
- Added support for Dreamweb.
- Added support for Geisha.
- Added support for Gregory and the Hot Air Balloon.
- Added support for Magic Tales: Liam Finds a Story.
- Added support for Once Upon A Time: Little Red Riding Hood
- Added support for Sleeping Cub's Test of Courage.
- Added support for Soltys.
- Added support for The Princess and the Crab.
General:
- Updated MT-32 emulation code to latest munt project snapshot. The emulation
improved dramatically.
- Implemented support for TrueType fonts via FreeType2 in our GUI. Along
with it GNU FreeFont was also added to our modern theme. Note that not all
ports take advantage of this.
- Added Basque translation.
- Added custom game and engine options in the AGI, DREAMWEB, KYRA, QUEEN,
SKY and SCI engines. It is now possible to toggle these options via the
Engine tab when adding or editing a configuration for a game. In most
cases, you will have to run each game once or readd them all in ScummVM's
launcher in order to get the custom options tab.
- Improved predictive dialog look.
- Various GUI improvements.
Broken Sword 1:
- Fixed incorrect sound effects in the DOS/Windows demo.
- Added support for PlayStation videos.
- Fixed missing subtitles in the demo.
Broken Sword 2:
- Added support for PlayStation videos.
Cine:
- Implemented Roland MT-32 output driver.
Drascula:
- Added Spanish subtitles in the Von Braun cutscene (#3069981: no subtitles
in scene with "von Braun").
Gob:
- Fixed a crash in Lost in Time
- Rewrote the AdLib player. Enabled the now working MDY player in
Fascination and Geisha.
SCUMM:
- Added support for the Macintosh version of SPY Fox in Hold the Mustard.
- Added a difficulty selection dialog for Loom FM-TOWNS.
- Fixed graphical glitches in HE98 version of Pajama Sam's Lost & Found.
iPhone port:
- Changed "F5 (menu)" gesture to open up the global main menu instead.
- Added support for custom cursor palettes, this makes the moderm theme use
the red pointer cursor for example.
- Added aspect ratio correction feature.
- Implemented 16 bits per pixel support for games.
Maemo port:
- Added support for Nokia 770 running OS2008 HE.
- Added configurable keymap.
Windows port:
- Changed default savegames location for Windows NT4/2000/XP/Vista/7.
(The migration batch file can be used to copy savegames from the old
default location, to the new default location).
1.4.1 (2012-01-27)
AGOS:
- Fixed loading videos directly from InstallShield cabinets in the Windows
version of the The Feeble Files.
BASS:
- Added support for Enhanced Music by James Woodcock
(http://www.jameswoodcock.co.uk/?p=7695).
Broken Sword 2:
- Slight graphics improvement for PSX version.
KYRA:
- Fixed bug in the original Lands of Lore GUI which made ScummVM error out
in the case the user did not have a contiguous save slot usage.
- Add support for original DOS Lands of Lore save files (also applies to save
files made with the GOG release).
SCI:
- Fixed race condition in SCI1.1 palette changes. This fixes an error in
QFG1VGA, when sleeping at Erana's place.
- The option to toggle sound effect types between digitized and synthesized
has been disabled until a more user-friendly GUI option is possible.
Digital sound effects are always preferred for now.
- Fixed a case where starting a new song didn't fully reset its channels,
thus some notes sounded wrong.
1.4.0 (2011-11-11)
New Games:
- Added support for Lands of Lore: The Throne of Chaos.
- Added support for Blue's Birthday Adventure.
- Added support for Ringworld: Revenge Of The Patriarch.
- Added support for the Amiga version of Conquests of the Longbow.
New Ports:
- Added PlayStation 3 port.
General:
- Fixed the ARM assembly routine for reverse stereo audio.
- Added support for building with MacPorts out of the box.
AGI:
- Implemented sound support for the DOS version of Winnie the Pooh in the
Hundred Acre Wood.
AGOS:
- Implemented support for loading data directly from InstallShield
cabinets in The Feeble Files and Simon the Sorcerer's Puzzle Pack.
- Fixed loading and saving in the PC version of Waxworks.
- Fixed music in the PC versions of Elvira 1/2 and Waxworks.
Groovie:
- Added support for the iOS version of The 7th Guest.
Lure:
- Fixed crash when trying to talk and ask something at the same time.
SCI:
- Added better handling of digital vs. synthesized sound effects. If the
"Mixed Adlib / MIDI mode" checkbox is checked, the engine will prefer
digital sound effects, otherwise their synthesized counterparts will be
preferred instead, if both versions of the same effect exist.
SCUMM:
- Implemented PC Speaker support for SCUMM v5 games.
- Fixed priority bug in iMuse. As a result the AdLib music should sound
better, since important notes are not interrupted anymore.
- Implemented CMS support for Loom, The Secret of Monkey Island and
Indiana Jones and the Last Crusade.
- Improved palette handling for the Amiga version of Indiana Jones and the
Fate of Atlantis.
Broken Sword 1:
- Fix freeze in Windows demo.
- Fix crash when using cutscene subtitles pack with the Macintosh version.
Tinsel:
- Fixed deleting saved games from the list of saved games (from the launcher
and the in-game ScummVM menu).
- The US version of Discworld II now shows the correct title screen and
language flag.
Android port:
- Fixed plugins on Android 3.x.
- Moved the default saved game location to the SD card.
1.3.1 (2011-07-12)
General:
- Improved audio device detection and fallback.
There should be no more silent errors due to invalid audio devices.
Instead ScummVM should pick up a suitable alternative device.
Mohawk:
- Added detection entries for more variants of some Living Books
games.
Tinsel:
- Fixed a regression that made Discworld uncompletable.
SAGA:
- Fixed a regression in Inherit the Earth's dragon walk code which
was causing crashes there.
- Fixed a regression causing various crashes in I Have No Mouth and
I Must Scream.
SCI:
- Added detection entries for some Macintosh game versions.
- Audio settings are now stored correctly for the CD version of EcoQuest 1.
SCUMM:
- Fixed graphics bug in FM-TOWNS versions of games on ARM devices
(Android, iPhone, etc.).
1.3.0 (2011-05-28)
New Games:
- Added support for Backyard Baseball.
- Added support for Backyard Baseball 2001.
- Added support for Urban Runner.
- Added support for Playtoons: Bambou le Sauveur de la Jungle.
- Added support for Toonstruck.
- Added support for Living Books v1 and v2 games.
- Added support for Hugo's House of Horrors, Hugo 2: Whodunit?
and Hugo 3: Jungle of Doom.
- Added support for Amiga SCI games (except Conquests of the Longbow).
- Added support for Macintosh SCI1 games.
New Ports:
- Added WebOS port.
General:
- Added support for loadable modules on platforms without a dynamic
loader (GSoC Task).
- Added Danish translation.
- Added Norwegian Bokmaal translation.
- Added Norwegian Nynorsk translation.
- Added Swedish translation.
- Added Debug Console to Cine, Draci, Gob, MADE, Sword1, Touche and
Tucker Engines.
- Closed significant memory leaks. RTL should now be more usable.
AGOS:
- Closed memory leaks in Simon 2 and Feeble Files.
Cine:
- Corrected memory leaks and invalid memory accesses.
Future Wars should be more stable.
- Made Operation Stealth completable, though significant graphical
glitches remain so not official supported.
Drascula:
- Added German and French subtitles in the Von Braun cutscene (#3069981:
no subtitles in scene with "von Braun").
- Improved French translation of the game.
- Added support for "Return To Launcher".
Gob:
- Fixed "Goblin Stuck On Reload" bugs affecting Gobliiins.
Kyra:
- Closed memory leaks.
Parallaction:
- Corrected issue which could cause crash at engine exit.
- Closed memory leaks in Nippon Safes Amiga.
SCI:
- Added a CMS music driver for SCI1 - SCI1.1 games.
- Added an option to toggle undithering from the ScummVM GUI.
- Added several previously missing parts of the game state in saved games,
such as game played time, script created windows, the script string heap
and information related to the text parser in old EGA games.
- Added support for SCI1.1 magnifier cursors.
- Added support for the keypad +/- keys.
- Added support for the alternative General MIDI tracks in the Windows CD
versions of Eco Quest, Jones in the Fast Lane, King's Quest 5 and Space
Quest 4.
- Added support for the alternative Windows cursors in the Windows version
of King's Quest 6.
- Added support for simultaneous speech and subtitles in the CD versions of
Space Quest 4 and Freddy Pharkas.
- Corrected resource loading leaks.
- Corrected several problems and issues in the Skate-O-Rama rooms in Space
Quest 4.
- Corrected several issues in Hoyle Classic Card Games.
- Fixed several graphical glitches (like, for example, parts of the screen
that weren't erased correctly under some rare circumstances).
- Fixed several script bugs.
- Fixed several pathfinding related issues and lockups (like, for example,
a lockup in the shower scene of Laura bow 1 and pathfinding in some
screens during the chase sequence in Laura Bow 2).
- Fixed several music related glitches and possible lockups (like, for
example, a rare music lockup that occurred when loading a saved game
outside the palace in Quest for Glory 3).
- Fixed possible problems and lockups in the character import screens of
Quest for Glory 2 and 3.
- Fixed a bug that caused a lockup in the SCI1 CD version of Mixed Up Mother
Goose, after Tommy Tucker's song.
- Fixed a script bug in the CD version of King's Quest 5, which caused a
lockup under certain circumstances when going outside the witch's house
in the dark forest.
- Function keys now work correctly when the num lock key is on.
- Improved support for fanmade game scripts.
- Improved support for non-English versions of games.
- Made several enhancements and fixes related to MT-32 music (e.g. reverb).
- Music is no longer out of tune when loading saved games.
SCUMM:
- Improved support for FM-TOWNS versions of games.
Sky:
- Fixed crashes on sequences for several ports (Android, OpenGL, ...).
Teenagent:
- Closed memory leaks.
Tinsel:
- Closed memory leaks in Coroutines.
- Added enhanced music support for the German CD "Neon Edition" re-release
of Discworld 1.
Touche:
- Corrected memory leaks and minor issues.
Tucker:
- Added workarounds for several issues present in the original game.
SDL ports:
- Closed memory leaks in Mouse Surfaces.
Android port:
- Switched to the official NDK toolchain for building.
- Fixed GFX output for various devices.
- Fixed various crashes.
- Switched to the native screen resolution to improve text readability.
- Added support for pause/resume.
- Added support for games using 16bit graphics.
- Increased the performance significantly.
- Added support for the "Fullscreen mode" option. Unchecking this keeps the
game's aspect ratio.
- Added a new graphics mode for linear filtering.
- Overhauled the input system (see README.Android).
- Added a MIDI driver based on SONiVOX's Embedded Audio Synthesis (EAS).
Nintendo DS port:
- Added support for loadable modules.
PSP port:
- Added support for loadable modules.
- Added image viewer.
PS2 port:
- Added support for loadable modules.
Wii/GameCube port:
- Added support for loadable modules.
- Fixed 16bit mouse cursors on HE games.
1.2.1 (2010-12-19)
General
- Added Hungarian translation.
- Added Brazilian Portuguese translation.
Cruise:
- Fixed a problem with Raoul appearing when examining the Book.
Groovie:
- Fixed a regression that made the Russian version of T7G crash.
Lure:
- Fixed several NPC movement bugs.
1.2.0 (2010-10-15)
New Games:
- Added support for Fascination.
New Games (Sierra SCI0 - SCI1.1):
- Added support for Castle of Dr. Brain (EGA and VGA).
- Added support for Codename: ICEMAN.
- Added support for Conquests of Camelot.
- Added support for Conquests of the Longbow (EGA and VGA).
- Added support for EcoQuest: The Search for Cetus.
- Added support for EcoQuest 2: Lost Secret of the Rainforest.
- Added support for Freddy Pharkas: Frontier Pharmacist.
- Added support for Hoyle's Book of Games 1.
- Added support for Hoyle's Book of Games 2.
- Added support for Hoyle's Book of Games 3 (EGA and VGA).
- Added support for Hoyle Classic Card Games.
- Added support for Jones in the Fast Lane.
- Added support for King's Quest I (SCI remake).
- Added support for King's Quest IV (SCI version).
- Added support for King's Quest V (EGA and VGA).
- Added support for King's Quest VI (low and hi res).
- Added support for Laura Bow: The Colonel's Bequest.
- Added support for Laura Bow 2: The Dagger of Amon Ra.
- Added support for Leisure Suit Larry 1 (SCI remake) (EGA and VGA).
- Added support for Leisure Suit Larry 2.
- Added support for Leisure Suit Larry 3.
- Added support for Leisure Suit Larry 5 (EGA and VGA).
- Added support for Leisure Suit Larry 6 (low res).
- Added support for Mixed-up Fairy Tales.
- Added support for Mixed-up Mother Goose.
- Added support for Pepper's Adventures in Time.
- Added support for Police Quest I (SCI remake).
- Added support for Police Quest II.
- Added support for Police Quest III (EGA and VGA).
- Added support for Quest for Glory I/Hero's Quest.
- Added support for Quest for Glory I VGA remake.
- Added support for Quest for Glory II.
- Added support for Quest for Glory III.
- Added support for Slater & Charlie go camping.
- Added support for Space Quest I (SCI remake) (EGA and VGA).
- Added support for Space Quest III.
- Added support for Space Quest IV (EGA and VGA).
- Added support for Space Quest V.
- Added support for The Island of Dr. Brain.
New Ports:
- Added Android port.
- Added Dingux port.
- Added Caanoo port (based on the GP2XWiz port).
- Added OpenPandora port.
General:
- Removed the outdated PalmOS port.
- Switched to the "fast" DOSBox OPL emulator.
- Fixed a crash in the rjp1 player code affecting the FOTAQ Amiga version.
- Added support for more original media layouts.
- Added support for GUI localization.
- Improved GUI by adding tooltips and radiobuttons.
- Improved GUI usability by hiding more irrelevant options not supported by
specific games.
AGI:
- Fixed number of GFX glitches.
- Made PIC drawing code picture perfect.
- Added support of MIDI devices.
- Added support for accurate Tandy sound emulation. Switched to it as default.
Broken Sword 2:
- Fixed missing speech in some cutscenes.
- Fixed a memory leak that would eventually cause the game to hang.
(#2976008 - BS2: Game lockup in British Museum)
Drascula:
- Fixed number of GFX glitches.
- Made many cutscenes smoother.
- Changed behavior of items menu. Now it shows up on mouse up.
Groovie:
- Added support for the Macintosh version of The 7th Guest.
- Added support for custom MT-32 instruments.
KYRA:
- Fixed some minor graphical glitches.
- Implemented formerly missing recreation of some in game items.
- Added support for playing Kyrandia 3 with the original CD file layout.
LURE:
- Fixed bug where Goewin could get stuck in the Weregate.
- Fixed issue with Ratpouch repeatedly moving between two rooms.
- Fix for Goewin losing her schedule after Were-cave.
- Fix for player getting stuck in sewer exit room.
Parallaction:
- Made part one of The Big Red Adventure completable.
SAGA:
- Fixed graphics glitches in several scenes.
SCUMM:
- Several improvements in Maniac Mansion NES.
PSP port:
- New backend design: fixed minor graphical issues and enabled 16-bit support.
- Enabled playback of MP3 files using the Media Engine. This means that
the port is optimized for MP3 files (as opposed to OGG).
- Many optimizations. Everything should run faster.
Wii port:
- Added support for USB2 mass storage devices (requires The Homebrew Channel
>= v1.0.8 with IOS58).
GameCube port:
- Added support for DVDs with the ISO9660 file system.
GP2X port:
- Added support for dynamic engine plugins (experimental).
- Reworked control system and better touchscreen support.
GP2XWiz/Caanoo port:
- Improved downscale code to minimise 'tearing' corruption.
- Reworked control system and better touchscreen support.
- Renamed backend from GP2XWIZ to GPH to better reflect
the supported devices.
1.1.1 (2010-05-02)
New Ports:
- Added Nintendo 64 port. (Actually added in 1.1.0, but forgot to mention it. oops)
General:
- Fixed several minor bugs here and there.
Drascula:
- Fixed regression that caused some texts to always be in English, even when
using another language. (#2970211 - DRASCULA: missing german translation)
KYRA:
- Fixed a bug which caused the DOS versions to crash before the credits when
AdLib music is selected.
LURE:
- Fixed several memory leaks.
- Corrected problems in the handling of followers when blocked from performing
actions by closed doors between rooms.
- Solved issues with Goewin not always correctly following the player out of the caves.
Tinsel:
- Fix video playback regression in Discworld 2.
Parallaction:
- Fix several crashes and other regressions in Nippon Safes, including
bugs 2969211, 2969232, 2969234, 2969257, 2970141.
Wii/GameCube port: (Also forgot to mention in 1.1.0)
- Added support for games using 16bit graphics.
- Complete GFX overhaul (new video modes, better performance,
picture smoothing, fine grained overscan settings).
- Added a new options dialog for Wii/Gamecube specific settings.
- Fixed a GFX glitch on savegame thumbnails.
- Added support for SMB mountpoints (Samba/Windows shares).
- Added an on-screen console, which is shown when ScummVM exits abnormally.
- Fixed a couple of crashes when using Ogg/Vorbis encoded sound files.
See the bundled READMII.txt file for more information.
PSP port: (Also forgot to mention in 1.1.0)
- Added plugin support which allows the PSP Phat to run every game.
- Added a new virtual keyboard optimized for rapid D-Pad input.
1.1.0 (2010-04-04)
New Games:
- Added support for Blue's Art Time Activities.
- Added support for Blue's Reading Time Activities.
- Added support for Freddi Fish 5: The Case of the Creature of Coral Cove.
- Added support for Pajama Sam: Games to Play on Any Day.
- Added support for SPY Fox 3: Operation Ozone.
- Added support for Dragon History.
- Added support for TeenAgent.
General:
- Added support for a custom SJIS font for FM-TOWNS and PC98 games.
- Added support for 16bit graphics. (GSoC Task)
- Removed QuickTime MIDI backend on Mac OS X; it was buggy and did not
compile on modern systems.
CinE:
- Added support for Amiga style menus for Amiga versions of Future Wars.
KYRA:
- Added support for the Amiga version of The Legend of Kyrandia.
(sound support was done as a GSoC Task)
- Adapted KYRA to support the custom SJIS font.
SCUMM:
- Added support for the PC-Engine version of Loom.
- Added support for music and sound effects in the the Amiga version of
The Secret of Monkey Island. (GSoC Task)
- Fixed some other bugs related to game versions for the Amiga.
- Added support for original save/load dialog in MM NES.
- Added support for savepoint passcodes for Sega CD MI1 via debugger command 'passcode'.
- Added support for Kanji rendering in Japanese version of Monkey Island Sega CD.
1.0.0 (2009-11-15)
New Ports:
- Added MotoEZX and MotoMAGX ports.
General:
- Fixed several bugs in GUI.
- Updated the project logo and icons.
- Clarified licenses for several PS2 port files.
AGI:
- Fixed crash on game exit.
- Fixed crash at detection of some games.
AGOS:
- Fixed load/save code for PC version of Waxworks.
- Fixed undo in Puzzle Pack games.
Broken Sword 1:
- Fixed missing background sound effects in some rooms.
CinE:
- Fixed crashes with Future Wars and Operation Stealth demos.
Cruise:
- Fix freeze on game pause.
Gob:
- Fixed gfx glitch in Lost in Time.
- Fixed hotspot-related regressions in Gob2.
- Fixed several regressions in Gob3.
- Fixed crash in Bargon Attack intro.
- Fixed animations in Win3.1 version of Gob3.
Groovie:
- Fixed video performance on PSP.
- Fixed menu blanking in some instances.
Kyra:
- Fix possible corruption of restart game save in Kyrandia 1.
- Fix GFX glitch at the broken bridge.
- Fix for brandon turning invisible in some situations in Kyrandia 1.
MADE:
- Fixed performance on NDS.
- Fixed crash in Return to Zork demo.
Parallaction:
- Fixed several regressions in Nippon Safes.
- Fixed music in sushi bar in Nippon Safes.
SCUMM:
- Fixed crash on Macintosh versions of Putt-Putt Joins the Parade and Fatty
Bear's Birthday Surprise.
- Fixed game save in Macintosh versions of HE games.
- Fixed default save game path in later HE games.
- Fixed palette in NES version of Maniac Mansion.
- Fixed palette in Amiga version of Secret of Monkey Island.
- Fixed cutscenes not stopping music after pressing ESC in DIG.
- Fixed lip-sync in Fatty Bear.
- Fixed crash in FT when entering inventory.
Tinsel:
- Fixed crash in palace.
- Fixed crash when talking to the old lady.
- Fixed partially off-screen text in DW1.
NDS port:
- Added mouse pad undeneath onscreen keyboard.
- Added ability to scroll when cursor reaches edge of screen (in mouse pad
mode).
- Made cd audio read from track01.wav as well as track1.wav.
- Fixed bug with switching modes with keyboard active.
PSP port:
- Fixed video flickering and stretching in some situations.
- Improved suspend/resume support.
WinCE port:
- Improved compatibility with VGA devices.
1.0.0rc1 (2009-08-31)
New Games:
- Added support for Discworld.
- Added support for Discworld 2 - Missing Presumed ...!?.
- Added support for Return to Zork.
- Added support for Leather Goddesses of Phobos 2.
- Added support for The Manhole.
- Added support for Rodney's Funscreen.
- Added support for Cruise for a Corpse.
General:
- Added experimental AdLib emulator from DOSBox.
- Added quick search to Launcher.
- Improved modern GUI theme look.
- Added per-game GUI options.
- Improved Mass Add dialog.
New Ports:
- Added GP2X Wiz port.
AGI:
- Increased compatibility for Sierra games.
- Implemented all 'unknown' commands.
Beneath a Steel Sky:
- Changed the game speed to match the original game (previously
it ran too fast).
Broken Sword 1:
- Added support for the original cutscenes.
- Dropped support for the now obsolete MPEG2 cutscenes.
- Added support for the PlayStation version.
Broken Sword 2:
- Added support for the original cutscenes.
- Dropped support for the now obsolete MPEG2 cutscenes.
- Dropped support for playing cutscene sound without the video.
- Added support for the PlayStation version.
Gob:
- Introduced a new savegame format to fix a fatal flaw of the old one,
breaking compatibility with old savegames made on big-endian systems.
Groovie:
- Increased microscope puzzle difficulty to match original.
KYRA:
- Added support for PC Speaker based music and sound effects.
- Added support for 16 color dithering in Kyrandia PC-9801.
PSP port:
- Added support for sleep mode (suspend/resume).
WinCE port:
- Speed optimized versions of low-res Smartphone and 2x scalers.
- New aspect correction scaler for VGA (or higher) devices.
- Dropped support for MPEG-2 and FLAC.
0.13.1 (2009-04-27)
AGOS:
- Fixed crash after OmniTV video is played in The Feeble Files.
- Fixed crashes when exploring Jack the Ripper scene in the PC version of
the Waxworks.
- Fixed palette glitches in the AtariST version of Elvira 2.
- Fixed noise that can occur when sound effects are played, when exploring
Pyramid scene in the Waxworks.
Gob:
- Fixed a crash in the Italian version of Woodruff.
Groovie:
- Fixed some issues with music in The 7th Guest.
Parallaction:
- Fixed the sarcophagus puzzle in Nippon Safes.
SAGA:
- Fixed a crash in Inherit the Earth.
- Fixed glitches in the save/load dialog.
Sword2:
- Fixed random sound corruption when using the original sound files.
Game launcher:
- Fixed a case where memory could be corrupted.
- Fixed the small cursor in the modern theme.
- Fixed a bug in the theme engine, which could cause crashes.
- Made the file browser bigger in 1x mode.
iPhone port:
- Fixed backspace handling on the iPhone soft keyboard.
DS port:
- Added support for the Global Main Menu feature.
PS2 port:
- Switched to the new GUI and theme code.
- All possible devices are supported to store, play and save games
(CD, HD, USB, MC and remote).
- Optimized cache/read-ahead for every media.
- Added support for the Return to Launcher feature.
Symbian port:
- Added Bluetooth mouse support.
- Added support for the Return to Launcher feature.
WinCE port:
- Fixed an issue which could cause random crashes with VGA devices.
0.13.0 (2009-02-28)
General:
- Added MIDI driver for Atari ST / FreeMint.
- Added a 'Load' button to the Launcher (not supported by all engines).
(GSoC Task)
- Added a new global main menu (GMM) dialog usable from all engines.
(GSoC Task)
- Added the ability to return to the launcher from running games (via
the GMM). (GSoC Task)
- Rewrote GUI renderer to use an vector based approach. (GSoC Task)
- Rewrote GUI configuration to use XML. (GSoC Task)
New Games:
- Added support for Blue's 123 Time Activities.
- Added support for Blue's ABC Time Activities.
- Added support for Bud Tucker in Double Trouble.
- Added support for The 7th Guest.
AGOS:
- Added support for the original cutscenes of The Feeble Files.
- Added support for text compression in the AtariST version of Elvira 1.
- Fixed combining items in Waxworks.
- Fixed display of spell descriptions in Elvira 2.
KYRA:
- Added support for Auto-save feature.
- Added support for MIDI music.
Parallaction:
- Credits of the Nippon Safes Amiga demo are now shown correctly.
SCUMM:
- Implemented radio-chatter effect in The DIG.
0.12.0 (2008-08-31)
New Games:
- Added support for The Legend of Kyrandia: Book Two: Hand of Fate.
- Added support for The Legend of Kyrandia: Book Three: Malcolm's Revenge.
- Added support for Lost in Time.
- Added support for The Bizarre Adventures of Woodruff and the Schnibble.
- Added support for the PC version of Waxworks.
- Added support for the Macintosh version of I Have no Mouth, and I
must Scream.
- Added support for Drascula: The Vampire Strikes Back.
General:
- Added CAMD MIDI driver for AmigaOS4.
- Revived the PS2 port (was already in 0.11.1 but was forgotten in the
release notes).
- Plugged numerous memory leaks in all engines (part of GSoC'08 task).
- Added audio double buffering to the SDL backend, which fixes the
problems with the MT-32 emulator on Mac OS X (for now only enabled
on Mac OS X).
AGOS:
- Fixed crashes during certain music in Amiga versions of Elvira 1 and
Simon the Sorcerer 1.
- Fixed palette issues in Amiga versions of Simon the Sorcerer 1.
Queen:
- Speech is played at the correct sample rate. (It used to be pitched a bit
too low.)
SCUMM:
- Rewrote parts of Digital iMUSE, fixing some bugs.
- Rewrote the internal timer code, fixing some speed issues in e.g. COMI.
- Improved support for sound effects in Amiga version of Zak McKracken.
- Added support for mixed AdLib/MIDI mode in Monkey Island 1 (Floppy).
0.11.1 (2008-02-29)
SCUMM:
- Improvements for Digital iMUSE subsystem. This fixes several glitches in
The Curse of Monkey Island.
- Fixes for cursors in HE games.
AGI:
- Fix for zombies in King's Quest 4.
- Fix for changing palettes in fanmade games using AGIPAL.
Lure:
- Fixed some conversation crashes in the German version.
- Fixed operation of the optional copy protection dialog in the German
version.
- Added saving of conversation flags as to whether a particular conversation
option had been previously selected or not.
- Fixed glitch that could cause transformation sparkle to happen a second
time.
- Fixed behavior of Goewin when you rejoin her after meeting the dragon.
SAGA:
- Fix for rat maze bug in Inherit the Earth which made game not completable.
- Fixes for Inherit the Earth and I Have no Mouth game startup on a number
of platforms.
- Reduced the number of simultaneous open files in I Have no Mouth, to allow
it to run on platforms that can keep a limited amount of files open (e.g.
on the PSP).
- Fixed graphics glitch in Inherit the Earth with simultaneous speech.
- Fixed palette glitch in Inherit the Earth when looking at the map while at
the docks.
0.11.0 (2008-01-15)
New Games:
- Added support for Elvira: Mistress of the Dark.
- Added support for Elvira 2: The Jaws of Cerberus.
- Added support for I Have no Mouth, and I Must Scream (demo and full game).
- Added support for preAGI game Mickey's Space Adventure.
- Added support for preAGI game Troll's Tale.
- Added support for preAGI game Winnie the Pooh in the Hundred Acre Wood.
- Added support for Amiga version of Waxworks.
- Added support for Lure of the Temptress.
New Ports:
- Added iPhone port.
- Added Maemo port for Nokia Internet tablets.
General:
- Added ARM assembly routines for code in the sound mixer and SCUMM
video playback, resulting in some nice speedups on several ports.
- Improved the way keyboard input is handled internally, resolving
some odd quirks in some game / port combinations.
- Added optional 'confirm exit' dialog to the SDL backend.
- Added support for TiMidity++ MIDI server.
- Added DMedia MIDI driver for IRIX.
- Improved detection of new game variants and localized versions.
- Completely reworked internal access to files. (GSoC Task)
- Added option to delete games from the list with Del key.
- Added support for "~/" prefix being substituted by $HOME in paths
on POSIX systems (Linux, Mac OS X etc.).
AGI:
- Added support for AGI256 and AGI256-2 hacks. (GSoC Task)
- Added support for Amiga menus and palettes. (GSoC Task)
- Better support for early Sierra AGI titles.
AGOS:
- Fixed crashes related to OmniTV playback in The Feeble Files.
- Improved work on 64-bit systems.
Broken Sword 1:
- Added support for FLAC encoded music.
Kyrandia:
- Added support for Macintosh version.
Parallaction:
- Added support for Amiga version of Nippon Safes, Inc.
- Many bugfixes.
Queen:
- Added support for AdLib music.
- Added missing music patterns playback in Amiga version.
SCUMM:
- Added subtitle skipping (via '.' key) in older games which didn't have
this feature so far (e.g. Zak, MM, Indy3, Loom).
- Added support for Chinese COMI.
- Better support for eastern versions of games.
- Various fixes for COMI and other games.
- Added support for original save menus (browse only). Use Alt-F5 to
activate.
- Added support for Spanish version of NES Maniac Mansion.
- Better support for German version of C64 Maniac Mansion.
- Fixed bug with cursors in Windows versions of Humongous Entertainment
games.
SAGA:
- Added support for compressed sound effects, voices and music.
Touche:
- Added workarounds for some glitches/issues present in the original game.
WinCE Port:
- Switched compilers again. Now using cegcc (http://cegcc.sourceforge.net/).
- Plugins now supported for WinCE (but not used in this release).
- Redesigned 'Free Look' action, mainly for the lure engine's requirements.
- Smaller optimization setting to counteract the growth of the executable.
- Various bug fixes.
GP2X Port:
- Support F200 Touchscreen.
- Various fixes to input code.
0.10.0 (2007-06-20)