Skip to content

Commit

Permalink
switch default provider from vidoza to voe
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixthrush committed Sep 20, 2024
1 parent deb8442 commit 4c5464a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/aniworld/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ def create(self):
self.provider_selector = self.add(
npyscreen.TitleSelectOne,
name="Provider",
values=["Vidoza", "Streamtape", "VOE", "Doodstream"],
max_height=4,
value=[["Vidoza", "Streamtape", "VOE", "Doodstream"].index(globals.DEFAULT_PROVIDER)],
values=["Vidoza", "Streamtape", "VOE"], # Doodstream broken
max_height=3, # 4 with Doodstream
value=[["Vidoza", "Streamtape", "VOE"].index(globals.DEFAULT_PROVIDER)],
scroll_exit=True
)
logging.debug("Provider selector created")

self.add(npyscreen.FixedText, value="") # new line
self.add(npyscreen.FixedText, value="", editable=False) # new line
self.episode_selector = self.add(
npyscreen.TitleMultiSelect,
name="Episode Selection",
Expand Down
3 changes: 1 addition & 2 deletions src/aniworld/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
DEFAULT_ACTION = "Download" # E.g. Watch, Download, Syncplay
DEFAULT_DOWNLOAD_PATH = os.path.join(os.path.expanduser('~'), 'Downloads')
DEFAULT_LANGUAGE = "German Sub" # German Dub, English Sub, German Sub
DEFAULT_PROVIDER = "Vidoza" # Vidoza, Streamtape, VOE, Doodstream
DEFAULT_PROVIDER_DOWNLOAD = "VOE" # Vidoza, Streamtape, VOE, Doodstream
DEFAULT_PROVIDER = "VOE" # Vidoza, Streamtape, VOE, Doodstream
DEFAULT_ANISKIP = False
DEFAULT_KEEP_WATCHING = False
DEFAULT_ONLY_DIRECT_LINK = False
Expand Down

0 comments on commit 4c5464a

Please sign in to comment.