From 9b7dfbe4346139402a8edaa9edfaa93c57e6836e Mon Sep 17 00:00:00 2001 From: Rod Wright Date: Tue, 10 Feb 2026 15:41:37 -0500 Subject: [PATCH] Release version 5.2.5 --- CHANGELOG | 4 ++++ database-initial.sql | 2 +- database-update.sh | 4 ++++ database-update.sql | 5 +++++ db.php_update | 27 --------------------------- distfiles/CHANGELOG | 5 +++++ files-update.sh | 5 +++++ install.sh | 2 +- 8 files changed, 25 insertions(+), 29 deletions(-) delete mode 100644 db.php_update diff --git a/CHANGELOG b/CHANGELOG index ad8f633..28ba9c0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -240,3 +240,7 @@ treating the $today variable as global. - In install.php, if a previous installation was found, make upgrade the default choice. + +5.2.5 - 2026-02-10 + This is just a version number bump to get on a major-minor-patch + scheme. There are no code changes for this release. diff --git a/database-initial.sql b/database-initial.sql index 0c9d064..951c5cf 100644 --- a/database-initial.sql +++ b/database-initial.sql @@ -69,7 +69,7 @@ CREATE TABLE `configs` ( LOCK TABLES `configs` WRITE; /*!40000 ALTER TABLE `configs` DISABLE KEYS */; INSERT INTO `configs` VALUES -(1,'ol_version','5.2.4.4'), +(1,'ol_version','5.2.5'), (2,'log_name','OpenLog'), (3,'banner','1'), (4,'background_color','#003333'), diff --git a/database-update.sh b/database-update.sh index 91ee04e..cc37f86 100755 --- a/database-update.sh +++ b/database-update.sh @@ -33,3 +33,7 @@ margs="--defaults-extra-file=$mysql_opt_file" # ---------- version 5.2.4.4 ---------- # Nothing to do # ------------------------------------- + +# ---------- version 5.2.5 ------------ +# Nothing to do +# ------------------------------------- diff --git a/database-update.sql b/database-update.sql index 52b4684..20326fb 100644 --- a/database-update.sql +++ b/database-update.sql @@ -50,3 +50,8 @@ UPDATE configs SET confvalue="5.2.4.3" WHERE confname="ol_version"; -- Update version number UPDATE configs SET confvalue="5.2.4.4" WHERE confname="ol_version"; -- -------------------------------------- + +-- ---------- version 5.2.5 ------------- +-- Update version number +UPDATE configs SET confvalue="5.2.5" WHERE confname="ol_version"; +-- -------------------------------------- diff --git a/db.php_update b/db.php_update deleted file mode 100644 index c2e8fbc..0000000 --- a/db.php_update +++ /dev/null @@ -1,27 +0,0 @@ -# opendrs-update.sh - -install_path=$1 - -# ---------- version 5.2.1 -------------- -# No changes to the db.php file -# --------------------------------------- - -# ---------- version 5.2.2 -------------- -# No changes to the db.php file -# --------------------------------------- - -# ---------- version 5.2.3 -------------- -# No changes to the db.php file -# --------------------------------------- - -# ---------- version 5.2.4 -------------- -# No changes to the db.php file -# --------------------------------------- - -# ---------- version 5.2.4.1 ------------ -# No changes to the db.php file -# --------------------------------------- - -# ---------- version 5.2.4.2 ------------ -# No changes to the db.php file -# --------------------------------------- diff --git a/distfiles/CHANGELOG b/distfiles/CHANGELOG index bbf0cab..dbadc6b 100644 --- a/distfiles/CHANGELOG +++ b/distfiles/CHANGELOG @@ -240,3 +240,8 @@ treating the $today variable as global. - In install.php, if a previous installation was found, make upgrade the default choice. + +5.2.5 - 2026-02-10 + This is just a version number bump to get on a major-minor-patch + scheme. There are no code changes for this release. + diff --git a/files-update.sh b/files-update.sh index 962ad47..de5086f 100755 --- a/files-update.sh +++ b/files-update.sh @@ -41,3 +41,8 @@ fi # ---------- version 5.2.4.4 ----------- # No changes # -------------------------------------- + +# ---------- version 5.2.5 ------------- +# No changes +# -------------------------------------- + diff --git a/install.sh b/install.sh index 1854974..46fe055 100755 --- a/install.sh +++ b/install.sh @@ -8,7 +8,7 @@ APP_NAME="OpenLog" DEFAULT_DB_NAME="openlog" -APP_VERSION="5.2.4.4" +APP_VERSION="5.2.5" DOC_ROOT="/var/www" INSTALL_LOC="openlog" APACHE_CONF_DIR="/etc/apache2/conf-available"