From a69302d0268c9a1d1f86a64dc6154977eba57447 Mon Sep 17 00:00:00 2001 From: Ben C Date: Thu, 20 Jul 2023 17:53:17 -0400 Subject: [PATCH] [ALL] Update Repo Links --- .github/ISSUE_TEMPLATE/translation.yml | 2 +- README.md | 8 +++--- owmods_cli/Cargo.toml | 2 +- owmods_cli/README.md | 16 ++++++------ owmods_core/CONTRIBUTING.md | 2 +- owmods_core/Cargo.toml | 2 +- owmods_core/README.md | 18 ++++++------- owmods_core/src/lib.rs | 2 +- owmods_gui/HELP.md | 4 +-- owmods_gui/README.md | 26 +++++++++---------- owmods_gui/TRANSLATIONS.md | 6 ++--- .../main/top-bar/overflow/About.tsx | 2 +- .../main/top-bar/overflow/OverflowMenu.tsx | 2 +- xtask/src/cli_templates/PKGBUILD | 4 +-- xtask/src/gui_templates/PKGBUILD | 4 +-- 15 files changed, 50 insertions(+), 50 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/translation.yml b/.github/ISSUE_TEMPLATE/translation.yml index 49d6811d..55c9fea3 100644 --- a/.github/ISSUE_TEMPLATE/translation.yml +++ b/.github/ISSUE_TEMPLATE/translation.yml @@ -7,7 +7,7 @@ body: attributes: value: | Thank you for creating a translation for the manager! - To get started, check out [TRANSLATIONS.md](https://github.com/Bwc9876/ow-mod-man/blob/main/owmods_gui/TRANSLATIONS.md) + To get started, check out [TRANSLATIONS.md](https://github.com/ow-mods/ow-mod-man/blob/main/owmods_gui/TRANSLATIONS.md) - type: input id: language attributes: diff --git a/README.md b/README.md index 3eb0e29a..e7dd2a3f 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,11 @@ # Outer Wilds Mod Manager

-OWMM Logo
+OWMM Logo
This is the monorepo for the new Outer Wilds Mod Manager.
-Core | -CLI | -GUI +Core | +CLI | +GUI

## Packages diff --git a/owmods_cli/Cargo.toml b/owmods_cli/Cargo.toml index e51e05a2..aa3d1000 100644 --- a/owmods_cli/Cargo.toml +++ b/owmods_cli/Cargo.toml @@ -5,7 +5,7 @@ description = "A CLI Tool To Manage OWML Mods" version = "0.9.0" edition = "2021" readme = "./README.md" -repository = "https://github.com/Bwc9876/ow-mod-man/" +repository = "https://github.com/ow-mods/ow-mod-man/" license = "GPL-3.0-or-later" [package.metadata.deb] diff --git a/owmods_cli/README.md b/owmods_cli/README.md index 0ff070e0..dd46d4ca 100644 --- a/owmods_cli/README.md +++ b/owmods_cli/README.md @@ -3,22 +3,22 @@ # Outer Wilds Mod Manager CLI

-OWMM Logo
+OWMM Logo
The CLI interface for the Outer Wilds Mod Manager, built using clap.
-Core | -CLI | -GUI +Core | +CLI | +GUI


[![crates.io](https://img.shields.io/crates/v/owmods_cli.svg)](https://crates.io/crates/owmods_cli) -[![GPL-3 licensed](https://img.shields.io/crates/l/owmods_cli.svg)](https://github.com/Bwc9876/ow-mod-man/blob/main/LICENSE) -[![CI](https://github.com/Bwc9876/ow-mod-man/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/Bwc9876/ow-mod-man/actions/workflows/ci.yml) -[![Release](https://github.com/Bwc9876/ow-mod-man/actions/workflows/release_cli.yml/badge.svg)](https://github.com/Bwc9876/ow-mod-man/actions/workflows/release_cli.yml) +[![GPL-3 licensed](https://img.shields.io/crates/l/owmods_cli.svg)](https://github.com/ow-mods/ow-mod-man/blob/main/LICENSE) +[![CI](https://github.com/ow-mods/ow-mod-man/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/ow-mods/ow-mod-man/actions/workflows/ci.yml) +[![Release](https://github.com/ow-mods/ow-mod-man/actions/workflows/release_cli.yml/badge.svg)](https://github.com/ow-mods/ow-mod-man/actions/workflows/release_cli.yml) [![AUR](https://img.shields.io/aur/version/owmods-cli-bin)](https://aur.archlinux.org/packages/owmods-cli-bin) -The CLI interface for the [Outer Wilds Mod Manager](https://github.com/Bwc9876/ow-mod-man), this package is responsible for providing a streamlined way to manage, install, and validate your mods. As well as running the game. This is achieved using the [owmods_core](https://crates.io/crates/owmods_core) package. +The CLI interface for the [Outer Wilds Mod Manager](https://github.com/ow-mods/ow-mod-man), this package is responsible for providing a streamlined way to manage, install, and validate your mods. As well as running the game. This is achieved using the [owmods_core](https://crates.io/crates/owmods_core) package. ## Usage diff --git a/owmods_core/CONTRIBUTING.md b/owmods_core/CONTRIBUTING.md index 4667a3ad..d92e3926 100644 --- a/owmods_core/CONTRIBUTING.md +++ b/owmods_core/CONTRIBUTING.md @@ -8,7 +8,7 @@ Ex: `cargo add tokio` should become `cargo add clap -p owmods_core`. ## Typeshare -Upon editing any structs marked with `#[typeshare]`, you'll need to regenerate TypeScript bindings for the GUI. See the [typeshare section](https://github.com/Bwc9876/ow-mod-man/blob/main/owmods_gui/CONTRIBUTING.md#Typeshare) of the GUI contributing file for more info. +Upon editing any structs marked with `#[typeshare]`, you'll need to regenerate TypeScript bindings for the GUI. See the [typeshare section](https://github.com/ow-mods/ow-mod-man/blob/main/owmods_gui/CONTRIBUTING.md#Typeshare) of the GUI contributing file for more info. ## Tests diff --git a/owmods_core/Cargo.toml b/owmods_core/Cargo.toml index f57db11f..4881389d 100644 --- a/owmods_core/Cargo.toml +++ b/owmods_core/Cargo.toml @@ -6,7 +6,7 @@ version = "0.9.0" edition = "2021" readme = "./README.md" license = "GPL-3.0-or-later" -repository = "https://github.com/Bwc9876/ow-mod-man/" +repository = "https://github.com/ow-mods/ow-mod-man/" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/owmods_core/README.md b/owmods_core/README.md index bc04511b..b94a67a0 100644 --- a/owmods_core/README.md +++ b/owmods_core/README.md @@ -3,22 +3,22 @@ # Outer Wilds Mod Manager Core Package

-OWMM Logo
+OWMM Logo
The core library for the Outer Wilds Mod Manager.
-Core | -CLI | -GUI +Core | +CLI | +GUI


[![crates.io](https://img.shields.io/crates/v/owmods_core.svg)](https://crates.io/crates/owmods_core) [![Documentation](https://docs.rs/owmods_core/badge.svg)](https://docs.rs/owmods_core) -[![GPL-3 licensed](https://img.shields.io/crates/l/owmods_core.svg)](https://github.com/Bwc9876/ow-mod-man/blob/main/LICENSE) -[![CI](https://github.com/Bwc9876/ow-mod-man/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/Bwc9876/ow-mod-man/actions/workflows/ci.yml) -[![Release](https://github.com/Bwc9876/ow-mod-man/actions/workflows/release_core.yml/badge.svg)](https://github.com/Bwc9876/ow-mod-man/actions/workflows/release_core.yml) +[![GPL-3 licensed](https://img.shields.io/crates/l/owmods_core.svg)](https://github.com/ow-mods/ow-mod-man/blob/main/LICENSE) +[![CI](https://github.com/ow-mods/ow-mod-man/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/ow-mods/ow-mod-man/actions/workflows/ci.yml) +[![Release](https://github.com/ow-mods/ow-mod-man/actions/workflows/release_core.yml/badge.svg)](https://github.com/ow-mods/ow-mod-man/actions/workflows/release_core.yml) -The core library for the [Outer Wilds Mod Manager](https://github.com/Bwc9876/ow-mod-man), this package is responsible for basically everything from fetching the db to downloading mods to validating local mods to launching the game. +The core library for the [Outer Wilds Mod Manager](https://github.com/ow-mods/ow-mod-man), this package is responsible for basically everything from fetching the db to downloading mods to validating local mods to launching the game. ## Usage @@ -38,4 +38,4 @@ You can change the OWML path by simply passing a different path to `OWMLConfig:: ## Building -To build this package locally clone the repo `git clone https://github.com/Bwc9876/ow-mod-man` and run `cargo build -p owmods_core` +To build this package locally clone the repo `git clone https://github.com/ow-mods/ow-mod-man` and run `cargo build -p owmods_core` diff --git a/owmods_core/src/lib.rs b/owmods_core/src/lib.rs index bf3a260a..07e25b68 100644 --- a/owmods_core/src/lib.rs +++ b/owmods_core/src/lib.rs @@ -1,6 +1,6 @@ #![doc = include_str!("../README.md")] #![doc( - html_logo_url = "https://github.com/Bwc9876/ow-mod-man/blob/main/.github/assets/logo-core.png?raw=true" + html_logo_url = "https://github.com/ow-mods/ow-mod-man/blob/main/.github/assets/logo-core.png?raw=true" )] /// Fetch database alerts and get mod warnings. diff --git a/owmods_gui/HELP.md b/owmods_gui/HELP.md index f1aceff2..c9ec9be8 100644 --- a/owmods_gui/HELP.md +++ b/owmods_gui/HELP.md @@ -19,7 +19,7 @@ This file contains common questions for the manager. ## How do I use this? -- Download the Outer Wilds Mod Manager installer [from the latest release](https://github.com/Bwc9876/ow-mod-man/releases/latest); +- Download the Outer Wilds Mod Manager installer [from the latest release](https://github.com/ow-mods/ow-mod-man/releases/latest); - Run the downloaded .msi (you might need to ignore some Chrome / Windows warnings); - Shortcuts are added to the desktop and start menu, use them to run the manager; - Run the manager; @@ -71,6 +71,6 @@ Please refer to the [OWML documentation](https://owml.outerwildsmods.com) for in ## My issue isn't listed here -If you're encountering issues or have questions, please [open an Issue](https://github.com/Bwc9876/ow-mod-man/issues/new/choose). You can also [view closed issues](https://github.com/Bwc9876/ow-mod-man/issues?q=is%3Aissue+is%3Aclosed) to see if your issue has already been resolved. +If you're encountering issues or have questions, please [open an Issue](https://github.com/ow-mods/ow-mod-man/issues/new/choose). You can also [view closed issues](https://github.com/ow-mods/ow-mod-man/issues?q=is%3Aissue+is%3Aclosed) to see if your issue has already been resolved. We also have [a Discord server](https://discord.com/invite/wusTQYbYTc) available if you want to chat. diff --git a/owmods_gui/README.md b/owmods_gui/README.md index 74453bc6..e246ae9e 100644 --- a/owmods_gui/README.md +++ b/owmods_gui/README.md @@ -3,23 +3,23 @@ # Outer Wilds Mod Manager GUI

-OWMM Logo
+OWMM Logo
The GUI Version Of The Outer Wilds Mod Manager.
-Core | -CLI | -GUI +Core | +CLI | +GUI


-[![Latest](https://img.shields.io/github/v/release/Bwc9876/ow-mod-man)](https://github.com/Bwc9876/ow-mod-man/releases/latest) +[![Latest](https://img.shields.io/github/v/release/ow-mods/ow-mod-man)](https://github.com/ow-mods/ow-mod-man/releases/latest) [![Flathub](https://img.shields.io/flathub/v/com.outerwildsmods.owmods_gui)](https://flathub.org/apps/com.outerwildsmods.owmods_gui) [![AUR](https://img.shields.io/aur/version/owmods-gui-bin)](https://aur.archlinux.org/packages/owmods-gui-bin) -[![GPL-3 licensed](https://img.shields.io/aur/license/owmods-gui-bin)](https://github.com/Bwc9876/ow-mod-man/blob/main/LICENSE) -[![CI](https://github.com/Bwc9876/ow-mod-man/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/Bwc9876/ow-mod-man/actions/workflows/ci.yml) -[![Release](https://github.com/Bwc9876/ow-mod-man/actions/workflows/release_gui.yml/badge.svg)](https://github.com/Bwc9876/ow-mod-man/actions/workflows/release_gui.yml) +[![GPL-3 licensed](https://img.shields.io/aur/license/owmods-gui-bin)](https://github.com/ow-mods/ow-mod-man/blob/main/LICENSE) +[![CI](https://github.com/ow-mods/ow-mod-man/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/ow-mods/ow-mod-man/actions/workflows/ci.yml) +[![Release](https://github.com/ow-mods/ow-mod-man/actions/workflows/release_gui.yml/badge.svg)](https://github.com/ow-mods/ow-mod-man/actions/workflows/release_gui.yml) -The GUI interface for the [Outer Wilds Mod Manager](https://github.com/Bwc9876/ow-mod-man), this package is responsible for providing a streamlined way to manage, install, and validate your mods. As well as running the game. This is achieved using the [owmods_core](https://crates.io/crates/owmods_core) package. +The GUI interface for the [Outer Wilds Mod Manager](https://github.com/ow-mods/ow-mod-man), this package is responsible for providing a streamlined way to manage, install, and validate your mods. As well as running the game. This is achieved using the [owmods_core](https://crates.io/crates/owmods_core) package. ## Installation @@ -50,7 +50,7 @@ cargo install tauri-cli Clone the repo: ```sh -git clone https://github.com/Bwc9876/ow-mod-man/ +git clone https://github.com/ow-mods/ow-mod-man/ ``` Go into `owmods_gui/frontend` and run: @@ -89,6 +89,6 @@ Just create an empty `dist/` folder next to `backend`, tauri expects one to be t ## Screenshots -![The main screen of the app](https://github.com/Bwc9876/ow-mod-man/raw/dev/.github/assets/screenshots/main.png) -![The logs screen when starting the game](https://github.com/Bwc9876/ow-mod-man/raw/dev/.github/assets/screenshots/logs.png) -![The about modal](https://github.com/Bwc9876/ow-mod-man/raw/dev/.github/assets/screenshots/about.png) +![The main screen of the app](https://github.com/ow-mods/ow-mod-man/raw/dev/.github/assets/screenshots/main.png) +![The logs screen when starting the game](https://github.com/ow-mods/ow-mod-man/raw/dev/.github/assets/screenshots/logs.png) +![The about modal](https://github.com/ow-mods/ow-mod-man/raw/dev/.github/assets/screenshots/about.png) diff --git a/owmods_gui/TRANSLATIONS.md b/owmods_gui/TRANSLATIONS.md index 5b1ff32a..e6052801 100644 --- a/owmods_gui/TRANSLATIONS.md +++ b/owmods_gui/TRANSLATIONS.md @@ -4,9 +4,9 @@ Thank you for taking the time to write a translation! Below you'll find a guide ## Grab the template -To get started, grab [the template.json file](https://github.com/Bwc9876/ow-mod-man/blob/main/owmods_gui/frontend/src/assets/translations/template.json). +To get started, grab [the template.json file](https://github.com/ow-mods/ow-mod-man/blob/main/owmods_gui/frontend/src/assets/translations/template.json). -In addition, you may want to keep [english.json](https://github.com/Bwc9876/ow-mod-man/blob/main/owmods_gui/frontend/src/assets/translations/english.json) open to get an idea of what each key is for. +In addition, you may want to keep [english.json](https://github.com/ow-mods/ow-mod-man/blob/main/owmods_gui/frontend/src/assets/translations/english.json) open to get an idea of what each key is for. ## How translations work @@ -48,6 +48,6 @@ The `_` key is a bit special, this key is used in the event that a translation c ## Submitting Your Translation -After you're done translating, you can submit your translation by [making a new issue](https://github.com/Bwc9876/ow-mod-man/issues/new/choose) and choosing the "Translation" option. +After you're done translating, you can submit your translation by [making a new issue](https://github.com/ow-mods/ow-mod-man/issues/new/choose) and choosing the "Translation" option. To update a translation please do the same. diff --git a/owmods_gui/frontend/src/components/main/top-bar/overflow/About.tsx b/owmods_gui/frontend/src/components/main/top-bar/overflow/About.tsx index dfa9a22e..d869386e 100644 --- a/owmods_gui/frontend/src/components/main/top-bar/overflow/About.tsx +++ b/owmods_gui/frontend/src/components/main/top-bar/overflow/About.tsx @@ -67,7 +67,7 @@ const About = memo(function About({ onClick }: ModalProps) { }, []); const onGithub = useCallback(() => { - shell.open("https://github.com/Bwc9876/ow-mod-man/"); + shell.open("https://github.com/ow-mods/ow-mod-man/"); }, []); const onDiscord = useCallback(() => { diff --git a/owmods_gui/frontend/src/components/main/top-bar/overflow/OverflowMenu.tsx b/owmods_gui/frontend/src/components/main/top-bar/overflow/OverflowMenu.tsx index 582c96ba..6c50b2a8 100644 --- a/owmods_gui/frontend/src/components/main/top-bar/overflow/OverflowMenu.tsx +++ b/owmods_gui/frontend/src/components/main/top-bar/overflow/OverflowMenu.tsx @@ -30,7 +30,7 @@ const OverflowMenu = () => { }, []); const onHelp = useCallback(() => { - shell.open("https://github.com/Bwc9876/ow-mod-man/blob/main/owmods_gui/HELP.md"); + shell.open("https://github.com/ow-mods/ow-mod-man/blob/main/owmods_gui/HELP.md"); onClose(); }, [onClose]); diff --git a/xtask/src/cli_templates/PKGBUILD b/xtask/src/cli_templates/PKGBUILD index 9a7964f4..063203e1 100644 --- a/xtask/src/cli_templates/PKGBUILD +++ b/xtask/src/cli_templates/PKGBUILD @@ -4,10 +4,10 @@ pkgver=~~VERSION~~ pkgrel=1 pkgdesc="A CLI To Manage Outer Wilds Mods" arch=("x86_64") -url="https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_cli" +url="https://github.com/ow-mods/ow-mod-man/tree/main/owmods_cli" license=('GPL3') depends=('glibc' 'gcc-libs' 'mono') -source=("$pkgname-$pkgver.tar.gz::https://github.com/Bwc9876/ow-mod-man/releases/download/cli_v$pkgver/owmods.tar.zst") +source=("$pkgname-$pkgver.tar.gz::https://github.com/ow-mods/ow-mod-man/releases/download/cli_v$pkgver/owmods.tar.zst") sha256sums=() package() { diff --git a/xtask/src/gui_templates/PKGBUILD b/xtask/src/gui_templates/PKGBUILD index ca8973d4..aa1ad968 100644 --- a/xtask/src/gui_templates/PKGBUILD +++ b/xtask/src/gui_templates/PKGBUILD @@ -5,10 +5,10 @@ pkgver=~~VERSION~~ pkgrel=1 pkgdesc="A GUI To Manage Outer Wilds Mods" arch=('x86_64') -url="https://github.com/Bwc9876/ow-mod-man/tree/main/owmods_gui" +url="https://github.com/ow-mods/ow-mod-man/tree/main/owmods_gui" license=('GPL3') depends=('glibc' 'gtk3' 'openssl-1.1' 'hicolor-icon-theme' 'glib2' 'gcc-libs' 'gdk-pixbuf2' 'webkit2gtk' 'cairo' 'mono') -source=("${_appname}-${pkgver}-${arch}.deb::https://github.com/Bwc9876/ow-mod-man/releases/download/gui_v${pkgver}/${_appname}_${pkgver}_amd64.deb") +source=("${_appname}-${pkgver}-${arch}.deb::https://github.com/ow-mods/ow-mod-man/releases/download/gui_v${pkgver}/${_appname}_${pkgver}_amd64.deb") sha256sums=() package() {