diff --git a/src/lib/components/functional/ConversionPanel.svelte b/src/lib/components/functional/ConversionPanel.svelte index 846cdb7..408227c 100644 --- a/src/lib/components/functional/ConversionPanel.svelte +++ b/src/lib/components/functional/ConversionPanel.svelte @@ -1,7 +1,7 @@ @@ -28,7 +28,10 @@ {#if files.requiredConverters.length === 1}

Set all to

files.files.forEach((f) => (f.to = r))} + onselect={(r) => files.files.forEach((f) => { + f.to = r; + f.result = null; + })} options={files.files[0]?.converter?.supportedFormats || []} /> {/if} diff --git a/src/lib/components/visual/Footer.svelte b/src/lib/components/visual/Footer.svelte index 31a4689..fd47506 100644 --- a/src/lib/components/visual/Footer.svelte +++ b/src/lib/components/visual/Footer.svelte @@ -22,9 +22,13 @@ {#each links as [name, url] (name)}

- {name} + {name} + {/each} diff --git a/src/lib/sections/about/Credits.svelte b/src/lib/sections/about/Credits.svelte index 8644154..3238081 100644 --- a/src/lib/sections/about/Credits.svelte +++ b/src/lib/sections/about/Credits.svelte @@ -47,7 +47,7 @@

Big thanks to all these people for helping out! - Discord Server + Discord server - Source Code + Source code \ No newline at end of file diff --git a/src/lib/sections/about/Why.svelte b/src/lib/sections/about/Why.svelte index 82d0b35..6ecd9ad 100644 --- a/src/lib/sections/about/Why.svelte +++ b/src/lib/sections/about/Why.svelte @@ -4,24 +4,22 @@ -

- - Why VERT? -

-

- File converters have always disappointed us. They're - ugly, riddled with ads, and most importantly; slow. We - decided to solve this problem once and for all by making an - alternative that solves all those problems, and then some.
-
- All your files are converted completely on—device, which means - that there's no delay between sending and receiving the file - from a server, and that we never get to snoop on the files you - convert. -

- \ No newline at end of file +

+ + Why VERT? +

+

+ File converters have always disappointed us. They're ugly, + riddled with ads, and most importantly; slow. We decided to solve this + problem once and for all by making an alternative that solves all those + problems, and more.
+
+ All your files are converted completely on-device; this means that there's + no delay between sending and receiving the files from a server, and we never + get to snoop on the files you convert. +

+ diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index dbb646a..848a01a 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -190,14 +190,14 @@ {@render children()}
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 4ee4f7d..2cff929 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -33,8 +33,8 @@ class="font-normal text-xl text-muted blur-in" style:--delay="60ms" > - All processing done on your device. No file size limit, - no ads, and completely open source. + All processing is done on your device. No file size + limit, no ads, and completely open source.

-
+

About

-
+
diff --git a/src/routes/convert/+page.svelte b/src/routes/convert/+page.svelte index fe4f587..20b0b50 100644 --- a/src/routes/convert/+page.svelte +++ b/src/routes/convert/+page.svelte @@ -69,6 +69,7 @@ file.result && (file.result = null)} />