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

Commit f01842d

Browse files
committed
new mayor version
1 parent 2f9ccf0 commit f01842d

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

docs/docs/changelog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,18 @@
66
- Links filter
77
- Number range filter
88
- Text filter with unique values suggestions
9+
- Select filter with unique values suggestions
10+
- Tags filter
911
- Tasks filter
10-
12+
### Improved
13+
- Improvements on Obsidnan-projects integration [ISSUE#592](https://github.com/RafaelGB/obsidian-db-folder/issues/592)
14+
- new Icon design! [ISSUE#599](https://github.com/RafaelGB/obsidian-db-folder/issues/599)
15+
- You can hide/show the icon in the bar context menu on global settings.
16+
- Current folder without subfolders is avaliable for root too [ISSUE#606](https://github.com/RafaelGB/obsidian-db-folder/issues/606)
17+
### No longer broken
18+
- Edit engine improved to support multiple formula editions with the same trigger [ISSUE#616](https://github.com/RafaelGB/obsidian-db-folder/issues/616)
19+
- Tags source include the tag with new files at the end of the file if a template is applied [ISSUE#618](https://github.com/RafaelGB/obsidian-db-folder/issues/618)
20+
- CSV imports will include the file path correctly [ISSUE#593](https://github.com/RafaelGB/obsidian-db-folder/issues/593)
1121
## 2.8.4
1222
### Shiny new things
1323
- New rollup. All task count [ISSUE#602](https://github.com/RafaelGB/obsidian-db-folder/issues/602)

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

src/helpers/Constants.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,6 @@ export const StyleClasses = Object.freeze({
237237
FILTERS_MODAL_BODY: 'database-filters-body',
238238
});
239239

240-
241240
export const StyleVariables = Object.freeze({
242241
BACKGROUND_MODIFIER_ERROR: 'var(--background-modifier-error)',
243242
BACKGROUND_MODIFIER_SUCCESS: 'var(--background-modifier-success)',
@@ -255,8 +254,6 @@ export const StyleVariables = Object.freeze({
255254
INPUT_SHADOW: 'var(--input-shadow)',
256255
});
257256

258-
259-
260257
export const SourceDataTypes = Object.freeze({
261258
CURRENT_FOLDER: 'current_folder',
262259
CURRENT_FOLDER_WITHOUT_SUBFOLDERS: 'current_folder_without_subfolders',
@@ -266,7 +263,6 @@ export const SourceDataTypes = Object.freeze({
266263
QUERY: 'query',
267264
});
268265

269-
270266
export const CellSizeOptions = Object.freeze({
271267
COMPACT: 'compact',
272268
NORMAL: 'normal',

0 commit comments

Comments
 (0)