Migrate Vikunja from electron to tauri #127

Open
CL0Pinette wants to merge 6 commits from CL0Pinette/desktop:migrate_to_tauri into main
Showing only changes of commit 297feb57c2 - Show all commits

View File

@ -1,11 +1,11 @@
[package]
name = "app"
version = "0.1.0"
name = "vikunja-desktop"

What should the value of this be?

What should the value of this be?

The Cargo.yml declares dependencies and the package itself when we use it with another rust package for example. We sure can change the values in the package section to whatever we want :

  • name
  • licence
  • version
  • year
    ...
The Cargo.yml declares dependencies and the package itself when we use it with another rust package for example. We sure can change the values in the `package` section to whatever we want : - name - licence - version - year ...
version = "0.21.0"

Can we set this dynamically in ci?

Can we set this dynamically in ci?
description = "The Vikunja frontend packaged as a desktop app"
authors = ["The Vikunja authors"]
license = "GPLv3"
repository = "https://kolaente.dev/vikunja/desktop"
default-run = "app"
default-run = "vikunja-desktop"
edition = "2021"
Review

Is this a configurable value?

Is this a configurable value?
Review

The default-run value should be the same as the package name because it is this package that needs to be run on start

The `default-run` value should be the same as the package name because it is this package that needs to be run on start
rust-version = "1.57"