Skip to content

Releases: MarkMindCkm/obsidian-markmind

v1.4.3

10 Apr 09:09
bbcfdab
Compare
Choose a tag to compare

mindmap

  1. fix #268 , fix bug of fish layout in rich mode
  2. node support parse callout of obsidian in rich mode

pdf annotator

please update pc pdfjs plugin

the short cut change to this ( Mac can use this short cut)

Features Short Cut
Highlight Yellow CTRL/CMD/ALT + Y
Highlight Green CTRL/CMD/ALT + G
Highlight Blue CTRL/CMD/ALT + B
Highlight Pink CTRL/CMD/ALT + P
Highlight Red CTRL/CMD/ALT + R
Delete annotate CTRL/CMD/ALT + Delete/Backspace

思维导图

  1. 修复 #268 ,修复 rich 模式下 鱼骨图的问题
  2. rich 模式 节点支持解析最新的obsidian 的 callout 语法

pdf 标注

请更新最新版的 电脑端 pdfjs 插件
快捷键更改为以下(mac 系统也可使用快捷键了)

功能 快捷键
高亮黄色 CTRL/CMD/ALT + Y
高亮绿色 CTRL/CMD/ALT + G
高亮蓝色 CTRL/CMD/ALT + B
高亮粉红 CTRL/CMD/ALT + P
高亮红色 CTRL/CMD/ALT + R
删除标注 CTRL/CMD/ALT + Delete/Backspace

Parse callout of obsidian

callout

v1.4.2

04 Apr 11:04
3cd87fd
Compare
Choose a tag to compare

PDF annotate tool

  1. support annotate http(s) , you should ensure obsidian can access to PDF file , for example
---
annotate-type: pdf
annotate-target: https://mozilla.github.io/pdf.js/legacy/web/compressed.tracemonkey-pldi-09.pdf
---

  1. fix #253 , when export highlight of pdf , only keep color value , you can setup export pdf format in setting tab to this , then it can be use with admonition
Page:{{page}}
<span style="color:rgb({{color}})">■</span>:{{highlightText}}
Comment:{{comment}}
[📌]({{link}})
^{{id}}

mindmap feature

  1. support setup layout in yaml of basic mode , for example
---
mindmap-plugin: basic
mindmap-layout: fish
mindmap-layout-direct: right
---

notice : **
keep setup value mindmap-layout and mindmap-layout-direct at the same time**

now support layout and direct

layout direct
mindmap right/left/mindmap
fish right/left
  1. support create hand drawn mode from basic mode , and support export to image but not support edit mode in hand drawn mode , this is a testing feature and this feature will apply to rich mode in future

the default hand draw font is this in style.css , load font need network

@font-face{
  font-family: 'myFont'; 
  src:url('http://cdn.ghost-jack.top/chinese.ttf');
}
.mm-handdraw-theme{
  font-family:'myFont';
}

