Skip to content

Commit 51fa090

Browse files
committed
0.9.2
1 parent c9f2fd4 commit 51fa090

File tree

7 files changed

+42
-6
lines changed

7 files changed

+42
-6
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
## [0.9.2](https://github.com/debba/tabularis/compare/v0.9.1...v0.9.2) (2026-02-26)
2+
3+
4+
### Features
5+
6+
* **drivers:** add driver capability metadata and helper utilities ([3b0a2a3](https://github.com/debba/tabularis/commit/3b0a2a3ff8b68b4ffa9073bd4b512ea4c632a63f))
7+
* **drivers:** add is_builtin and default_username to plugin manifests ([60ac211](https://github.com/debba/tabularis/commit/60ac211bf494ab52e46ae8383c3dbfc3469dfc74))
8+
* **lightbox:** add mobile slider, touch and keyboard navigation ([ab00d29](https://github.com/debba/tabularis/commit/ab00d29c66a37f613385a4740d5a5735b3d76768))
9+
* **plugin:** add enable/disable functionality with proper shutdown ([6a4272a](https://github.com/debba/tabularis/commit/6a4272a84fa53d4510ad6b61e6f1aed0a88fbd23))
10+
* **plugins:** add custom registry URL support ([7f17e46](https://github.com/debba/tabularis/commit/7f17e46986e121f0dabdfba9b06c0356c70e8ae6))
11+
* **plugins:** manage disabled external plugins ([99968d8](https://github.com/debba/tabularis/commit/99968d8c58d7404195613f5aada4b7d83aa66e06))
12+
* **query:** use LIMIT+1 for pagination and add count query ([7473e63](https://github.com/debba/tabularis/commit/7473e6338a1f563c4549745b5a5f2e08726a98bf))
13+
* **registry:** add plugin releases metadata and GitNexus skills ([49e5480](https://github.com/debba/tabularis/commit/49e54803aad975cc14025a2e398231ea64d63a19))
14+
* **task-manager:** add child process details to task manager ([a24b2cb](https://github.com/debba/tabularis/commit/a24b2cb4bc212ac779146bd534c2b44aaccfe509))
15+
* **task-manager:** add process monitoring and management system ([c899ee5](https://github.com/debba/tabularis/commit/c899ee517c4da26466ee6981115a9f94f8a0f87f))
16+
* **task-manager:** optimize child process loading ([4d8e8bc](https://github.com/debba/tabularis/commit/4d8e8bc90b5dcf6109c59ee141e7db5baedba34f))
17+
* **ui:** add Task Manager feature article and gallery item ([c9f2fd4](https://github.com/debba/tabularis/commit/c9f2fd4833fb84b2c400c790b06b2131390ade38))
18+
* **website:** add homepage intro and update global styles ([a024a74](https://github.com/debba/tabularis/commit/a024a74fb730e68555cd5342e52cb401c5b82a9f))
19+
* **website:** include min_tabularis_version in plugin display ([17f0aab](https://github.com/debba/tabularis/commit/17f0aab3eae5d510e50aa23ae29acda56f157cbc))
20+
* **website:** make plugin author link clickable and tidy layout ([83ed834](https://github.com/debba/tabularis/commit/83ed83495ae0ca79db432312d9e75f2b0ff07a5b))
21+
22+
23+
### Performance Improvements
24+
25+
* **postgres:** run count query concurrently for paginated selects ([f96152c](https://github.com/debba/tabularis/commit/f96152c1edc29d3839d40db4b491135c006dc6cf))
26+
27+
28+
### BREAKING CHANGES
29+
30+
* **task-manager:** removes children field from TabularisSelfStats, now
31+
fetched on-demand
32+
* **query:** Pagination.total_rows is now Option<u64> and has_more
33+
added
34+
35+
36+
137
## [0.9.1](https://github.com/debba/tabularis/compare/v0.9.0...v0.9.1) (2026-02-25)
238

339

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ A lightweight, developer-focused database management tool, built with Tauri and
3232

3333
## Release Download:
3434

35-
[![Windows](https://img.shields.io/badge/Windows-Download-blue?logo=windows)](https://github.com/debba/tabularis/releases/download/v0.9.1/tabularis_0.9.1_x64-setup.exe) [![macOS](https://img.shields.io/badge/macOS-Download-black?logo=apple)](https://github.com/debba/tabularis/releases/download/v0.9.1/tabularis_0.9.1_x64.dmg) [![Linux](https://img.shields.io/badge/Linux-Download-green?logo=linux)](https://github.com/debba/tabularis/releases/download/v0.9.1/tabularis_0.9.1_amd64.AppImage)
35+
[![Windows](https://img.shields.io/badge/Windows-Download-blue?logo=windows)](https://github.com/debba/tabularis/releases/download/v0.9.2/tabularis_0.9.2_x64-setup.exe) [![macOS](https://img.shields.io/badge/macOS-Download-black?logo=apple)](https://github.com/debba/tabularis/releases/download/v0.9.2/tabularis_0.9.2_x64.dmg) [![Linux](https://img.shields.io/badge/Linux-Download-green?logo=linux)](https://github.com/debba/tabularis/releases/download/v0.9.2/tabularis_0.9.2_amd64.AppImage)
3636

3737
## Table of Contents
3838

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tabularis",
33
"private": true,
4-
"version": "0.9.1",
4+
"version": "0.9.2",
55
"type": "module",
66
"links": {
77
"discord": "https://discord.gg/YrZPHAwMSG",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tabularis"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
description = "tabularis - A database manager for developers"
55
authors = ["Debba"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
33
"productName": "tabularis",
4-
"version": "0.9.1",
4+
"version": "0.9.2",
55
"identifier": "tabularis",
66
"build": {
77
"frontendDist": "../dist",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const APP_VERSION = "0.9.1";
1+
export const APP_VERSION = "0.9.2";

website/src/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* This file is auto-generated by scripts/sync-version.js
66
* To update, run: pnpm version <new-version> && pnpm sync-version
77
*/
8-
export const APP_VERSION = "0.9.1";
8+
export const APP_VERSION = "0.9.2";

0 commit comments

Comments
 (0)