You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 28, 2025. It is now read-only.
- (*NEW*) Configurable select column with `group_folder_column` property. This column will be used to group the notes into subfolders with the same cell value. The subfolder will be created if it does not exist.
Database view read the yaml configuration inside .md file and render a react DOM.
32
-
33
-
You can edit directly the yaml configuration inside the .md file or use the table features to edit the columns.
34
-
#### Information
35
-
Details about your database
36
-
-**name**: Name asociated to your database (TODO)
37
-
-**description**: extra information explaining the purpose of the database (TODO)
38
-
#### Database
39
-
The *columns* key is used to charge the correct information when you charge the react-table. Each column supports all the literals of react-table column configurations.
40
-
Mandatory:
41
-
-**input**: indicates the type of the column (text,markdown & number)
42
-
-**key**: name of obsidian field metadata in your notes (inline not supported edition yet)
43
-
-**accessor**: is the key of the data. Must be unique
44
-
-**label**: name of the column
45
-
Optional:
46
-
-**position**: order of the columns
47
-
48
-
49
-
#### Local configuration
50
-
-**enable_show_state**: show react table state at bottom of the page. It has a default value & local value of each database.
51
-
-**group_folder_column**: name of the column used to group the notes into subfolders with the same cell value. The subfolder will be created if it does not exist. It must be a select column type.
Copy file name to clipboardExpand all lines: docs/changelog.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,19 @@
1
-
## 0.0.8 (on progress)
1
+
## 0.1.0
2
2
### Shiny new things
3
-
- New button to download a CSV file with the current data (supports filtering!)
3
+
- New button to download a CSV file with the current data (supports filtering!). Temporally this feature is inside menu bar. We are working on move it into the actual file options of Obsidian [ISSUE#15](https://github.com/RafaelGB/obsidian-db-folder/issues/15)
4
4
### Improved
5
-
- Now when you add some cell, the plugin will check if the note has frontmatter and if the current column. If not it will be added.
5
+
- Now when you edit some cell, the plugin will check if the note has frontmatter and if the current column exist. If not it will be added automatically
6
6
- Headers are now static when you scroll down.
7
+
8
+
### Visual changes
9
+
- The search bar has been moved to a static menu bar
10
+
7
11
### No longer broken
8
12
- Now when you create a new note, the label of the file shows just the basename, not the full path.
9
13
- Add prefix to the className of components, so interference with other plugins is less probable. [ISSUE#19](https://github.com/RafaelGB/obsidian-bd-folder/issues/19)
14
+
- When column folder is activated and a file is moved, now link is updated correctly
10
15
## 0.0.7
16
+
*Published on 04/27/2022*
11
17
### Shiny new things
12
18
- New local property `group_folder_column` to specify a select column type column. This column will be used to group the notes into subfolders with the same cell value. The subfolder will be created if it does not exist. [ISSUE#11](https://github.com/RafaelGB/obsidian-bd-folder/issues/11)
- Drag & drop column. Order of the columns persisted
12
+
13
+
#### Filters
14
+
- Global filters
15
+

16
+
17
+
#### Event Driven
18
+
- Configurable select column with `group_folder_column` property. This column will be used to group the notes into subfolders with the same cell value. The subfolder will be created if it does not exist.
0 commit comments