Skip to content

Releases: outerbase/studio

v0.4.0

17 Apr 16:38
Compare
Choose a tag to compare

What's Changed

This is a busy week for us. We turned our repository to mono-repo. We also separate the database GUI as independent React component (https://www.npmjs.com/package/@libsqlstudio/gui).

Other improvements:

  • Auto completion now suggest column when press "."
  • Highlight table name with different color
  • Fix losing tab focus when close last tab

v0.3.1

10 Apr 16:32
Compare
Choose a tag to compare

What's Changed

  • Add val.town support
  • Support view the trigger
  • Support view the View
  • Remove multiple row
  • Improve the table search with highlight text
  • Show table constraints

v0.3.0

04 Apr 14:10
Compare
Choose a tag to compare
  • Full rich editor mode
  • Upload image into your database
  • Add collaborator to your database
  • Support for rqlite
  • Redesign table creation

And many minor improvement

v0.2.4

28 Mar 13:33
Compare
Choose a tag to compare
  • Add support for Rqlite.
  • Add menu for sorting column by DESC or ASC

v0.2.3

25 Mar 07:26
Compare
Choose a tag to compare
  • Add Block Note editor with image upload support
  • Side menu follow the color based on the connection color
  • Arrange tab by drag and drop
  • Add Google Authentication Support

v0.2.2

19 Mar 09:50
Compare
Choose a tag to compare

New Connection Management

  • Introduce ability to store your connection credential on remote server.
  • Differential your connection with color. We provides 5 colors: gray, red, yellow, blue, and green.

Quality of Life Improvement

  • Auto detect link and display as link.
  • Auto detect if the link is an image and provide image preview

v0.2.1

05 Mar 14:16
Compare
Choose a tag to compare

We have a lot of exciting things in this release.

Open sqlite file

You can now open sqlite file

npx sqlstudio open your_sqlite.db

Dark Mode

We are now supporting dark mode

image

v0.2.0

25 Feb 15:02
Compare
Choose a tag to compare

I know we just have minor updates a few days ago. We are excited to release our major update.

  • Allows user to create table and alter table. There are a few limitations that we will address in the later release.
  • Add table filter
  • Slightly redesign our interface to make it more space efficient.

Table Schema Editor

Schema.Editor.mp4

v0.1.1

21 Feb 14:05
Compare
Choose a tag to compare

It has been a while from the last update. This is minor release that contains various small improvements.

Query Editor

  • Before when you run query contains multiple statements, it will run all the statement. Now, we change it to only run the current statement. There is also a run all button.
  • Add the cursor position.
  • Add Cmd + Enter keybinding
Screenshot 2024-02-22 at 12 18 22 at night

Table Data View

  • Previously, all the column has the same width. Now, we analyze the value of each column and try to adjust the initial column width to be eye-pleasing.
  • Add custom filter.
Screenshot 2024-02-22 at 12 24 05 at night
  • Before, it is impossible to input NULL value. Now we provide several INSERT VALUE options.
  • Add keybinding for copy value (Cmd + C)
Screenshot 2024-02-22 at 12 25 21 at night

Other

  • Better error handling when there is problem connecting to server
  • Drop the rely on table_info to get column definition. We are now parse the column definition directly from CREATE SCRIPT. CREATE SCRIPT contains more information. This will open door for us to implement editing schema which you are 70% close to completing it.

Full Changelog: v0.1.0...v0.1.1

v0.1.0

01 Feb 12:38
Compare
Choose a tag to compare

I am delighted to announce that LibSQL Studio has officially launched its stable version, v0.1.0 after 2 weeks of the initial development. LibSQL Studio is a lightweight browser-based GUI for managing your LibSQL. Allow me to highlight some of its features.

Data Editor

LibSQL Studio provides simple yet powerful data editor. You can remove, edit and insert new row. Your change will be staged for review before you decide to commit the change. We execute the whole changes in transaction to ensure consistency.

Data.Editor.mp4

Query

Write and execute your query with our query editor. Currently, the editor has only basic functionality such as basic syntax highlighting, and basic auto complete. We hope to improve it more in next version.

image

Blazing fast and efficient data table

Browse thousands of rows and columns without breaking your computer.

Fast.Table.mp4

Sticky Column

You can also make your column sticky.

Sticky.Column.mp4