Skip to content

Commit

Permalink
release v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tamlok committed Jun 5, 2021
1 parent 7c768c4 commit ed4e3c3
Show file tree
Hide file tree
Showing 8 changed files with 280 additions and 146 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:

env:
VNOTE_VER: 3.1.0
VNOTE_VER: 3.2.0

jobs:
build-linux:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:

env:
VNOTE_VER: 3.1.0
VNOTE_VER: 3.2.0

jobs:
build-linux:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:

env:
VNOTE_VER: 3.1.0
VNOTE_VER: 3.2.0

jobs:
build:
Expand Down
5 changes: 5 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changes
## v3.2.0
* Support local PlantUml and Graphviz rendering
* Add shortcuts to tab navigation in ViewSplit
* Editor: support auto bracket and overridding font family

## v3.1.0
* Support Japanese translation (Thanks @miurahr)
* MarkdownEditor: guess image suffix when fetching to local
Expand Down
Binary file modified src/data/core/translations/vnote_zh_CN.qm
Binary file not shown.
411 changes: 270 additions & 141 deletions src/data/core/translations/vnote_zh_CN.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/data/core/vnotex.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"metadata" : {
"//comment": "When releasing new version, please go through the following configs to check if override is needed.",
"//Comment": "markdown_editor#override_viewer_resource",
"version" : "3.1.0"
"version" : "3.2.0"
},
"core" : {
"theme" : "pure",
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/dialogs/settings/markdowneditorpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ QGroupBox *MarkdownEditorPage::setupGeneralGroup()
jarLayout->setContentsMargins(0, 0, 0, 0);

m_plantUmlJarFileInput = new LocationInputWithBrowseButton(box);
m_plantUmlJarFileInput->setToolTip(tr("Local JAR file to render PlantUML graphs"));
m_plantUmlJarFileInput->setToolTip(tr("Local JAR file to render PlantUml graphs"));
connect(m_plantUmlJarFileInput, &LocationInputWithBrowseButton::clicked,
this, [this]() {
auto filePath = QFileDialog::getOpenFileName(this,
Expand Down

0 comments on commit ed4e3c3

Please sign in to comment.