This repository was archived by the owner on Jul 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +21
-3
lines changed
src/settings/handlers/source Expand file tree Collapse file tree 5 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 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
216Hotfix of select & tags contrast (empty values) and save as md array
317## 3.1.1
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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 } ;
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments