Skip to content

Commit

Permalink
Fix links from LycheeOrg.github.io to LycheeOrg.dev (#2929)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria authored Jan 18, 2025
1 parent bcd7e02 commit fd0111e
Show file tree
Hide file tree
Showing 59 changed files with 60 additions and 62 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[See on the LycheeOrg website: https://lycheeorg.github.io/docs/contributions.html](https://lycheeorg.github.io/docs/contributions.html)
[See on the LycheeOrg website: https://lycheeorg.dev/docs/contributions.html](https://lycheeorg.dev/docs/contributions.html)
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ Those are the versions where we accept vulnerability reports.
As described in our [contribution guide][1], if you discover a security vulnerability within Lychee,
please contact us directly on [gitter][2]. All security vulnerabilities will be promptly addressed.

[1]: https://lycheeorg.github.io/docs/contributions.html#security-vulnerabilities
[1]: https://lycheeorg.dev/docs/contributions.html#security-vulnerabilities
[2]: https://gitter.im/LycheeOrg/Lobby
2 changes: 1 addition & 1 deletion app/Metadata/Versions/FileVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* FileVersion provides information about the code version.
* It is the value contained in version.md.
*
* Up-to-date is checked against the release data in https://lycheeorg.github.io/update.json
* Up-to-date is checked against the release data in https://lycheeorg.dev/update.json
* This part is done via the UpdateRequest class.
*/
class FileVersion implements VersionControl, HasVersion
Expand Down
2 changes: 1 addition & 1 deletion app/Rules/BooleanRequireSupportRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public function validate(string $attribute, mixed $value, \Closure $fail): void
return;
}

$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.github.io/get-supporter-edition/');
$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.dev/get-supporter-edition/');
}
}
2 changes: 1 addition & 1 deletion app/Rules/ConfigKeyRequireSupportRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function validate(string $attribute, mixed $value, \Closure $fail): void
/** @var string $value */
$config = Configs::where('key', '=', $value)->firstOrFail();
if ($config->level === 1 && !$this->verify->is_supporter()) {
$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.github.io/get-supporter-edition/');
$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.dev/get-supporter-edition/');

return;
}
Expand Down
2 changes: 1 addition & 1 deletion app/Rules/EnumRequireSupportRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function validate(string $attribute, mixed $value, \Closure $fail): void
return;
}

$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.github.io/get-supporter-edition/');
$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.dev/get-supporter-edition/');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion app/Rules/IntegerRequireSupportRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ public function validate(string $attribute, mixed $value, \Closure $fail): void
return;
}

$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.github.io/get-supporter-edition/');
$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.dev/get-supporter-edition/');
}
}
2 changes: 1 addition & 1 deletion app/Rules/StringRequireSupportRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public function validate(string $attribute, mixed $value, \Closure $fail): void
return;
}

$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.github.io/get-supporter-edition/');
$fail('Error: This functionality is only available in the Supporter Edition of Lychee. See here: https://lycheeorg.dev/get-supporter-edition/');
}
}
2 changes: 1 addition & 1 deletion bootstrap/app.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

ini_set('user_agent', 'Lychee/4 (https://lycheeorg.github.io/)');
ini_set('user_agent', 'Lychee/6 (https://lycheeorg.dev/)');

