summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-01-05(svn r7864) -Codechange: Offset engines/wagons in the train details window ↵peter1138
by half the train length modifier. This stops overflowing wagons in sets that use 32px lengths.
2007-01-05(svn r7861) -Fix (r7823): Crash when oldest news was deleted. First check ↵Darkvater
the index for oldest news and THEN decrease index, not the other way around.
2007-01-05(svn r7857) WebTranslator2 update to 2007-01-05 08:35:59miham
lithuanian - 2 fixed, 278 changed by Domas (280) slovenian - 11 fixed by Necrolyte (11)
2007-01-05(svn r7847) -Codechange: use NetworkUDPClose instead of calling closesocket ↵rubidium
directly.
2007-01-05(svn r7843) -Codechange (r7840): left out word 'file' making crash-text look ↵Darkvater
un-english-ish.
2007-01-04(svn r7840) -Codechange: Change the crash window a bit. Tell about Flyspray ↵Darkvater
and crash.dmp. Remove text about submitting crash report.
2007-01-04(svn r7836) -Codechange: some constness for network/core.rubidium
2007-01-04(svn r7834) -Codechange: cleanup the includes of network/core a little; ↵rubidium
include headers in headers when the header needs types/constants defined in them.
2007-01-04(svn r7833) -Fix (r7829): forgot to add debug.h to the includes.rubidium
2007-01-04(svn r7831) -Codechange: [NewGRF] Do not mark as unsafe those NewGRFs that ↵peter1138
set their own parameters (via action D) and/or change only bridge sprite table layouts (action 0, property D).
2007-01-04(svn r7830) -Codechange: let NetworkCoreInitialize return a bool, so we have ↵rubidium
to set _network_available only once.
2007-01-04(svn r7829) -Codechange: move the network (core) initialization/shutdown ↵rubidium
functions into network/core, so the can be reused in the masterserver_updater.
2007-01-04(svn r7828) WebTranslator2 update to 2007-01-04 19:28:37miham
danish - 8 changed by ThomasA (8) estonian - 101 changed by kristjans (101) italian - 1 changed by sidew (1) japanese - 17 fixed, 11 changed by PouncingAnt (28)
2007-01-04(svn r7825) -Codechange: make NetworkUDPClose close a single UDP socket. Use ↵rubidium
NetworkUDPStop to close all opened udp sockets (those were called NetworkUDPClose).
2007-01-04(svn r7823) -Fix (r7384 / r7368 / r3757 / r7388): News windows could still ↵Darkvater
cause crashes because DeleteVehicleNews shuffles around _news_items which can wreak havoc with the NewsItem* of a currently open news window. While here also correctly update _current_news and _forced_news for the same reasons. Should really work now.
2007-01-04(svn r7821) -Fix: be more strict about the socket from where packets arrive. ↵rubidium
Do not accept requests about the game server on the master/client socket, do not accept master server acks on the client/server socket, etc.
2007-01-04(svn r7819) WebTranslator2 update to 2007-01-04 07:57:17miham
japanese - 78 fixed by ickoonite (78) slovenian - 26 fixed, 317 changed by Necrolyte (343) ukrainian - 3 fixed, 2 changed by znikoz (5)
2007-01-04(svn r7818) -Fix (r7751): wrote some data to the wrong network packet.rubidium
2007-01-04(svn r7817) -Fix (r7573): Bridge merge broke building canals at level 0.Darkvater
2007-01-03(svn r7813) -Fix (r7799): it is $with_zlib, not $zlib.rubidium
2007-01-03(svn r7812) -Fix: rail station build window was not correctly updated after ↵glx
station_spread change
2007-01-03(svn r7810) -Fix: FS#504 Building airport whose size exceeds max station ↵KUDr
spread-out caused assert. (Zuu)
2007-01-03(svn r7809) -Fix: convert \r to \n before parsing files with awk in ↵glx
projects/generate so it works using mingw/msys
2007-01-03(svn r7807) [Translations] Fix: r7806. Forgot to generate project files to ↵miham
include lithuanian
2007-01-03(svn r7806) [Translations] Lithuanian is no longer unfinished, thanks for ↵miham
the current translators! Good work, keep it up!
2007-01-03(svn r7803) WebTranslator2 update to 2007-01-03 19:37:39miham
bulgarian - 5 fixed by groupsky (5) croatian - 72 fixed by knovak (72) danish - 25 changed by MiR (25) italian - 1 changed by sidew (1) norwegian - 2 fixed by oletk (2) slovenian - 241 fixed, 143 changed by Necrolyte (384)
2007-01-03(svn r7802) -Feature: make it possible to override the bind address and port ↵rubidium
of a dedicated server from the command line.
2007-01-03(svn r7801) -Feature: add command line option to prevent saving of highscore ↵rubidium
and configuration on exit and a console command to manually initiate a configuration save (Aloysha).
2007-01-03(svn r7800) -Fix (r7787): Remove Czech strings with .news or .subs case.peter1138
2007-01-03(svn r7799) -Fix (r7759): gracefully handle cases where the directory libz.a ↵rubidium
is in is given via --with-libz.
2007-01-03(svn r7797) -Codechange: Replace static _sprite_ptr and associated arrays ↵peter1138
with dynamic array to allow variable number of sprites. This does not change the sprite limit.
2007-01-03(svn r7796) -Fix (r7759): cygwin does not need to rewrite the paths for strgen.rubidium
-Fix (r7759): supply the correct flags to cygwin to make it compile. Note: cygwin itself is 'broken'. Known issues with cygwin are: - bash does not work when including files that have dos line ending (\r\n). This causes the strange errors in config.lib. The solution is running: dos2unix config.lib - the windows-native svn does not work (though it previously did). The solution for this is to install the cygwin svn. - libfreetype2's freetype-config --cflags does not have ft2build.h in the path include search path. The workaround for this is to copy /usr/include/ft2build.h to /usr/include/freetype2/. Also linking does not work for static builds as freetype-config does not support that. You have to add the '--disable-static' flag when running './configure'. - libpng12 does not work with static building either. You have to add the '--disable-static' flag when running './configure' too.
2007-01-03(svn r7795) -Codechange: [NewGRF] When safety checking, allow an Action E ↵peter1138
that force activates the GRF. Unfortunately this requires knowing the GRF ID in advance (before the Action 8) so the static GRFs are now scanned twice on start up, once for the GRF ID, and then for the safety check. (This fix allows unifont.grf to be used.)
2007-01-03(svn r7794) -Cleanup: Remove obsolete, never-used landscape rotation code. ↵peter1138
And spell obsolete correctly.
2007-01-03(svn r7793) -Cleanup: Remove obsolute, never-used old spritecache LRU codepeter1138
2007-01-03(svn r7788) -Fix (r7759): do not stop compiling languages when one language ↵rubidium
fails to compile.
2007-01-03(svn r7787) WebTranslator2 update to 2007-01-03 07:49:50miham
czech - 2 changed by joeprusa (2) danish - 80 changed by MiR (80) esperanto - 1 fixed, 3 changed by LaPingvino (4) estonian - 54 changed by kristjans (54) japanese - 177 fixed, 65 changed by ickoonite (242) lithuanian - 57 changed by Domas (57) slovenian - 38 fixed, 262 changed by Necrolyte (300)
2007-01-03(svn r7782) -Fix (r7779): do really check whether there are files to copy in ↵rubidium
the directories, not just test whether the directories exist.
2007-01-02(svn r7780) [Configure] -Fix: strip before copy, not copy before striptruelight
2007-01-02(svn r7779) [Configure] -Fix: simplify scenario and scenario/heightmaps dir ↵glx
existance check
2007-01-02(svn r7778) -Fix (r7777): intel -> Inteltruelight
2007-01-02(svn r7777) [Configure] -Fix: call intel builds on OSX universal compiles ↵truelight
intel, not i386 (that is just silly)
2007-01-02(svn r7776) [Configure] -Fix: no need to show LIPO actions, use $(Q)truelight
2007-01-02(svn r7775) -Fix (r7759): make ./configure --help lines at most 80 charactersrubidium
2007-01-02(svn r7774) -Fix (r7759): remove the left-over strgen directory.rubidium
2007-01-02(svn r7773) -(r7759) Update MSVC documentation for (mainly) VS2003 users ↵Darkvater
(needs special human intervention to work because MS decided to use some completely braindead user-datafile that you can't edit outside the development environment)
2007-01-02(svn r7772) -Fix (r7759): [win32] Paths to icon files were wrong.Darkvater
2007-01-02(svn r7771) -Fix: [OSX] make bundle no longer copies ↵bjarni
docs/OSX_why_multiple_applications.txt, since we no longer got that outdated file
2007-01-02(svn r7770) [Configure] -Fix: the "" and \ via ./configure wasn't passed on ↵truelight
correctly (and therefor it was lost)
2007-01-02(svn r7769) -Fix (r7759): the strgen -t flag (todo) was set when it ↵rubidium
shouldn't be set and vice-versa.