Skip to content

Commit

Permalink
chore: release v4.0.2
Browse files Browse the repository at this point in the history
Signed-off-by: 1111mp <[email protected]>
  • Loading branch information
1111mp committed Oct 18, 2024
1 parent 142e90a commit 7f37736
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.2

### Features

- add a checkbox in the download pop-up box to "set as the default version" [#128](https:/1111mp/nvm-desktop/issues/128)
- redesign the error-boundary component to show more information

### Bug Fixes

- disable right-click context menu
- `font-family` adapted to different platforms
- `nvmd use {version} --project` throws an error when `".nvmd/projects.json"` does not exist [#130](https:/1111mp/nvm-desktop/issues/130)
- give more friendly error messages [#128](https:/1111mp/nvm-desktop/issues/128)

## v4.0.1

### 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.1",
"version": "4.0.2",
"type": "module",
"scripts": {
"dev": "tauri dev",
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.1"
version = "4.0.2"
description = "Node Version Manager Desktop - A desktop application to manage multiple active node.js versions."
authors = ["[email protected]"]
edition = "2021"
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 @@ -5,7 +5,7 @@ use tauri::{Emitter, Manager};
use super::{dirs, help};
use crate::core::handle;

const CURRENT_MIGRATION_VERSION: i16 = 15;
const CURRENT_MIGRATION_VERSION: i16 = 16;
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.1",
"version": "4.0.2",
"identifier": "io.github.1111mp.nvm-desktop",
"build": {
"beforeDevCommand": "pnpm ui:dev",
Expand Down

0 comments on commit 7f37736

Please sign in to comment.