Rename AdventureLog to Voyage and add fork attribution

- Replace all AdventureLog references with Voyage across ~102 files
  (7 case variants: AdventureLog, adventurelog, Adventurelog, ADVENTURELOG,
  AdventUrelog, AdventureLOG, adventure-log, adventure_log)
- Rename brand, static, and documentation assets to use voyage naming
- Rename install_adventurelog.sh → install_voyage.sh
- Update README.md and voyage_overview.md to credit AdventureLog as
  the upstream project and Sean Morley as its original creator
This commit is contained in:
2026-03-06 11:05:26 +00:00
parent 2b644d3afa
commit df8d1adf15
151 changed files with 653 additions and 658 deletions

View File

@@ -46,11 +46,11 @@
<div class="flex items-center justify-between mb-6">
<div class="flex items-center gap-3">
<div class="p-2 bg-primary/10 rounded-lg">
<img src="/favicon.png" alt="AdventureLog" class="w-12 h-12" />
<img src="/favicon.png" alt="Voyage" class="w-12 h-12" />
</div>
<div>
<h1 class="text-2xl font-bold text-primary">
{$t('about.about')} AdventureLog
{$t('about.about')} Voyage
</h1>
</div>
</div>
@@ -176,7 +176,7 @@
</p>
<a
href="https://github.com/seanmorley15/AdventureLog/blob/main/LICENSE"
href="https://github.com/seanmorley15/Voyage/blob/main/LICENSE"
target="_blank"
rel="noopener noreferrer"
class="link link-primary mt-2"
@@ -191,7 +191,7 @@
<div class="card-body p-4">
<div class="flex flex-wrap gap-3">
<a
href="https://github.com/seanmorley15/AdventureLog"
href="https://github.com/seanmorley15/Voyage"
target="_blank"
rel="noopener noreferrer"
class="btn btn-outline btn-sm"
@@ -208,7 +208,7 @@
</a>
<!-- documentation -->
<a
href="https://adventurelog.app"
href="https://voyage.app"
target="_blank"
rel="noopener noreferrer"
class="btn btn-outline btn-sm"

View File

@@ -203,8 +203,8 @@
<!-- Logo -->
<a class="btn btn-ghost hover:bg-transparent p-2 text-2xl font-bold tracking-tight" href="/">
<div class="flex items-center gap-3">
<img src="/favicon.png" alt="AdventureLog" class="w-10 h-10" />
<span class="hidden sm:inline mb-1"> AdventureLog </span>
<img src="/favicon.png" alt="Voyage" class="w-10 h-10" />
<span class="hidden sm:inline mb-1"> Voyage </span>
</div>
</a>
</div>
@@ -289,7 +289,7 @@
</button>
<button
class="btn btn-ghost w-full justify-start gap-3"
on:click={() => (window.location.href = 'https://adventurelog.app')}
on:click={() => (window.location.href = 'https://voyage.app')}
>
{$t('navbar.documentation')}
</button>

View File

