diff --git a/src/components/SettingData.svelte b/src/components/SettingData.svelte index 2a8ba20b..172182e4 100644 --- a/src/components/SettingData.svelte +++ b/src/components/SettingData.svelte @@ -1,9 +1,11 @@ @@ -57,11 +82,21 @@
Data Version: 1.2 (Ganyu Patch)
Select your server:
+Select your server:
AR:
+ +WL:
+ +@@ -115,10 +150,14 @@
{#if changelogOpen}2021/02/01 +2021/02/02 +- Add resin approximation on todo list +- Change todo today farmable item view +- Add WL and AR setting for resin approximation+2021/02/01 - Add detail to wish counter - Bug fixes-2021/01/12 +2021/01/12 - Add Ganyu
Summary
-Nothing to do yet 😀
Add some from the Items page or the Calculator!
Farmable Today
+
+
+ {numberFormat.format(amount)}
+ |
+ + + + + + {itemList[id].name} + + | +
+
+
+ {numberFormat.format(amount)}
+
+
+
+ |
+ + + + + + {itemGroup[id].name} + + | +
{numberFormat.format(amount)}
- |
@@ -188,7 +409,8 @@
+ alt={todo.weapon ? todo.weapon.name : `Weapon Level ${todo.level.from}-${todo.level.to}`}
+ />
{todo.weapon ? todo.weapon.name : 'Weapon'} Level {`${todo.level.from}-${todo.level.to}`} @@ -197,7 +419,8 @@ + alt={todo.character ? todo.character.name : `Character Level ${todo.level.from}-${todo.level.to}`} + />{todo.character ? todo.character.name : 'Character'} Level {`${todo.level.from}-${todo.level.to}`} @@ -217,7 +440,8 @@ on:click={() => reorder(i, 1)} rounded={false} size="sm" - className="rounded-r-xl"> + className="rounded-r-xl" + >
{numberFormat.format(amount)}
- |
@@ -254,3 +479,45 @@
{/each}
+
+
diff --git a/src/stores/server.js b/src/stores/server.js
index 2aad45ea..751a0bcf 100644
--- a/src/stores/server.js
+++ b/src/stores/server.js
@@ -7,6 +7,8 @@ dayjs.extend(utc);
dayjs.extend(timezone);
export const server = writable('Asia');
+export const ar = writable(50);
+export const wl = writable(7);
export const loading = writable(true);
const timeOffset = {
diff --git a/static/images/resin.png b/static/images/resin.png
new file mode 100644
index 00000000..757c3529
Binary files /dev/null and b/static/images/resin.png differ
| |