aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-15MAEMO: Set defaults for fullscreen and aspect ratio correctionTarek Soliman
New installs now have fullscreen and aspect ratio correction on by default
2012-07-14MAEMO: Fix compile without keymapperTarek Soliman
2012-07-15TEENAGENT: Add translatable strings in resources.cppFilippos Karapetis
2012-07-15TEENAGENT: Show a verbose warning when a compressed data file is used and ↵Filippos Karapetis
zlib hasn't been included in the executable
2012-07-15TEENAGENT: Readd the zlib code, to maintain backwards compatibilityFilippos Karapetis
2012-07-15TEENAGENT: Unpack teenagent.dat and remove the engine's zlib dependencyFilippos Karapetis
This addresses bug #3539822 - "TEENAGENT: Not working without zlib"
2012-07-15SCI: Properly detect the Polish version of KQ5Filippos Karapetis
Thanks to jacek909 for the extra MD5 checksums of the Polish version. This fixes bugs #2725722 (Polish version checksums) and #3536863 (SCI: KQ5 Floppy English detected as Polish)
2012-07-14CREATE_PROJECT: Output Groups and File references in XCode providerLittleboy
2012-07-14LASTEXPRESS: Replace CALLBACK_ACTION macro by member functionLittleboy
2012-07-14LASTEXPRESS: Fix sound in animated sequencesLittleboy
2012-07-14LASTEXPRESS: CleanupLittleboy
- Add missing initializer/destructors - Add some const modifiers - Remove some unneeded casts - Use enumeration values in switch constructs
2012-07-14LASTEXPRESS: Remove duplicated include statementsLittleboy
2012-07-14CREATE_PROJECT: Disable SAFESEH in debug mode (for edit and continue)Littleboy
2012-07-14BACKENDS: Silence warning about ARRAYSIZE in windows-savesLittleboy
2012-07-14CREATE_PROJECT: Add freetype dll to copied files in postbuild scriptLittleboy
2012-07-14CREATE_PROJECT: Add support for Visual Studio 2012 project creationLittleboy
2012-07-14CREATE_PROJECT: Properly disable Edit and Continue in Debug modeLittleboy
2012-07-14CREATE_PROJECT: Add Visual Studio 2012 projectLittleboy
2012-07-14TINSEL: CleanupFilippos Karapetis
2012-07-13I18N: Regenerate translations data fileThierry Crozat
2012-07-13I18N: Update French translationThierry Crozat
2012-07-13I18N: Update Czech translation and README from patch #3541613Thierry Crozat
2012-07-13Merge pull request #254 from SteveNew/masterThierry Crozat
Updated da_DA.po file
2012-07-11TINSEL: Added MD5 detection entries for Discworld 1 Polish translationPaul Gilbert
2012-07-11TSAGE: Fix for bug #3541354 - Nico shooting player after being tied upPaul Gilbert
2012-07-10MAEMO: Update debian/changelogTarek Soliman
2012-07-10NEWS: Mention Maemo port changesTarek Soliman
2012-07-09Updated da_DA fileSteffen Nyeland
2012-07-09I18N: Regenerate translations data fileThierry Crozat
2012-07-09I18N: Update Italian translationThierry Crozat
This was sent by Matteo by email.
2012-07-09I18N: Update Hungarian translation from patch #3541507Thierry Crozat
2012-07-09MOHAWK: Restart anims when LiveText plays them.Alyssa Milburn
2012-07-09TINSEL: Fix bug #3541230 - "DW: PSX version locks up after using the book"Filippos Karapetis
Removed the superfluous MIDI offset storing code. Now, the MIDI buffer is re-read when the music loops. This removes a static variable and also fixes another bug in the SEQ decoder.
2012-07-09SCI: Update comments in kGetAngleWorker()Filippos Karapetis
2012-07-08I18N: Regenerate translations data fileThierry Crozat
2012-07-08I18N: Update Spanish translation from patch #3541399Thierry Crozat
2012-07-08I18N: Update Swedish translation from patch #3541394Thierry Crozat
2012-07-08NEWS: Remove OpenGL entry in 1.5.0 news section.Johannes Schickel
2012-07-08RELEASE: This is 1.6.0gitEugene Sandulenko
2012-07-08I18N: Updated translations.datEugene Sandulenko
2012-07-08I18N: Updated Russian and Ukrainian translationsEugene Sandulenko
2012-07-08SCI: Also set the filename of the videoState struct when playing AVIsFilippos Karapetis
2012-07-08SCI: Fix a typo and add some comments to kGetAngleWorker()Filippos Karapetis
2012-07-08SCI: Ignore another leftover script from KQ7 in the debuggerFilippos Karapetis
2012-07-08NEWS: V1 composer games aren't supported yet.Alyssa Milburn
2012-07-08MOHAWK: Play anims for LiveText items *after* the speech.Alyssa Milburn
Another attempt at fixing bug #3541294.
2012-07-08SCI: Add another English floppy version of KQ5 (bug #3536863)Filippos Karapetis
According to this bug report, there exists another English version with the same file checksums as the vanilla English version, patched to Polish. We need a better way of distinguishing the two versions. Until we do, this is a duplicate entry of the Polish floppy version
2012-07-08SCI: Show information for correct file naming in the QFG4 import roomFilippos Karapetis
This information is shown in previous QFG versions, but it had to be placed in a SCI32 graphics function in order to be shown in QFG4 too
2012-07-08SCI: Update the virtual file selected in the QFG4 character import screenFilippos Karapetis
This makes the character import screen in QFG4 functional, as the virtual file index was never updated
2012-07-08SCI: Add a hack in kGetAngleWorker to fix bug #3540976Filippos Karapetis
kGetAngle(Worker) has been implemented based on behavior observed with a test program created with SCI Studio. However, the return values have subtle differences from the original, which uses atan(). This temporary hack will do for now till the implementation of kGetAngle is done again. A simpler atan2-based implementation has also been added for future reference