From 69e53ed62ae3cc82a95a1c38e0df354597c5a9ff Mon Sep 17 00:00:00 2001 From: LyAhn Date: Fri, 12 Jun 2026 18:20:27 +0100 Subject: [PATCH] chore(release): add MIT license, bundle metadata, and single NSIS target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Phase 1 of the 0.1.0 release prep: - LICENSE (MIT) plus license fields in Cargo.toml, package.json, and bundle config - tauri.conf.json: publisher/copyright/descriptions/homepage so the NSIS installer no longer derives 'jezz' from the identifier as manufacturer - version: null in tauri.conf.json — Cargo.toml is now the version source - bundle.targets narrowed from 'all' to nsis (updater-friendly, faster builds) - track pnpm-workspace.yaml (esbuild build-script approval, needed by CI) --- LICENSE | 21 +++++++++++++++++++++ package.json | 1 + pnpm-workspace.yaml | 2 ++ src-tauri/Cargo.toml | 3 ++- src-tauri/tauri.conf.json | 10 ++++++++-- 5 files changed, 34 insertions(+), 3 deletions(-) create mode 100644 LICENSE create mode 100644 pnpm-workspace.yaml diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d9e0202 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 JezzWTF + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/package.json b/package.json index 542a05d..231fddc 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "phokus", "private": true, "version": "0.1.0", + "license": "MIT", "type": "module", "scripts": { "build:app": "tauri build", diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..5ed0b5a --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,2 @@ +allowBuilds: + esbuild: true diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 84a8156..dffcbd7 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,8 +1,9 @@ [package] name = "phokus" version = "0.1.0" -description = "A performant image gallery application" +description = "Local-first desktop media library" authors = ["JezzWTF"] +license = "MIT" edition = "2021" [lib] diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 51aa343..5ec02ac 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Phokus", - "version": "0.1.0", + "version": null, "identifier": "wtf.jezz.phokus", "build": { "beforeDevCommand": "pnpm dev:vite", @@ -33,7 +33,13 @@ }, "bundle": { "active": true, - "targets": "all", + "targets": ["nsis"], + "publisher": "JezzWTF", + "license": "MIT", + "copyright": "Copyright © 2026 JezzWTF", + "shortDescription": "Local-first desktop media library", + "longDescription": "A local-first desktop media library for browsing, filtering, and curating image and video folders, with AI tagging, semantic search, and duplicate detection — all processed on-device.", + "homepage": "https://git.jezz.wtf/jezzwtf/phokus", "icon": [ "icons/32x32.png", "icons/128x128.png",