Skip to content

Commit

Permalink
Fixed addon name
Browse files Browse the repository at this point in the history
  • Loading branch information
aymene69 committed Feb 28, 2024
1 parent b3ddb3a commit a3e9a3b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<form style="background-color: rgba(255,255,255,0.68);padding: 2rem;border-radius: 1rem">
<img src="https://user-images.githubusercontent.com/27040483/28728094-99f3e3f6-73c7-11e7-8f8d-28912dc6ac0d.png" alt="logo" style="width: 100px;height: 100px;">
<div class="space-y-12">
<p style="text-align: center">Stremio-Jackett v3.0.11</p>
<p style="text-align: center">Stremio-Jackett v3.0.13</p>
<h1 class="text-base font-semibold leading-7 text-gray-900" style="text-align: center;font-size: 2rem;">Addon configuration</h1>


Expand Down
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
root_path = "/" + root_path
app = FastAPI(root_path=root_path)

VERSION = "3.0.11"
VERSION = "3.0.13"
isDev = os.getenv("NODE_ENV") == "development"

class LogFilterMiddleware:
Expand Down Expand Up @@ -92,7 +92,7 @@ async def get_manifest():
"catalogs": [],
"resources": ["stream"],
"types": ["movie", "series"],
"name": "Jackett" + " (Dev)" if isDev else "",
"name": "Jackett" + (" (Dev)" if isDev else ""),
"description": "Stremio Jackett Addon",
"behaviorHints": {
"configurable": True,
Expand Down
Empty file modified update-dev.sh
100755 → 100644
Empty file.

0 comments on commit a3e9a3b

Please sign in to comment.