Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit be3e5bd

Browse files
authored
Merge pull request #41 from stellar-comet/main
Release v2.2.1
2 parents 465501b + e71e92a commit be3e5bd

18 files changed

+3
-45
lines changed

assets/Banner.jpg

11.3 KB
Loading

assets/Profile.png

419 KB
Loading

assets/icon-1024.png

-451 KB
Binary file not shown.

assets/icon-256.png

-9.22 KB
Binary file not shown.

assets/icon-512.png

-141 KB
Binary file not shown.

assets/icons/icon-256.png

-3.36 KB
Loading

assets/icons/icon.icns

-7.42 KB
Binary file not shown.

assets/icons/icon.ico

22.9 KB
Binary file not shown.

assets/icons/icon.png

51 KB
Loading

assets/icons/[email protected]

46.2 KB
Binary file not shown.

assets/icons/[email protected]

193 KB
Binary file not shown.

assets/icons/setup-icon.ico

856 Bytes
Binary file not shown.

assets/icons/[email protected]

186 KB
Binary file not shown.

assets/loading.gif

4.87 KB
Loading

assets/logo.svg

+1-43
Loading

assets/setup-icon-256.png

-15.6 KB
Binary file not shown.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "comet",
33
"productName": "Comet",
44
"private": true,
5-
"version": "2.1.2",
5+
"version": "2.2.1",
66
"description": "A simple media converter",
77
"keywords": [
88
"comet",

src/ui/blocks/SaveDirectory.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function formatPath(path?: string) {
3232
return;
3333
}
3434
35-
let formatted = path?.replace(/^\//, '').replace(/\//g, '');
35+
let formatted = path.replace(/\\/g, '/').replace(/^\//, '').replace(/\//g, '');
3636
3737
if (formatted.length > 40) {
3838
formatted = formatted.slice(formatted.lastIndexOf('') + 2);

0 commit comments

Comments
 (0)