Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ python/tests/samples/

# Claude Code — file operativi locali
CLAUDE.md
AGENTS.md

# Log files
*.log
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,28 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) —

---

## [0.2.5-beta.1] — 2026-07-25

### Security
- Updated transitive Electron tooling dependency `fast-uri` from 3.1.2 to 3.1.4 to include
upstream security fixes.

### Dependencies
- electron: 43.1.1 → 43.2.0 (Chromium/Electron fixes)
- react: 19.2.7 → 19.2.8
- react-dom: 19.2.7 → 19.2.8
- lucide-react: 1.24.0 → 1.26.0
- @vitejs/plugin-react: 6.0.3 → 6.0.4
- @fontsource/inter: 5.2.8 → 5.3.0
- @fontsource/jetbrains-mono: 5.2.8 → 5.3.0

### Quality
- All Python tests passing: 47 passed, 1 skipped
- Frontend production build verified
- Electron 43.2.0 installation verified

---

## [0.2.4] — 2026-07-21

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ File (image / audio / video / document / anything)

## 🔧 Version

**v0.2.4** — Fixed a Windows-only bug where the app window and splash would flash, close, and reopen on install/update, caused by Squirrel relaunching the app after its own shortcut setup. No changes to application behavior or the API.
**v0.2.5** — Maintenance and security update for Electron/frontend dependencies, including the upstream `fast-uri` security fixes. No changes to application behavior or the API.

📖 **See full version history** → [CHANGELOG.md](./CHANGELOG.md)

Expand Down Expand Up @@ -234,5 +234,5 @@ Distributed with MIT License · [View License](LICENSE)

---

*Last updated: 2026-07-21*
*Last updated: 2026-07-25*
*← [Requirements](docs/REQUIREMENTS.md) | [Docs →](docs/)*
18 changes: 9 additions & 9 deletions electron/package-lock.json

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

4 changes: 2 additions & 2 deletions electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metalens",
"version": "0.2.4",
"version": "0.2.5",
"description": "Universal File Metadata Manager",
"author": "Graziano Mariella",
"license": "MIT",
Expand All @@ -15,6 +15,6 @@
"@electron-forge/maker-rpm": "^7.6.0",
"@electron-forge/maker-squirrel": "^7.6.0",
"@electron-forge/maker-zip": "^7.11.2",
"electron": "^43.1.1"
"electron": "^43.2.0"
}
}
54 changes: 27 additions & 27 deletions frontend/package-lock.json

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

14 changes: 7 additions & 7 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metalens-frontend",
"version": "0.2.4",
"version": "0.2.5",
"private": true,
"type": "module",
"scripts": {
Expand All @@ -9,15 +9,15 @@
"preview": "vite preview"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"lucide-react": "^1.24.0",
"react": "^19.1.0",
"react-dom": "^19.2.7"
"@fontsource/inter": "^5.3.0",
"@fontsource/jetbrains-mono": "^5.3.0",
"lucide-react": "^1.26.0",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitejs/plugin-react": "^6.0.4",
"tailwindcss": "^4.3.3",
"vite": "^8.1.5"
}
Expand Down
2 changes: 1 addition & 1 deletion python/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from dataclasses import dataclass


VERSION = "0.2.4"
VERSION = "0.2.5"
APP_NAME = "MetaLens"
SIDECAR_HOST = "127.0.0.1"

Expand Down
Loading