Skip to content

Commit cd98d0a

Browse files
committed
Release v2
1 parent 0dd33dd commit cd98d0a

File tree

115 files changed

+1579
-1085
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+1579
-1085
lines changed

README.md

Lines changed: 3 additions & 12 deletions

bytesto4t/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ node_modules
77
.env.*
88
!.env.example
99
vite.config.js.timestamp-*
10-
vite.config.ts.timestamp-*
10+
vite.config.ts.timestamp-*
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"hash": "840b247e",
3+
"configHash": "f09b0eb2",
4+
"lockfileHash": "e3b0c442",
5+
"browserHash": "cbb8e945",
6+
"optimized": {},
7+
"chunks": {}
8+
}

bytesto4t/.vite/deps/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "module"
3+
}

bytesto4t/README.md

Lines changed: 21 additions & 5 deletions

bytesto4t/bun.lock

Lines changed: 543 additions & 0 deletions
Large diffs are not rendered by default.

bytesto4t/bun.lockb

-101 KB
Binary file not shown.

bytesto4t/package.json

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bytesto4t",
3-
"version": "0.1.4",
4-
"description": "",
3+
"version": "0.2.0",
4+
"description": "GUI app based on hlbc",
55
"type": "module",
66
"scripts": {
77
"dev": "vite dev",
@@ -13,32 +13,31 @@
1313
},
1414
"license": "MIT",
1515
"dependencies": {
16-
"@skeletonlabs/skeleton": "^3.1.2",
17-
"@skeletonlabs/tw-plugin": "^0.4.0",
18-
"@tailwindcss/forms": "^0.5.9",
19-
"@tauri-apps/api": "^2.0.2",
20-
"@tauri-apps/plugin-dialog": "~2",
21-
"@tauri-apps/plugin-fs": "~2",
22-
"@tauri-apps/plugin-log": "~2",
23-
"@tauri-apps/plugin-shell": "^2.0.0",
24-
"@types/node": "^22.7.5",
25-
"highlight.js": "^11.10.0",
26-
"svelte-add": "^2.7.3",
27-
"svelte-splitpanes": "^8.0.8",
28-
"svelte-tiny-virtual-list": "^2.1.2"
16+
"@tailwindcss/vite": "^4.1.5",
17+
"@tauri-apps/api": "^2.5.0",
18+
"@tauri-apps/plugin-dialog": "~2.2.1",
19+
"@tauri-apps/plugin-fs": "~2.2.1",
20+
"@tauri-apps/plugin-log": "~2.4.0",
21+
"@tauri-apps/plugin-opener": "^2.2.6",
22+
"@tauri-apps/plugin-shell": "~2.2.1",
23+
"tailwindcss": "^4.1.5"
2924
},
3025
"devDependencies": {
31-
"@sveltejs/adapter-static": "^3.0.5",
32-
"@sveltejs/kit": "^2.7.0",
26+
"@skeletonlabs/skeleton": "^3.1.3",
27+
"@skeletonlabs/skeleton-svelte": "^1.2.1",
28+
"@sveltejs/adapter-static": "^3.0.8",
29+
"@sveltejs/kit": "^2.20.8",
3330
"@sveltejs/vite-plugin-svelte": "^5.0.3",
34-
"@tailwindcss/typography": "^0.5.15",
35-
"@tauri-apps/cli": "^2.0.2",
36-
"autoprefixer": "^10.4.20",
37-
"svelte": "^5.1.1",
38-
"svelte-check": "^4.0.5",
39-
"tailwindcss": "^4.0.12",
40-
"tslib": "^2.7.0",
41-
"typescript": "^5.6.3",
42-
"vite": "^6.2.1"
31+
"@tailwindcss/typography": "^0.5.16",
32+
"@tauri-apps/cli": "^2.5.0",
33+
"highlight.js": "^11.11.1",
34+
"lucide-svelte": "^0.507.0",
35+
"paneforge": "^0.0.6",
36+
"shiki": "^3.4.0",
37+
"svelte": "^5.28.2",
38+
"svelte-check": "^4.1.7",
39+
"svelte-tiny-virtual-list": "^2.1.2",
40+
"typescript": "~5.6.3",
41+
"vite": "^6.3.5"
4342
}
4443
}

bytesto4t/postcss.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

bytesto4t/src-tauri/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "bytesto4t"
3-
version = "0.1.4"
4-
description = "A Tauri App"
5-
authors = ["you"]
3+
version = "0.2.0"
4+
description = "GUI app based on hlbc"
5+
authors = ["FirowMD"]
66
edition = "2021"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -15,18 +15,18 @@ name = "bytesto4t_lib"
1515
crate-type = ["staticlib", "cdylib", "rlib"]
1616

1717
[build-dependencies]
18-
tauri-build = { version = "2.0.0", features = [] }
18+
tauri-build = { version = "2", features = [] }
1919

2020
[dependencies]
21-
tauri = { version = "2.0.0", features = [] }
22-
tauri-plugin-shell = "2.0.0"
21+
tauri = { version = "2", features = [] }
22+
tauri-plugin-opener = "2"
2323
serde = { version = "1", features = ["derive"] }
2424
serde_json = "1"
25+
hlbc = "0.7.0"
26+
hlbc-decompiler = "0.7.0"
27+
chrono = "0.4.41"
28+
dirs = "6.0.0"
2529
tauri-plugin-dialog = "2"
26-
hlbc = { path = "../../external/hlbc/crates/hlbc" }
27-
hlbc-decompiler = { path = "../../external/hlbc/crates/decompiler" }
2830
tauri-plugin-fs = "2"
2931
tauri-plugin-log = "2"
30-
chrono = "0.4.40"
31-
dirs = "6.0.0"
32-
32+
tauri-plugin-shell = "2"

0 commit comments

Comments
 (0)