diff --git a/src/lang/en.ts b/src/lang/en.ts index b4a9f023..0f9e8f13 100644 --- a/src/lang/en.ts +++ b/src/lang/en.ts @@ -297,5 +297,7 @@ export const languageEnglish = { talkness: "Talkativeness", active: "Active", loreRandomActivation: "Use Probability Condition", - activationProbability: "Probability" + activationProbability: "Probability", + shareCloud: "Share to RisuRealm", + hub: "RisuRealm" } \ No newline at end of file diff --git a/src/lib/SideBars/CharConfig.svelte b/src/lib/SideBars/CharConfig.svelte index 334e7daf..b1bc94a6 100644 --- a/src/lib/SideBars/CharConfig.svelte +++ b/src/lib/SideBars/CharConfig.svelte @@ -670,7 +670,7 @@ if(cha.type !== 'group'){ shareRisuHub(cha) } - }} class="text-neutral-200 mt-2 text-lg bg-transparent border-solid border-1 border-borderc p-4 hover:bg-green-500 transition-colors cursor-pointer">Upload Hub (experimental) + }} class="text-neutral-200 mt-2 text-lg bg-transparent border-solid border-1 border-borderc p-4 hover:bg-green-500 transition-colors cursor-pointer">{language.shareCloud} {/if} {:else} {#if currentChar.data.chats[currentChar.data.chatPage].supaMemoryData && currentChar.data.chats[currentChar.data.chatPage].supaMemoryData.length > 4} diff --git a/src/lib/SideBars/Sidebar.svelte b/src/lib/SideBars/Sidebar.svelte index 4f90fdae..496b5acc 100644 --- a/src/lib/SideBars/Sidebar.svelte +++ b/src/lib/SideBars/Sidebar.svelte @@ -518,8 +518,8 @@
1000} + class:flex-grow={$SizeStore.w <= 1028} + class:minw96={$SizeStore.w > 1028} > + + + {#if $DataBase.useExperimental} + + {:else} + + {/if} +
+ {:else} +
+ +

{language.hub}

+
+ + {/if} \ No newline at end of file diff --git a/src/ts/stores.ts b/src/ts/stores.ts index 4ab51a40..8ad71504 100644 --- a/src/ts/stores.ts +++ b/src/ts/stores.ts @@ -11,7 +11,7 @@ export const SizeStore = writable({ w: 0, h: 0 }) -export const sideBarStore = writable(true) +export const sideBarStore = writable(false) export const selectedCharID = writable(-1) export const CharEmotion = writable({} as {[key:string]: [string, string, number][]}) export const ViewBoxsize = writable({ width: 12 * 16, height: 12 * 16 }); // Default width and height in pixels