Skip to content

Commit

Permalink
0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-cen committed Feb 20, 2024
1 parent da5058c commit 7c2c39c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
14 changes: 8 additions & 6 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -33999,7 +33999,7 @@ var progressNode = {
backgroundColor: "color"
},
styles: {
background: `progress.props.color`,
background: `$root.props.color`,
height: `'10px'`,
width: `'100px'`,
borderRadius: `'5px'`
Expand All @@ -34011,10 +34011,10 @@ var progressNode = {
node: {
...groupNode.node,
styles: {
width: `progress.props.value/progress.props.total*100+'%'`,
width: `$root.props.value/$root.props.max*100+'%'`,
height: `'100%'`,
borderRadius: `'5px'`,
background: `progress.props.backgroundColor`,
background: `$root.props.backgroundColor`,
display: `'block'`
}
}
Expand All @@ -34038,8 +34038,8 @@ var circularProgressNode = {
props: {
value: "50",
max: "100",
color: "'var(--background-modifier-form-field)'",
backgroundColor: `'var(--color-orange)'`,
color: `'var(--color-orange)'`,
backgroundColor: "'var(--background-modifier-form-field)'",
ringWidth: "5"
},
types: {
Expand Down Expand Up @@ -58228,7 +58228,9 @@ var triggerSpaceMenu = (superstate, path, e4, activePath, parentSpace, triggerRe
e5,
superstate,
(link) => {
addPathToSpaceAtIndex(superstate, space, link, -1);
const spaceCache = superstate.spacesIndex.get(link);
if (spaceCache)
addPathToSpaceAtIndex(superstate, spaceCache, space.path, -1);
},
true
);
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": "make-md",
"name": "MAKE.md",
"version": "0.9.0",
"version": "0.9.1",
"minAppVersion": "0.16.0",
"description": "Make.md brings powerful and modern note-taking features to Obsidian. Capture, organize and connect information with more flexibility without any code.",
"author": "MAKE.md",
Expand Down
1 change: 1 addition & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3432,6 +3432,7 @@ body:not(.is-mobile) .mk-tree-wrapper .mk-folder-buttons {
max-width: 100% !important;
}
.mk-node-link {
max-width: 100%;
display: flex;
gap: 4px;
align-items: center;
Expand Down

0 comments on commit 7c2c39c

Please sign in to comment.