Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jecsham committed Jun 5, 2022
1 parent a393005 commit 5626d1d
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 12 deletions.
50 changes: 47 additions & 3 deletions package-lock.json

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

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "msi",
"version": "2.0.0-beta.3",
"version": "2.0.1",
"private": true,
"dependencies": {
"@tauri-apps/api": "^1.0.0-rc.4",
Expand All @@ -26,7 +26,7 @@
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tauri": "tauri"
"tauri": "env-cmd tauri"
},
"eslintConfig": {
"extends": [
Expand All @@ -48,6 +48,7 @@
},
"devDependencies": {
"@tauri-apps/cli": "^1.0.0-rc.9",
"cross-env": "^7.0.3"
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0"
}
}
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.

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 = "msi"
version = "2.0.0"
version = "2.0.1"
description = "A program that allows you to visualize the main components of your Windows computer"
authors = ["Jecsham Castillo"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// #![windows_subsystem = "windows"]
#![windows_subsystem = "windows"]
mod commands;
use commands::system_data::system_data_command;

Expand Down
6 changes: 3 additions & 3 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "My System Information",
"version": "2.0.0"
"version": "2.0.1"
},
"build": {
"distDir": "../build",
Expand All @@ -12,7 +12,7 @@
"tauri": {
"bundle": {
"active": true,
"targets": "msi",
"targets": "all",
"identifier": "com.jecsham.msi",
"icon": [
"icons/32x32.png",
Expand Down Expand Up @@ -46,7 +46,7 @@
"updater": {
"active": true,
"endpoints": [
"https://msi.jecsham.com/update.json"
"https://msi.jecsham.com/update.json?t={{target}}&cv={{current_version}}"
],
"dialog": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEM5MDdFN0VDOTAyRTZDMTgKUldRWWJDNlE3T2NIeVRJZzh1WFZUa2d6QUI2TEJHbzJHdFlJTm1YMVdydFpJZnlGUWVaRk9QcSsK"
Expand Down

0 comments on commit 5626d1d

Please sign in to comment.