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

Commit 0647ff4

Browse files
committed
new minor version
1 parent 2f74c88 commit 0647ff4

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

docs/docs/changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 2.6.5
2+
### Shiny new things
3+
- new UX for the "Add a new page" and navigation menus [ISSUE#410](https://github.com/RafaelGB/obsidian-db-folder/issues/410) [Inspired by javiavid design](https://github.com/javiavid)
4+
- Option to hide add row form [ISSUE#359](https://github.com/RafaelGB/obsidian-db-folder/issues/359)
5+
- Line numbers are shown on row context menu [ISSUE#258](https://github.com/RafaelGB/obsidian-db-folder/issues/258)
6+
- Shade alternate rows [ISSUE#290](https://github.com/RafaelGB/obsidian-db-folder/issues/290)
7+
- This will improve the UX for mobile users too
8+
### No longer broken
9+
- Query tags are saved correctly now [ISSUE#411](https://github.com/RafaelGB/obsidian-db-folder/issues/411)
110
## 2.6.4
211
### Improved
312
- Filters refactor into a modal improving the UX and mobile experience [ISSUE#400](https://github.com/RafaelGB/obsidian-db-folder/issues/400)

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

src/components/NavBar.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,11 @@ export function NavBar(navBarProps: NavBarProps) {
107107
boxShadow: "none",
108108
}}
109109
>
110-
<Toolbar>
110+
<Toolbar
111+
style={{
112+
minHeight: "unset",
113+
}}
114+
>
111115
<IconButton
112116
size="medium"
113117
aria-label={t("toolbar_menu_aria_label")}

styles.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ div.database-plugin__checkbox {
295295
cursor: pointer;
296296
z-index: 3;
297297
position: fixed;
298-
margin-top: 4rem;
298+
margin-top: 2.65rem;
299299
background-color: var(--background-primary);
300300
}
301301

@@ -386,7 +386,7 @@ div.database-plugin__checkbox {
386386

387387
.database-plugin__table {
388388
position: relative;
389-
top: 4rem;
389+
top: 2.65rem;
390390
border-spacing: 0;
391391
border-bottom: 1px solid var(--background-modifier-border);
392392
display: table;
@@ -420,7 +420,7 @@ div.database-plugin__checkbox {
420420
.database-plugin__sticky-level-2 {
421421
position: -webkit-sticky;
422422
position: sticky;
423-
top: 4rem;
423+
top: 2.65rem;
424424
z-index: 3;
425425
}
426426

0 commit comments

Comments
 (0)