Compare commits

...

2 Commits

Author SHA1 Message Date
5e8f1ee46d Bump version: 1.3.5 → 1.3.6
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m31s
2025-07-19 23:19:34 +01:00
f619644d59 cleanup 2025-07-19 23:19:31 +01:00
3 changed files with 3 additions and 12 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "1.3.5"
current_version = "1.3.6"
commit = true
tag = true
tag_name = "{new_version}"

View File

@ -1 +1 @@
1.3.5
1.3.6

View File

@ -57,13 +57,4 @@ def remove_extra_url():
extra_urls_list.remove(extra_url)
write_extra_urls_list(extra_urls_list)
return jsonify({'message': 'Extra URL removed successfully.'}), 200
@extra_urls_bp.route('/extra_urls_file', methods=['GET'])
def get_extra_urls_file():
"""Gets the content of the extra_urls.txt file."""
if not os.path.exists(EXTRA_URLS_FILE):
return "File not found", 404
with open(EXTRA_URLS_FILE, 'r') as f:
content = f.read()
return Response(content, mimetype='text/plain')
return jsonify({'message': 'Extra URL removed successfully.'}), 200