Skip to content

Commit

Permalink
Update repo links
Browse files Browse the repository at this point in the history
  • Loading branch information
NiceneNerd committed Mar 30, 2024
1 parent 36d8d41 commit 68ba47a
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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:

Expand All @@ -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).
2 changes: 1 addition & 1 deletion book/src/setup/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
2 changes: 1 addition & 1 deletion book/src/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion crates/uk-mod/src/unpack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/menus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 2 additions & 2 deletions src/gui/modals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:");
Expand Down
2 changes: 1 addition & 1 deletion src/gui/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/tasks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ fn response(url: &str) -> Result<Vec<u8>> {
}

pub fn get_releases(core: Arc<Manager>, sender: flume::Sender<Message>) {
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::<Vec<VersionResponse>>(&bytes)
.context("Failed to parse GitHub response")
Expand Down

0 comments on commit 68ba47a

Please sign in to comment.