diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 9cc2d377967..bc254eba42c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -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)
diff --git a/SECURITY.md b/SECURITY.md
index d37455cb623..66cc310dba1 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -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
diff --git a/app/Metadata/Versions/FileVersion.php b/app/Metadata/Versions/FileVersion.php
index 6ece431e4f5..582b1642295 100644
--- a/app/Metadata/Versions/FileVersion.php
+++ b/app/Metadata/Versions/FileVersion.php
@@ -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
diff --git a/app/Rules/BooleanRequireSupportRule.php b/app/Rules/BooleanRequireSupportRule.php
index d75018c7e6b..5769c097a31 100644
--- a/app/Rules/BooleanRequireSupportRule.php
+++ b/app/Rules/BooleanRequireSupportRule.php
@@ -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/');
}
}
diff --git a/app/Rules/ConfigKeyRequireSupportRule.php b/app/Rules/ConfigKeyRequireSupportRule.php
index 57d1b08f64a..4102895dfbf 100644
--- a/app/Rules/ConfigKeyRequireSupportRule.php
+++ b/app/Rules/ConfigKeyRequireSupportRule.php
@@ -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;
}
diff --git a/app/Rules/EnumRequireSupportRule.php b/app/Rules/EnumRequireSupportRule.php
index 1fb8454542e..3603e9ca3f7 100644
--- a/app/Rules/EnumRequireSupportRule.php
+++ b/app/Rules/EnumRequireSupportRule.php
@@ -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/');
}
/**
diff --git a/app/Rules/IntegerRequireSupportRule.php b/app/Rules/IntegerRequireSupportRule.php
index 61b22a62e06..5b106cd472d 100644
--- a/app/Rules/IntegerRequireSupportRule.php
+++ b/app/Rules/IntegerRequireSupportRule.php
@@ -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/');
}
}
diff --git a/app/Rules/StringRequireSupportRule.php b/app/Rules/StringRequireSupportRule.php
index 1822c9bf96e..5fd9c19b169 100644
--- a/app/Rules/StringRequireSupportRule.php
+++ b/app/Rules/StringRequireSupportRule.php
@@ -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/');
}
}
diff --git a/bootstrap/app.php b/bootstrap/app.php
index c2e225497aa..e50165580c5 100644
--- a/bootstrap/app.php
+++ b/bootstrap/app.php
@@ -1,6 +1,6 @@
array_merge(
- ['https://lycheeorg.github.io/update.json'],
+ ['https://lycheeorg.dev/update.json'],
explode(',', (string) env('SECURITY_HEADER_CSP_CONNECT_SRC', ''))
),
diff --git a/config/urls.php b/config/urls.php
index 483f319ac51..f8cddca904a 100644
--- a/config/urls.php
+++ b/config/urls.php
@@ -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',
diff --git a/database/migrations/2024_09_27_144741_add_supporter_fields.php b/database/migrations/2024_09_27_144741_add_supporter_fields.php
index d0b5a784073..2eed23b14e5 100644
--- a/database/migrations/2024_09_27_144741_add_supporter_fields.php
+++ b/database/migrations/2024_09_27_144741_add_supporter_fields.php
@@ -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',
diff --git a/database/migrations/2024_10_09_194010_image_processing_details_and_others.php b/database/migrations/2024_10_09_194010_image_processing_details_and_others.php
index 592e62c2271..7fd9f1e1537 100644
--- a/database/migrations/2024_10_09_194010_image_processing_details_and_others.php
+++ b/database/migrations/2024_10_09_194010_image_processing_details_and_others.php
@@ -25,7 +25,7 @@ public function up(): void
'date_format_hero_created_at',
'date_format_album_thumb',
])->update(['details' => 'See datetime.format.php']);
- DB::table('configs')->where('key', 'license_key')->update(['details' => 'Get Supporter Edition here: https://lycheeorg.github.io/get-supporter-edition']);
+ DB::table('configs')->where('key', 'license_key')->update(['details' => 'Get Supporter Edition here: https://lycheeorg.dev/get-supporter-edition']);
}
/**
diff --git a/lang/cz/dialogs.php b/lang/cz/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/cz/dialogs.php
+++ b/lang/cz/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/cz/settings.php b/lang/cz/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/cz/settings.php
+++ b/lang/cz/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/de/dialogs.php b/lang/de/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/de/dialogs.php
+++ b/lang/de/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/de/settings.php b/lang/de/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/de/settings.php
+++ b/lang/de/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/el/dialogs.php b/lang/el/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/el/dialogs.php
+++ b/lang/el/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/el/settings.php b/lang/el/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/el/settings.php
+++ b/lang/el/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/en/dialogs.php b/lang/en/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/en/dialogs.php
+++ b/lang/en/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/en/settings.php b/lang/en/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/en/settings.php
+++ b/lang/en/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/es/dialogs.php b/lang/es/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/es/dialogs.php
+++ b/lang/es/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/es/settings.php b/lang/es/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/es/settings.php
+++ b/lang/es/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/fr/dialogs.php b/lang/fr/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/fr/dialogs.php
+++ b/lang/fr/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/fr/settings.php b/lang/fr/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/fr/settings.php
+++ b/lang/fr/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/hu/dialogs.php b/lang/hu/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/hu/dialogs.php
+++ b/lang/hu/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/hu/settings.php b/lang/hu/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/hu/settings.php
+++ b/lang/hu/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/it/dialogs.php b/lang/it/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/it/dialogs.php
+++ b/lang/it/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/it/settings.php b/lang/it/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/it/settings.php
+++ b/lang/it/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/ja/dialogs.php b/lang/ja/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/ja/dialogs.php
+++ b/lang/ja/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/ja/settings.php b/lang/ja/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/ja/settings.php
+++ b/lang/ja/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/nl/dialogs.php b/lang/nl/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/nl/dialogs.php
+++ b/lang/nl/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/nl/settings.php b/lang/nl/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/nl/settings.php
+++ b/lang/nl/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/no/dialogs.php b/lang/no/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/no/dialogs.php
+++ b/lang/no/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/no/settings.php b/lang/no/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/no/settings.php
+++ b/lang/no/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/pl/dialogs.php b/lang/pl/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/pl/dialogs.php
+++ b/lang/pl/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/pl/settings.php b/lang/pl/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/pl/settings.php
+++ b/lang/pl/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/pt/dialogs.php b/lang/pt/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/pt/dialogs.php
+++ b/lang/pt/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/pt/settings.php b/lang/pt/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/pt/settings.php
+++ b/lang/pt/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/ru/dialogs.php b/lang/ru/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/ru/dialogs.php
+++ b/lang/ru/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/ru/settings.php b/lang/ru/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/ru/settings.php
+++ b/lang/ru/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/sk/dialogs.php b/lang/sk/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/sk/dialogs.php
+++ b/lang/sk/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/sk/settings.php b/lang/sk/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/sk/settings.php
+++ b/lang/sk/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/sv/dialogs.php b/lang/sv/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/sv/dialogs.php
+++ b/lang/sv/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/sv/settings.php b/lang/sv/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/sv/settings.php
+++ b/lang/sv/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/vi/dialogs.php b/lang/vi/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/vi/dialogs.php
+++ b/lang/vi/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/vi/settings.php b/lang/vi/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/vi/settings.php
+++ b/lang/vi/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/zh_CN/dialogs.php b/lang/zh_CN/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/zh_CN/dialogs.php
+++ b/lang/zh_CN/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/zh_CN/settings.php b/lang/zh_CN/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/zh_CN/settings.php
+++ b/lang/zh_CN/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/lang/zh_TW/dialogs.php b/lang/zh_TW/dialogs.php
index 10b5ee774f5..4afd65fae3f 100644
--- a/lang/zh_TW/dialogs.php
+++ b/lang/zh_TW/dialogs.php
@@ -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.
Unlock the Supporter Edition or register your License key',
+ 'get_supporter_or_register' => 'Get exclusive features and support the development of Lychee.
Unlock the Supporter Edition or register your License key',
'here' => 'here',
],
'dropbox' => [
diff --git a/lang/zh_TW/settings.php b/lang/zh_TW/settings.php
index 96d81404894..fd197f11135 100644
--- a/lang/zh_TW/settings.php
+++ b/lang/zh_TW/settings.php
@@ -38,7 +38,7 @@
],
'lychee_se' => [
'header' => 'Lychee SE',
- 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
+ 'call4action' => 'Get exclusive features and support the development of Lychee. Unlock the SE edition.',
'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.',
diff --git a/public/.htaccess b/public/.htaccess
index cd25ea6d20c..93f36bdeeee 100644
--- a/public/.htaccess
+++ b/public/.htaccess
@@ -41,7 +41,7 @@ Options -Indexes
php_value upload_max_filesize 500M
php_value max_file_uploads 100
# A proper user agent is required by some web servers, when photos are imported via URL
- php_value user_agent "Lychee/4 (https://lycheeorg.github.io/)"
+ php_value user_agent "Lychee/6 (https://lycheeorg.dev/)"
# ---
diff --git a/public/dist/frontend.html b/public/dist/frontend.html
index 267c2d3467b..c8b9fa59410 100644
--- a/public/dist/frontend.html
+++ b/public/dist/frontend.html
@@ -365,7 +365,7 @@