Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
phenomen committed Nov 30, 2024
1 parent c1859fc commit 9332cd4
Show file tree
Hide file tree
Showing 6 changed files with 110 additions and 74 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ package-lock.json
pnpm-lock.yaml
yarn.lock

/src-tauri
/src-tauri/target
/src-tauri/gen
/build
/dist
/public
Expand Down
53 changes: 47 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flc",
"version": "6.6.0",
"version": "6.7.0",
"description": "Foundry Lightweight Client",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flc"
version = "6.6.0"
version = "6.7.0"
description = "Foundry Lightweight Client"
authors = ["phenomen"]
license = "MIT"
Expand Down
122 changes: 58 additions & 64 deletions src-tauri/capabilities/default.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,59 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": [
"main"
],
"platforms": [
"macOS",
"windows",
"linux"
],
"permissions": [
"core:app:allow-set-app-theme",
"core:default",
"core:webview:allow-create-webview-window",
"core:webview:allow-create-webview",
"core:webview:allow-set-webview-focus",
"core:webview:allow-set-webview-size",
"core:webview:allow-set-webview-zoom",
"core:webview:default",
"core:window:allow-close",
"core:window:allow-create",
"core:window:allow-is-focused",
"core:window:allow-is-fullscreen",
"core:window:allow-set-focus",
"core:window:allow-set-fullscreen",
"core:window:default",
"dialog:default",
"global-shortcut:allow-register",
"global-shortcut:default",
"http:default",
"shell:allow-kill",
"shell:allow-open",
"shell:allow-spawn",
"shell:default",
"updater:allow-check",
"updater:allow-download-and-install",
"updater:allow-download",
"updater:allow-install",
"updater:default",
{
"identifier": "http:default",
"allow": [
{
"url": "https://*:*"
},
{
"url": "http://*:*"
}
]
},
{
"identifier": "shell:allow-spawn",
"allow": [
{
"name": "node",
"cmd": "node",
"args": true
}
],
"sidecar": false
}
]
}
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"platforms": ["macOS", "windows", "linux"],
"permissions": [
"core:app:allow-set-app-theme",
"core:default",
"core:webview:allow-create-webview-window",
"core:webview:allow-create-webview",
"core:webview:allow-set-webview-focus",
"core:webview:allow-set-webview-size",
"core:webview:allow-set-webview-zoom",
"core:webview:default",
"core:window:allow-close",
"core:window:allow-create",
"core:window:allow-is-focused",
"core:window:allow-is-fullscreen",
"core:window:allow-set-focus",
"core:window:allow-set-fullscreen",
"core:window:default",
"dialog:default",
"global-shortcut:allow-register",
"global-shortcut:default",
"http:default",
"shell:allow-kill",
"shell:allow-open",
"shell:allow-spawn",
"shell:default",
"updater:allow-check",
"updater:allow-download-and-install",
"updater:allow-download",
"updater:allow-install",
"updater:default",
{
"identifier": "http:default",
"allow": [
{
"url": "https://*:*"
},
{
"url": "http://*:*"
}
]
},
{
"identifier": "shell:allow-spawn",
"allow": [
{
"name": "node",
"cmd": "node",
"args": true
}
],
"sidecar": false
}
]
}
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "FLC",
"version": "6.6.0",
"version": "6.7.0",
"identifier": "com.phenomen.flc",
"build": {
"beforeDevCommand": "npm run dev",
Expand Down

0 comments on commit 9332cd4

Please sign in to comment.