Mark
196f0dd013
Merge pull request #138 from markbeep/release-please--branches--main
...
chore(main): release 1.6.1
v1.6.1
2025-08-28 10:30:45 +02:00
Mark
7debbd86fa
chore(main): release 1.6.1
2025-08-28 10:30:03 +02:00
Markbeep
be3b9c54e5
fix: ignore missing booleans on REST api/local file indexer configs
2025-08-28 10:29:41 +02:00
Markbeep
5b24705f96
refactor: separate 'enabled' logic of indexers
2025-08-28 10:29:29 +02:00
Mark
df611b927a
Merge pull request #136 from markbeep/release-please--branches--main
...
chore(main): release 1.6.0
v1.6.0
2025-08-26 18:48:41 +02:00
Mark
4d161007b2
chore(main): release 1.6.0
2025-08-22 16:41:11 +02:00
Markbeep
c7bd80377c
feat: update indexer configuration using a local file. Closes #122
2025-08-22 16:40:54 +02:00
Markbeep
9b2cda30c0
feat: add API endpoint to update indexers (mam_id). Closes #122
2025-08-22 15:01:53 +02:00
Markbeep
c8279f0847
refactor: split up settings router file into a file for each page
2025-08-22 13:31:12 +02:00
Mark
f4e69d55dc
Merge pull request #131 from markbeep/release-please--branches--main
...
chore(main): release 1.5.3
v1.5.3
2025-08-18 13:54:50 +02:00
Mark
04084b33fa
chore(main): release 1.5.3
2025-08-18 13:52:21 +02:00
Markbeep
1701143bb3
chore: release-please add changelog-sections
2025-08-18 11:52:07 +00:00
Markbeep
9acec077c0
deps: update packages
2025-08-18 11:17:07 +00:00
Markbeep
8d08c891c4
refactor: use class-based authentication to automatically get generated in the OpenAPI specs
2025-08-18 10:54:55 +00:00
Markbeep
b032fbc92e
fix: restore cached search results without crashing. Closes #130
2025-08-18 10:54:42 +00:00
Markbeep
990396a519
fix: correctly cache admin user when using the 'none' login type to prevent crashing
2025-08-18 10:23:50 +00:00
Mark
ab56df80fa
Merge pull request #129 from markbeep/release-please--branches--main
...
chore(main): release 1.5.2
v1.5.2
2025-08-16 21:42:22 +02:00
Mark
8f5bad970e
chore(main): release 1.5.2
2025-08-16 20:39:15 +02:00
Markbeep
12d323b9fa
fix: hide wrong book requests and clear cache
...
Release-As: 1.5.2
2025-08-16 20:38:34 +02:00
Markbeep
d07765f924
feat: add changelog modal when clicking version in the settings
2025-08-16 19:45:26 +02:00
Mark
0ef7008b2f
Merge pull request #128 from markbeep/release-please--branches--main
...
chore(main): release 1.5.1
v1.5.1
2025-08-16 17:50:26 +02:00
Mark
331e315965
chore(main): release 1.5.1
2025-08-16 17:48:24 +02:00
Markbeep
5de5cbfcd6
chore: remove leading v from version number
...
Release-As: 1.5.1
2025-08-16 17:47:58 +02:00
Markbeep
7c549be1ef
feat: allow editing of manual requests. Closes #73
2025-08-16 15:33:44 +02:00
Markbeep
1e93f725af
feat: add counters to wishlist pages
...
fix: correctly always show all books on requests page as admin
2025-08-16 15:13:12 +02:00
Mark
5985271cbe
Merge pull request #127 from markbeep/release-please--branches--main
...
chore(main): release 1.5.0
v1.5.0
2025-08-16 12:04:12 +02:00
Mark
c9a5efa0b1
chore(main): release 1.5.0
2025-08-16 12:01:01 +02:00
Markbeep
5a8f24cec0
fix: wrong color scheme in login/init pages
...
fix: oidc config not outputting errors on invalid endpoint url
2025-08-16 12:00:09 +02:00
Markbeep
93a6315e30
feat: added env variables for forcing login type and initializing username/password
2025-08-16 11:20:34 +02:00
Markbeep
b73726ecfc
chore: add release-please
2025-08-14 19:07:59 +02:00
Mark
3296af4970
Merge pull request #126 from markbeep/pr-123
...
feat: add more replacement options for download notifications
2025-08-14 18:14:16 +02:00
Markbeep
c32d16b6f2
feat: add more replacement options for download notifications
2025-08-14 16:12:55 +00:00
Mark
22482b4855
Merge pull request #123 from Zeoic/main
...
Added Event Variables: bookASIN and torrentInfoHash
2025-08-14 16:50:22 +02:00
Markbeep
9cb4c28371
chore: add vim to dev container
2025-08-14 14:07:48 +00:00
Mark
92a401879b
Merge pull request #125 from markbeep/add-user-api
...
feat: Add user api
2025-08-14 10:43:41 +02:00
Markbeep
e2dd7c50ff
refactor: add class-based api auth
...
This enables the auth to be properly tested in the swaggerUI
2025-08-14 08:41:30 +00:00
Markbeep
3e21d7476d
fix: correct api key popup colors and cleanup unused code
2025-08-14 08:08:56 +00:00
Matthieu B
7d3e4fedc6
feat: add API: Users and Status/Health Endpoints ( #117 )
...
* Add API key management features and health check to Dockerfile
- Introduced API key model and related functions for creating, authenticating, and managing API keys.
- Updated FastAPI application to include a health check endpoint.
- Enhanced the settings page to allow users to create, delete, and toggle API keys.
- Updated README to document the new health check feature.
* Delete DOCKER_HEALTH_CHECK.md
* Refactor API Key implementation and update documentation
- Renamed ApiKey model to APIKey for consistency.
- Updated references to ApiKey in authentication and settings modules.
- Removed deprecated health check test script.
- Simplified API routes and removed unused endpoints.
- Enhanced API key management in settings with improved UI.
- Added comprehensive API documentation for key management and usage.
- Removed generate_openapi.py script as it is no longer needed.
- Created a new Alembic migration for API key table.
2025-08-14 09:25:26 +02:00
Markbeep
89951745e3
add simple dev container
2025-08-13 09:16:02 +00:00
admin-lh
8ab2178e03
add bookASIN and torrentInfoHash as event variable options for notifications
2025-08-10 21:57:58 -04:00
Mark
907c360d70
Merge pull request #121 from markbeep/111-default-search-language
...
add default region env variable
2025-07-18 09:16:45 +02:00
Mark
8a454d702c
add default region env variable
2025-07-18 09:16:12 +02:00
Mark
14df574c23
Merge pull request #120 from markbeep/102-bugpadding-on-region-drop-down-box-is-off
...
fix overlapping border
2025-07-18 09:01:28 +02:00
Mark
fa82de4578
fix overlapping border
2025-07-18 09:00:01 +02:00
Mark
ef02295625
remove confusing placeholders
2025-07-17 17:24:03 +02:00
Markbeep
f5760398b6
Remove notification part from readme
1.4.9
2025-07-01 23:05:38 +02:00
Markbeep
565afbf6c9
update packages, add notif logging
2025-07-01 23:03:43 +02:00
Mark
693669f94d
Merge pull request #115 from markbeep/114-feature-abr-x-ntfy-notification
...
Generalizes the notification settings
2025-07-01 22:47:28 +02:00
Markbeep
8beea52c60
add notification tutorial
2025-07-01 22:45:20 +02:00
Markbeep
94510a8663
make notification settings more general
2025-07-01 22:14:27 +02:00