-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
43 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,14 +72,14 @@ | |
</p> | ||
<p class="pt-2"> | ||
Copyright (c) Copyright (c) 2022-2023 trobonox ([email protected]) <br> | ||
Kanri v0.3.1 | ||
Kanri v0.3.2 | ||
</p> | ||
<nuxt-link | ||
to="/licenses" | ||
class="text-accent text-accent-darker-hover" | ||
@click="$emit('closeModal')" | ||
> | ||
Third-party license notices | ||
> | ||
Third-party license notices | ||
</nuxt-link> | ||
</main> | ||
</template> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "kanri", | ||
"private": true, | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "Offline-first Kanban board desktop app", | ||
"author": "trobonox <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
# SPDX-FileCopyrightText: Copyright (c) 2022-2023 trobonox <[email protected]> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
[package] | ||
name = "kanri" | ||
version = "0.3.1" | ||
description = "Offline kanban board application" | ||
authors = ["trobonox"] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/trobonox/tauri" | ||
default-run = "kanri" | ||
edition = "2021" | ||
rust-version = "1.57" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[build-dependencies] | ||
tauri-build = { version = "1.2.1", features = [] } | ||
|
||
[dependencies] | ||
serde_json = "1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
tauri = { version = "1.2.4", features = ["dialog-message", "dialog-open", "dialog-save", "fs-write-file", "protocol-asset", "shell-open"] } | ||
# SPDX-FileCopyrightText: Copyright (c) 2022-2023 trobonox <[email protected]> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
[package] | ||
name = "kanri" | ||
version = "0.3.2" | ||
description = "Offline kanban board application" | ||
authors = ["trobonox"] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/trobonox/tauri" | ||
default-run = "kanri" | ||
edition = "2021" | ||
rust-version = "1.57" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[build-dependencies] | ||
tauri-build = { version = "1.2.1", features = [] } | ||
|
||
[dependencies] | ||
serde_json = "1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
tauri = { version = "1.2.4", features = ["dialog-message", "dialog-open", "dialog-save", "fs-write-file", "protocol-asset", "shell-open"] } | ||
tauri-plugin-persisted-scope = { version = "0.1", features = [ | ||
"protocol-asset", | ||
] } | ||
ignore = "=0.4.18" | ||
tauri-plugin-autostart = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" } | ||
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" } | ||
|
||
[features] | ||
# by default Tauri runs in production mode | ||
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL | ||
default = ["custom-protocol"] | ||
# this feature is used used for production builds where `devPath` points to the filesystem | ||
# DO NOT remove this | ||
custom-protocol = ["tauri/custom-protocol"] | ||
] } | ||
ignore = "=0.4.18" | ||
tauri-plugin-autostart = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" } | ||
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" } | ||
|
||
[features] | ||
# by default Tauri runs in production mode | ||
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL | ||
default = ["custom-protocol"] | ||
# this feature is used used for production builds where `devPath` points to the filesystem | ||
# DO NOT remove this | ||
custom-protocol = ["tauri/custom-protocol"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters