Switching ui lib & refactoring (#80)

switch to shadcn ui
bump runtime versions (node, pnpm, etc)
refactor gui
This commit is contained in:
Vilian Gerdzhikov
2024-01-24 06:05:07 +00:00
committed by GitHub
parent 12365282a3
commit 353ec976d5
262 changed files with 8688 additions and 2048 deletions

BIN
.github/app.jpeg vendored

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 53 KiB

View File

@@ -1,17 +1,47 @@
name: Build and publish
name: Clippy
on:
workflow_dispatch:
pull_request:
jobs:
publish-tauri:
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-22.04'
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8.10.0
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build frontend
run: pnpm svelte:build
- uses: rui314/setup-mold@v1
with:
make-default: false
@@ -22,7 +52,6 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf

View File

@@ -24,13 +24,13 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8.5.0
version: 8.10.0
run_install: false
- name: Get pnpm store directory

View File

@@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
platform: [macos-latest, ubuntu-22.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
@@ -17,16 +17,16 @@ jobs:
with:
fetch-depth: 0
- name: Install Node.js
- name: Install Node.js 20
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8.5.0
version: 8.10.0
run_install: false
- name: Get pnpm store directory
@@ -46,6 +46,9 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build frontend
run: pnpm svelte:build
- uses: rui314/setup-mold@v1
with:
make-default: false
@@ -56,14 +59,11 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Build frontend
run: pnpm svelte:build
- uses: tauri-apps/tauri-action@v0
env:
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}