Skip to content

Commit

Permalink
Version 1.4.10
Browse files Browse the repository at this point in the history
Libs updates
  • Loading branch information
filak committed Jan 31, 2023
1 parent 2bf9533 commit e6a09ab
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 23 deletions.
2 changes: 1 addition & 1 deletion flask-app/application/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __call__(self, environ, start_response):

app.config.update(dict(
APP_NAME = 'MTW',
APP_VER = '1.4.9',
APP_VER = '1.4.10',
API_VER = '1.0.0',
DBVERSION = 1.0,
TEMP_DIR = mtu.get_instance_dir(app, 'temp'),
Expand Down
9 changes: 4 additions & 5 deletions flask-app/dist/instance/conf/mtw-dist.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# *** Config version 1.4.7 ***
# *** Config version 1.4.10 ***
### Important values are marked with ! ###
### ! This file MUST BE UTF-8 encoded ! ###
### ! Restart the App after modifying ! ###
Expand All @@ -20,15 +20,14 @@ APP_PATH = /mtw
HOST_LINK = https://dev.medvik.cz

### ! Background Worker host:port ! ###
## Default - production: http://127.0.0.1:55933/ - development: http://127.0.0.1:5903/ ##
WORKER_HOST = http://127.0.0.1:55933/

### ! Always set ! ###
TARGET_YEAR = 2023
TARGET_YEAR = 2024

### Default previous version year - used for showing modifications ###
PREV_YEAR_DEF = 2022
PREV_YEARS = 2015,2016,2017,2018,2019,2020,2021,2022
PREV_YEAR_DEF = 2023
PREV_YEARS = 2015,2016,2017,2018,2019,2020,2021,2022,2023

### Date format: YYYY-MM-DD ###
REVISED_AFTER = 2022-01-01
Expand Down
9 changes: 4 additions & 5 deletions flask-app/instance/conf/mtw-dist.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# *** Config version 1.4.7 ***
# *** Config version 1.4.10 ***
### Important values are marked with ! ###
### ! This file MUST BE UTF-8 encoded ! ###
### ! Restart the App after modifying ! ###
Expand All @@ -20,15 +20,14 @@ APP_PATH = /mtw
HOST_LINK = https://dev.medvik.cz

### ! Background Worker host:port ! ###
## Default - production: http://127.0.0.1:55933/ - development: http://127.0.0.1:5903/ ##
WORKER_HOST = http://127.0.0.1:55933/

### ! Always set ! ###
TARGET_YEAR = 2023
TARGET_YEAR = 2024

### Default previous version year - used for showing modifications ###
PREV_YEAR_DEF = 2022
PREV_YEARS = 2015,2016,2017,2018,2019,2020,2021,2022
PREV_YEAR_DEF = 2023
PREV_YEARS = 2015,2016,2017,2018,2019,2020,2021,2022,2023

### Date format: YYYY-MM-DD ###
REVISED_AFTER = 2022-01-01
Expand Down
12 changes: 6 additions & 6 deletions flask-app/instance/conf/mtw.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# *** Config version 1.4.7 ***
# *** Config version 1.4.10 ***
### Important values are marked with ! ###
### ! This file MUST BE UTF-8 encoded ! ###
### ! Restart the App after modifying ! ###
Expand All @@ -26,15 +26,15 @@ WORKER_HOST = http://127.0.0.1:5903/
#WORKER_HOST = http://127.0.0.1:55933/

### ! Always set ! ###
TARGET_YEAR = 2023
TARGET_YEAR = 2024

### Default previous version year - used for showing modifications ###
PREV_YEAR_DEF = 2022
PREV_YEARS = 2015,2016,2017,2018,2019,2020,2021,2022
PREV_YEAR_DEF = 2023
PREV_YEARS = 2015,2016,2017,2018,2019,2020,2021,2022,2023

### Date format: YYYY-MM-DD ###
REVISED_AFTER = 2021-01-01
CREATED_AFTER = 2021-01-01
REVISED_AFTER = 2022-01-01
CREATED_AFTER = 2022-01-01

### ! Always set ! ###
MARC_LIBCODE = CZ-PrNML
Expand Down
2 changes: 1 addition & 1 deletion flask-app/mtw-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from waitress import serve

appname = 'mtw-server'
appdesc = 'MTW Server 1.4.9'
appdesc = 'MTW Server 1.4.10'
appusage = 'Help: ' + appname + ' -h \n'
appauthor = 'Filip Kriz'

Expand Down
10 changes: 5 additions & 5 deletions flask-app/mtw_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
### Version 1.4.9
### Version 1.4.10
### Python 3.8+ ###
arrow==1.2.3
bcrypt==3.2.0 # NOT python-bcrypt !!!
cachelib==0.9.0
bcrypt==4.0.1 # NOT python-bcrypt !!!
cachelib==0.9.0 # 0.10.1 incompatible !
certifi==2022.12.7
cffi==1.15.1
diff_match_patch==20200713
Flask==2.2.2
Flask-Babel==3.0.0
Flask-Babel==3.0.1
Flask-Caching==2.0.2
Flask-Paranoid==0.3.0
Flask-SeaSurf==1.1.1
Expand All @@ -21,7 +21,7 @@ Jinja2==3.1.2
pyuca==1.2
requests==2.28.2
requests_futures==1.0.0
setuptools==66.0.0
setuptools==67.0.0
### (optional) If deploying with Waitress (https://github.com/Pylons/waitress):
waitress==2.1.2
Werkzeug==2.2.2
Expand Down

0 comments on commit e6a09ab

Please sign in to comment.