diff --git a/debian/control b/debian/control index 49c2537656..7539bb83e7 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Section: misc Priority: optional Standards-Version: 3.9.2 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 Architecture: any diff --git a/distribution/changelog.txt b/distribution/changelog.txt index c3ad803b9e..21d5455419 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -4,6 +4,7 @@ - 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: [#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: [#11358] Switch copy and paste button positions in tile inspector. - Change: [#11449] Remove complete circuit requirement from Air Powered Vertical Coaster (for RCT1 parity). diff --git a/distribution/readme.txt b/distribution/readme.txt index 63d49b44a8..fa535c783a 100644 --- a/distribution/readme.txt +++ b/distribution/readme.txt @@ -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 to all files in this distribution, except as noted below. +dukglue | MIT licence. +duktape | MIT licence. Jansson | MIT licence. libcURL | MIT (or Modified BSD-style) licence. libicu | Unicode licence. diff --git a/readme.md b/readme.md index f6f999a91b..86ac2f7ef8 100644 --- a/readme.md +++ b/readme.md @@ -110,6 +110,7 @@ The program can also be built as a command line program using CMake. This type o - icu (>= 59.0) - zlib - gl (commonly provided by Mesa or GPU vendors; only for UI client, can be disabled) +- duktape (unless scripting is disabled) - cmake ---