From 547486fc761b021829284c006b69960f7222cd3c Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Sat, 14 Jun 2025 22:56:10 +0530 Subject: [PATCH] (chore): bumped up to v0.1.1 --- CHANGELOG.md | 8 ++++++-- package-lock.json | 4 ++-- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87eb75a..ce71b7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ ### ✨ Changelog -- Initial MVP release (v0.1.0) +- Migrated to React 19, TailwindCSS 4 and ShadcnUI 2.6 +- Added new 'Extension' tab +- Fixed: Default download directory not updating +- Fixed: MacOS large dock icon (#1) +- Other minor fixes and improvements ### 📝 Notes @@ -19,4 +23,4 @@ > ⬆️ icon indicates this packaging format supports in-built app-updater -> ⚠️ ARM64 binaries are experimental and may not work properly on Apple Silicon Macs (You might see 'Damaged File' warning) it's because the binaries are not signed and Apple Silicon Macs don't allow unsigned apps (downloaded from internet) to be installed on the system (also I'm not planning to sign it soon as it costs 99$/year, which I can't afford RN!). If you want to use NeoDLP in your Apple Silicon Macs then you have to [compile it from source](https://github.com/neosubhamoy/neodlp?tab=readme-ov-file#%EF%B8%8F-contributing--building-from-source) in your Mac \ No newline at end of file +> ⚠️ MacOS ARM64 binary downloads are experimental and may not open on Apple Silicon Macs if downloaded from browser (You will get 'Damaged File' error) it's because the binaries are not signed (signing MacOS binaries requires 99$/year Apple Developer Account subscription, which I can't afford RN!) and Apple Silicon Macs don't allow unsigned apps (downloaded from browser) to be installed on the system. If you want to use NeoDLP on your Apple Silicon Macs, you can simply use the command line [Curl-Bash Installer](https://neodlp.neosubhamoy.com/download) (Recommended) -OR- [compile it from source](https://github.com/neosubhamoy/neodlp?tab=readme-ov-file#%EF%B8%8F-contributing--building-from-source) in your Mac \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 1c4b4a8..ff3e1a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "neodlp", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "neodlp", - "version": "0.1.0", + "version": "0.1.1", "dependencies": { "@hookform/resolvers": "^5.1.1", "@radix-ui/react-accordion": "^1.2.11", diff --git a/package.json b/package.json index 8a14610..1619d4a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "neodlp", "private": true, - "version": "0.1.0", + "version": "0.1.1", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d76f9ab..7579a25 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2466,7 +2466,7 @@ dependencies = [ [[package]] name = "neodlp" -version = "0.1.0" +version = "0.1.1" dependencies = [ "base64 0.22.1", "directories", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index fa0b824..a1e65a5 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "neodlp" -version = "0.1.0" +version = "0.1.1" description = "NeoDLP" authors = ["neosubhamoy "] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index adb7fa1..65da7c3 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -2,7 +2,7 @@ "$schema": "https://schema.tauri.app/config/2", "productName": "NeoDLP", "mainBinaryName": "neodlp", - "version": "0.1.0", + "version": "0.1.1", "identifier": "com.neosubhamoy.neodlp", "build": { "beforeDevCommand": "npm run dev",