Updated version numbers
This commit is contained in:
@@ -282,3 +282,9 @@
|
|||||||
formats from crashing php.
|
formats from crashing php.
|
||||||
- Fixed profile page to automatically refresh page to show the results
|
- Fixed profile page to automatically refresh page to show the results
|
||||||
when a user changes their color preferences.
|
when a user changes their color preferences.
|
||||||
|
|
||||||
|
5.3.1 - 2026-02-25
|
||||||
|
- Fixed bug reported as Issue 1 where failure to select an action for a
|
||||||
|
part entered in a lognote crashed php in logentry.php.
|
||||||
|
- Fixed bug where the prompt to set flags on reference chain appeared
|
||||||
|
even when no flags were available to select in logentry.php.
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ set autocommit = 0;
|
|||||||
|
|
||||||
INSERT INTO
|
INSERT INTO
|
||||||
`configs`
|
`configs`
|
||||||
VALUES (1, 'ol_version', '5.3.0'),
|
VALUES (1, 'ol_version', '5.3.1'),
|
||||||
(2, 'log_name', 'OpenLog'),
|
(2, 'log_name', 'OpenLog'),
|
||||||
(3, 'banner', '1'),
|
(3, 'banner', '1'),
|
||||||
(
|
(
|
||||||
|
|||||||
@@ -144,3 +144,7 @@ do
|
|||||||
done
|
done
|
||||||
echo "...done."
|
echo "...done."
|
||||||
# -------------------------------------
|
# -------------------------------------
|
||||||
|
|
||||||
|
# ---------- version 5.3.1 ------------
|
||||||
|
# Nothing to do
|
||||||
|
# -------------------------------------
|
||||||
@@ -84,3 +84,8 @@ CREATE TABLE IF NOT EXISTS `reflinks` (
|
|||||||
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
|
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
|
||||||
|
|
||||||
-- --------------------------------------
|
-- --------------------------------------
|
||||||
|
|
||||||
|
-- ---------- version 5.3.1 -------------
|
||||||
|
-- Update version number
|
||||||
|
UPDATE configs SET confvalue = "5.3.1" WHERE confname = "ol_version";
|
||||||
|
-- --------------------------------------
|
||||||
@@ -283,4 +283,9 @@
|
|||||||
- Fixed profile page to automatically refresh page to show the results
|
- Fixed profile page to automatically refresh page to show the results
|
||||||
when a user changes their color preferences.
|
when a user changes their color preferences.
|
||||||
|
|
||||||
|
5.3.1 - 2026-02-25
|
||||||
|
- Fixed bug reported as Issue 1 where failure to select an action for a
|
||||||
|
part entered in a lognote crashed php in logentry.php.
|
||||||
|
- Fixed bug where the prompt to set flags on reference chain appeared
|
||||||
|
even when no flags were available to select in logentry.php.
|
||||||
|
|
||||||
|
|||||||
@@ -41,3 +41,15 @@ fi
|
|||||||
# ---------- version 5.2.4.4 -----------
|
# ---------- version 5.2.4.4 -----------
|
||||||
# No changes
|
# No changes
|
||||||
# --------------------------------------
|
# --------------------------------------
|
||||||
|
|
||||||
|
# ---------- version 5.2.5 -------------
|
||||||
|
# No changes
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# ---------- version 5.3.0 -------------
|
||||||
|
# No changes
|
||||||
|
# --------------------------------------
|
||||||
|
|
||||||
|
# ---------- version 5.3.1 -------------
|
||||||
|
# No changes
|
||||||
|
# --------------------------------------
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
APP_NAME="OpenLog"
|
APP_NAME="OpenLog"
|
||||||
DEFAULT_DB_NAME="openlog"
|
DEFAULT_DB_NAME="openlog"
|
||||||
APP_VERSION="5.3.0"
|
APP_VERSION="5.3.1"
|
||||||
DOC_ROOT="/var/www"
|
DOC_ROOT="/var/www"
|
||||||
INSTALL_LOC="openlog"
|
INSTALL_LOC="openlog"
|
||||||
APACHE_CONF_DIR="/etc/apache2/conf-available"
|
APACHE_CONF_DIR="/etc/apache2/conf-available"
|
||||||
|
|||||||
Reference in New Issue
Block a user