you can change font to your own font in style.css , for example :
(use app://local/absolute font path to load your local font , not need network)

@font-face{
  font-family: 'testFont'; 
  src:url('app://local/D:font/test.ttf');
}
.mm-handdraw-theme{
  font-family:'testFont';
}

PDF 标注工具

  1. 支持注释网络上的 pdf ,但要需要保证可以访问,比如
---
annotate-type: pdf
annotate-target: https://mozilla.github.io/pdf.js/legacy/web/compressed.tracemonkey-pldi-09.pdf
---

  1. 修复 #253 , 当导出pdf注释 , 只保留颜色数值 , 可以在设置页面修改导出格式如下 , 可以搭配自定义 admonition 使用
Page:{{page}}
<span style="color:rgb({{color}})">■</span>:{{highlightText}}
Comment:{{comment}}
[📌]({{link}})
^{{id}}

思维导图功能

  1. 支持修改basic模式的布局方式 ,如下所示
---
mindmap-plugin: basic
mindmap-layout: fish
mindmap-layout-direct: right
---

注意: **要同时设置 mindmap-layoutmindmap-layout-direct **

目前支持的布局和方向如下表所示

layout direct
mindmap right/left/mindmap
fish right/left
  1. basic模式支持生成手绘模式的思维导图 ,支持导出为图片但目前不支持在手绘模式下修改思维导图 , 这是一个测试功能,后期将会应用于 rich 模式的思维导图

style.css 中默认的手绘字体如下, 使用时需要联网加载字体

@font-face{
  font-family: 'myFont'; 
  src:url('http://cdn.ghost-jack.top/chinese.ttf');
}
.mm-handdraw-theme{
  font-family:'myFont';
}

你也可以修改为你自己的字体,比如如下这种方式,可以加载你本地的字体
(app://local/字体绝对路径 )

@font-face{
  font-family: 'testFont'; 
  src:url('app://local/D:font/test.ttf');
}
.mm-handdraw-theme{
  font-family:'testFont';
}

mindmap

handdraw2

handdraw1

下载 (1)

v1.4.1

23 Mar 11:24
3bf0f5f
Compare
Choose a tag to compare
  1. fix #237
  2. fix #236
  3. fix mindmap scale bug
  4. support add callout in rich mode of mindmap , support mobile and pc

  1. 修复 #237
  2. 修复 #236
  3. 修复放大、缩小的问题
  4. 支持在rich 模式下的思维导图节点添加标注功能,支持移动端和电脑端

callout

v1.4.0

13 Mar 09:39
10b5413
Compare
Choose a tag to compare
  1. fix #231 , you can add link variable in setting tab when export pdf annotations
Page:{{page}}
<span style="color:{{color}}">■</span>:{{highlightText}} 
Comment:{{comment}}
[📌]({{link}})
^{{id}}
  1. fix #174 , it can work directly with Obsidian Extended Table plugins https://github.com/aidenlx/table-extended , when use table mode , you can find a menu get markdown of this table , click it ,then copy it to a md file , open table-extended plugin ,(not support wrap in table)
---
mindmap-plugin: basic
display-mode: table
---
  1. list mode support parse ![[mind map md]] to a real mind map
  2. fix basic mode mind map parse ![[mind map md]] bug

  1. 修复 #231,导出PDF 注释时可以添加一个 link 变量,
Page:{{page}}
<span style="color:{{color}}">■</span>:{{highlightText}} 
Comment:{{comment}}
[📌]({{link}})
^{{id}}
  1. 修复 #174 , 非常方便的制作表格,可以搭配插件table-extended使用,操作如下:使用表格模式时,可以在更多菜单中发现 获取表格的markdown ,点击菜单后将文字复制到一般的md文件中,(注意要打开table-extended插件),不支持表格内换行
---
mindmap-plugin: basic
display-mode: table
---
  1. 大纲模式也支持解析 ![[mindmap md]] 为真实的思维导图
  2. 修复basic 模式下解析`![[mindmap md]] 的问题

table mode with table extended plugin

table

export pdf annotations

highlight

v1.3.9

09 Mar 07:06
2590f2a
Compare
Choose a tag to compare

notice : pc pdfjs plugin need update pc pdf js plugin

pdf js plugin

  1. add a short cut ctrl + c to select text
  2. fix cannot click copy btn bug when click a annotate
  3. fix loss annotate-image-target bug when save pdf annotations
---
annotate-type: pdf
annotate-target: pdf/test.pdf
annotate-image-target: test/test
---

mind map

  1. add scale button in mind map
  2. fix #226, you can add color variable in setting tab when export pdf annotations
Page:{{page}}
<span style="color:{{color}}">■</span>:{{highlightText}} 
Comment:{{comment}}
^{{id}}

需要更新pdfjs 插件 电脑版 pdf js plugin

pdf 标注

  1. 修复 ctrl + c 复制文字
  2. 修复点击已存在的标注,无法点击 复制文字 菜单的问题
  3. 修复当制作标注丢失 annotate-image-target 的问题
---
annotate-type: pdf
annotate-target: pdf/test.pdf
annotate-image-target: test/test
---

思维导图

  1. 在左下角添加放大缩小按钮
  2. 修复 #226,当导出pdf标注时可以添加一个颜色变量,在设置页面里可以修改为下面这种形式
Page:{{page}}
<span style="color:{{color}}">■</span>:{{highlightText}} 
Comment:{{comment}}
^{{id}}

scale

color1

v1.3.8

03 Mar 03:31
0649562
Compare
Choose a tag to compare

Notice : please update pc pdfjs plugin pc pdfjs plugin

  1. support search mindmap node , add a menu toggle search box in more options
  2. fix #203 , support only copy pdf annotate text
  3. support micro adjustment of the height of the pdf annotate. you can add an upward or downward adjustment distance in the setting tab
  4. add a short cut alt + i to toggle create rect annotate status
  5. fix #131 , support set up folder path for image of rect annotate in yaml , this is a relative path to a folder in your vault , please update pc pdfjs plugin
---
annotate-type: pdf
annotate-target: pdf/test.pdf
annotate-image-target: test/test
---

注意:请更新电脑版 pdfjs 插件 pc pdfjs plugin

  1. 支持搜索思维导图 , 在更多菜单中有个 打开/关闭搜索框
  2. 修复 #203,支持复制pdf标注文字
  3. 支持微调整标注的高度,解决标注偏下或偏上的问题,可以在设置页面添加向上或向下调整的距离,比如 2 (px)
  4. 增加一个快捷键 alt + i 用于 切换创建矩形标注的状态
  5. 修复 #131,支持在 yaml 中单独为 pdf 设置保存矩形标注所产生的图片的文件夹路径( 指向你库中的某个文件夹,是个相对路径) ,默认是设置页面中的路径,如果在yaml中添加该路径,则该路径的优先级更高,该功能允许你为每个 pdf 单独设置图片路径,方便导出 , 需要更新 电脑版 pdfjs 插件
---
annotate-type: pdf
annotate-target: pdf/test.pdf
annotate-image-target: test/test
---

copy text

copyText

add folder path for image of rect annotate

imageFolder

adjust height of annotate

adjustHeight

search node

search

v1.3.7

20 Feb 05:25
6a662b9
Compare
Choose a tag to compare
  1. add command to toggle version of pc pdfjs plugin in command board (ctrl + p)
  2. please update PC pdfjs plugin pc pdfjs plugin
  • support old and new version ( #197
  • support highlight text by use shortcut key ( alt + y/r/g/p/b )
  • fix #197
    • In rare cases, due to the problem of PDF format, there will be problems in the text selection of the new version. You can use the old version to solve them
    • Generally, please use the new version ,better experience with the new version
  1. v1.3.6 has update mobile pdfjs plugin https://github.com/MarkMindCkm/obsidian-markmind/releases/tag/1.3.6

please support developer

free Catalyst
basic mode of mindmap advanced features in rich mode of mind map
most features in rich mode of mindmap pdf annotate
list mode support development
support mobile and pc support mobile and pc
$0 $12 (forever)
Buy

  1. 在命令面板(ctrl + p )增加切换 电脑版 pdfjs 版本的命令
  2. 电脑版 pdfjs 插件进行更新 电脑版 pdfjs 插件
  • 同时支持老版本和新版本 选择文本的方式,你可以在命令面板中切换
  • 支持高亮标注快捷键 ( alt + y/r/g/p/b )
  • 修复 #197
    • 在极少数情况下,由于pdf内部格式问题,新版本pdfjs插件计算位置会出现失误,导致选择文本会出现问题,这时就可以切换为老版本解决
    • 一般情况下请使用新版本,只有出现错误的时候才使用旧版,不过您可以自由决定使用哪个版本
    • 为了更好的体验,移动端不会保留老版本
  1. v1.3.6 已经更新了移动版 pdfjs 插件 https://github.com/MarkMindCkm/obsidian-markmind/releases/tag/1.3.6
  2. 这有一篇文章,markmind 进阶使用

开发者花费了很多的时间和精力,请支持开发者或者帮忙宣传一下

免费 支持
思维导图basic模式 rich 模式所有功能
思维导图大纲模式 pdf 标注
rich 模式部分功能 支持开发者
移动端和电脑端全平台使用 移动端和电脑端全平台使用
¥0 ¥80 (永久激活)
购买

pc pdfjs

v1.3.6

19 Feb 03:28
51dca3c
Compare
Choose a tag to compare
  1. fix #196
  2. fix #184
  3. mobile pdfjs plugin is release , please download mobile pdfjs, notice: long touch to select text

  1. 修复 #196
  2. 修复 #184
  3. 新版本移动端pdfjs 插件已发布,这是测试版,在这里下载 移动端pdfjs 插件,新版本对设备性能要求更高一些,尤其是内存方面,总之,新版和旧版本您可以自己选择,保存的数据是通用的 , 注意:长按才可以选择文本

mobile.pdfjs.mp4

v1.3.5

11 Feb 12:33
69bb957
Compare
Choose a tag to compare
  1. fix #159
  2. support create rich mode from basic mode , you can use ctrl + p , then you can find change basic to rich mode command
  3. import highlight annotations from pdf this function is release , you can find a menu in 'more options' when open a pdf
  4. support export pdf annotations as a format , you can find a menu in more options , you can setup format in setting tab , the default format is
Page:{{page}}
Text:{{highlightText}} 
Comment:{{comment}}
^{{id}}

  1. 修复 #159
  2. 支持将basic模式转为rich模式 , 使用 ctrl + p , 你可以发现一个命令
  3. 开放从pdf 导入原高亮标注的功能,当打开pdf时,现在可以在更多菜单中发现导入命令
  4. 支持按照一定的格式导出pdf标注,你可以在设置菜单中设置你想要的格式,默认的格式如下
Page:{{page}}
Text:{{highlightText}} 
Comment:{{comment}}
^{{id}}

123456

1234567

12345678

v1.3.4

03 Feb 04:24
7b7e92f
Compare
Choose a tag to compare
  1. reconstruct PDF annotation , this is only for pc version pdfjs plugin
  2. optimize some mind mapping functions

  1. 重构 PDF 标注工具,这是测试版 , 仅用于电脑 pdfjs 插件
  2. 优化一些思维导图操作

pdf

pdftest