Skip to content

Commit

Permalink
chore: release v4.0.4
Browse files Browse the repository at this point in the history
Signed-off-by: The1111mp <[email protected]>
  • Loading branch information
1111mp committed Nov 19, 2024
1 parent 7067cf9 commit 67f735a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions UPDATELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## v4.0.4

### Features

- enhance the `Open With VSCode` feature
- use `tauri-plugin-window-state`

### Bug Fixes

- the migrate script will block application startup
- filter the logs inside tauri to reduce the amount of logs

---

## v4.0.3

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nvm-desktop",
"private": true,
"version": "4.0.3",
"version": "4.0.4",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
Expand Down
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 = "nvm-desktop"
version = "4.0.3"
version = "4.0.4"
description = "Node Version Manager Desktop - A desktop application to manage multiple active node.js versions."
authors = ["[email protected]"]
license = "GPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/utils/migrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use tauri::Emitter;
use tokio::fs;
use tokio::time::{sleep, Duration};

const CURRENT_MIGRATION_VERSION: i16 = 17;
const CURRENT_MIGRATION_VERSION: i16 = 18;
const NODE_DEFAULT_EXECUTE: [&str; 4] = ["node", "npm", "npx", "corepack"];

pub fn init() -> Result<()> {
Expand Down
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": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "NVM Desktop",
"version": "4.0.3",
"version": "4.0.4",
"identifier": "io.github.1111mp.nvm-desktop",
"build": {
"beforeDevCommand": "pnpm ui:dev",
Expand Down

0 comments on commit 67f735a

Please sign in to comment.