Update version to 1.4.7

This commit is contained in:
2026-03-03 08:07:22 -05:00
parent e9141c7dde
commit f7d26b5f2d
7 changed files with 25 additions and 2 deletions

View File

@@ -213,3 +213,8 @@ Changelog
writeup was added to the group instead of in the logical writeup
order.
1.4.7 - 2026-03-03
- Fixed bug reported as Issue 1 where clicking the Show Printable
button on the search results page resulted in the results not
being shown on the printable page.

View File

@@ -69,7 +69,7 @@ CREATE TABLE `config` (
LOCK TABLES `config` WRITE;
/*!40000 ALTER TABLE `config` DISABLE KEYS */;
INSERT INTO `config` VALUES
(1,'drs_version','1.4.6','1.4.6'),
(1,'drs_version','1.4.7','1.4.7'),
(5,'app_name','OpenDRS - Discrepancy Reporting System','OpenDRS Discrepancy Reporting System'),
(6,'banner','1','1'),
(7,'background_color','0B3144','0B3144'),

View File

@@ -33,3 +33,7 @@ margs="--defaults-extra-file=$mysql_opt_file"
# ---------- version 1.4.6 ----------
# Nothing to be done
# -----------------------------------
# ---------- version 1.4.7 ----------
# Nothing to be done
# -----------------------------------

View File

@@ -281,3 +281,7 @@ UPDATE config SET value="1.4.5",defaultvalue="1.4.5" WHERE name="drs_version";
UPDATE config SET value="1.4.6",defaultvalue="1.4.6" WHERE name="drs_version";
-- --------------------------------------
-- ---------- version 1.4.7 -------------
-- Update version number
UPDATE config SET value="1.4.7",defaultvalue="1.4.7" WHERE name="drs_version";
-- --------------------------------------

View File

@@ -212,3 +212,9 @@ Changelog
caused the group writeup table to be ordered based on when the
writeup was added to the group instead of in the logical writeup
order.
1.4.7 - 2026-03-03
- Fixed bug reported as Issue 1 where clicking the Show Printable
button on the search results page resulted in the results not
being shown on the printable page.

View File

@@ -79,3 +79,7 @@ fi
# ---------- version 1.4.6 -------------
# Nothing to do for this version
# --------------------------------------
# ---------- version 1.4.7 -------------
# Nothing to do for this version
# --------------------------------------

View File

@@ -8,7 +8,7 @@
APP_NAME="OpenDRS"
DEFAULT_DB_NAME="opendrs"
APP_VERSION="1.4.6"
APP_VERSION="1.4.7"
DOC_ROOT="/var/www"
INSTALL_LOC="opendrs"
APACHE_CONF_DIR="/etc/apache2/conf-available"