diff --git a/CONTRIBUTIONS.md b/CONTRIBUTIONS.md index 835f80a..373a234 100644 --- a/CONTRIBUTIONS.md +++ b/CONTRIBUTIONS.md @@ -6,7 +6,7 @@ First off, thank you for considering contributing to Viu! We welcome any help, w There are many ways to contribute to the Viu project: -* **Reporting Bugs:** If you find a bug, please create an issue in our [issue tracker](https://github.com/Benexl/Viu/issues). +* **Reporting Bugs:** If you find a bug, please create an issue in our [issue tracker](https://github.com/viu-media/Viu/issues). * **Suggesting Enhancements:** Have an idea for a new feature or an improvement to an existing one? We'd love to hear it. * **Writing Code:** Help us fix bugs or implement new features. * **Improving Documentation:** Enhance our README, add examples, or clarify our contribution guidelines. @@ -16,7 +16,7 @@ There are many ways to contribute to the Viu project: We follow the standard GitHub Fork & Pull Request workflow. -1. **Create an Issue:** Before starting work on a new feature or a significant bug fix, please [create an issue](https://github.com/Benexl/Viu/issues/new/choose) to discuss your idea. This allows us to give feedback and prevent duplicate work. For small bugs or documentation typos, you can skip this step. +1. **Create an Issue:** Before starting work on a new feature or a significant bug fix, please [create an issue](https://github.com/viu-media/Viu/issues/new/choose) to discuss your idea. This allows us to give feedback and prevent duplicate work. For small bugs or documentation typos, you can skip this step. 2. **Fork the Repository:** Create your own fork of the Viu repository. diff --git a/README.md b/README.md index c9283be..33562ec 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ [![PyPI - Version](https://img.shields.io/pypi/v/viu-media)](https://pypi.org/project/viu-media/) [![PyPI - Downloads](https://img.shields.io/pypi/dm/viu-media)](https://pypi.org/project/viu-media/) -[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/Benexl/Viu/test.yml?label=Tests)](https://github.com/Benexl/Viu/actions) +[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/viu-media/Viu/test.yml?label=Tests)](https://github.com/viu-media/Viu/actions) [![Discord](https://img.shields.io/discord/1250887070906323096?label=Discord&logo=discord)](https://discord.gg/HBEmAwvbHV) -[![GitHub Issues](https://img.shields.io/github/issues/Benexl/Viu)](https://github.com/Benexl/Viu/issues) -[![PyPI - License](https://img.shields.io/pypi/l/viu)](https://github.com/Benexl/Viu/blob/master/LICENSE) +[![GitHub Issues](https://img.shields.io/github/issues/viu-media/Viu)](https://github.com/viu-media/Viu/issues) +[![PyPI - License](https://img.shields.io/pypi/l/viu)](https://github.com/viu-media/Viu/blob/master/LICENSE) @@ -74,16 +74,16 @@ uv tool install "viu-media[notifications]" # For desktop notifications #### Nix / NixOS ##### Ephemeral / One-Off Run (No Installation) ```bash - nix run github:Benexl/viu + nix run github:viu-media/viu ``` ##### Imperative Installation ```bash - nix profile install github:Benexl/viu + nix profile install github:viu-media/viu ``` ##### Declarative Installation ###### in your flake.nix ```nix - viu.url = "github:Benexl/viu"; + viu.url = "github:viu-media/viu"; ``` ###### in your system or home-manager packages ```nix @@ -116,7 +116,7 @@ uv tool install "viu-media[notifications]" # For desktop notifications Requires [Git](https://git-scm.com/), [Python 3.10+](https://www.python.org/), and [uv](https://astral.sh/blog/uv). ```bash - git clone https://github.com/Benexl/Viu.git --depth 1 + git clone https://github.com/viu-media/Viu.git --depth 1 cd Viu uv tool install . viu --version diff --git a/flake.nix b/flake.nix index cada96a..a622324 100644 --- a/flake.nix +++ b/flake.nix @@ -68,8 +68,8 @@ meta = { description = "Your browser anime experience from the terminal"; - homepage = "https://github.com/Benexl/Viu"; - changelog = "https://github.com/Benexl/Viu/releases/tag/v${version}"; + homepage = "https://github.com/viu-media/Viu"; + changelog = "https://github.com/viu-media/Viu/releases/tag/v${version}"; mainProgram = "viu"; license = lib.licenses.unlicense; maintainers = with lib.maintainers; [ theobori ]; diff --git a/viu b/viu old mode 100644 new mode 100755 diff --git a/viu_media/core/constants.py b/viu_media/core/constants.py index 008921a..5f66998 100644 --- a/viu_media/core/constants.py +++ b/viu_media/core/constants.py @@ -13,7 +13,7 @@ USER_NAME = os.environ.get("USERNAME", "User") __version__ = metadata.version("viu_media") -AUTHOR = "Benexl" +AUTHOR = "viu-media" GIT_REPO = "github.com" GIT_PROTOCOL = "https://" REPO_HOME = f"https://{GIT_REPO}/{AUTHOR}/Viu"