diff options
author | Charles Pigott <charlespigott@googlemail.com> | 2019-10-28 22:23:30 +0000 |
---|---|---|
committer | glx22 <glx22@users.noreply.github.com> | 2019-10-28 23:52:54 +0100 |
commit | dd07b23ed3fe5fa5f694b4556c45dd9cc93f0ce8 (patch) | |
tree | d2dce72d3363245f14ac5e47eed4ac2ea48e2554 /os | |
parent | f5b72059be17f38a288472962ae155fa7d0653a4 (diff) | |
download | openttd-dd07b23ed3fe5fa5f694b4556c45dd9cc93f0ce8.tar.xz |
Fix: A few places still referred to old name of COPYING and README
Diffstat (limited to 'os')
-rw-r--r-- | os/os2/installer/openttd.wis | 4 | ||||
-rw-r--r-- | os/rpm/openttd.spec | 2 | ||||
-rw-r--r-- | os/windows/installer/install.nsi | 8 |
3 files changed, 7 insertions, 7 deletions
diff --git a/os/os2/installer/openttd.wis b/os/os2/installer/openttd.wis index e580e565c..4b761ed83 100644 --- a/os/os2/installer/openttd.wis +++ b/os/os2/installer/openttd.wis @@ -71,7 +71,7 @@ <!-- page 1: introductory page --> <PAGE INDEX="1" TYPE="README"> <NEXTBUTTON TARGET=2>~Next</NEXTBUTTON> -<README EXTRACTFROMPCK="1">README.TXT</README> +<README EXTRACTFROMPCK="1">README.md</README> <TEXT>Welcome to the OpenTTD installer. This program will install OpenTTD 1.0 on your system. Before we begin the installation process, please take a moment to read the following document. Select "Next" to continue, or "Cancel" to abort installation.</TEXT> @@ -80,7 +80,7 @@ Select "Next" to continue, or "Cancel" to abort installation.</TEXT> <!-- page 2: licence page --> <PAGE INDEX="2" TYPE="README"> <NEXTBUTTON TARGET=3>~Next</NEXTBUTTON> -<README EXTRACTFROMPCK="1">COPYING</README> +<README EXTRACTFROMPCK="1">COPYING.md</README> <TEXT>OpenTTD is licenced under the GNU General Public License. The text of the licence is below. Select "Next" if you agree to this licence. diff --git a/os/rpm/openttd.spec b/os/rpm/openttd.spec index c8b51b0af..4ba8c0067 100644 --- a/os/rpm/openttd.spec +++ b/os/rpm/openttd.spec @@ -81,7 +81,7 @@ the original data from the game or install the recommend subackages OpenGFX for free graphics, OpenSFX for free sounds and OpenMSX for free music. OpenTTD is licensed under the GNU General Public License version 2.0. For more -information, see the file 'COPYING' included with every release and source +information, see the file 'COPYING.md' included with every release and source download of the game. %package gui diff --git a/os/windows/installer/install.nsi b/os/windows/installer/install.nsi index 8c65ca4e6..a4dd610d9 100644 --- a/os/windows/installer/install.nsi +++ b/os/windows/installer/install.nsi @@ -63,7 +63,7 @@ Var CDDRIVE !define MUI_ABORTWARNING !define MUI_WELCOMEPAGE_TITLE_3LINES !insertmacro MUI_PAGE_WELCOME -!insertmacro MUI_PAGE_LICENSE "..\..\..\COPYING" +!insertmacro MUI_PAGE_LICENSE "..\..\..\COPYING.md" !define MUI_COMPONENTSPAGE_SMALLDESC !insertmacro MUI_PAGE_COMPONENTS @@ -156,8 +156,8 @@ Section "!OpenTTD" Section1 File ${PATH_ROOT}changelog.txt Push "$INSTDIR\changelog.txt" Call unix2dos - File ${PATH_ROOT}COPYING - Push "$INSTDIR\COPYING" + File ${PATH_ROOT}COPYING.md + Push "$INSTDIR\COPYING.md" Call unix2dos File ${PATH_ROOT}README.md Push "$INSTDIR\README.md" @@ -392,7 +392,7 @@ Section "Uninstall" Delete "$INSTDIR\README.md" Delete "$INSTDIR\known-bugs.txt" Delete "$INSTDIR\openttd.exe" - Delete "$INSTDIR\COPYING" + Delete "$INSTDIR\COPYING.md" Delete "$INSTDIR\INSTALL.LOG" Delete "$INSTDIR\crash.log" Delete "$INSTDIR\crash.dmp" |