@@ -56,7 +56,7 @@
const data = await res.json();
if (res.status == 404) {
secret = data.meta.secret;
totpUrl = `otpauth://totp/AdventureLog:${user?.username}?secret=${secret}&issuer=AdventureLog`;
totpUrl = `otpauth://totp/Voyage:${user?.username}?secret=${secret}&issuer=Voyage`;
generateQRCode(totpUrl);
} else if (res.ok) {
close();

View File

@@ -153,7 +153,7 @@
on:keydown={handleKeydown}
tabindex="0"
>
<!-- Header Section - Following adventurelog pattern -->
<!-- Header Section - Following voyage pattern -->
<div
class="top-0 z-10 bg-base-100/90 backdrop-blur-lg border-b border-base-300 -mx-6 -mt-6 px-6 py-4 mb-6"
>

View File

@@ -150,7 +150,7 @@
on:keydown={handleKeydown}
tabindex="0"
>
<!-- Header Section - Following adventurelog pattern -->
<!-- Header Section - Following voyage pattern -->
<div
class="top-0 z-10 bg-base-100/90 backdrop-blur-lg border-b border-base-300 -mx-6 -mt-6 px-6 py-4 mb-6"
>

View File

@@ -164,7 +164,7 @@
on:keydown={handleKeydown}
tabindex="0"
>
<!-- Header Section - Following adventurelog pattern -->
<!-- Header Section - Following voyage pattern -->
<div
class="top-0 z-10 bg-base-100/90 backdrop-blur-lg border-b border-base-300 -mx-6 -mt-6 px-6 py-4 mb-6"
>

View File

@@ -1,4 +1,4 @@
export let appVersion = 'v0.12.0-main-022726';
export let versionChangelog = 'https://github.com/seanmorley15/AdventureLog/releases/tag/v0.12.0';
export let appTitle = 'AdventureLog';
export let versionChangelog = 'https://github.com/seanmorley15/Voyage/releases/tag/v0.12.0';
export let appTitle = 'Voyage';
export let copyrightYear = '2023-2026';

View File

@@ -418,9 +418,9 @@ export function getRandomBackground() {
newYearsEnd.setHours(23, 59, 59, 999);
if (today >= newYearsStart && today <= newYearsEnd) {
return {
url: 'backgrounds/adventurelog_new_year.webp',
url: 'backgrounds/voyage_new_year.webp',
author: 'Roven Images',
location: "Happy New Year's from the AdventureLog team!"
location: "Happy New Year's from the Voyage team!"
} as Background;
}
@@ -432,9 +432,9 @@ export function getRandomBackground() {
if (today >= christmasStart && today <= christmasEnd) {
return {
url: 'backgrounds/adventurelog_christmas.webp',
url: 'backgrounds/voyage_christmas.webp',
author: 'Annie Spratt',
location: 'Merry Christmas from the AdventureLog team!'
location: 'Merry Christmas from the Voyage team!'
} as Background;
}

View File

@@ -1,42 +1,42 @@
{
"backgrounds": [
{
"url": "backgrounds/adventurelog_showcase_1.webp",
"url": "backgrounds/voyage_showcase_1.webp",
"author": "Sean Morley",
"location": "Franconia Notch State Park, New Hampshire, USA"
},
{
"url": "backgrounds/adventurelog_showcase_2.webp",
"url": "backgrounds/voyage_showcase_2.webp",
"author": "Sean Morley",
"location": "Tumbledown Mountain, Maine, USA"
},
{
"url": "backgrounds/adventurelog_showcase_3.webp",
"url": "backgrounds/voyage_showcase_3.webp",
"author": "Sean Morley",
"location": "Philmont Scout Ranch, New Mexico, USA"
},
{
"url": "backgrounds/adventurelog_showcase_4.webp",
"url": "backgrounds/voyage_showcase_4.webp",
"author": "Sean Morley",
"location": "Great Sand Dunes National Park, Colorado, USA"
},
{
"url": "backgrounds/adventurelog_showcase_5.webp",
"url": "backgrounds/voyage_showcase_5.webp",
"author": "Sean Morley",
"location": "Hoboken, New Jersey, USA"
},
{
"url": "backgrounds/adventurelog_showcase_6.webp",
"url": "backgrounds/voyage_showcase_6.webp",
"author": "Sean Morley",
"location": "Smugglers' Notch Resort, Vermont, USA"
},
{
"url": "backgrounds/adventurelog_showcase_7.webp",
"url": "backgrounds/voyage_showcase_7.webp",
"author": "Sean Morley",
"location": "Davos, Switzerland"
},
{
"url": "backgrounds/adventurelog_showcase_8.webp",
"url": "backgrounds/voyage_showcase_8.webp",
"author": "Sean Morley",
"location": "Saddleback Ski Area, Maine, USA"
}