Release version 5.2.5

This commit is contained in:
2026-02-10 15:41:37 -05:00
parent 0265918430
commit 9b7dfbe434
8 changed files with 25 additions and 29 deletions

View File

@@ -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.

View File

@@ -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'),

View File

@@ -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
# -------------------------------------

View File

@@ -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";
-- --------------------------------------

View File

@@ -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
# ---------------------------------------

View File

@@ -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.

View File

@@ -41,3 +41,8 @@ fi
# ---------- version 5.2.4.4 -----------
# No changes
# --------------------------------------
# ---------- version 5.2.5 -------------
# No changes
# --------------------------------------

View File

@@ -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"