Skip to content

Commit

Permalink
Fix for preceding event buttons (#2069)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderWatzinger committed Sep 20, 2023
1 parent ae586b6 commit 32aed2c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from config.database_versions import DATABASE_VERSIONS

VERSION = '7.16.0'
VERSION = '7.16.1'
DATABASE_VERSION = DATABASE_VERSIONS[0]
DEMO_MODE = False # If activated some options are disabled, login is prefilled

Expand Down
3 changes: 3 additions & 0 deletions install/upgrade/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ then run the database upgrade script, then restart Apache:
sudo python3 install/upgrade/database_upgrade.py
sudo service apache2 restart

### 7.16.0 to 7.16.1
A code base update (e.g. with git pull) and a webserver restart is sufficient.

### 7.15.0 to 7.16.0
7.16.0.sql is needed but will be taken care of by the database upgrade script.

Expand Down
2 changes: 1 addition & 1 deletion openatlas/forms/base_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def additional_fields(self) -> dict[str, Any]:
add_dynamic=[
'activity',
'acquisition',
'modification'
'modification',
'move',
'production'],
related_tables=['event'])
Expand Down
3 changes: 3 additions & 0 deletions openatlas/views/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ def index_changelog() -> str:


versions = {
'7.16.1': ['2023-09-20', {
'fix': {
'2069': 'Broken buttons for preceding event'}}],
'7.16.0': ['2023-09-09', {
'feature': {
'2022': 'Additional database export option (dump)',
Expand Down

0 comments on commit 32aed2c

Please sign in to comment.