Skip to content
This repository was archived by the owner on May 9, 2026. It is now read-only.

Commit bedd345

Browse files
authored
Merge branch 'master' into self-fix
2 parents 4dc15ee + bcc5e7d commit bedd345

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,9 @@ You can run the background worker as a systemd service for persistence.
362362
systemctl --user daemon-reload
363363
systemctl --user enable --now viu-worker.service
364364
```
365+
366+
## Project using it
367+
**[Inazuma](https://github.com/viu-media/Inazuma)** - official gui wrapper over viu built in kivymd
365368
366369
## Contributing
367370

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "viu-media"
3-
version = "3.3.4"
3+
version = "3.3.5"
44
description = "A browser anime site experience from the terminal"
55
license = "UNLICENSE"
66
readme = "README.md"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

viu_media/cli/config/loader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def _handle_first_run(self) -> AppConfig:
7171

7272
return app_config
7373

74-
def load(self, update: Dict = {}) -> AppConfig:
74+
def load(self, update: Dict = {}, allow_setup=True) -> AppConfig:
7575
"""
7676
Loads the configuration and returns a populated, validated AppConfig object.
7777
@@ -84,7 +84,7 @@ def load(self, update: Dict = {}) -> AppConfig:
8484
Raises:
8585
ConfigError: If the configuration file contains validation or parsing errors.
8686
"""
87-
if not self.config_path.exists():
87+
if not self.config_path.exists() and allow_setup:
8888
return self._handle_first_run()
8989

9090
try:

0 commit comments

Comments
 (0)