Releases: QueryaHub/Querya-Desktop
Releases · QueryaHub/Querya-Desktop
Release list
Querya Desktop 0.4.7-a
[0.4.7-a] - 2026-06-22
Added
- Connection Invalidate/Reconnect — added Invalidate/Reconnect action in the application menu and window title bar.
- Connection Read-only Mode — added Read-only mode for PostgreSQL and SQLite database connections to prevent write operations (displays a lock icon in the workspace).
- Connection Lifecycle Management — added Connect and Disconnect menu items and corresponding title bar controls.
Documentation
- Added comprehensive setup guides for SQLite, Read-only connection mode, and connection lifecycle controls in the English user guide and Obsidian Russian notes.
Downloads
- Linux:
Querya-Desktop-0.4.7-a-linux.zip - Windows:
Querya-Desktop-0.4.7-a-windows.zip - macOS:
Querya-Desktop-0.4.7-a-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.4.7-a
- Commit: 3ca7229
Querya Desktop 0.4.7
[0.4.7] - 2026-06-21
Local extension discovery and manifest foundation release. Git tag 0.4.7.
Added
- Extension models (EXT-1) — data models
ExtensionManifestandExtensionTypeto parsemanifest.json. - Local scanner (EXT-2) —
LocalExtensionRegistryscans~/.querya/extensions/to find and load extension manifests. - Theme migration (EXT-3) — migrated legacy custom themes to the new unified extension package format.
- Unit tests (EXT-4) — unit tests for manifest parsing, directory scanning, and registry cache logic.
Fixed
- Theme importing security — resolved concurrent import TOCTOU filesystem races and theme ID collisions during migration, and cleaned up deprecated legacy import code.
- Appearance Settings test — resolved the preferences appearance section widget test failure by mocking the extensions directory.
Downloads
- Linux:
Querya-Desktop-0.4.7-linux.zip - Windows:
Querya-Desktop-0.4.7-windows.zip - macOS:
Querya-Desktop-0.4.7-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.4.7+13
- Commit: 8ba3d03
Querya Desktop 0.4.6-a
[0.4.6-a] - 2026-06-18
Changed
- UI / Sidebar — implemented collapsible dropdown tree nodes for tables and views in SQLite and MySQL connections.
Downloads
- Linux:
Querya-Desktop-0.4.6-a-linux.zip - Windows:
Querya-Desktop-0.4.6-a-windows.zip - macOS:
Querya-Desktop-0.4.6-a-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.4.6-a
- Commit: 96467b3
Querya Desktop 0.4.6
[0.4.6] - 2026-06-18
SQLite database connector release. Git tag 0.4.6.
Added
- SQLite connection driver (SQL-S1) — support local SQLite database files opening, closing, and queries via FFI.
- Catalog schema resolver (SQL-S2) — automatic tables, views, indexes, and column schema detection.
- Connection dialog (SQL-S3) — SQLite connection form with native file-picking (
file_selector) and read-only toggle. - Connections sidebar (SQL-S4) — integrated SQLite nodes with expand/collapse hierarchy under Connections.
- SQL Workspace editor & Paginated table (SQL-S5) — SQLite query workspace supporting history lookups, statement executions, and paginated data grid browser.
- Docker test database — added
sqlite-seedcontainer todocker-compose.ymlto automatically generate a localquerya.dbfile with mock data alongside other test databases.
Fixed
- UI / Accessibility — fixed text clipping in workspace toolbars and settings when increasing the interface scale (e.g., 150%). Replaced hardcoded heights with
minHeightconstraints and dynamically scaled label widths. - UI / Stability — resolved
A RenderAnimatedSize was mutated in its own performLayout implementationcrash during split pane dragging by removing redundantLayoutBuilderwrappers. - Linting — resolved
flutter analyzewarnings for deprecated Shadcn legacy colors and flow control structures.
Downloads
- Linux:
Querya-Desktop-0.4.6-linux.zip - Windows:
Querya-Desktop-0.4.6-windows.zip - macOS:
Querya-Desktop-0.4.6-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.4.6+12
- Commit: 39fc44f
Querya Desktop 0.4.4
[0.4.4] - 2026-06-16
UI motion polish, high refresh rate, performance fixes, and security improvements release. Git tag 0.4.4.
Added
- Motion tokens core (UI-A1) —
QueryaMotioncore durations and curves, providing a single source of truth for all animations. - Token adoption (UI-A2) — replace magic/scattered duration and curve literals with standardized tokens.
- Smoother transitions (UI-A3) — menu/dropdown enter fade+scale, dialog blur/scale retune, tree height animation (
QueryaAnimatedExpand), and workspace tab content cross-fade (QueryaCrossFadeStack). - High refresh rate (UI-A4) — unlock native ProMotion on macOS 14+, active Hz logging at startup, and FPS/Hz debug overlay.
- Reduced motion setting (UI-A5) — Preferences toggle (
Full/Reduced/Off) and automatic OS reduced-motion configuration matching. - Docs & performance checks (UI-A6) — per-OS measured refresh-rate verification table, DevTools performance checklists, and release QA items.
- SQLite Database Support Plan (0.4.5) — design and implementation roadmap for local SQLite file connector support.
Fixed
- Memory: SQL Result Capping (Issue #184) — PostgreSQL and MySQL query execution now limits client memory usage by applying query LIMITs database-side and streaming rows using
rowsStream(breaking early). - Performance: MongoDB Client-side Pagination (Issue #185) — uses
SelectorBuilderskip/limit operators on the server instead of client-side stream buffering. - Performance: N+1 secure storage lookups (Issue #186) — parallelizes connection secrets hydration on startup.
- Performance: Redis Key Scanning round-trips (Issue #187) — runs type and TTL lookups concurrently for key batches.
- Security: Theme Remote Installation SSRF (Issue #183) — parses and filters IPv6 and private/loopback/multicast/mapped hosts using
InternetAddress.tryParse. - UX: Focus leak on QueryaCrossFadeStack — wraps inactive children in
ExcludeFocusandExcludeSemanticsto prevent tab-indexing into off-screen tabs.
Downloads
- Linux:
Querya-Desktop-0.4.4-linux.zip - Windows:
Querya-Desktop-0.4.4-windows.zip - macOS:
Querya-Desktop-0.4.4-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.4.4+10
- Commit: 93c356a
Querya Desktop 0.4.3
[0.4.3] - 2026-06-15
Theme follow-ups release (TP-F1–TP-F4, GitHub issues #159–#163). Git tag 0.4.3.
Added
- Theme folder watcher (TP-F1) — debounced
Directory.watchon{appSupport}/themes/auto-refreshes the registry when files are added, removed, or renamed. - Marketplace metadata (TP-F2) — optional manifest fields (
homepage,license,preview,tags); theme picker shows author/tags;ExtensionManifeststub inlib/core/market/for future Explore UI. - Visual theme editor (TP-F3) — Preferences section to tweak workbench colors with live preview and export
querya.theme.v1JSON. - Remote theme install (TP-F4) — Install from URL… (HTTPS-only, public hosts, optional SHA-256);
ThemeRemoteInstallServicewith checksum verify before import. - Docs / QA — remote install section in theme-import.md; 0.4.3 items in release-checklist.md.
- Tests — file watcher, remote install policy/service, theme editor and metadata coverage.
Downloads
- Linux:
Querya-Desktop-0.4.3-linux.zip - Windows:
Querya-Desktop-0.4.3-windows.zip - macOS:
Querya-Desktop-0.4.3-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.4.3+9
- Commit: e9a1ccd
Querya Desktop 0.4.2
Querya Desktop 0.4.2
Downloads
- Linux:
Querya-Desktop-0.4.2-linux.zip - Windows:
Querya-Desktop-0.4.2-windows.zip - macOS:
Querya-Desktop-0.4.2-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.4.2+8
- Commit: ca0b13d
Querya Desktop 0.4.1
Querya Desktop 0.4.1
Downloads
- Linux:
Querya-Desktop-0.4.1-linux.zip - Windows:
Querya-Desktop-0.4.1-windows.zip - macOS:
Querya-Desktop-0.4.1-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.4.1+7
- Commit: aeddb6b
Querya Desktop 0.4.0
Querya Desktop 0.4.0
Downloads
- Linux:
Querya-Desktop-0.4.0-linux.zip - Windows:
Querya-Desktop-0.4.0-windows.zip - macOS:
Querya-Desktop-0.4.0-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.4.0+6
- Commit: 6093bef
Querya Desktop 0.3.0
Querya Desktop 0.3.0
Downloads
- Linux:
Querya-Desktop-0.3.0-linux.zip - Windows:
Querya-Desktop-0.3.0-windows.zip - macOS:
Querya-Desktop-0.3.0-macos.zip(unsigned.appin zip; right-click → Open on first launch)
Verify checksums: SHA256SUMS.txt
Build info
- pubspec: 0.3.0+4
- Commit: cafe4e3