Skip to content

Commit

Permalink
release v3.3.0 (#1794)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamlok authored Jun 19, 2021
1 parent c50f76c commit 88a3ee1
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 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.2.0
VNOTE_VER: 3.3.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.2.0
VNOTE_VER: 3.3.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.2.0
VNOTE_VER: 3.3.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.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
Expand Down
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.2.0"
"version" : "3.3.0"
},
"core" : {
"theme" : "pure",
Expand Down
1 change: 0 additions & 1 deletion src/widgets/editors/previewhelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include <QTextBlock>
#include <QTimer>

#include <vtextedit/pegmarkdownhighlighterdata.h>
#include <vtextedit/texteditorconfig.h>
#include <vtextedit/previewmgr.h>
#include <vtextedit/textutils.h>
Expand Down
8 changes: 2 additions & 6 deletions src/widgets/editors/previewhelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

#include <vtextedit/global.h>
#include <vtextedit/lrucache.h>
#include <vtextedit/pegmarkdownhighlighterdata.h>

#include <core/global.h>
#include "markdownvieweradapter.h"

Expand All @@ -14,12 +16,6 @@ class QTextDocument;

namespace vte
{
namespace peg
{
struct FencedCodeBlock;
struct MathBlock;
}

struct PreviewItem;
}

Expand Down

0 comments on commit 88a3ee1

Please sign in to comment.