9c55307629
(svn r26757) -Update from WebTranslator v3.0: afrikaans - 1 changes by telanus catalan - 1 changes by juanjo
translators
2014-08-23 17:45:42 +00:00
5853f9c714
(svn r26756) -Fix (r26747): Ground vehicle breakdown smoke was not supposed to be available yet, since it is a looping animation.
frosch
2014-08-23 13:31:20 +00:00
52fd95915a
(svn r26756) -Fix (r26747): Ground vehicle breakdown smoke was not supposed to be available yet, since it is a looping animation.
frosch
2014-08-23 13:31:20 +00:00
cc691caad5
(svn r26717) [1.4] -Backport from trunk: - Fix: CMD_CLEAR_ORDER_BACKUP should not be suppressed by pause modes (r26716) - Fix: Discard incorrectly saved order backups when clients join [FS#6066] (r26700)
frosch
2014-08-03 15:04:09 +00:00
661a627768
(svn r26715) [1.4] -Backport from trunk: - Fix: [NewGRF] Parameters to SCC_NEWGRF_PUSH_WORD and SCC_NEWGRF_UNPRINT were not skipped during drawing (r26713) - Fix: [OSX] Compilation fails with some lzo2 versions, if __LP64__ is defined to 0 instead of checking whether it is defined [FS#6069] (r26709) - Codechange: Use awk instead of trying to convince cpp to preprocess nfo files (r26708) - Fix: Wrong breakdown sound was played for ships [FS#6015] (r26706)
frosch
2014-08-03 14:06:04 +00:00
c36da8082a
(svn r26714) [1.4] -Backport from trunk: - Fix: Integer overflows in acceleration code causing either too low acceleration or too high acceleration [FS#6067] (r26702) - Fix: Do not crash when trying to show an error about vehicle in a NewGRF and the NewGRF was not loaded at all (r26699) - Fix: Tighten parameter bound checks on GSCargoMonitor functions, and return -1 on out-of-bound parameters (r26685)
frosch
2014-08-03 14:03:07 +00:00
011591351d
(svn r26710) [1.4] -Backport from trunk: language updates
rubidium
2014-07-31 06:18:10 +00:00
74f5fe212c
(svn r26670) [1.4] -Backport from trunk: - Fix: CargoPacket::SourceStation() returns a StationID (r26660) - Fix: Production cheat cannot be allowed to be active in multiplayer for desync reasons, even when activated in singleplayer previously [FS#6044] (r26656) - Fix: Make sure an 'abs' is used that supports int64 when using 'abs' on those variables (r26651) - Fix: Support save/load chunk lengths of up to (1 << 32) - 1 [FS#6041] (r26650)
frosch
2014-07-01 20:13:23 +00:00
369711755b
(svn r26668) [1.4] -Backport from trunk: - Fix: Days in dates are not represented by ordinal numbers in all languages [FS#6047] - Language updates
rubidium
2014-06-29 17:58:58 +00:00
4548230987
(svn r26653) [1.4] -Backport from trunk: - Fix: Incorrect usage of string commands in the base language [FS#6037] (r26642, r26640, r26639, r26632)
frosch
2014-06-17 19:14:59 +00:00
b702e94d70
(svn r26652) [1.4] -Backport from trunk: - Fix: Segmentation fault when encountering a .obg/.obs/.obm with empty string/zero length MD5 checksums [FS#6038] (r26637) - Fix: The 'Load' button was not properly enabled/disabled for old savegames without NewGRF information (r26634) - Fix: If the video driver fails to supply a list of resolutions, display an error message [FS#6012] (r26629)
frosch
2014-06-17 19:08:07 +00:00
0d561bcf57
(svn r26742) -Doc: Why reverse_iterator is unsuitable for ScriptList iterators
frosch
2014-08-16 20:40:26 +00:00
98c4648d20
(svn r26742) -Doc: Why reverse_iterator is unsuitable for ScriptList iterators
frosch
2014-08-16 20:40:26 +00:00
c775ffe530
(svn r26741) -Revert (r26736): reverse_iterators are invalidated when the element next to them is erased (not the element they are pointing to), which makes them unsuitable for ScriptList.
frosch
2014-08-16 20:37:33 +00:00
7d1e17bdb5
(svn r26741) -Revert (r26736): reverse_iterators are invalidated when the element next to them is erased (not the element they are pointing to), which makes them unsuitable for ScriptList.
frosch
2014-08-16 20:37:33 +00:00
fcb9d433f5
(svn r26738) -Update from WebTranslator v3.0: catalan - 23 changes by juanjo simplified_chinese - 50 changes by siu238X traditional_chinese - 82 changes by siu238X english_US - 49 changes by Supercheese norwegian_bokmal - 2 changes by cuthbert russian - 47 changes by Lone_Wolf slovak - 1 changes by Milsa
translators
2014-08-16 17:46:36 +00:00
f5d0b935c1
(svn r26738) -Update from WebTranslator v3.0: catalan - 23 changes by juanjo simplified_chinese - 50 changes by siu238X traditional_chinese - 82 changes by siu238X english_US - 49 changes by Supercheese norwegian_bokmal - 2 changes by cuthbert russian - 47 changes by Lone_Wolf slovak - 1 changes by Milsa
translators
2014-08-16 17:46:36 +00:00
d60b2d04e4
(svn r26737) -Fix (r26735): one = too many... why can't all languages use the same basic definition for comparisons?
rubidium
2014-08-16 10:31:24 +00:00
a290f4a6fb
(svn r26737) -Fix (r26735): one = too many... why can't all languages use the same basic definition for comparisons?
rubidium
2014-08-16 10:31:24 +00:00
d733c7d196
(svn r26736) -Fix [Script]: infinite loop (by scripts; always returning the same item) when sorted by item in descending order by oddly constructed FindNext that uses forward iterators. Simply use the same code as the ascending item sort but use the reverse iterator instead of the forward. Also do this same trick for the descending value sort even though I couldn't trigger the problem there
rubidium
2014-08-16 10:20:15 +00:00
54ad0d342f
(svn r26736) -Fix [Script]: infinite loop (by scripts; always returning the same item) when sorted by item in descending order by oddly constructed FindNext that uses forward iterators. Simply use the same code as the ascending item sort but use the reverse iterator instead of the forward. Also do this same trick for the descending value sort even though I couldn't trigger the problem there
rubidium
2014-08-16 10:20:15 +00:00
f4a381f991
(svn r26735) -Fix (rmakefilerewrite): for profiling CFLAGS got a -p (for prof) and LDFLAGS got -pg (for gprof), but in the end gprof would be used (via make run-prof). Furthermore -pg isn't compatible with -fomit-frame-pointer on certain architectures (most importantly x86(_64)), so simply don't enable that flag when profiling is enabled
rubidium
2014-08-16 10:17:18 +00:00
bbe58ca737
(svn r26735) -Fix (rmakefilerewrite): for profiling CFLAGS got a -p (for prof) and LDFLAGS got -pg (for gprof), but in the end gprof would be used (via make run-prof). Furthermore -pg isn't compatible with -fomit-frame-pointer on certain architectures (most importantly x86(_64)), so simply don't enable that flag when profiling is enabled
rubidium
2014-08-16 10:17:18 +00:00
c25b0a0ad4
(svn r26734) -Fix-ish: make clear the AI/GS List's Begin and Next return the item, not the value
rubidium
2014-08-16 10:05:57 +00:00
a9367c0219
(svn r26734) -Fix-ish: make clear the AI/GS List's Begin and Next return the item, not the value
rubidium
2014-08-16 10:05:57 +00:00
53e7138a2e
(svn r26733) -Fix [FS#6086]: inconsistency in using spaces between number and unit in some strings Try to follow the SI recommendation to use a non-breaking space between a number and its units (and prefix)
rubidium
2014-08-15 20:14:48 +00:00
213b0613c7
(svn r26733) -Fix [FS#6086]: inconsistency in using spaces between number and unit in some strings Try to follow the SI recommendation to use a non-breaking space between a number and its units (and prefix)
rubidium
2014-08-15 20:14:48 +00:00
03551d2b35
(svn r26732) -Fix [FS#6083]: do not reset the last selected airport or layout (unless it is really necessary)
rubidium
2014-08-15 19:41:57 +00:00
554eec1129
(svn r26732) -Fix [FS#6083]: do not reset the last selected airport or layout (unless it is really necessary)
rubidium
2014-08-15 19:41:57 +00:00
cee3a4861c
(svn r26731) -Update from WebTranslator v3.0: afrikaans - 6 changes by telanus belarusian - 3 changes by KorneySan catalan - 5 changes by juanjo korean - 2 changes by telk5093 russian - 2 changes by Lone_Wolf
translators
2014-08-15 17:47:51 +00:00
a7f020e8ef
(svn r26731) -Update from WebTranslator v3.0: afrikaans - 6 changes by telanus belarusian - 3 changes by KorneySan catalan - 5 changes by juanjo korean - 2 changes by telk5093 russian - 2 changes by Lone_Wolf
translators
2014-08-15 17:47:51 +00:00
6803eeece7
(svn r26730) -Update from WebTranslator v3.0: afrikaans - 6 changes by telanus croatian - 2 changes by VoyagerOne dutch - 2 changes by habell finnish - 2 changes by jpx_ german - 3 changes by planetmaker lithuanian - 2 changes by Stabilitronas swedish - 1 changes by spacejens
translators
2014-08-14 17:47:03 +00:00
7de8318125
(svn r26730) -Update from WebTranslator v3.0: afrikaans - 6 changes by telanus croatian - 2 changes by VoyagerOne dutch - 2 changes by habell finnish - 2 changes by jpx_ german - 3 changes by planetmaker lithuanian - 2 changes by Stabilitronas swedish - 1 changes by spacejens
translators
2014-08-14 17:47:03 +00:00
87dd209784
(svn r26729) -Feature: Warn about missing industries after generating a map.
alberth
2014-08-13 19:31:45 +00:00
db47d62069
(svn r26729) -Feature: Warn about missing industries after generating a map.
alberth
2014-08-13 19:31:45 +00:00
aaf44731fb
(svn r26728) -Update from WebTranslator v3.0: croatian - 1 changes by VoyagerOne
translators
2014-08-12 17:45:22 +00:00
e15f2b8457
(svn r26728) -Update from WebTranslator v3.0: croatian - 1 changes by VoyagerOne
translators
2014-08-12 17:45:22 +00:00
33bbe15f62
(svn r26727) -Update from WebTranslator v3.0: english_US - 1 changes by Supercheese finnish - 1 changes by jpx_ polish - 6 changes by p0358
translators
2014-08-11 17:45:47 +00:00
0b02513cc9
(svn r26727) -Update from WebTranslator v3.0: english_US - 1 changes by Supercheese finnish - 1 changes by jpx_ polish - 6 changes by p0358
translators
2014-08-11 17:45:47 +00:00
46e8735442
(svn r26726) -Update from WebTranslator v3.0: afrikaans - 4 changes by telanus catalan - 1 changes by juanjo russian - 1 changes by Lone_Wolf
translators
2014-08-10 17:45:52 +00:00
04a6430e97
(svn r26726) -Update from WebTranslator v3.0: afrikaans - 4 changes by telanus catalan - 1 changes by juanjo russian - 1 changes by Lone_Wolf
translators
2014-08-10 17:45:52 +00:00
4bf854f9e1
(svn r26725) -Fix: String pointed the user to a non-existent group of settings.
alberth
2014-08-10 12:52:23 +00:00
c562fbc539
(svn r26725) -Fix: String pointed the user to a non-existent group of settings.
alberth
2014-08-10 12:52:23 +00:00
35f671229b
(svn r26724) -Fix[FS#6077] Use the normal search path to look for xdg-open at Unix (kernigh2)
alberth
2014-08-09 19:39:14 +00:00
fa4996feef
(svn r26724) -Fix[FS#6077] Use the normal search path to look for xdg-open at Unix (kernigh2)
alberth
2014-08-09 19:39:14 +00:00
be4bbf7dd9
(svn r26723) -Fix[FS#5997]: Properly check for cargo acceptance of houses.
alberth
2014-08-09 19:32:51 +00:00
633ac888f6
(svn r26723) -Fix[FS#5997]: Properly check for cargo acceptance of houses.
alberth
2014-08-09 19:32:51 +00:00
258e510141
(svn r26722) -Update from WebTranslator v3.0: malay - 3 changes by TheITChap norwegian_bokmal - 1 changes by
translators
2014-08-07 17:45:31 +00:00
46520308c4
(svn r26722) -Update from WebTranslator v3.0: malay - 3 changes by TheITChap norwegian_bokmal - 1 changes by
translators
2014-08-07 17:45:31 +00:00
da84fcfcae
(svn r26721) -Update from WebTranslator v3.0: korean - 3 changes by telk5093 norwegian_bokmal - 1 changes by
translators
2014-08-05 17:45:43 +00:00
871630f3ae
(svn r26721) -Update from WebTranslator v3.0: korean - 3 changes by telk5093 norwegian_bokmal - 1 changes by
translators
2014-08-05 17:45:43 +00:00
c3a6d8d56e
(svn r26720) -Update from WebTranslator v3.0: arabic_egypt - 38 changes by ahm_ijal norwegian_bokmal - 1 changes by slovak - 1 changes by Milsa
translators
2014-08-03 17:45:30 +00:00
a56e57fa0f
(svn r26720) -Update from WebTranslator v3.0: arabic_egypt - 38 changes by ahm_ijal norwegian_bokmal - 1 changes by slovak - 1 changes by Milsa
translators
2014-08-03 17:45:30 +00:00
b996c24387
(svn r26716) -Fix: CMD_CLEAR_ORDER_BACKUP should not be suppressed by pause modes.
frosch
2014-08-03 14:26:32 +00:00
592cf107d1
(svn r26716) -Fix: CMD_CLEAR_ORDER_BACKUP should not be suppressed by pause modes.
frosch
2014-08-03 14:26:32 +00:00
9119ebe2ce
(svn r26713) -Fix (r23027): [NewGRF] Parameters to SCC_NEWGRF_PUSH_WORD and SCC_NEWGRF_UNPRINT were not skipped during drawing.
frosch
2014-08-03 11:59:07 +00:00