From 02bf13be32606e24e09da19d523e872d833ae520 Mon Sep 17 00:00:00 2001 From: Mohammed AlShannaq Date: Thu, 9 Nov 2023 00:17:09 +0000 Subject: [PATCH 01/14] dev: round2 --- app/Config/Smarty.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Config/Smarty.php b/app/Config/Smarty.php index 6892c14..13accb7 100644 --- a/app/Config/Smarty.php +++ b/app/Config/Smarty.php @@ -8,7 +8,7 @@ class Smarty extends BaseConfig { public $smarty_name = 'SmartyURL'; public $smarty_online_repo = 'https://smartyurl.extendy.net'; - public $smarty_version = '0.0.0-dev-DND-1'; + public $smarty_version = '0.0.0-dev-DND-2'; /** * @var string contain the file name of jquery supported version eg jquery-3.7.1 without js From 1274baa8c3063583e57336356188af4efc80779c Mon Sep 17 00:00:00 2001 From: Mohammed AlShannaq Date: Thu, 9 Nov 2023 01:05:23 +0000 Subject: [PATCH 02/14] adding .github/release.yml --- .github/release.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..871c647 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,20 @@ +changelog: + exclude: + authors: + - dependabot + categories: + - title: Breaking Changes + labels: + - 'breaking change' + - title: Fixed Bugs + labels: + - bug + - title: Enhancements + labels: + - enhancement + - title: Translations + labels: + - lang + - title: New Features + labels: + - 'new feature' From 43232b6834dd7521c01b1ef263f6efc205fe45b8 Mon Sep 17 00:00:00 2001 From: Mohammed AlShannaq Date: Thu, 9 Nov 2023 01:11:45 +0000 Subject: [PATCH 03/14] dev: round2 --- app/Config/Smarty.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Config/Smarty.php b/app/Config/Smarty.php index 13accb7..60143fc 100644 --- a/app/Config/Smarty.php +++ b/app/Config/Smarty.php @@ -8,7 +8,7 @@ class Smarty extends BaseConfig { public $smarty_name = 'SmartyURL'; public $smarty_online_repo = 'https://smartyurl.extendy.net'; - public $smarty_version = '0.0.0-dev-DND-2'; + public $smarty_version = 'v0.0.0-dev-dnd.2'; /** * @var string contain the file name of jquery supported version eg jquery-3.7.1 without js From 327e9c534615ad6ec142c823f8b00cd53fd5d181 Mon Sep 17 00:00:00 2001 From: Mohammed AlShannaq Date: Thu, 9 Nov 2023 01:25:48 +0000 Subject: [PATCH 04/14] dev: ChangeLog.md --- ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index e5e3a85..870a4e4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1 +1 @@ -# SmartyL \ No newline at end of file +# SmartyURL ChangeLog From d9c0c4a074ac64b400c1d762106f7898e8dce467 Mon Sep 17 00:00:00 2001 From: Mohammed AlShannaq Date: Thu, 9 Nov 2023 02:08:08 +0000 Subject: [PATCH 05/14] cleaning --- ChangeLog.md | 1 - 1 file changed, 1 deletion(-) delete mode 100644 ChangeLog.md diff --git a/ChangeLog.md b/ChangeLog.md deleted file mode 100644 index 870a4e4..0000000 --- a/ChangeLog.md +++ /dev/null @@ -1 +0,0 @@ -# SmartyURL ChangeLog From d8bf47a5128f38b54a2dd0a8e7eba270e8162d0f Mon Sep 17 00:00:00 2001 From: Mohammed AlShannaq Date: Thu, 9 Nov 2023 02:18:43 +0000 Subject: [PATCH 06/14] Updating CR Project to 4.4.3 https://codeigniter4.github.io/userguide/installation/upgrade_443.html#upgrading-from-4-4-2-to-4-4-3 --- app/Config/Boot/development.php | 2 ++ app/Config/Boot/production.php | 2 ++ app/Config/Boot/testing.php | 6 ++++++ app/Views/errors/html/error_404.php | 2 +- app/Views/errors/html/error_exception.php | 7 +++++-- 5 files changed, 16 insertions(+), 3 deletions(-) diff --git a/app/Config/Boot/development.php b/app/Config/Boot/development.php index 05a8612..aa8099a 100644 --- a/app/Config/Boot/development.php +++ b/app/Config/Boot/development.php @@ -7,6 +7,8 @@ | In development, we want to show as many errors as possible to help | make sure they don't make it to production. And save us hours of | painful debugging. + | + | If you set 'display_errors' to '1', CI4's detailed error report will show. */ error_reporting(-1); ini_set('display_errors', '1'); diff --git a/app/Config/Boot/production.php b/app/Config/Boot/production.php index 21d2580..73c7c60 100644 --- a/app/Config/Boot/production.php +++ b/app/Config/Boot/production.php @@ -6,6 +6,8 @@ |-------------------------------------------------------------------------- | Don't show ANY in production environments. Instead, let the system catch | it and display a generic error message. + | + | If you set 'display_errors' to '1', CI4's detailed error report will show. */ ini_set('display_errors', '0'); error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED); diff --git a/app/Config/Boot/testing.php b/app/Config/Boot/testing.php index e07a1d4..e84670e 100644 --- a/app/Config/Boot/testing.php +++ b/app/Config/Boot/testing.php @@ -1,5 +1,11 @@ - +

diff --git a/app/Views/errors/html/error_exception.php b/app/Views/errors/html/error_exception.php index 45e1b9e..83fd15f 100644 --- a/app/Views/errors/html/error_exception.php +++ b/app/Views/errors/html/error_exception.php @@ -44,6 +44,7 @@ +
    @@ -66,7 +67,7 @@
  • - +

+