/*
* Ensure that the umask does not deny any user or group permissions,
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "lychee-org/lychee",
"description": "A great looking and easy-to-use photo-management-system you can run on your server, to manage and share photos.",
"homepage": "https://lycheeorg.github.io/",
"homepage": "https://lycheeorg.dev/",
"readme": "README.md",
"support": {
"source": "https://github.com/LycheeOrg/Lychee",
"issues": "https://github.com/LycheeOrg/Lychee/issues",
"docs": "https://lycheeorg.github.io/docs/",
"docs": "https://lycheeorg.dev/docs/",
"chat": "https://gitter.im/LycheeOrg/Lobby"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion config/secure-headers.php
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@

// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/connect-src
'connect-src' => array_merge(
['https://lycheeorg.github.io/update.json'],
['https://lycheeorg.dev/update.json'],
explode(',', (string) env('SECURITY_HEADER_CSP_CONNECT_SRC', ''))
),

Expand Down
2 changes: 1 addition & 1 deletion config/urls.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'commits' => 'https://api.github.com/repos/LycheeOrg/Lychee/commits',
'tags' => 'https://api.github.com/repos/LycheeOrg/Lychee/tags',
],
'json' => 'https://lycheeorg.github.io/update.json',
'json' => 'https://lycheeorg.dev/update.json',
],
'git' => [
'pull' => 'https://github.com/LycheeOrg/Lychee.git',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function getConfigs(): array
'cat' => self::SE,
'type_range' => self::STRING,
'description' => 'Lychee License key',
'details' => 'Get Supporter Edition here: https://lycheeorg.github.io/get-supporter-edition',
'details' => 'Get Supporter Edition here: https://lycheeorg.dev/get-supporter-edition',
],
[
'key' => 'disable_se_call_for_actions',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function up(): void
'date_format_hero_created_at',
'date_format_album_thumb',
])->update(['details' => 'See <a class="underline" href="https://www.php.net/manual/en/datetime.format.php">datetime.format.php</a>']);
DB::table('configs')->where('key', 'license_key')->update(['details' => 'Get Supporter Edition here: <a class="underline" href="https://lycheeorg.github.io/get-supporter-edition">https://lycheeorg.github.io/get-supporter-edition</a>']);
DB::table('configs')->where('key', 'license_key')->update(['details' => 'Get Supporter Edition here: <a class="underline" href="https://lycheeorg.dev/get-supporter-edition">https://lycheeorg.dev/get-supporter-edition</a>']);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lang/cz/dialogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'description' => 'Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.',
'update_available' => 'Update available!',
'thank_you' => 'Thank you for your support!',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'here' => 'here',
],
'dropbox' => [
Expand Down
2 changes: 1 addition & 1 deletion lang/cz/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee <span class="text-primary-emphasis">SE</span>',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'preview' => 'Enable preview of Lychee SE features',
'hide_call4action' => 'Hide this Lychee SE registration form. I am happy with Lychee as-is. :)',
'hide_warning' => 'If enabled, the only way to register your license key will be via the More tab above. Changes are applied on page reload.',
Expand Down
2 changes: 1 addition & 1 deletion lang/de/dialogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'description' => 'Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.',
'update_available' => 'Update available!',
'thank_you' => 'Thank you for your support!',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'here' => 'here',
],
'dropbox' => [
Expand Down
2 changes: 1 addition & 1 deletion lang/de/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee <span class="text-primary-emphasis">SE</span>',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'preview' => 'Enable preview of Lychee SE features',
'hide_call4action' => 'Hide this Lychee SE registration form. I am happy with Lychee as-is. :)',
'hide_warning' => 'If enabled, the only way to register your license key will be via the More tab above. Changes are applied on page reload.',
Expand Down
2 changes: 1 addition & 1 deletion lang/el/dialogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'description' => 'Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.',
'update_available' => 'Update available!',
'thank_you' => 'Thank you for your support!',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'here' => 'here',
],
'dropbox' => [
Expand Down
2 changes: 1 addition & 1 deletion lang/el/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee <span class="text-primary-emphasis">SE</span>',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'preview' => 'Enable preview of Lychee SE features',
'hide_call4action' => 'Hide this Lychee SE registration form. I am happy with Lychee as-is. :)',
'hide_warning' => 'If enabled, the only way to register your license key will be via the More tab above. Changes are applied on page reload.',
Expand Down
2 changes: 1 addition & 1 deletion lang/en/dialogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'description' => 'Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.',
'update_available' => 'Update available!',
'thank_you' => 'Thank you for your support!',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'here' => 'here',
],
'dropbox' => [
Expand Down
2 changes: 1 addition & 1 deletion lang/en/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee <span class="text-primary-emphasis">SE</span>',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'preview' => 'Enable preview of Lychee SE features',
'hide_call4action' => 'Hide this Lychee SE registration form. I am happy with Lychee as-is. :)',
'hide_warning' => 'If enabled, the only way to register your license key will be via the More tab above. Changes are applied on page reload.',
Expand Down
2 changes: 1 addition & 1 deletion lang/es/dialogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'description' => 'Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.',
'update_available' => 'Update available!',
'thank_you' => 'Thank you for your support!',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'here' => 'here',
],
'dropbox' => [
Expand Down
2 changes: 1 addition & 1 deletion lang/es/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee <span class="text-primary-emphasis">SE</span>',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'preview' => 'Enable preview of Lychee SE features',
'hide_call4action' => 'Hide this Lychee SE registration form. I am happy with Lychee as-is. :)',
'hide_warning' => 'If enabled, the only way to register your license key will be via the More tab above. Changes are applied on page reload.',
Expand Down
2 changes: 1 addition & 1 deletion lang/fr/dialogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'description' => 'Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.',
'update_available' => 'Update available!',
'thank_you' => 'Thank you for your support!',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'here' => 'here',
],
'dropbox' => [
Expand Down
2 changes: 1 addition & 1 deletion lang/fr/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee <span class="text-primary-emphasis">SE</span>',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'preview' => 'Enable preview of Lychee SE features',
'hide_call4action' => 'Hide this Lychee SE registration form. I am happy with Lychee as-is. :)',
'hide_warning' => 'If enabled, the only way to register your license key will be via the More tab above. Changes are applied on page reload.',
Expand Down
2 changes: 1 addition & 1 deletion lang/hu/dialogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'description' => 'Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.',
'update_available' => 'Update available!',
'thank_you' => 'Thank you for your support!',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'here' => 'here',
],
'dropbox' => [
Expand Down
2 changes: 1 addition & 1 deletion lang/hu/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee <span class="text-primary-emphasis">SE</span>',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'preview' => 'Enable preview of Lychee SE features',
'hide_call4action' => 'Hide this Lychee SE registration form. I am happy with Lychee as-is. :)',
'hide_warning' => 'If enabled, the only way to register your license key will be via the More tab above. Changes are applied on page reload.',
Expand Down
2 changes: 1 addition & 1 deletion lang/it/dialogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'description' => 'Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.',
'update_available' => 'Update available!',
'thank_you' => 'Thank you for your support!',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.<br />Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">Supporter Edition</a> or register your License key',
'here' => 'here',
],
'dropbox' => [
Expand Down
2 changes: 1 addition & 1 deletion lang/it/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee <span class="text-primary-emphasis">SE</span>',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.github.io/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the <a href="https://lycheeorg.dev/get-supporter-edition/" class="text-primary-500 underline">SE edition</a>.',
'preview' => 'Enable preview of Lychee SE features',
'hide_call4action' => 'Hide this Lychee SE registration form. I am happy with Lychee as-is. :)',
'hide_warning' => 'If enabled, the only way to register your license key will be via the More tab above. Changes are applied on page reload.',
Expand Down
Loading

0 comments on commit fd0111e

Please sign in to comment.