Skip to content

Commit

Permalink
new minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGB committed Dec 30, 2022
1 parent b9062bb commit f27ef8a
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
14 changes: 14 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 3.1.3
### Shiny new things
- Multi tag support (without dv query) [ISSUE#706](https://github.com/RafaelGB/obsidian-db-folder/issues/706)
- Change the type of a column read the raw data from the file improving the results and avoiding errors
### Visual
- Improved expanded note style
### Improved
- Fr translation added [703](https://github.com/RafaelGB/obsidian-db-folder/pull/703) Thanks to [@julien-maurel](https://github.com/Lisandra-dev)
- Tasks, Inlinks and Outlinks columns now can be sorted [ISSUE#536](https://github.com/RafaelGB/obsidian-db-folder/issues/536)
- `active-leaf-change` listener added to refresh bar status
### No longer broken
- Dataview datasource now allows to select existing columns on modal [377](https://github.com/RafaelGB/obsidian-db-folder/issues/377)
### Developer
- Refactor of parser Service with a better performance.
## 3.1.2
Hotfix of select & tags contrast (empty values) and save as md array
## 3.1.1
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dbfolder",
"name": "DB Folder",
"version": "3.1.2",
"version": "3.1.3",
"minAppVersion": "1.1.1",
"description": "Folder with the capability to store and retrieve data from a folder like database",
"author": "RafaelGB",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-dbfolder",
"version": "3.1.2",
"version": "3.1.3",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
Expand Down
5 changes: 4 additions & 1 deletion src/settings/handlers/source/SourceDropDownHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ export class SourceDropDownHandler extends AbstractSettingsHandler {
});
const source_dropdown_promise = async (value: string): Promise<void> => {
// update settings
view.diskConfig.updateConfig({ source_data: value });
view.diskConfig.updateConfig({
source_data: value,
source_form_result: ""
});
// Force refresh of settings
settingsManager.reset(settingHandlerResponse);
};
Expand Down
1 change: 1 addition & 0 deletions src/settings/handlers/source/flavours/TagsSourceBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export class TagSourceBuilder {
this.selectedTags.push(value);
suggester.removeSuggestion(value);
cb.setValue("");
cb.inputEl.blur();
await this.view.diskConfig.updateConfig(
{ source_form_result: this.selectedTags.join(",") }
);
Expand Down

0 comments on commit f27ef8a

Please sign in to comment.