From 88a3ee183fee300b8f44528dc223997469152c6f Mon Sep 17 00:00:00 2001 From: Le Tan Date: Fri, 18 Jun 2021 23:49:22 -0700 Subject: [PATCH] release v3.3.0 (#1794) --- .github/workflows/ci-linux.yml | 2 +- .github/workflows/ci-macos.yml | 2 +- .github/workflows/ci-win.yml | 2 +- changes.md | 5 +++++ src/data/core/vnotex.json | 2 +- src/widgets/editors/previewhelper.cpp | 1 - src/widgets/editors/previewhelper.h | 8 ++------ 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 97098505..66aba01b 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -10,7 +10,7 @@ on: workflow_dispatch: env: - VNOTE_VER: 3.2.0 + VNOTE_VER: 3.3.0 jobs: build-linux: diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index b673aa8b..e8791471 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -10,7 +10,7 @@ on: workflow_dispatch: env: - VNOTE_VER: 3.2.0 + VNOTE_VER: 3.3.0 jobs: build-linux: diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index 52dce7fa..73ee8068 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -10,7 +10,7 @@ on: workflow_dispatch: env: - VNOTE_VER: 3.2.0 + VNOTE_VER: 3.3.0 jobs: build: diff --git a/changes.md b/changes.md index da82d6a8..1f1f671a 100644 --- a/changes.md +++ b/changes.md @@ -1,4 +1,9 @@ # Changes +## v3.3.0 +* Editor: support auto indent, auto list +* Support opening notes with external programs +* Add a delay after code/math blocks update before preview + ## v3.2.0 * Support local PlantUml and Graphviz rendering * Add shortcuts to tab navigation in ViewSplit diff --git a/src/data/core/vnotex.json b/src/data/core/vnotex.json index 564f4fcb..fe6669c5 100644 --- a/src/data/core/vnotex.json +++ b/src/data/core/vnotex.json @@ -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.2.0" + "version" : "3.3.0" }, "core" : { "theme" : "pure", diff --git a/src/widgets/editors/previewhelper.cpp b/src/widgets/editors/previewhelper.cpp index 45143eae..1ac91b23 100644 --- a/src/widgets/editors/previewhelper.cpp +++ b/src/widgets/editors/previewhelper.cpp @@ -5,7 +5,6 @@ #include #include -#include #include #include #include diff --git a/src/widgets/editors/previewhelper.h b/src/widgets/editors/previewhelper.h index 06be1040..bfa91bec 100644 --- a/src/widgets/editors/previewhelper.h +++ b/src/widgets/editors/previewhelper.h @@ -6,6 +6,8 @@ #include #include +#include + #include #include "markdownvieweradapter.h" @@ -14,12 +16,6 @@ class QTextDocument; namespace vte { - namespace peg - { - struct FencedCodeBlock; - struct MathBlock; - } - struct PreviewItem; }