Skip to content

Commit afb8161

Browse files
committed
Release v4.2.0
1 parent c3ff95e commit afb8161

8 files changed

Lines changed: 31 additions & 7 deletions

File tree

.github/workflows/ci-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
default: false
1717

1818
env:
19-
VNOTE_VER: 4.1.1
19+
VNOTE_VER: 4.2.0
2020
CMAKE_VER: 3.24.3
2121

2222
jobs:

.github/workflows/ci-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
default: false
1717

1818
env:
19-
VNOTE_VER: 4.1.1
19+
VNOTE_VER: 4.2.0
2020
CMAKE_VER: 3.24.3
2121

2222
jobs:

.github/workflows/ci-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
default: false
1717

1818
env:
19-
VNOTE_VER: 4.1.1
19+
VNOTE_VER: 4.2.0
2020

2121
jobs:
2222
build:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 3.20)
33
set(CMAKE_OSX_DEPLOYMENT_TARGET "12.1" CACHE STRING "Minimum OS X deployment version")
44

55
project(VNote
6-
VERSION 4.1.1
6+
VERSION 4.2.0
77
DESCRIPTION "A pleasant note-taking platform"
88
HOMEPAGE_URL "https://app.vnote.fun"
99
LANGUAGES C CXX)

changes.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
11
# Changes
2+
## v4.2.0
3+
A feature release that adds a Personal Knowledge Management **home dashboard**, cross-notebook history, activity tracking, and a dedicated Sync settings page on top of VNote 4.1.1:
4+
5+
* **Dashboard** (new): a customizable PKM home tab built from movable, resizable **stickers**
6+
* Built-in **Calendar**, **Greeting**, and **History** stickers
7+
* **History** sticker with recent-files and calendar-day modes, plus a one-click clear-date-filter
8+
* **Lock/Unlock** mode to prevent accidental layout changes, an **Add Sticker** menu, a per-sticker **Resize** dialog, and **Reset Dashboard** to restore the default layout
9+
* Toolbar and calendar icons follow the active theme
10+
* **History**: reworked into a cross-notebook `HistoryService`, so recent files are aggregated across all notebooks (the legacy per-notebook history panel and option were removed)
11+
* **Activity tracking**: focus time and note activity are now tracked via vxcore
12+
* **Settings**: new **Sync** page; the auto-sync interval moved there and now defaults to 120s
13+
* **Editor**
14+
* Re-added the **In-Place Preview** toggle to the Markdown toolbar
15+
* The image-host button now appears only in edit mode
16+
* Removed the markdown editor **Override Font** option and its settings UI
17+
* **Windows switcher**: a new **Windows** entry lists open view windows across workspaces, with prefix-matching and focus-restore fixes
18+
* **Title bar**: the current note name is now shown in the system title bar
19+
* **Fixes**
20+
* Fix opening files from the command line / "Open with VNote", and absolutize forwarded open-file paths at the IPC boundary
21+
* Preserve heading anchors in **Insert As Relative Link**
22+
* Avoid a pre-`QApplication` event-loop warning by lazily starting the search/image-host worker threads
23+
* **Translations**: updated Simplified Chinese and Japanese translations
24+
225
## v4.1.1
326
A maintenance release with search improvements, PDF export fixes, and editor polish on top of VNote 4.1.0:
427

src/core/configmgr2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ constexpr int kWriteIntervalMs = 500;
3232
constexpr char kMainConfigFileBaseName[] = "vnotex";
3333
constexpr char kSessionFileBaseName[] = "session";
3434

35-
const QVersionNumber ConfigMgr2::c_version{4, 1, 1};
35+
const QVersionNumber ConfigMgr2::c_version{4, 2, 0};
3636

3737
const QString ConfigMgr2::c_orgName = QStringLiteral("VNoteX");
3838

src/data/core/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
<key>CFBundleExecutable</key>
2626
<string>VNote</string>
2727
<key>CFBundleShortVersionString</key>
28-
<string>4.1</string>
28+
<string>4.2</string>
2929
<key>CFBundleVersion</key>
30-
<string>4.1.1</string>
30+
<string>4.2.0</string>
3131
<key>NSHumanReadableCopyright</key>
3232
<string>Distributed under LGPL-3.0 license. Copyright (c) 2025 app.vnote.fun</string>
3333
<key>CFBundleIconFile</key>

src/data/core/fun.vnote.app.VNote.metainfo.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
</screenshots>
6565
<content_rating type="oars-1.1" />
6666
<releases>
67+
<release version="4.2.0" date="2026-07-15" />
6768
<release version="4.1.1" date="2026-07-08" />
6869
<release version="4.1.0" date="2026-06-26" />
6970
<release version="3.18.2" date="2024-08-06" />

0 commit comments

Comments
 (0)