release: 0.9.1 turning off verbose

This commit is contained in:
Kacper Kula 2024-11-03 21:20:58 +00:00
parent ce99eefa14
commit 7be3d2a800
5 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,5 @@
# 0.9.1
Turning off verbose mode
# 0.9.0
We now use proper grid library to render data. This allow for many great features like pagination, sorting and more visally pleasing UI out of the box.
Reworked internal communication to use Signals.

View file

@ -12,7 +12,7 @@ export default class SqlSealPlugin extends Plugin {
async onload() {
await this.loadSettings();
const sqlSeal = new SqlSeal(this.app, true) // FIXME: set verbose based on the env.
const sqlSeal = new SqlSeal(this.app, false) // FIXME: set verbose based on the env.
this.registerMarkdownCodeBlockProcessor("sqlseal", sqlSeal.getHandler())
this.sqlSeal = sqlSeal
// start syncing when files are loaded

View file

@ -1,7 +1,7 @@
{
"id": "sqlseal",
"name": "SQLSeal",
"version": "0.9.0",
"version": "0.9.1",
"minAppVersion": "0.15.0",
"description": "Use SQL in your notes to query your vault files and CSV content.",
"author": "hypersphere",

View file

@ -1,6 +1,6 @@
{
"name": "sqlseal",
"version": "0.9.0",
"version": "0.9.1",
"description": "A plugin for Obsidian that allows you to run SQL queries on your notes.",
"main": "main.js",
"scripts": {

View file

@ -8,5 +8,6 @@
"0.6.0": "0.15.0",
"0.7.0": "0.15.0",
"0.8.0": "0.15.0",
"0.9.0": "0.15.0"
"0.9.0": "0.15.0",
"0.9.1": "0.15.0"
}