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

Commit 80a16c9

Browse files
committed
Merge branch 'ultimate-details'
2 parents 8d188df + 94427a7 commit 80a16c9

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

docs/docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.6.0
2+
### Shiny new things
3+
- New column type: `Formulas`! You can configure you own formula inside the column settings. Check our documentation for more details [here](https://rafaelgb.github.io/obsidian-db-folder/features/Formulas/) [ISSUE#49](https://github.com/RafaelGB/obsidian-db-folder/issues/49)
4+
### No longer broken
5+
- Group folders with dv query source now respect ther target folder for new entries [ISSUE#372](https://github.com/RafaelGB/obsidian-db-folder/issues/372https://github.com/RafaelGB/obsidian-db-folder/issues/372)
6+
- Improved sorting to respect all the types of the table [ISSUE#371](https://github.com/RafaelGB/obsidian-db-folder/issues/371)
7+
- Columns with special characters are allowed now with dv query source [ISSUE#375](https://github.com/RafaelGB/obsidian-db-folder/issues/375)
18
## 2.5.3
29
### No longer broken
310
- Sorting for created and modified dates working with new table version [ISSUE#368](https://github.com/RafaelGB/obsidian-db-folder/issues/368)

manifest-beta.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": "2.5.3",
4+
"version": "2.6.0",
55
"minAppVersion": "0.15.9",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

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

src/settings/handlers/automation/FormulaJSFolderHandler.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ import { FolderSuggest } from "settings/suggesters/FolderSuggester";
55
export class FormulaJSFolderHandler extends AbstractSettingsHandler {
66
settingTitle: string = 'Select the source of database data';
77
handle(settingHandlerResponse: SettingHandlerResponse): SettingHandlerResponse {
8-
const { settingsManager, containerEl, view } = settingHandlerResponse;
8+
const { containerEl, view } = settingHandlerResponse;
99
const formula_folder_promise = async (value: string): Promise<void> => {
1010
// update settings
1111
view.diskConfig.updateConfig({ formula_folder_path: value });
12-
// Force refresh of settings
13-
settingsManager.reset(settingHandlerResponse);
1412
};
1513
// render dropdown inside container
1614
new Setting(containerEl)

0 commit comments

Comments
 (0)