mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
release: 0.9.1 turning off verbose
This commit is contained in:
parent
ce99eefa14
commit
7be3d2a800
5 changed files with 7 additions and 4 deletions
|
|
@ -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.
|
||||
|
|
|
|||
2
main.ts
2
main.ts
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
Loading…
Reference in a new issue