Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 09a774e

Browse files
committed
up version
1 parent 1b56a4f commit 09a774e

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

docs/docs/changelog.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
1+
## 3.2.0
2+
### Shiny new things
3+
- Tabs between cells & arrow keys navigation [#40](https://github.com/RafaelGB/obsidian-db-folder/issues/40)
4+
- Columns vertical alignment options added [#444](https://github.com/RafaelGB/obsidian-db-folder/issues/444)
5+
### Improved
6+
- Improved the performance of the plugin around 15%
7+
- Refactor of formula modules to expose internal functions (more info on [API model](https://github.com/RafaelGB/obsidian-db-folder/blob/master/src/cdm/ModulesFnModel.ts))
8+
### No longer broken
9+
- Dates will be saved with ISO format to avoid read errors [#713](https://github.com/RafaelGB/obsidian-db-folder/issues/713)
10+
- Relations fields dropdown fixed
11+
- A better handling of the `active-leaf-change` event and `dv-changes` event
12+
- Error handling of onload plugin improved [#660](https://github.com/RafaelGB/obsidian-db-folder/issues/660)
113
## 3.1.3
214
### Shiny new things
315
- Multi tag support (without dv query) [ISSUE#706](https://github.com/RafaelGB/obsidian-db-folder/issues/706)
416
- Change the type of a column read the raw data from the file improving the results and avoiding errors
517
### Visual
618
- Improved expanded note style
719
### Improved
8-
- Fr translation added [703](https://github.com/RafaelGB/obsidian-db-folder/pull/703) Thanks to [@julien-maurel](https://github.com/Lisandra-dev)
20+
- Fr translation added [#703](https://github.com/RafaelGB/obsidian-db-folder/pull/703) Thanks to [@julien-maurel](https://github.com/Lisandra-dev)
921
- Tasks, Inlinks and Outlinks columns now can be sorted [ISSUE#536](https://github.com/RafaelGB/obsidian-db-folder/issues/536)
1022
- `active-leaf-change` listener added to refresh bar status
1123
### No longer broken
12-
- Dataview datasource now allows to select existing columns on modal [377](https://github.com/RafaelGB/obsidian-db-folder/issues/377)
24+
- Dataview datasource now allows to select existing columns on modal [#377](https://github.com/RafaelGB/obsidian-db-folder/issues/377)
1325
### Developer
1426
- Refactor of parser Service with a better performance.
1527
## 3.1.2

docs/docs/features/Formulas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The root object `db` has the following functions:
3232
- `js` : execute a javascript function that you previously defined in the `js` folder of your table in the database or plugin global settings. (I.E.: `db.js.myFunction( arg1, arg2)`)
3333
- `dataview`: expose the dataview API. (see [Dataview API](https://github.com/blacksmithgu/obsidian-dataview/blob/master/src/api/plugin-api.ts))
3434
- `rollup`: expose the rollup functions of the dbfolder plugin. (see [Rollup documentation](/obsidian-db-folder/features/Relations/#rollups))
35-
35+
- Internal functions of the plugin (see [API DatabaseFnType](https://github.com/RafaelGB/obsidian-db-folder/blob/master/src/cdm/ModulesFnModel.ts))
3636
#### Javascript file structure
3737
To add a javascript file to the `js` folder, it must be a `.js` file and have the following structure:
3838

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "3.1.3",
4+
"version": "3.2.0",
55
"minAppVersion": "1.1.1",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-dbfolder",
3-
"version": "3.1.3",
3+
"version": "3.2.0",
44
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)