Skip to content

Commit

Permalink
new minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGB committed Sep 22, 2022
1 parent 2f74c88 commit 0647ff4
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
9 changes: 9 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 2.6.5
### Shiny new things
- 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)
- Option to hide add row form [ISSUE#359](https://github.com/RafaelGB/obsidian-db-folder/issues/359)
- Line numbers are shown on row context menu [ISSUE#258](https://github.com/RafaelGB/obsidian-db-folder/issues/258)
- Shade alternate rows [ISSUE#290](https://github.com/RafaelGB/obsidian-db-folder/issues/290)
- This will improve the UX for mobile users too
### No longer broken
- Query tags are saved correctly now [ISSUE#411](https://github.com/RafaelGB/obsidian-db-folder/issues/411)
## 2.6.4
### Improved
- Filters refactor into a modal improving the UX and mobile experience [ISSUE#400](https://github.com/RafaelGB/obsidian-db-folder/issues/400)
Expand Down
2 changes: 1 addition & 1 deletion manifest-beta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dbfolder",
"name": "DB Folder",
"version": "2.6.4",
"version": "2.6.5",
"minAppVersion": "0.15.9",
"description": "Folder with the capability to store and retrieve data from a folder like database",
"author": "RafaelGB",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dbfolder",
"name": "DB Folder",
"version": "2.6.4",
"version": "2.6.5",
"minAppVersion": "0.15.9",
"description": "Folder with the capability to store and retrieve data from a folder like database",
"author": "RafaelGB",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-dbfolder",
"version": "2.6.4",
"version": "2.6.5",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
Expand Down
6 changes: 5 additions & 1 deletion src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ export function NavBar(navBarProps: NavBarProps) {
boxShadow: "none",
}}
>
<Toolbar>
<Toolbar
style={{
minHeight: "unset",
}}
>
<IconButton
size="medium"
aria-label={t("toolbar_menu_aria_label")}
Expand Down
6 changes: 3 additions & 3 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ div.database-plugin__checkbox {
cursor: pointer;
z-index: 3;
position: fixed;
margin-top: 4rem;
margin-top: 2.65rem;
background-color: var(--background-primary);
}

Expand Down Expand Up @@ -386,7 +386,7 @@ div.database-plugin__checkbox {

.database-plugin__table {
position: relative;
top: 4rem;
top: 2.65rem;
border-spacing: 0;
border-bottom: 1px solid var(--background-modifier-border);
display: table;
Expand Down Expand Up @@ -420,7 +420,7 @@ div.database-plugin__checkbox {
.database-plugin__sticky-level-2 {
position: -webkit-sticky;
position: sticky;
top: 4rem;
top: 2.65rem;
z-index: 3;
}

Expand Down

0 comments on commit 0647ff4

Please sign in to comment.