diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2b404eb5..439948f6 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "RisuAI", - "version": "1.59.9" + "version": "1.59.10" }, "tauri": { "allowlist": { diff --git a/src/lib/VisualNovel/VisualNovelChat.svelte b/src/lib/VisualNovel/VisualNovelChat.svelte index 7fc0a7ba..1769948a 100644 --- a/src/lib/VisualNovel/VisualNovelChat.svelte +++ b/src/lib/VisualNovel/VisualNovelChat.svelte @@ -1,17 +1,47 @@ -
-
- -
- {$CurrentCharacter.name} +{#if $CurrentCharacter.type === 'character' && $CurrentCharacter.emotionImages[0]} + {#await getFileSrc($CurrentCharacter.emotionImages[0][1]) then imglink} +
+
-
- Test + {/await} +{/if} +{#if style === 0} +
+
+ +
+ {$CurrentCharacter.name} +
+
+ Test +
-
\ No newline at end of file +{:else} +
+
+ +
+
+
+ {$CurrentCharacter.name} +
+
+
+
+
+
+ Hmm... What should I say now? +
+
+
+
+
+{/if} \ No newline at end of file diff --git a/src/lib/VisualNovel/VisualNovelMain.svelte b/src/lib/VisualNovel/VisualNovelMain.svelte index f718f398..95cddd0f 100644 --- a/src/lib/VisualNovel/VisualNovelMain.svelte +++ b/src/lib/VisualNovel/VisualNovelMain.svelte @@ -3,10 +3,10 @@ import { DataBase } from "../../ts/storage/database"; import BackgroundDom from "../ChatScreens/BackgroundDom.svelte"; import SideBarArrow from "../UI/GUI/SideBarArrow.svelte"; - import defaultWallpaper from '../../etc/bg.jpg' + import defaultWallpaper from './test.png' import VisualNovelChat from "./VisualNovelChat.svelte"; - const wallPaper = `background: url(${defaultWallpaper})` + const wallPaper = `background-image: url(${defaultWallpaper})` let bgImg= '' let lastBg = '' @@ -20,7 +20,7 @@
-
+
\ No newline at end of file diff --git a/src/lib/VisualNovel/test.png b/src/lib/VisualNovel/test.png new file mode 100644 index 00000000..fa23465f Binary files /dev/null and b/src/lib/VisualNovel/test.png differ diff --git a/src/styles.css b/src/styles.css index f309373b..978b47f5 100644 --- a/src/styles.css +++ b/src/styles.css @@ -71,6 +71,11 @@ html, body{ font-weight: bold; } +.strokeme { + color: #000; + text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white; +} + ::-webkit-scrollbar { width: 5px; height: 5px; diff --git a/src/ts/storage/database.ts b/src/ts/storage/database.ts index 7739629f..2da37b67 100644 --- a/src/ts/storage/database.ts +++ b/src/ts/storage/database.ts @@ -15,7 +15,7 @@ import type { OobaChatCompletionRequestParams } from '../model/ooba'; export const DataBase = writable({} as any as Database) export const loadedStore = writable(false) -export let appVer = "1.59.9" +export let appVer = "1.59.10" export let webAppSubVer = '' export function setDatabase(data:Database){ diff --git a/version.json b/version.json index 2dbe093e..92e65c17 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version":"1.59.9"} \ No newline at end of file +{"version":"1.59.10"} \ No newline at end of file