Skip to content

Commit

Permalink
Added proper names in conf, for github action
Browse files Browse the repository at this point in the history
  • Loading branch information
SFSteffensen committed Aug 13, 2024
1 parent 77c6912 commit d93f0d6
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

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

6 changes: 3 additions & 3 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "dtime"
version = "1.0.0"
description = "A Tauri App"
authors = ["you"]
version = "1.0.1"
description = "DTime"
authors = ["Sebastian Steffensen"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/calculations.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use cfspeedtest::speedtest::test_download;
use cfspeedtest::OutputFormat;
use chrono::{DateTime, Duration as ChronoDuration, Local, Timelike, Utc};
use chrono::{DateTime, Duration as ChronoDuration, Utc};
use serde::{Deserialize, Serialize};
use std::time::Duration as StdDuration;
use tauri::async_runtime::spawn_blocking;
Expand Down
36 changes: 35 additions & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,40 @@
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
]
],
"identifier": "sfsteffensen.dev",
"resources": [],
"externalBin": [],
"macOS": {
"frameworks": [],
"minimumSystemVersion": "10.13",
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null,
"bundleIdentifier": "sfsteffensen.dev.DTime",
"category": "public.app-category.utilities",
"shortcuts": [
{
"name": "DTime",
"path": "/Applications/DTime.app",
"ascension": "APPLICATIONS"
}
]
},
"windows": {
"certificateThumbprint": null,
"timestampUrl": null,
"signingAlgorithm": null
},
"linux": {
"category": "Utility"
},
"outputFormat": {
"dmg": "DTime_${version}_MacOS_${arch}.dmg",
"appImage": "DTime_${version}_Linux_${arch}.AppImage",
"deb": "DTime_${version}_Linux_${arch}.deb",
"msi": "DTime_${version}_Windows_${arch}.msi",
"nsis": "DTime_${version}_Windows_${arch}.exe"
}
}
}

0 comments on commit d93f0d6

Please sign in to comment.