From 47fe7063ade12a2863cd7bf0d6c61d3756c6f651 Mon Sep 17 00:00:00 2001 From: Bernhard Koschicek-Krombholz Date: Mon, 4 Mar 2024 12:42:52 +0100 Subject: [PATCH] Fixed directory installation problem (#2184) --- config/default.py | 2 +- files/processed_images/resized/.gitignore | 0 install/upgrade/upgrade.md | 6 ++++++ openatlas/views/changelog.py | 3 +++ 4 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 files/processed_images/resized/.gitignore diff --git a/config/default.py b/config/default.py index 7107eb2b1..f0ebf7713 100644 --- a/config/default.py +++ b/config/default.py @@ -3,7 +3,7 @@ from config.database_versions import DATABASE_VERSIONS -VERSION = '8.2.0' +VERSION = '8.2.1' DATABASE_VERSION = DATABASE_VERSIONS[0] DEMO_MODE = False # If activated some options are disabled, login is prefilled DEBUG = False diff --git a/files/processed_images/resized/.gitignore b/files/processed_images/resized/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/install/upgrade/upgrade.md b/install/upgrade/upgrade.md index 2e9dd6074..9c2382aa5 100644 --- a/install/upgrade/upgrade.md +++ b/install/upgrade/upgrade.md @@ -17,6 +17,12 @@ then run the database upgrade script, then restart Apache: sudo python3 install/upgrade/database_upgrade.py sudo service apache2 restart +### 8.2.0 to 8.2.1 + +This is a fix for installation, no need to update an existing instance. +In case you want to update it anyway, a git pull and apache restart would be +sufficient. + ### 8.1.x to 8.2.0 There is no database update for this release but new node packages are needed: diff --git a/openatlas/views/changelog.py b/openatlas/views/changelog.py index 31b291782..63faff22e 100644 --- a/openatlas/views/changelog.py +++ b/openatlas/views/changelog.py @@ -15,6 +15,9 @@ def index_changelog() -> str: versions = { + '8.2.1': ['2024-03-04', { + 'fix': { + '2184': 'Directory for processed files not writable'}}], '8.2.0': ['2024-03-02', { 'feature': { '2186': 'Move file item from admin area to menu',