mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 05:49:53 +08:00
release v3.17.0
This commit is contained in:
parent
e8fe0726ff
commit
4ab2033a81
2
.github/workflows/ci-linux.yml
vendored
2
.github/workflows/ci-linux.yml
vendored
@ -10,7 +10,7 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
VNOTE_VER: 3.16.0
|
VNOTE_VER: 3.17.0
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux:
|
build-linux:
|
||||||
|
2
.github/workflows/ci-macos.yml
vendored
2
.github/workflows/ci-macos.yml
vendored
@ -10,7 +10,7 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
VNOTE_VER: 3.16.0
|
VNOTE_VER: 3.17.0
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
2
.github/workflows/ci-win.yml
vendored
2
.github/workflows/ci-win.yml
vendored
@ -10,7 +10,7 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
VNOTE_VER: 3.16.0
|
VNOTE_VER: 3.17.0
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -1,4 +1,10 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
## v3.17.0
|
||||||
|
* Quick note: create note in given scheme (@feloxx)
|
||||||
|
* MarkdownEditor: support inserting multiple images (@feloxx)
|
||||||
|
* Mermaid: upgrade and fix preview issue (@ygcaicn)
|
||||||
|
* Flowchart.js: upgrade
|
||||||
|
|
||||||
## v3.16.0
|
## v3.16.0
|
||||||
* Support reading PDF format
|
* Support reading PDF format
|
||||||
* Support Ming Map editor in suffix `*.emind`
|
* Support Ming Map editor in suffix `*.emind`
|
||||||
|
@ -22,6 +22,7 @@ namespace vnotex
|
|||||||
ExpandContentArea,
|
ExpandContentArea,
|
||||||
Settings,
|
Settings,
|
||||||
NewNote,
|
NewNote,
|
||||||
|
NewQuickNote,
|
||||||
NewFolder,
|
NewFolder,
|
||||||
CloseTab,
|
CloseTab,
|
||||||
CloseAllTabs,
|
CloseAllTabs,
|
||||||
|
@ -21,9 +21,9 @@
|
|||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>vnote</string>
|
<string>vnote</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>3.16.0</string>
|
<string>3.17.0</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>3.16.0.1</string>
|
<string>3.17.0.1</string>
|
||||||
<key>NSHumanReadableCopyright</key>
|
<key>NSHumanReadableCopyright</key>
|
||||||
<string>Created by VNoteX</string>
|
<string>Created by VNoteX</string>
|
||||||
<key>CFBundleIconFile</key>
|
<key>CFBundleIconFile</key>
|
||||||
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -3,7 +3,7 @@
|
|||||||
"metadata" : {
|
"metadata" : {
|
||||||
"//comment": "When releasing new version, please go through the following configs to check if override is needed.",
|
"//comment": "When releasing new version, please go through the following configs to check if override is needed.",
|
||||||
"//Comment": "markdown_editor#override_viewer_resource",
|
"//Comment": "markdown_editor#override_viewer_resource",
|
||||||
"version" : "3.16.0"
|
"version" : "3.17.0"
|
||||||
},
|
},
|
||||||
"core" : {
|
"core" : {
|
||||||
"theme" : "pure",
|
"theme" : "pure",
|
||||||
@ -14,6 +14,7 @@
|
|||||||
"ExpandContentArea" : "Ctrl+G, E",
|
"ExpandContentArea" : "Ctrl+G, E",
|
||||||
"Settings" : "Ctrl+Alt+P",
|
"Settings" : "Ctrl+Alt+P",
|
||||||
"NewNote" : "Ctrl+Alt+N",
|
"NewNote" : "Ctrl+Alt+N",
|
||||||
|
"NewQuickNote" : "Ctrl+Alt+Q",
|
||||||
"NewFolder" : "Ctrl+Alt+S",
|
"NewFolder" : "Ctrl+Alt+S",
|
||||||
"CloseTab" : "Ctrl+G, X",
|
"CloseTab" : "Ctrl+G, X",
|
||||||
"CloseAllTabs": "",
|
"CloseAllTabs": "",
|
||||||
|
@ -214,7 +214,7 @@ QGroupBox *QuickAccessPage::setupQuickNoteGroup()
|
|||||||
auto infoLayout = WidgetsFactory::createFormLayout(m_quickNoteInfoGroupBox);
|
auto infoLayout = WidgetsFactory::createFormLayout(m_quickNoteInfoGroupBox);
|
||||||
|
|
||||||
{
|
{
|
||||||
const QString label(tr("Folder path:"));
|
const QString label(tr("Folder:"));
|
||||||
m_quickNoteFolderPathInput = new LocationInputWithBrowseButton(m_quickNoteInfoGroupBox);
|
m_quickNoteFolderPathInput = new LocationInputWithBrowseButton(m_quickNoteInfoGroupBox);
|
||||||
m_quickNoteFolderPathInput->setPlaceholderText(tr("Empty to use current explored folder dynamically"));
|
m_quickNoteFolderPathInput->setPlaceholderText(tr("Empty to use current explored folder dynamically"));
|
||||||
infoLayout->addRow(label, m_quickNoteFolderPathInput);
|
infoLayout->addRow(label, m_quickNoteFolderPathInput);
|
||||||
|
@ -343,7 +343,10 @@ void NotebookExplorer::newQuickNote()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_nodeExplorer->setCurrentNode(newNode.data());
|
if (notebook == m_currentNotebook.data()) {
|
||||||
|
m_nodeExplorer->setCurrentNode(newNode.data());
|
||||||
|
}
|
||||||
|
|
||||||
// Open it right now.
|
// Open it right now.
|
||||||
auto paras = QSharedPointer<FileOpenParameters>::create();
|
auto paras = QSharedPointer<FileOpenParameters>::create();
|
||||||
paras->m_mode = ViewWindowMode::Edit;
|
paras->m_mode = ViewWindowMode::Edit;
|
||||||
|
@ -128,6 +128,16 @@ QToolBar *ToolBarHelper::setupFileToolBar(MainWindow *p_win, QToolBar *p_toolBar
|
|||||||
// To hide the shortcut text shown in button.
|
// To hide the shortcut text shown in button.
|
||||||
newBtn->setText(MainWindow::tr("New Note"));
|
newBtn->setText(MainWindow::tr("New Note"));
|
||||||
|
|
||||||
|
// New quick note.
|
||||||
|
auto newQuickNoteAct = newMenu->addAction(generateIcon("new_note.svg"),
|
||||||
|
MainWindow::tr("New Quick Note"),
|
||||||
|
newMenu,
|
||||||
|
[]() {
|
||||||
|
emit VNoteX::getInst().newQuickNoteRequested();
|
||||||
|
});
|
||||||
|
WidgetUtils::addActionShortcut(newQuickNoteAct,
|
||||||
|
coreConfig.getShortcut(CoreConfig::Shortcut::NewQuickNote));
|
||||||
|
|
||||||
// New folder.
|
// New folder.
|
||||||
auto newFolderAct = newMenu->addAction(generateIcon("new_folder.svg"),
|
auto newFolderAct = newMenu->addAction(generateIcon("new_folder.svg"),
|
||||||
MainWindow::tr("New Folder"),
|
MainWindow::tr("New Folder"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user