This commit is contained in:
2026-04-18 14:18:52 +02:00
parent 5b4d3d435e
commit f3e5100d5d
126 changed files with 743 additions and 795 deletions

View File

@@ -116,7 +116,7 @@ return [
| Supported Locales
|--------------------------------------------------------------------------
|
| This is used to display the supported locales by this app, it also is
| This is used to display the supported locales by this app, it also is
| used to verify session data and requests in the SetLocale Middleware
|
*/

View File

@@ -5,8 +5,8 @@ return [
* The webhook URLs that we'll use to send a message to Discord.
*/
'webhook_urls' => [
'default' => env('DISCORD_ALERT_WEBHOOK'),
'update' => env('DISCORD_ALERT_UPDATE_WEBHOOK'),
'default' => env('DISCORD_ALERT_WEBHOOK'),
'update' => env('DISCORD_ALERT_UPDATE_WEBHOOK'),
'rerelease' => env('DISCORD_ALERT_RERELEASE_WEBHOOK'),
],

View File

@@ -1,9 +1,9 @@
<?php
return [
'invite_link' => 'https://discord.gg/yAqgVKNgG5',
'invite_link' => 'https://discord.gg/yAqgVKNgG5',
'guild_id' => 802233383710228550,
'guild_id' => 802233383710228550,
'patreon_roles' => [
'841798154999169054', // ????
@@ -12,7 +12,7 @@ return [
'803325441942356059', // Tier-3
'803322725576736858', // Tier-2
'802270568912519198', // Tier-1
'802234830384267315' // admin
'802234830384267315', // admin
],
'discord_bot_token' => env('DISCORD_BOT_TOKEN'),

View File

@@ -2,42 +2,42 @@
return [
// Download Domain
'download_domain' => [
'https://imoto-ddl.ane-h.xyz',
'https://chibi-ddl.imoto-h.xyz',
'https://koneko-ddl.musume-h.xyz',
'download_domain' => [
'https://imoto-ddl.ane-h.xyz',
'https://chibi-ddl.imoto-h.xyz',
'https://koneko-ddl.musume-h.xyz',
'https://shinobu-ddl.rorikon-h.xyz',
'https://oppai-ddl.shoujo-h.org',
],
// 4k Download Domain
'download_domain_4k' => [
'https://imoto-ddlp.ane-h.xyz',
'https://chibi-ddlp.imoto-h.xyz',
'https://koneko-ddlp.musume-h.xyz',
'download_domain_4k' => [
'https://imoto-ddlp.ane-h.xyz',
'https://chibi-ddlp.imoto-h.xyz',
'https://koneko-ddlp.musume-h.xyz',
'https://shinobu-ddlp.rorikon-h.xyz',
'https://oppai-ddlp.shoujo-h.org',
],
// Stream Domain
'stream_domain' => [
'https://imoto-str.ane-h.xyz',
'https://chibi-str.imoto-h.xyz',
'https://koneko-str.musume-h.xyz',
'stream_domain' => [
'https://imoto-str.ane-h.xyz',
'https://chibi-str.imoto-h.xyz',
'https://koneko-str.musume-h.xyz',
'https://shinobu-str.rorikon-h.xyz',
'https://oppai-str.shoujo-h.org',
],
// Asia Fallback (HTTP)
'asia_download_domain' => [
'https://komako-b-ddl.musume-h.xyz'
'asia_download_domain' => [
'https://komako-b-ddl.musume-h.xyz',
],
'asia_stream_domain' => [
'https://komako-b-str.musume-h.xyz'
'asia_stream_domain' => [
'https://komako-b-str.musume-h.xyz',
],
// Free 4k Downloads
'free_downloads' => true,
'free_downloads_count' => 10,
'free_downloads' => true,
'free_downloads_count' => 10,
];

View File

@@ -38,5 +38,5 @@ return [
'autoOrientation' => true,
'decodeAnimation' => true,
'blendingColor' => 'ffffff',
]
],
];

View File

@@ -143,18 +143,18 @@ return [
'key' => env('MEILISEARCH_KEY'),
'index-settings' => [
Episode::class => [
'filterableAttributes' => [
'title',
'filterableAttributes' => [
'title',
'title_search',
'title_jpn',
'slug',
'description',
'tags'
'slug',
'description',
'tags',
],
'sortableAttributes' => [
'created_at',
'sortableAttributes' => [
'created_at',
'release_date',
'title'
'title',
],
],
],

View File

@@ -37,11 +37,11 @@ return [
|--------------------------------------------------------------------------
*/
'discord' => [
'client_id' => env('DISCORD_CLIENT_ID'),
'client_secret' => env('DISCORD_CLIENT_SECRET'),
'discord' => [
'client_id' => env('DISCORD_CLIENT_ID'),
'client_secret' => env('DISCORD_CLIENT_SECRET'),
'redirect' => '/auth/discord/callback',
// optional
'allow_gif_avatars' => (bool) env('DISCORD_AVATAR_GIF', true),
'avatar_default_extension' => env('DISCORD_EXTENSION_DEFAULT', 'webp'), // only pick from jpg, png, webp

View File

@@ -263,5 +263,4 @@ return [
'confirm_delete_icon' => env('SWEET_ALERT_CONFIRM_DELETE_ICON', 'warning'),
'confirm_delete_show_loader_on_confirm' => env('SWEET_ALERT_CONFIRM_DELETE_SHOW_LOADER_ON_CONFIRM', true),
];

View File

@@ -12,7 +12,7 @@ return [
'displayer' => '\Illuminate\Support\Str::title',
// Database connection for Conner\Taggable\Tag model to use
// 'connection' => 'mysql',
// 'connection' => 'mysql',
// When deleting a model, remove all the tags first
'untag_on_delete' => true,