Skip to content

Commit e4fd479

Browse files
chore: point in-app links, notification logo, and dev lab at the fork
Update the footer "source" link and header "report issue" link to the fork repo, the Apprise notification logo URL to the fork's raw logo, and the bypasser lab's LATEST_IMAGE to the fork image. LEGACY_IMAGE stays on upstream v1.0.2 as a historical baseline (the fork has no equivalent tag). Upstream attribution links in the README are intentionally preserved. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent a7dd7bf commit e4fd479

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

scripts/bypasser_permission_lab.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
set -euo pipefail
44

5-
LATEST_IMAGE="${LATEST_IMAGE:-ghcr.io/calibrain/shelfmark:latest}"
5+
LATEST_IMAGE="${LATEST_IMAGE:-ghcr.io/infiniteavenger/shelfmark:latest}"
6+
# Historical upstream baseline for comparison (the fork has no equivalent old tag).
67
LEGACY_IMAGE="${LEGACY_IMAGE:-ghcr.io/calibrain/shelfmark:v1.0.2}"
78
WAIT_SECONDS="${WAIT_SECONDS:-5}"
89
STARTUP_TIMEOUT_SECONDS="${STARTUP_TIMEOUT_SECONDS:-120}"

shelfmark/core/notifications.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
_APPRISE_APP_ID = "Shelfmark"
3232
_APPRISE_APP_DESC = "Shelfmark notifications"
3333
_APPRISE_LOGO_URL = (
34-
"https://raw.githubusercontent.com/calibrain/shelfmark/main/src/frontend/public/logo.png"
34+
"https://raw.githubusercontent.com/InfiniteAvenger/shelfmark/main/src/frontend/public/logo.png"
3535
)
3636
_APPRISE_LOGGER_NAME = "apprise"
3737
_APPRISE_DISPATCH_ERRORS = (RuntimeError, TypeError, ValueError)

src/frontend/src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const Footer = ({ buildVersion, releaseVersion, debug }: FooterProps) =>
2323
>
2424
<div className="mx-auto flex max-w-7xl items-baseline justify-center gap-2 px-4 sm:px-6 lg:px-8">
2525
<a
26-
href="https://github.com/calibrain/shelfmark"
26+
href="https://github.com/InfiniteAvenger/shelfmark"
2727
target="_blank"
2828
rel="noopener noreferrer"
2929
className="text-sm font-medium opacity-70 transition-opacity hover:opacity-100"

src/frontend/src/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ export const Header = forwardRef<HeaderHandle, HeaderProps>(
448448
>
449449
<div className="py-1">
450450
<a
451-
href="https://github.com/calibrain/shelfmark/issues"
451+
href="https://github.com/InfiniteAvenger/shelfmark/issues"
452452
target="_blank"
453453
rel="noopener noreferrer"
454454
className="hover-surface flex w-full items-center gap-3 px-4 py-2 text-left text-slate-700 transition-colors dark:text-slate-200"

0 commit comments

Comments
 (0)