Skip to content

Commit

Permalink
0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared-Gross committed Dec 13, 2024
1 parent e484ac0 commit f66d00f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
]

INACTIVITY_TIMEOUT = timedelta(hours=5) # 5 hours
VERSION = "0.0.4"
VERSION = "0.0.5"


POSTGRES_USER = os.environ.get("POSTGRES_USER")
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"name": "hutterite-bookshelf",
"description": "Your own personal bookshelf.",
"version": "1.0.0",
"version": "0.0.5",
"main": "webpack.config.js",
"scripts": {
"run": "python main.py",
Expand All @@ -35,4 +35,4 @@
"url": "https://github.com/TheCodingJsoftware/Hutterite-Bookshelf/issues"
},
"homepage": "https://github.com/TheCodingJsoftware/Hutterite-Bookshelf#readme"
}
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1794,7 +1794,7 @@ function toggleTheme() {
}

document.addEventListener('DOMContentLoaded', async () => {
const VERSION = localStorage.getItem('latestVersion') || '1.0.1';
const VERSION = localStorage.getItem('latestVersion') || '1.0.0';
const appNameVersion = document.getElementById('app-name-version') as HTMLHeadingElement;
appNameVersion.textContent = `Hutterite Bookshelf v${VERSION}`;

Expand Down

0 comments on commit f66d00f

Please sign in to comment.