1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Add dukglue and duktape copyright information

This commit is contained in:
Ted John
2020-04-26 14:49:21 +01:00
parent 7041b0793e
commit 90f3a9b846
4 changed files with 5 additions and 1 deletions

2
debian/control vendored
View File

@@ -4,7 +4,7 @@ Section: misc
Priority: optional Priority: optional
Standards-Version: 3.9.2 Standards-Version: 3.9.2
Multi-Arch: same Multi-Arch: same
Build-Depends: debhelper (>= 9), cmake (>= 3.8), libsdl2-dev, g++ (>= 4:7), pkg-config, libjansson4 (>= 2.5), libjansson-dev (>= 2.3), libspeex-dev, libspeexdsp-dev, libcurl4-openssl-dev, libcrypto++-dev, libfontconfig1-dev, libfreetype6-dev, libpng-dev, libssl-dev, libzip-dev (>= 1.0.0), libicu-dev (>= 59.0) Build-Depends: debhelper (>= 9), cmake (>= 3.8), duktape-dev, libsdl2-dev, g++ (>= 4:7), pkg-config, libjansson4 (>= 2.5), libjansson-dev (>= 2.3), libspeex-dev, libspeexdsp-dev, libcurl4-openssl-dev, libcrypto++-dev, libfontconfig1-dev, libfreetype6-dev, libpng-dev, libssl-dev, libzip-dev (>= 1.0.0), libicu-dev (>= 59.0)
Package: openrct2 Package: openrct2
Architecture: any Architecture: any

View File

@@ -4,6 +4,7 @@
- Feature: [#10572] Cheat to allow building at invalid heights. - Feature: [#10572] Cheat to allow building at invalid heights.
- Feature: [#11231] Change shortcut window list order to be more intuitive, and split it into logical sections. - Feature: [#11231] Change shortcut window list order to be more intuitive, and split it into logical sections.
- Feature: [#11306] Path additions are now kept when replacing the path. - Feature: [#11306] Path additions are now kept when replacing the path.
- Feature: [#11320] Support for custom JavaScript plugins.
- Change: [#11209] Warn when user is running OpenRCT2 through Wine. - Change: [#11209] Warn when user is running OpenRCT2 through Wine.
- Change: [#11358] Switch copy and paste button positions in tile inspector. - Change: [#11358] Switch copy and paste button positions in tile inspector.
- Change: [#11449] Remove complete circuit requirement from Air Powered Vertical Coaster (for RCT1 parity). - Change: [#11449] Remove complete circuit requirement from Air Powered Vertical Coaster (for RCT1 parity).

View File

@@ -141,6 +141,8 @@ OpenRCT2 is licensed under the GNU General Public Licence version 3.0. For
the complete licence text, see the file 'licence.txt'. This licence applies the complete licence text, see the file 'licence.txt'. This licence applies
to all files in this distribution, except as noted below. to all files in this distribution, except as noted below.
dukglue | MIT licence.
duktape | MIT licence.
Jansson | MIT licence. Jansson | MIT licence.
libcURL | MIT (or Modified BSD-style) licence. libcURL | MIT (or Modified BSD-style) licence.
libicu | Unicode licence. libicu | Unicode licence.

View File

@@ -110,6 +110,7 @@ The program can also be built as a command line program using CMake. This type o
- icu (>= 59.0) - icu (>= 59.0)
- zlib - zlib
- gl (commonly provided by Mesa or GPU vendors; only for UI client, can be disabled) - gl (commonly provided by Mesa or GPU vendors; only for UI client, can be disabled)
- duktape (unless scripting is disabled)
- cmake - cmake
--- ---