From 68ba47adcfd32aba889011977e77b0d41a9dfe94 Mon Sep 17 00:00:00 2001 From: Caleb Smith Date: Sat, 30 Mar 2024 08:14:57 -0500 Subject: [PATCH] Update repo links --- .github/workflows/site.yml | 2 +- README.md | 6 +++--- book/src/setup/installation.md | 2 +- book/src/troubleshooting.md | 2 +- crates/uk-mod/src/unpack.rs | 2 +- src/gui/menus.rs | 2 +- src/gui/modals.rs | 4 ++-- src/gui/package.rs | 2 +- src/gui/tasks.rs | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index 404a3dca..f99effeb 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -33,7 +33,7 @@ jobs: run: | REV=$(git rev-parse --short HEAD) git init - git remote add upstream https://x-access-token:${{secrets.GITHUB_TOKEN}}@github.com/NiceneNerd/ukmm + git remote add upstream https://x-access-token:${{secrets.GITHUB_TOKEN}}@github.com/NiceneNerd/UKMM git config user.name "Nicene Nerd" git config user.email "c.smith@tuta.io" git add -A . diff --git a/README.md b/README.md index 102be01d..d4cd7bc7 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ inspiration in some ways from the famous [Mod Organizer ## Setup and Use Unlike BCML, setup is pretty much just download and unzip. For more details -consult [the Book](https://nicenenerd.github.io/ukmm/). +consult [the Book](https://nicenenerd.github.io/UKMM/). ## Building from Source @@ -52,7 +52,7 @@ build --release` in the root repo folder. It may take a while. ## Contributing -Issues: https://github.com/NiceneNerd/ukmm/issues +Issues: https://github.com/NiceneNerd/UKMM/issues Contributions are always welcome. Some notes about the process: @@ -69,4 +69,4 @@ Contributions are always welcome. Some notes about the process: This software is licensed under the terms of the GNU General Public License, version 3 or later. The source is publicly available on -[GitHub](https://github.com/NiceneNerd/ukmm). +[GitHub](https://github.com/NiceneNerd/UKMM). diff --git a/book/src/setup/installation.md b/book/src/setup/installation.md index c38a2751..40435b6e 100644 --- a/book/src/setup/installation.md +++ b/book/src/setup/installation.md @@ -8,7 +8,7 @@ installation over 9000 times easier than BCML. ## Steps - [Download the latest UKMM release for your operating system from - GitHub](https://github.com/NiceneNerd/ukmm/releases/latest) + GitHub](https://github.com/NiceneNerd/UKMM/releases/latest) - Extract the archive (ZIP on Windows, tar on Linux) wherever suits you - (Linux only) You may need to set the executable bit: `chmod +x ./ukmm` - Run the executable. You have UKMM ready to go! diff --git a/book/src/troubleshooting.md b/book/src/troubleshooting.md index 8e0a4733..6bc68612 100644 --- a/book/src/troubleshooting.md +++ b/book/src/troubleshooting.md @@ -13,7 +13,7 @@ Here are the most general rules for troubleshooting: go to [my Discord server](https://discord.gg/y7VJqMB329). - If you think the problem is probably with UKMM itself and would require changes to the code, [file an issue on - GitHub](https://github.com/NiceneNerd/ukmm/issues/new/choose). + GitHub](https://github.com/NiceneNerd/UKMM/issues/new/choose). - In case the program crashes completely, run it from a terminal/Command Prompt and check for panic output. diff --git a/crates/uk-mod/src/unpack.rs b/crates/uk-mod/src/unpack.rs index e931a655..518420b8 100644 --- a/crates/uk-mod/src/unpack.rs +++ b/crates/uk-mod/src/unpack.rs @@ -722,7 +722,7 @@ impl ModUnpacker { "No copy of {} found in game dump or any mod. Sometimes this is a problem with the mod or\ your game dump. However, it can also be a temporary cache error. If you know your dump and its\ configuration are sound, try restarting UKMM. If it persists, copy the error details and post \ - as a comment to https://github.com/NiceneNerd/ukmm/issues/120.", &file + as a comment to https://github.com/NiceneNerd/UKMM/issues/120.", &file ); for e in dump_error { err = e.context(err); diff --git a/src/gui/menus.rs b/src/gui/menus.rs index e1005d67..ef0fe395 100644 --- a/src/gui/menus.rs +++ b/src/gui/menus.rs @@ -118,7 +118,7 @@ impl App { } if ui.button("Help").clicked() { ui.close_menu(); - open::that("https://nicenenerd.github.io/ukmm").unwrap_or(()); + open::that("https://nicenenerd.github.io/UKMM").unwrap_or(()); } if ui.button("About").clicked() { ui.close_menu(); diff --git a/src/gui/modals.rs b/src/gui/modals.rs index 0cf1a006..dbd1b582 100644 --- a/src/gui/modals.rs +++ b/src/gui/modals.rs @@ -296,8 +296,8 @@ impl App { }); egui::Grid::new("about_box").num_columns(2).show(ui, |ui| { ui.label("GitHub:"); - if ui.link("https://github.com/NiceneNerd/ukmm").clicked() { - open::that("https://github.com/NiceneNerd/ukmm").unwrap_or(()); + if ui.link("https://github.com/NiceneNerd/UKMM").clicked() { + open::that("https://github.com/NiceneNerd/UKMM").unwrap_or(()); } ui.end_row(); ui.label("GUI library:"); diff --git a/src/gui/package.rs b/src/gui/package.rs index 7da9e535..5df9410c 100644 --- a/src/gui/package.rs +++ b/src/gui/package.rs @@ -349,7 +349,7 @@ impl ModPackerBuilder { app.do_update(Message::ShowPackagingDependencies); } if ui.icon_text_button("Help", Icon::Help).clicked() { - open::that("https://nicenenerd.github.io/ukmm/mod_format.html").unwrap_or(()); + open::that("https://nicenenerd.github.io/UKMM/mod_format.html").unwrap_or(()); } }); ui.add_space(8.0); diff --git a/src/gui/tasks.rs b/src/gui/tasks.rs index 7b114f67..639099e1 100644 --- a/src/gui/tasks.rs +++ b/src/gui/tasks.rs @@ -544,7 +544,7 @@ fn response(url: &str) -> Result> { } pub fn get_releases(core: Arc, sender: flume::Sender) { - let url = "https://api.github.com/repos/NiceneNerd/ukmm/releases?per_page=10"; + let url = "https://api.github.com/repos/NiceneNerd/UKMM/releases?per_page=10"; match response(url).and_then(|bytes| { serde_json::from_slice::>(&bytes) .context("Failed to parse GitHub response")