Skip to content

Commit

Permalink
feat: add settings UI (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger authored Oct 27, 2024
1 parent 097e3c2 commit e394f9d
Show file tree
Hide file tree
Showing 45 changed files with 3,752 additions and 1,099 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ jobs:
dotnet tool install --global AzureSignTool --version 5.0.0
- run: pnpm i
- run: pnpm run --filter zebar --filter @zebar/settings-ui build

- name: Set version number
shell: bash
run: |
TMP_PATH=$(mktemp)
CONF_PATH=packages/desktop/tauri.conf.json
jq '.version="${{ inputs.version-number || '0.0.0' }}"' "$CONF_PATH" > "$TMP_PATH"
mv "$TMP_PATH" "$CONF_PATH"
CONF_PATH="packages/desktop/tauri.conf.json"
cat "$CONF_PATH" | jq '.version="${{ inputs.version-number || '0.0.0' }}"' > "$CONF_PATH.tmp" && \
mv "$CONF_PATH.tmp" "$CONF_PATH"
- name: Tauri build
uses: tauri-apps/tauri-action@v0
Expand Down
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.associations": {
"**/packages/settings-ui/**/*.css": "tailwindcss"
}
}
Loading

0 comments on commit e394f9d

Please sign in to comment.