From f7d26b5f2dad0e58e464f464fe7f7aba76fa25bd Mon Sep 17 00:00:00 2001 From: Rod Wright Date: Tue, 3 Mar 2026 08:07:22 -0500 Subject: [PATCH] Update version to 1.4.7 --- CHANGELOG | 5 +++++ database-initial.sql | 2 +- database-update.sh | 4 ++++ database-update.sql | 4 ++++ distfiles/CHANGELOG | 6 ++++++ files-update.sh | 4 ++++ install.sh | 2 +- 7 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 26a1f96..926e6d4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. + diff --git a/database-initial.sql b/database-initial.sql index eb54481..b5b8b9c 100644 --- a/database-initial.sql +++ b/database-initial.sql @@ -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'), diff --git a/database-update.sh b/database-update.sh index 4ef2bc1..11542ba 100644 --- a/database-update.sh +++ b/database-update.sh @@ -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 +# ----------------------------------- diff --git a/database-update.sql b/database-update.sql index c76a70a..03658a6 100644 --- a/database-update.sql +++ b/database-update.sql @@ -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"; +-- -------------------------------------- diff --git a/distfiles/CHANGELOG b/distfiles/CHANGELOG index 8869c09..926e6d4 100644 --- a/distfiles/CHANGELOG +++ b/distfiles/CHANGELOG @@ -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. + diff --git a/files-update.sh b/files-update.sh index b2d2a37..39739bb 100644 --- a/files-update.sh +++ b/files-update.sh @@ -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 +# -------------------------------------- \ No newline at end of file diff --git a/install.sh b/install.sh index f869816..335b2e5 100644 --- a/install.sh +++ b/install.sh @@ -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"