diff options
| author | Christian Cleberg <[email protected]> | 2026-08-11 01:37:59 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-08-11 01:37:59 -0500 |
| commit | 7f22a98fe25e7aba6af39e8133d517837a0962b9 (patch) | |
| tree | e2388e2cf8107cff9bcfe1e7195f137730c7e8d9 | |
| parent | ff200d21e93d6683f779fe1f3280ac8d8561d393 (diff) | |
| download | hutch-7f22a98fe25e7aba6af39e8133d517837a0962b9.tar.gz hutch-7f22a98fe25e7aba6af39e8133d517837a0962b9.tar.bz2 hutch-7f22a98fe25e7aba6af39e8133d517837a0962b9.zip | |
fix stale URIs
| -rw-r--r-- | Hutch/Views/More/AboutView.swift | 4 | ||||
| -rw-r--r-- | README.nfo | 6 | ||||
| -rw-r--r-- | builds/swift-ci.yml | 10 |
3 files changed, 10 insertions, 10 deletions
diff --git a/Hutch/Views/More/AboutView.swift b/Hutch/Views/More/AboutView.swift index 97ba9f6..22e3d0d 100644 --- a/Hutch/Views/More/AboutView.swift +++ b/Hutch/Views/More/AboutView.swift @@ -59,7 +59,7 @@ struct AboutView: View { SwiftUI.Label("SourceHut Manuals", systemImage: "book") } .themedRow() - Link(destination: URL(string: "https://sr.ht/~ccleberg/Hutch")!) { + Link(destination: URL(string: "https://github.com/krazywarez/hutch")!) { SwiftUI.Label("Project Repository", systemImage: "folder") } .themedRow() @@ -78,7 +78,7 @@ struct AboutView: View { .foregroundStyle(.secondary) .themedRow() - Link(destination: URL(string: "https://krz.sh/hutch/privacy-policy/")!) { + Link(destination: URL(string: "https://krz.sh/privacy/hutch")!) { SwiftUI.Label("Privacy Policy", systemImage: "hand.raised") } .themedRow() @@ -32,7 +32,7 @@ REQUIRES account, and a personal access token. BUILD - git clone https://git.sr.ht/~ccleberg/Hutch + git clone https://github.com/krazywarez/hutch open in xcode, build and run. on first launch paste a token. create one at https://meta.sr.ht/oauth2/personal-token. @@ -43,11 +43,11 @@ BUILD DEVELOP xcode app with tests under HutchTests. run the test plan in - Hutch/HutchTests.xctestplan. + HutchTests.xctestplan. MIRRORS github: https://github.com/krazywarez/hutch - sourcehut: https://sr.ht/~ccleberg/Hutch + krz.sh: https://git.krz.sh/krz/hutch kept in sync. issues or patches on either. SECURITY diff --git a/builds/swift-ci.yml b/builds/swift-ci.yml index d2449b5..63c9056 100644 --- a/builds/swift-ci.yml +++ b/builds/swift-ci.yml @@ -15,7 +15,7 @@ packages: - zlib1g-dev sources: - - https://git.sr.ht/~ccleberg/Hutch + - https://github.com/krazywarez/hutch environment: SWIFT_VERSION: 6.2.4 @@ -63,18 +63,18 @@ tasks: export PATH="$HOME/.local/bin:$PATH" - cd "$HOME/Hutch" + cd "$HOME/hutch" gitleaks git --redact --verbose . - repo-structure-check: | set -euo pipefail - cd "$HOME/Hutch" + cd "$HOME/hutch" test -f "Hutch.xcodeproj/project.pbxproj" - test -f "README.md" + test -f "README.nfo" - xcode-project-check: | set -euo pipefail - cd "$HOME/Hutch" + cd "$HOME/hutch" grep -q "PBXProject" Hutch.xcodeproj/project.pbxproj |
