Skip to content

Commit faff7ac

Browse files
committed
fix: correct Vesktop build controls
1 parent fd4ebbc commit faff7ac

6 files changed

Lines changed: 21 additions & 20 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "veskforge",
33
"private": true,
4-
"version": "0.1.15",
4+
"version": "0.1.16",
55
"description": "Unofficial custom Vencord build manager for Vesktop.",
66
"license": "MIT",
77
"type": "module",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
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
@@ -1,6 +1,6 @@
11
[package]
22
name = "veskforge"
3-
version = "0.1.15"
3+
version = "0.1.16"
44
description = "Unofficial custom Vencord build manager for Vesktop."
55
authors = ["Microck"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Veskforge",
4-
"version": "0.1.15",
4+
"version": "0.1.16",
55
"identifier": "dev.micr.veskforge",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

src/App.css

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ select {
296296
}
297297

298298
.vesktop-view {
299-
overflow-y: hidden;
299+
overflow-y: scroll;
300300
padding-bottom: 20px;
301301
}
302302

@@ -643,7 +643,7 @@ button:disabled {
643643

644644
.build-actions {
645645
display: grid;
646-
grid-template-columns: auto auto auto auto minmax(0, 1fr);
646+
grid-template-columns: auto auto auto minmax(0, 1fr);
647647
align-items: center;
648648
gap: 14px;
649649
margin-bottom: 18px;
@@ -654,11 +654,6 @@ button:disabled {
654654
min-width: 170px;
655655
}
656656

657-
.update-build {
658-
width: 46px;
659-
padding: 0;
660-
}
661-
662657
.status-pill {
663658
display: inline-flex;
664659
min-height: 36px;
@@ -930,11 +925,17 @@ button:disabled {
930925
display: flex;
931926
align-items: center;
932927
justify-content: flex-end;
928+
gap: 12px;
933929
border-top: 1px solid var(--line);
934930
min-height: 84px;
935931
margin-top: 16px;
936932
}
937933

934+
.build-before-apply {
935+
width: 46px;
936+
padding: 0;
937+
}
938+
938939
.apply-build {
939940
min-width: 170px;
940941
}

src/App.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -548,15 +548,6 @@ function App() {
548548
</div>
549549

550550
<div className="build-actions">
551-
<button
552-
className="secondary update-build"
553-
disabled={!canBuild}
554-
onClick={() => runAction("Updating patched build", () => invoke("build_vencord"))}
555-
title="Update managed Vencord and build with enabled plugin sources"
556-
aria-label="Update patched build"
557-
>
558-
<ArrowClockwise size={22} />
559-
</button>
560551
<button className="primary build-now" disabled={!canBuild} onClick={() => runAction("Building Vencord", () => invoke("build_vencord"))}>
561552
<Play size={25} weight="regular" />
562553
Build now
@@ -678,6 +669,15 @@ function App() {
678669
</section>
679670

680671
<div className="apply-footer">
672+
<button
673+
className="secondary build-before-apply"
674+
disabled={!canBuild}
675+
onClick={() => runAction("Building Vencord", () => invoke("build_vencord"))}
676+
title="Build the patched Vencord output"
677+
aria-label="Build patched output"
678+
>
679+
<Play size={23} weight="regular" />
680+
</button>
681681
<button
682682
className="primary apply-build"
683683
disabled={!!busy}

0 commit comments

Comments
 (0)