From 84facc3638ce6989d9b3efcf6dc05f9b7f87944b Mon Sep 17 00:00:00 2001 From: Ibrahim BinAlshikh Date: Tue, 21 Oct 2025 23:20:27 +0300 Subject: [PATCH 1/3] fix: Metadata --- .gitattributes | 6 +++--- composer.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index 4c3b0299d..33d14ffd1 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,9 +1,9 @@ # Files and folders here will be not included when creating package /tests export-ignore -/app export-ignore +/App export-ignore /public export-ignore -/themes export-ignore -/webfiori/framework/db export-ignore +/Themes export-ignore +/Webfiori/Framework/Db export-ignore /.github export-ignore /.gitignore export-ignore /.travis.yml export-ignore diff --git a/composer.json b/composer.json index 9fa4d3792..7f43b55de 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "type": "library", "support": { "issues": "https://github.com/webfiori/framework/issues", - "source": "https://github.com/webfior/framework" + "source": "https://github.com/webfiori/framework" }, "authors": [ { From e998c476b2629b6b8307d6ad52813cdc1a63eb05 Mon Sep 17 00:00:00 2001 From: Ibrahim BinAlshikh Date: Wed, 22 Oct 2025 00:12:49 +0300 Subject: [PATCH 2/3] feat: Added a Script to Update Version --- update-version.php | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 update-version.php diff --git a/update-version.php b/update-version.php new file mode 100644 index 000000000..c312b316d --- /dev/null +++ b/update-version.php @@ -0,0 +1,45 @@ + Date: Wed, 22 Oct 2025 00:13:04 +0300 Subject: [PATCH 3/3] Update App.php --- WebFiori/Framework/App.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WebFiori/Framework/App.php b/WebFiori/Framework/App.php index 4113dfcac..48fda0dcc 100644 --- a/WebFiori/Framework/App.php +++ b/WebFiori/Framework/App.php @@ -642,7 +642,7 @@ public static function initFrameworkVersionInfo() { * * @since 2.1 */ - define('WF_VERSION', '3.0.0-Beta.29'); + define('WF_VERSION', '3.0.0-Beta.30'); /** * A constant that tells the type of framework version. * @@ -658,7 +658,7 @@ public static function initFrameworkVersionInfo() { * * @since 2.1 */ - define('WF_RELEASE_DATE', '2025-10-09'); + define('WF_RELEASE_DATE', '2025-10-22'); } /**