Releases: outerbase/studio
v0.4.0
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
v0.3.0
v0.2.4
v0.2.3
v0.2.2
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
v0.2.0
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
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
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.
- Before, it is impossible to input NULL value. Now we provide several INSERT VALUE options.
- Add keybinding for copy value (Cmd + C)
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
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.
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.