Skip to content

Commit b361a22

Browse files
authored
Desktop app (#187)
* Add Tauri code to package Angor for desktop * Update Cargo.toml * Continue on error when creating tag * Update icons * Update the high-res icons * Update package.json
1 parent c9e4805 commit b361a22

28 files changed

+8413
-3454
lines changed

Diff for: .github/workflows/create-version-tag.yml

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080
# https://docs.github.com/en/actions/using-workflows/triggering-a-workflow
8181
- name: Create tag
8282
if: steps.check_changes.outputs.changed == 'true'
83+
continue-on-error: true
8384
env:
8485
TAG_NAME: "v${{env.VERSION}}"
8586
run: |

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
55

66
# User-specific files
7+
dist
78
*.rsuser
89
*.suo
910
*.user

Diff for: package-lock.json

+3,724-3,436
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+21-18
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
{
2-
"name": "angor",
3-
"version": "0.0.71",
4-
"license": "MIT",
5-
"scripts": {
6-
"version": "node -p \"require('./package.json').version\"",
7-
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
8-
"build": "dotnet build src/Angor/Client",
9-
"start": "dotnet run --project src/Angor/Client",
10-
"cypress:open": "cypress open --config-file src/testing/cypress.config.js",
11-
"cypress:run": "cypress run --config-file src/testing/cypress.config.js"
12-
},
13-
"private": true,
14-
"dependencies": {
15-
"js-base64": "^3.7.7"
16-
},
17-
"devDependencies": {
18-
"cypress": "^13.9.0"
19-
}
2+
"name": "angor",
3+
"version": "0.0.71",
4+
"license": "MIT",
5+
"scripts": {
6+
"version": "node -p \"require('./package.json').version\"",
7+
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
8+
"build": "dotnet build src/Angor/Client",
9+
"start": "dotnet run --project src/Angor/Client",
10+
"cypress:open": "cypress open --config-file src/testing/cypress.config.js",
11+
"cypress:run": "cypress run --config-file src/testing/cypress.config.js",
12+
"tauri:dev": "tauri dev",
13+
"tauri:build": "tauri build"
14+
},
15+
"private": true,
16+
"dependencies": {
17+
"js-base64": "^3.7.7"
18+
},
19+
"devDependencies": {
20+
"cypress": "^13.9.0",
21+
"@tauri-apps/cli": "^2.1.0"
22+
}
2023
}

Diff for: src-tauri/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target/
4+
5+
# Generated by Tauri
6+
# will have schema files for capabilities auto-completion
7+
/gen/schemas

0 commit comments

Comments
 (0)