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

Commit f27ef8a

Browse files
committed
new minor version
1 parent b9062bb commit f27ef8a

File tree

5 files changed

+21
-3
lines changed

5 files changed

+21
-3
lines changed

docs/docs/changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 3.1.3
2+
### Shiny new things
3+
- Multi tag support (without dv query) [ISSUE#706](https://github.com/RafaelGB/obsidian-db-folder/issues/706)
4+
- Change the type of a column read the raw data from the file improving the results and avoiding errors
5+
### Visual
6+
- Improved expanded note style
7+
### Improved
8+
- Fr translation added [703](https://github.com/RafaelGB/obsidian-db-folder/pull/703) Thanks to [@julien-maurel](https://github.com/Lisandra-dev)
9+
- Tasks, Inlinks and Outlinks columns now can be sorted [ISSUE#536](https://github.com/RafaelGB/obsidian-db-folder/issues/536)
10+
- `active-leaf-change` listener added to refresh bar status
11+
### No longer broken
12+
- Dataview datasource now allows to select existing columns on modal [377](https://github.com/RafaelGB/obsidian-db-folder/issues/377)
13+
### Developer
14+
- Refactor of parser Service with a better performance.
115
## 3.1.2
216
Hotfix of select & tags contrast (empty values) and save as md array
317
## 3.1.1

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.2",
4+
"version": "3.1.3",
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.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.2",
3+
"version": "3.1.3",
44
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
55
"main": "main.js",
66
"scripts": {

src/settings/handlers/source/SourceDropDownHandler.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ export class SourceDropDownHandler extends AbstractSettingsHandler {
1313
});
1414
const source_dropdown_promise = async (value: string): Promise<void> => {
1515
// update settings
16-
view.diskConfig.updateConfig({ source_data: value });
16+
view.diskConfig.updateConfig({
17+
source_data: value,
18+
source_form_result: ""
19+
});
1720
// Force refresh of settings
1821
settingsManager.reset(settingHandlerResponse);
1922
};

src/settings/handlers/source/flavours/TagsSourceBuilder.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export class TagSourceBuilder {
3737
this.selectedTags.push(value);
3838
suggester.removeSuggestion(value);
3939
cb.setValue("");
40+
cb.inputEl.blur();
4041
await this.view.diskConfig.updateConfig(
4142
{ source_form_result: this.selectedTags.join(",") }
4243
);

0 commit comments

Comments
 (0)