diff --git a/data/com.github.bartzaalberg.php-tester.appdata.xml b/data/com.github.bartzaalberg.php-tester.appdata.xml index 59928a1..465c199 100644 --- a/data/com.github.bartzaalberg.php-tester.appdata.xml +++ b/data/com.github.bartzaalberg.php-tester.appdata.xml @@ -18,6 +18,15 @@ + + +

Added PHP path option

+
    +
  • You can now change the PHP path
  • +
  • Fixed a fatal error on startup when no PHP is found
  • +
+
+

Updated build system

diff --git a/debian/changelog b/debian/changelog index 01f94c7..b2ccec3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +com.github.bartzaalberg.lottery (1.6.0) STABLE; urgency=low + + * Added ability to change the PHP path + * Fixed a fatal error on startup when no PHP is found + + -- Bart Zaalberg Thu, 10 Jan 2019 22:31:00 +0200 + com.github.bartzaalberg.lottery (1.5.6) STABLE; urgency=low * Migrated from Cmake to Meson diff --git a/src/Constants.vala b/src/Constants.vala index abe9993..609383d 100644 --- a/src/Constants.vala +++ b/src/Constants.vala @@ -6,9 +6,9 @@ namespace PhpTester.Constants { public const string ICON = "com.github.bartzaalberg.php-tester"; public const string MAIN_URL = "https://github.com/bartzaalberg/php-tester"; public const string BUG_URL = MAIN_URL + "/issues"; - public const string VERSION = "1.5.6"; + public const string VERSION = "1.6.0"; public const string VERSION_INFO = "Stable"; - public const string APP_YEARS = "2017-2018"; + public const string APP_YEARS = "2017-2019"; public const int APPLICATION_WIDTH = 700; public const int APPLICATION_HEIGHT = 500;