aboutsummaryrefslogtreecommitdiff
path: root/devtools
AgeCommit message (Collapse)Author
2017-07-25DEVTOOLS: Add missing comma in create_titanic German stringsPaul Gilbert
2017-07-18DEVTOOLS: Correct misspelling in create_titanic, thanks to LightkeyPaul Gilbert
2017-07-17DEVTOOLS: Added German string translations to create_titanicPaul Gilbert
Thanks go to Joe Winzer for his work
2017-07-02BUILD: Add titanic.dat files to the list of engines data filesThierry Crozat
2017-06-24CREATE_PROJECT: Add fix for nested ifsTobia Tesan
This adds a quick fix so that any if blocks nested inside a if block with an unmet condition are handled with push(false) even if their condition is satisfied. For example, without this modification, upon running create_project.exe --msvc --disable-cloud --enable-libcurl the block inside ifdef USE_CLOUD ifdef USE_LIBCURL ... endif endif in backends/module.mk would get evaluated since it was inside USE_LIBCURL (=1), leading to unpredictable results.
2017-06-18DEVTOOLS: Fix incorrect argc checks in create_titanicPaul Gilbert
2017-06-18DEVTOOLS: Yet another Superst correction in create_titanicPaul Gilbert
2017-06-18DEVTOOLS: Further minor German fixes to create_titanic, thanks to LightkeyPaul Gilbert
2017-06-18DEVTOOLS: Further minor German fixes to create_titanic, thanks to LightkeyPaul Gilbert
2017-06-18DEVTOOLS: Added extra German NPC data to create_titanicPaul Gilbert
2017-06-17DEVTOOLS: Add extra German EXE resources to create_titanicPaul Gilbert
2017-06-17DEVTOOLS: Added Bellbot common phrases to create_titanicPaul Gilbert
2017-06-17DEVTOOLS: Added German MissiveOMat data to create_titanicPaul Gilbert
2017-06-16DEVTOOLS: More create_titanic German corrections thanks to LightkeyPaul Gilbert
2017-06-16DEVTOOLS: Fix incorrect German text in create_titanicPaul Gilbert
2017-06-16DEVTOOLS: Add missing /DE suffix to German resource in create_titanicPaul Gilbert
2017-06-16DEVTOOLS: Add German pronoun list to create_titanicPaul Gilbert
2017-06-16DEVTOOLS: Add German parser strings to create_titanicPaul Gilbert
2017-04-18JANITORIAL: Remove superfluous semicolonsTorbjörn Andersson
2017-03-29DEVTOOLS: Add tooltip to create_titanic for skipping nav puzzlePaul Gilbert
2017-03-29CREDITS: Add credits for LabThierry Crozat
2017-03-29CREDITS: Add snover as contributor for the SCI engineThierry Crozat
2017-03-29CREDITS: Move access engine credits to its proper placeThierry Crozat
2017-03-29CREDITS: Add credits for FullpipeThierry Crozat
2017-03-29CREDITS: Add credits for ADL engineThierry Crozat
2017-03-25BLADERUNNER: Added credits for Blade RunnerPeter Kohaut
2017-03-14PSP2: Add credits for Vita portrsn8887
2017-03-11DEVTOOLS: Made encode-macbinary.sh recursiveEugene Sandulenko
2017-03-10CREATE_PROJECT: Support for a different target build directory in CMakePeter Kohaut
2017-03-08CREATE_PROJECT: Fixed solution version for Visual Studio 2015Peter Kohaut
2017-03-08CREATE_PROJECT: Add support for Visual Studio 2017Peter Kohaut
2017-02-12CREATE_PROJECT: Add data files for access, cryo and macventure in Xcode projectsThierry Crozat
2017-02-12DEVTOOLS: Add create_cryo to devtools READMEThierry Crozat
2017-02-11Merge pull request #899 from bluegr/cryo_datFilippos Karapetis
CRYO: Move all static engine data into cryo.dat
2017-02-11CRYO: Fix typo in create_cryoFilippos Karapetis
2017-02-11CRYO: Add missing int32 typedef to create_cryoFilippos Karapetis
2017-02-11CRYO: Change the version of cryo.dat to be a 32-bit integer (1/2)Filippos Karapetis
Though it's unlikely that we'll ever have that many changes, it's better to provision for more space now, for versioning
2017-02-11CRYO: Remove one more usage of sizeof()Filippos Karapetis
2017-02-11CRYO: Move more static data to cryo.dat (1/2)Filippos Karapetis
2017-02-11CRYO: Wrap enums around namespaces, to use EnumName::EnumValueFilippos Karapetis
2017-02-10DEVTOOLS: Add music parser strings to create_titanicPaul Gilbert
2017-02-10CRYO: Move all static data for Lost Eden to cryo.dat (1/2)Filippos Karapetis
2017-02-10CRYO: Rename create_led_dat to create_cryo_datFilippos Karapetis
2017-02-10CRYO: Add ID and versioning to cryo.datFilippos Karapetis
2017-02-10Revert "CRYO: Add ID and versioning to cryo.dat"Filippos Karapetis
This reverts commit 4858b3fc5836dbf2f33fe0d1452bf0cb3a9f75b2.
2017-02-10Revert "CRYO: Rename create_led_dat to create_cryo_dat"Filippos Karapetis
This reverts commit 1db02c7bd8ffee2aa0a27264669d11f83d95b491.
2017-02-10CRYO: Rename create_led_dat to create_cryo_datFilippos Karapetis
2017-02-10CRYO: Add ID and versioning to cryo.datFilippos Karapetis
2017-02-10CREATE_PROJECT: Also silence warning 4100 in MSVCFilippos Karapetis
Some formal function parameters are not used in all overloaded functions, which results in loads of 4100 warnings when building CREATE_PROJECT. This change silences warning 4100 together with the others
2017-02-07Merge pull request #896 from criezy/create-project-fixesEugene Sandulenko
DEVTOOLS: Create project fixes