A graphical browser for Bolt databases using GoVCL. https://code.ivysaur.me/yvbolt
Go to file
mappu c541e8b941 doc/README: add v0.7.0 download links 2024-07-18 18:15:10 +12:00
assets gui/images: load more image assets 2024-07-06 11:54:36 +12:00
debconf debconf: fix extra spaces, Name column ordering 2024-06-30 14:14:26 +12:00
doc doc: update screenshot 2024-06-29 12:59:41 +12:00
lexer lexer: separate tokens for top-level special characters 2024-06-30 11:26:00 +12:00
sqliteclidriver sqliteclidriver: always get columns in the right order 2024-06-30 13:12:11 +12:00
.gitignore makefile: add targets for release dist builds 2024-06-29 12:41:05 +12:00
LICENSE initial commit 2024-06-03 16:49:04 +12:00
Makefile makefile: set `dist` as default target 2024-07-18 18:02:37 +12:00
README.md doc/README: add v0.7.0 download links 2024-07-18 18:15:10 +12:00
TODO doc: v0.7.0 changelog, update TODO 2024-07-18 18:00:56 +12:00
db_badger.go app: upcast loadedDatabase to more specific interfaces 2024-07-18 17:09:32 +12:00
db_bolt.go app: upcast loadedDatabase to more specific interfaces 2024-07-18 17:09:32 +12:00
db_debconf.go app: upcast loadedDatabase to more specific interfaces 2024-07-18 17:09:32 +12:00
db_none.go app: upcast loadedDatabase to more specific interfaces 2024-07-18 17:09:32 +12:00
db_pebble.go app: upcast loadedDatabase to more specific interfaces 2024-07-18 17:09:32 +12:00
db_redis.go app: upcast loadedDatabase to more specific interfaces 2024-07-18 17:09:32 +12:00
db_sqlite.go sqlite: basic editing support 2024-07-18 17:46:13 +12:00
db_sqlite_cgo.go sqliteclidriver: indicate driver in status bar 2024-06-30 12:48:22 +12:00
db_sqlite_nocgo.go sqliteclidriver: indicate driver in status bar 2024-06-30 12:48:22 +12:00
go.mod sqliteclidriver: use channel events, handle no results via sentinel 2024-06-30 12:33:47 +12:00
go.sum sqliteclidriver: use channel events, handle no results via sentinel 2024-06-30 12:33:47 +12:00
images.go gui/images: load more image assets 2024-07-06 11:54:36 +12:00
loadedDatabase.go app: upcast loadedDatabase to more specific interfaces 2024-07-18 17:09:32 +12:00
main.go gui: toggle edit buttons as well 2024-07-18 17:49:16 +12:00
platform_windows.go platform_windows: move extra syso inclusion out of main 2024-06-23 13:06:41 +12:00
redisConnectionDialog.go gui: fix popup position for redis connection dialog 2024-06-30 11:05:25 +12:00
util_format.go format: move to util_ file 2024-06-23 13:06:25 +12:00
util_types.go gui: change tracking for insert, edit, delete actions 2024-07-06 11:04:19 +12:00
util_vcl.go gui: hardcode better windows colours 2024-07-18 17:51:27 +12:00
versions.go versions: replace embed go.mod with stdlib debug api 2024-06-28 11:05:49 +12:00

README.md

yvbolt

A graphical interface for multiple databases using GoVCL.

Features

  • Native desktop application, running on Linux, Windows, and macOS
  • Connect to multiple databases at once
  • Browse table/bucket content
    • Use context menu to perform special table/bucket actions
  • Run custom SQL queries
    • Select text to run partial query
  • Safe handling for non-UTF8 key and data fields
  • Supported databases:
    • Badger v4
    • Bolt
      • Recursive bucket support
      • Option to open as readonly for shared access
      • Supports editing
      • See also qbolt for more/different functionality
    • Debconf
    • Pebble
    • Redis
    • SQLite
      • Drivers: mattn (CGo), modernc.org (no cgo), experimental command-line driver
      • Supports editing
      • Integrated vacuum and export commands

License

The code in this project is licensed under the ISC license (see LICENSE file for details).

This project redistributes images from the famfamfam/silk icon set under the CC-BY 2.5 license.

This project includes trademarked logo images for each supported database type.

Compiling

  1. CGO_ENABLED=1 go build
  2. Download liblcl for your platform, or compile it yourself (tested with v2.2.3)
  3. Place the liblcl library file in the same directory as yvbolt
  4. Run yvbolt and use the main menu to open a database

Changelog

2024-07-18 v0.7.0

  • SQLite, Bolt: Initial support for editing data (insert, per-cell update, delete)
  • SQLite: Add context menu actions for compact (vacuum), export, and drop table
  • App: New grid widget
  • App: Add refresh button
  • App: Bigger window size, use icons for toolbars, better UI colours for Windows
  • App: Prevent submitting blank queries to database
  • Refactor database interface and error handling

⬇️ Download for Windows x86_64

⬇️ Download for Linux x86_64

2024-06-30 v0.6.0

  • Debconf: Add as supported database
  • SQLite: Support table names containing special characters
  • SQLite: Improvements for experimental command-line driver
  • Redis: Improve connection dialog window position
  • App: Cosmetic fixes for frame borders, help dialog, and Windows fonts+colours
  • Build: Change compression parameters for release builds
  • Build: Compile CGO with -O2 for release builds

⬇️ Download for Windows x86_64

⬇️ Download for Linux x86_64

2024-06-29 v0.5.0

  • Pebble: Add as supported database
  • Bolt: Support opening as readonly
  • Bolt: Support creating new databases
  • Bolt: Support adding/removing recursive child buckets
  • SQLite: Support custom CLI driver that parses /usr/bin/sqlite3 -json output (experimental)
  • Redis: Improve query parser to support quoted strings
  • App: Support refreshing elements in nav tree
  • App: Help menu option to show driver versions
  • App: Add image icons for refresh and close context menu actions
  • Build: Add makefile for cross-compiling release binaries

⬇️ Download for Windows x86_64

⬇️ Download for Linux x86_64

2024-06-23 v0.4.0

  • Redis: Add as supported database
  • Badger: Allow creating in-memory databases
  • App: Allow selecting partial query text to execute
  • App: Allow closing database connections from context menu
  • App: Allow scrolling large content on Properties pane
  • App: Preload recursive navigation
  • App: Automatically switch to selected database when new connection is created
  • App: Add help website link
  • App: Add database logo images

2024-06-25 v0.3.0

  • Badger: Add BadgerDB v4 as supported database
  • SQLite: Add support for CGo-free SQLite driver under cross-compilation
  • Bolt: Update Bolt to v1.4.0-alpha.1
  • App: Add support for running custom queries
  • App: Add status bar showing currently selected DB
  • App: Fix missing icons in nav when selecting items
  • App: Fix extra quotemarks when browsing string content of database

2024-06-08 v0.2.0

  • SQLite: Add SQLite support (now requires CGo)
  • App: Add images for menu and navigation items

2024-06-03 v0.1.0

  • Initial public release