4 Commits
v1.1 ... main

Author SHA1 Message Date
94e8abbd48 1
Some checks failed
Build and Release / build (push) Has been cancelled
2026-06-13 00:17:29 -05:00
c46ecaf3e2 Merge pull request 'scroll bug fix' (#1) from fix/config-scroll-overflow into main
Some checks failed
Build and Release / build (push) Failing after 6m47s
Reviewed-on: #1
2026-06-13 04:58:56 +00:00
efb7ee0c28 scroll bug fix 2026-06-12 23:55:24 -05:00
5af3756e4f fixed runner
Some checks failed
Build and Release / build (push) Failing after 3m43s
2026-06-12 21:24:51 -05:00
4 changed files with 7 additions and 20 deletions

View File

@@ -12,16 +12,6 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0'
- name: Stamp version from tag - name: Stamp version from tag
shell: powershell shell: powershell
run: | run: |

10
.gitignore vendored
View File

@@ -20,11 +20,11 @@ src-tauri/binaries/
# ── UO asset art (large binary files, user-supplied) ───────────────────────── # ── UO asset art (large binary files, user-supplied) ─────────────────────────
# BMPs are sourced from the user's UO client — not committed to the repo. # BMPs are sourced from the user's UO client — not committed to the repo.
# The XML manifests (gumps.xml, script_gumps.xml) ARE committed. # The XML manifests (gumps.xml, script_gumps.xml) ARE committed.
UO Gumps/*.bmp #UO Gumps/*.bmp
UO artwork/*.bmp #UO artwork/*.bmp
UO artwork/*.png #UO artwork/*.png
UO artwork/*.tga #UO artwork/*.tga
UO artwork/*.dds #UO artwork/*.dds
# ── SQLite databases ────────────────────────────────────────────────────────── # ── SQLite databases ──────────────────────────────────────────────────────────
*.db *.db

View File

@@ -31,10 +31,6 @@
"externalBin": [ "externalBin": [
"binaries/asw-sidecar" "binaries/asw-sidecar"
], ],
"resources": {
"../UO artwork": "UO artwork",
"../UO Gumps": "UO Gumps"
},
"icon": [ "icon": [
"icons/32x32.png", "icons/32x32.png",
"icons/128x128.png", "icons/128x128.png",

View File

@@ -1,10 +1,11 @@
.screen { .screen {
flex: 1; flex: 1;
display: flex; display: flex;
align-items: center; align-items: flex-start;
justify-content: center; justify-content: center;
background: var(--bg-base); background: var(--bg-base);
padding: 40px; padding: 40px;
overflow-y: auto;
} }
.card { .card {