Skip to content

Commit 94b25fb

Browse files
committed
feat: AS kakao talk link
1 parent 258c348 commit 94b25fb

File tree

5 files changed

+32
-3
lines changed

5 files changed

+32
-3
lines changed

src-tauri/Cargo.lock

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tauri-build = { version = "1.2.1", features = [] }
1717
[dependencies]
1818
serde_json = "1.0"
1919
serde = { version = "1.0", features = ["derive"] }
20-
tauri = { version = "1.2.2", features = ["fs-all", "http-all", "path-all", "protocol-asset"] }
20+
tauri = { version = "1.2.2", features = ["fs-all", "http-all", "path-all", "protocol-asset", "shell-open"] }
2121

2222
[features]
2323
# by default Tauri runs in production mode

src-tauri/tauri.conf.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@
7171
"protocol": {
7272
"asset": true,
7373
"assetScope": ["$DOWNLOAD/output/img/**/*"]
74+
},
75+
"shell": {
76+
"open": "https://open.kakao.com/o/gPbArZ4c"
7477
}
7578
},
7679
"security": {

src/pages/InitPage.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const InitPage = () => {
3838
{Object.values(status).some((v) => v === false) && (
3939
<form
4040
ref={formRef}
41-
className="flex flex-col p-8"
41+
className="flex flex-col p-4"
4242
onSubmit={async (e) => {
4343
e.preventDefault();
4444
if (!everyOk) return;
@@ -65,6 +65,10 @@ const InitPage = () => {
6565
});
6666
}}
6767
>
68+
<p className="rounded-lg bg-red-100 p-2">
69+
Downloads 폴더에 백업한 output 폴더를 넣어주세요. <br/>
70+
문제가 있다면 <a href="https://open.kakao.com/o/gPbArZ4c" target="_blank" rel="noreferrer" className="link text-pink-500">AS 오픈카톡방</a>을 찾아주세요.
71+
</p>
6872
<ul>
6973
{fileList.map((name) => {
7074
const value = merged[name];
@@ -73,7 +77,7 @@ const InitPage = () => {
7377
<input
7478
type="checkbox"
7579
checked={value}
76-
className="checkbox checkbox-secondary checkbox-xs"
80+
className="checkbox checkbox-primary checkbox-xs checked:border-red-500"
7781
readOnly
7882
/>
7983
<label>

tauri.conf.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@
7171
"protocol": {
7272
"asset": true,
7373
"assetScope": ["$DOWNLOAD/output/img/*"]
74+
},
75+
"shell": {
76+
"open": "https://open.kakao.com/o/gPbArZ4c"
7477
}
7578
},
7679
"security": {

0 commit comments

Comments
 (0)