Skip to content

Commit

Permalink
Fix for stable update version
Browse files Browse the repository at this point in the history
  • Loading branch information
OzzieIsaacs committed Nov 11, 2024
1 parent 5a87c1c commit 2fff002
Show file tree
Hide file tree
Showing 7 changed files with 166 additions and 64 deletions.
2 changes: 1 addition & 1 deletion cps/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def admin():
form_date += timedelta(hours=int(commit[20:22]), minutes=int(commit[23:]))
commit = format_datetime(form_date - tz, format='short')
else:
commit = version.replace("b", " Beta")
commit = version['version'].replace("b", " Beta")

all_user = ub.session.query(ub.User).all()
# email_settings = mail_config.get_mail_settings()
Expand Down
Empty file modified cps/static/js/caliBlur.js
100755 → 100644
Empty file.
Empty file modified cps/tasks/convert.py
100755 → 100644
Empty file.
Empty file modified cps/templates/config_edit.html
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion cps/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def _nightly_version_info(cls):
@classmethod
def _stable_version_info(cls):
log.debug("Stable version: {}".format(constants.STABLE_VERSION))
return constants.STABLE_VERSION # Current Version
return {'version': constants.STABLE_VERSION }

@classmethod
def dry_run(cls):
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ dependencies = [
"regex>=2022.3.2,<2024.6.25",
"bleach>=6.0.0,<6.2.0",
"python-magic>=0.4.27,<0.5.0",
"python-magic-bin>=0.4.0,<0.5.0;sys_platform=='win32'",
"flask-httpAuth>=4.4.0,<5.0.0",
"cryptography>=30.0.0,<44.0.0",
]
Expand Down
225 changes: 163 additions & 62 deletions test/Calibre-Web TestSummary_Linux.html

Large diffs are not rendered by default.

0 comments on commit 2fff002

Please sign in to comment.