mirror of https://github.com/OpenTTD/OpenTTD
(svn r22261) [1.1] -Prepare: for 1.1.0-RC3
parent
71d169ffd3
commit
c1c35b5ac5
|
@ -1,3 +1,16 @@
|
||||||
|
1.1.0-RC3 (2011-03-18)
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
- Fix: New game settings were applied to early when starting a game via a heightmap. [FS#4557] (r22259)
|
||||||
|
- Fix: Do not resort town, industry and signs list directly in OnInvalidateData(). There might be a scheduled rebuild which needs execution first. So, only set a trigger for resorting [FS#4546] (r22249, r22248, r22247, r22246, r22245, r22244, r22243, r22242, r22241, r22236, r22228, r22227, r22226)
|
||||||
|
- Fix: [NewGRF] Object variable 0x48 was not available in callback 0x15C (r22231)
|
||||||
|
- Fix: Compilation when compiling with --disable-ai (r22222)
|
||||||
|
- Fix: When downloading a file via HTTP failed mid-way and OpenTTD fell back to the old system the partial downloaded amount would be counted twice [FS#4543] (r22208)
|
||||||
|
- Fix: The 'center' (for movement) of vehicles is (currently still) always at 4/8th original vehicle length from the front, so trains should stop at the same location regardless of the length of the front engine [FS#4545] (r22206)
|
||||||
|
- Fix: Make the base costs for building and demolishing NewObjects also local to the individual NewGRFs (r22204)
|
||||||
|
- Fix: Removing a station order could stop when removing first automatic order (r22200)
|
||||||
|
- Fix: Invalidate the object build window when using the date cheat (r22193)
|
||||||
|
|
||||||
|
|
||||||
1.1.0-RC2 (2011-03-04)
|
1.1.0-RC2 (2011-03-04)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
- Fix: Following a vehicle with a very high VehicleID was impossible (r22181)
|
- Fix: Following a vehicle with a very high VehicleID was impossible (r22181)
|
||||||
|
@ -98,7 +111,7 @@
|
||||||
- Fix: The town window would not be invalidated in the scenario editor if the ground changed and thus the required cargos for town growth [FS#4554] (r21929)
|
- Fix: The town window would not be invalidated in the scenario editor if the ground changed and thus the required cargos for town growth [FS#4554] (r21929)
|
||||||
- Fix: Converting an expensive rail type to a cheap one could give more money than removing and rebuilding cost (r21919)
|
- Fix: Converting an expensive rail type to a cheap one could give more money than removing and rebuilding cost (r21919)
|
||||||
- Fix: Languages improperly sorted in the 'start server' window [FS#4443] (r21918)
|
- Fix: Languages improperly sorted in the 'start server' window [FS#4443] (r21918)
|
||||||
- Fix: the minimum speed needed for (realistic) acceleration to work properly can sometimes be more than the (temporary) maximum speed causing Clamp to 'fail'. Make sure that the minimum speed always overrules the maximum speed [FS#4442] (r21916)
|
- Fix: The minimum speed needed for (realistic) acceleration to work properly can sometimes be more than the (temporary) maximum speed causing Clamp to 'fail'. Make sure that the minimum speed always overrules the maximum speed [FS#4442] (r21916)
|
||||||
- Fix: Include the capacity of non-refittable vehicles in the refitted-capacity, if their cargo matches (r21904)
|
- Fix: Include the capacity of non-refittable vehicles in the refitted-capacity, if their cargo matches (r21904)
|
||||||
- Fix: Do not count articulated parts when passing the number of vehicles to refit to the command. That may exceed 8 bits (r21902)
|
- Fix: Do not count articulated parts when passing the number of vehicles to refit to the command. That may exceed 8 bits (r21902)
|
||||||
- Fix: [NoAI] Hide automatic orders from AIs as they have no way of dealing with them (r21900)
|
- Fix: [NoAI] Hide automatic orders from AIs as they have no way of dealing with them (r21900)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
OpenTTD's known bugs
|
OpenTTD's known bugs
|
||||||
Last updated: 2011-03-04
|
Last updated: 2011-03-18
|
||||||
Release version: 1.1.0-RC2
|
Release version: 1.1.0-RC3
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
openttd (1.1.0~RC3) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release 1.1.0-RC3
|
||||||
|
|
||||||
|
-- Matthijs Kooijman <matthijs@stdin.nl> Fri, 18 Mar 2011 22:00:00 +0100
|
||||||
|
|
||||||
openttd (1.1.0~RC2) unstable; urgency=low
|
openttd (1.1.0~RC2) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release 1.1.0-RC2
|
* New upstream release 1.1.0-RC2
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
set OPENTTD_VERSION=1.1.0-RC2
|
set OPENTTD_VERSION=1.1.0-RC3
|
||||||
set OPENSFX_VERSION=0.8.0
|
set OPENSFX_VERSION=0.8.0
|
||||||
set NOSOUND_VERSION=0.8.0
|
set NOSOUND_VERSION=0.8.0
|
||||||
set OPENGFX_VERSION=0.7.0
|
set OPENGFX_VERSION=0.7.0
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
!define APPV_MAJOR 1
|
!define APPV_MAJOR 1
|
||||||
!define APPV_MINOR 1
|
!define APPV_MINOR 1
|
||||||
!define APPV_MAINT 0
|
!define APPV_MAINT 0
|
||||||
!define APPV_BUILD 6
|
!define APPV_BUILD 7
|
||||||
!define APPV_EXTRA "-RC2"
|
!define APPV_EXTRA "-RC3"
|
||||||
|
|
||||||
!define APPNAME "OpenTTD" ; Define application name
|
!define APPNAME "OpenTTD" ; Define application name
|
||||||
!define APPVERSION "${APPV_MAJOR}.${APPV_MINOR}.${APPV_MAINT}${APPV_EXTRA}" ; Define application version
|
!define APPVERSION "${APPV_MAJOR}.${APPV_MINOR}.${APPV_MAINT}${APPV_EXTRA}" ; Define application version
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
OpenTTD readme
|
OpenTTD readme
|
||||||
Last updated: 2011-03-04
|
Last updated: 2011-03-18
|
||||||
Release version: 1.1.0-RC2
|
Release version: 1.1.0-RC3
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1339,6 +1339,7 @@ STR_CONFIG_SETTING_VEHICLES_TRAINS :{ORANGE}Trajnoj
|
||||||
STR_CONFIG_SETTING_ECONOMY_TOWNS :{ORANGE}Urboj
|
STR_CONFIG_SETTING_ECONOMY_TOWNS :{ORANGE}Urboj
|
||||||
STR_CONFIG_SETTING_ECONOMY_INDUSTRIES :{ORANGE}Industrioj
|
STR_CONFIG_SETTING_ECONOMY_INDUSTRIES :{ORANGE}Industrioj
|
||||||
|
|
||||||
|
|
||||||
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS :{LTBLUE}Padtrovilo por trajnoj: {ORANGE}{STRING}
|
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS :{LTBLUE}Padtrovilo por trajnoj: {ORANGE}{STRING}
|
||||||
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_NPF :NPF
|
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_NPF :NPF
|
||||||
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_YAPF :YAPF {BLUE}(Rekomendite)
|
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_YAPF :YAPF {BLUE}(Rekomendite)
|
||||||
|
|
|
@ -1076,7 +1076,6 @@ STR_ECONOMY_FLUCTUATING :Fluctuant
|
||||||
|
|
||||||
STR_REVERSE_AT_END_OF_LINE_AND_AT_STATIONS :À la fin de la ligne et aux gares
|
STR_REVERSE_AT_END_OF_LINE_AND_AT_STATIONS :À la fin de la ligne et aux gares
|
||||||
STR_REVERSE_AT_END_OF_LINE_ONLY :À la fin de la ligne seulement
|
STR_REVERSE_AT_END_OF_LINE_ONLY :À la fin de la ligne seulement
|
||||||
|
|
||||||
STR_DISASTERS_OFF :Désactivé
|
STR_DISASTERS_OFF :Désactivé
|
||||||
STR_DISASTERS_ON :Activé
|
STR_DISASTERS_ON :Activé
|
||||||
|
|
||||||
|
|
|
@ -1391,7 +1391,6 @@ STR_CONFIG_SETTING_TOWN_LAYOUT_2X2_GRID :Πλέγμα 2x
|
||||||
STR_CONFIG_SETTING_TOWN_LAYOUT_3X3_GRID :Πλέγμα 3x3
|
STR_CONFIG_SETTING_TOWN_LAYOUT_3X3_GRID :Πλέγμα 3x3
|
||||||
STR_CONFIG_SETTING_TOWN_LAYOUT_RANDOM :τυχαίο
|
STR_CONFIG_SETTING_TOWN_LAYOUT_RANDOM :τυχαίο
|
||||||
STR_CONFIG_SETTING_ALLOW_TOWN_ROADS :{LTBLUE}Οι πόλεις επιτρέπεται να χτίσουν δρόμους: {ORANGE}{STRING}
|
STR_CONFIG_SETTING_ALLOW_TOWN_ROADS :{LTBLUE}Οι πόλεις επιτρέπεται να χτίσουν δρόμους: {ORANGE}{STRING}
|
||||||
STR_CONFIG_SETTING_STATUSBAR_POS :{LTBLUE}Θέση της μπάρας κατάστασης: {ORANGE}{STRING}
|
|
||||||
STR_CONFIG_SETTING_ALLOW_TOWN_LEVEL_CROSSINGS :{LTBLUE}Οι πόλεις επιτρέπουν το χτίσιμο ισοπέδων διασταυρώσεων: {ORANGE}{STRING}
|
STR_CONFIG_SETTING_ALLOW_TOWN_LEVEL_CROSSINGS :{LTBLUE}Οι πόλεις επιτρέπουν το χτίσιμο ισοπέδων διασταυρώσεων: {ORANGE}{STRING}
|
||||||
STR_CONFIG_SETTING_NOISE_LEVEL :{LTBLUE}Επιτρεπεται η πόλη να ελέγχει το επίπεδο θορύβου των αεροδρομίων: {ORANGE}{STRING}
|
STR_CONFIG_SETTING_NOISE_LEVEL :{LTBLUE}Επιτρεπεται η πόλη να ελέγχει το επίπεδο θορύβου των αεροδρομίων: {ORANGE}{STRING}
|
||||||
STR_CONFIG_SETTING_TOWN_FOUNDING :{LTBLUE}Ιδρύση πολέων στο παιχνίδι: {ORANGE}{STRING}
|
STR_CONFIG_SETTING_TOWN_FOUNDING :{LTBLUE}Ιδρύση πολέων στο παιχνίδι: {ORANGE}{STRING}
|
||||||
|
@ -1405,6 +1404,7 @@ STR_CONFIG_SETTING_EXTRA_TREE_PLACEMENT_RAINFOREST :μόνο σε
|
||||||
STR_CONFIG_SETTING_EXTRA_TREE_PLACEMENT_ALL :παντού
|
STR_CONFIG_SETTING_EXTRA_TREE_PLACEMENT_ALL :παντού
|
||||||
|
|
||||||
STR_CONFIG_SETTING_TOOLBAR_POS :{LTBLUE}Θέση κύριας εργαλειοθήκης: {ORANGE}{STRING}
|
STR_CONFIG_SETTING_TOOLBAR_POS :{LTBLUE}Θέση κύριας εργαλειοθήκης: {ORANGE}{STRING}
|
||||||
|
STR_CONFIG_SETTING_STATUSBAR_POS :{LTBLUE}Θέση της μπάρας κατάστασης: {ORANGE}{STRING}
|
||||||
STR_CONFIG_SETTING_TOOLBAR_POS_LEFT :Αριστερά
|
STR_CONFIG_SETTING_TOOLBAR_POS_LEFT :Αριστερά
|
||||||
STR_CONFIG_SETTING_TOOLBAR_POS_CENTER :Κέντρο
|
STR_CONFIG_SETTING_TOOLBAR_POS_CENTER :Κέντρο
|
||||||
STR_CONFIG_SETTING_TOOLBAR_POS_RIGHT :Δεξιά
|
STR_CONFIG_SETTING_TOOLBAR_POS_RIGHT :Δεξιά
|
||||||
|
@ -1444,6 +1444,7 @@ STR_CONFIG_SETTING_VEHICLES_TRAINS :{ORANGE}Τρέ
|
||||||
STR_CONFIG_SETTING_ECONOMY_TOWNS :{ORANGE}Πόλεις
|
STR_CONFIG_SETTING_ECONOMY_TOWNS :{ORANGE}Πόλεις
|
||||||
STR_CONFIG_SETTING_ECONOMY_INDUSTRIES :{ORANGE}Βιομηχανίες
|
STR_CONFIG_SETTING_ECONOMY_INDUSTRIES :{ORANGE}Βιομηχανίες
|
||||||
|
|
||||||
|
|
||||||
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS :{LTBLUE}Μέθοδος δρομολόγησης για τρένα: {ORANGE}{STRING}
|
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS :{LTBLUE}Μέθοδος δρομολόγησης για τρένα: {ORANGE}{STRING}
|
||||||
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_NPF :NPF
|
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_NPF :NPF
|
||||||
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_YAPF :YAPF {BLUE}(Συνίσταται)
|
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_YAPF :YAPF {BLUE}(Συνίσταται)
|
||||||
|
|
|
@ -1090,6 +1090,7 @@ STR_WARNING_DIFFICULTY_TO_CUSTOM :{WHITE}Questa a
|
||||||
# Advanced settings window
|
# Advanced settings window
|
||||||
STR_CONFIG_SETTING_CAPTION :{WHITE}Impostazioni avanzate
|
STR_CONFIG_SETTING_CAPTION :{WHITE}Impostazioni avanzate
|
||||||
|
|
||||||
|
STR_CONFIG_SETTING_OFF :No
|
||||||
STR_CONFIG_SETTING_OFF.ms :No
|
STR_CONFIG_SETTING_OFF.ms :No
|
||||||
STR_CONFIG_SETTING_OFF.mp :No
|
STR_CONFIG_SETTING_OFF.mp :No
|
||||||
STR_CONFIG_SETTING_OFF.fs :No
|
STR_CONFIG_SETTING_OFF.fs :No
|
||||||
|
|
|
@ -1419,6 +1419,7 @@ STR_CONFIG_SETTING_VEHICLES_TRAINS :{ORANGE}Vlaky
|
||||||
STR_CONFIG_SETTING_ECONOMY_TOWNS :{ORANGE}Mestá
|
STR_CONFIG_SETTING_ECONOMY_TOWNS :{ORANGE}Mestá
|
||||||
STR_CONFIG_SETTING_ECONOMY_INDUSTRIES :{ORANGE}Priemysel
|
STR_CONFIG_SETTING_ECONOMY_INDUSTRIES :{ORANGE}Priemysel
|
||||||
|
|
||||||
|
|
||||||
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS :{LTBLUE}Algoritmus hľadania cesty pre vlaky: {ORANGE}{STRING}
|
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS :{LTBLUE}Algoritmus hľadania cesty pre vlaky: {ORANGE}{STRING}
|
||||||
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_NPF :NPF
|
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_NPF :NPF
|
||||||
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_YAPF :YAPF {BLUE}(odporučený)
|
STR_CONFIG_SETTING_PATHFINDER_FOR_TRAINS_YAPF :YAPF {BLUE}(odporučený)
|
||||||
|
|
Loading…
Reference in New Issue