Skip to content

Commit 417d492

Browse files
committed
Release version 1.6.5
1 parent c38b5d8 commit 417d492

9 files changed

Lines changed: 34 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ EasyEditor is an easy markdown editor that allows you to write Markdown (MD) and
77
*EasyEditor is a free and open-source project. You can use it for free and modify it as you like.*
88

99
## Latest CODE version
10+
- 1.6.5 - feat: Add KaTeX support for rendering mathematical equations in the preview component.
1011
- 1.6.4 - Implemented new templates and plantuml templates.
1112
- 1.6.3 - Updated legacy dropdown menu to use the new modal system.
1213
- 1.6.2 - Added support for opening encrypted (.sstp) files directly and created fileModal, taskModal, templateModal, exportModal and export to png

LICENSE

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
1+
Core - Open Source (MIT)
2+
The core EasyEditor source code is open source and available under the MIT License. This ensures that the community can contribute, audit, and use the base editor freely.
3+
14
MIT License
25

3-
Copyright (c) 2025 ricardo wagemaker
6+
Copyright (c) 2026 EasyEditor
47

58
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
69

710
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
811

912
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
13+
14+
---
15+
16+
Premium Features - Commercial
17+
EasyEditor Premium features are provided under a proprietary commercial license. These features are not open source and require a valid active subscription to use.
18+
19+
1. Grant of License
20+
Subject to your payment of the applicable subscription fees, EasyEditor grants you a limited, non-exclusive, non-transferable, revocable license to access and use the Premium features.
21+
22+
2. Restrictions
23+
You may not:
24+
25+
Reverse engineer, decompile, or seek to obtain the source code of the Premium features.
26+
Share your subscription credentials with others.
27+
Resell or redistribute the Premium features.
28+
3. Termination
29+
This license is effective until terminated. Your rights under this license will terminate automatically without notice if you fail to comply with any of its terms or if your subscription expires.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "easyeditor",
33
"description": "EasyEditor - A simple Markdown editor",
4-
"version": "1.6.4",
4+
"version": "1.6.5",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -87,4 +87,4 @@
8787
"typescript": "^5.9.3",
8888
"vite": "^7.1.7"
8989
}
90-
}
90+
}

release/latest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.6.4",
3-
"date": "Tue Feb 12 07:32:12 2026"
4-
}
2+
"version": "1.6.5",
3+
"date": "Sat Feb 14 12:38:32 2026"
4+
}

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: easyeditor
2-
version: '1.6.4'
2+
version: '1.6.5'
33
summary: Easy Markdown Editor
44
description: |
55
Easyeditor is a robust Markdown editor designed for developers and writers.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easyeditor"
3-
version = "1.6.4"
3+
version = "1.6.5"
44
description = "Easy Markdown Editor"
55
authors = ["Ricardo Wagemaker <wagemra@gmail.com>"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "easyeditor",
3-
"version": "1.6.4",
3+
"version": "1.6.5",
44
"identifier": "RicardoWagemaker.Easyeditor",
55
"build": {
66
"beforeBuildCommand": "npm run build",

src/components/AboutModal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ export function AboutModal({ open, onClose }: AboutModalProps) {
150150
<p>
151151
<a href="https://mermaid.js.org/" target="_blank" rel="noopener noreferrer"><b>Mermaid</b></a> - {t('about.official_module')}<br />
152152
<a href="https://daringfireball.net/projects/markdown/" target="_blank" rel="noopener noreferrer"><b>Markdown</b></a> - {t('about.official_module')}<br />
153-
<a href="https://plantuml.com/" target="_blank" rel="noopener noreferrer"><b>PlantUML</b></a> - {t('about.official_module')}
153+
<a href="https://plantuml.com/" target="_blank" rel="noopener noreferrer"><b>PlantUML</b></a> - {t('about.official_module')}<br />
154+
<a href="https://katex.org/" target="_blank" rel="noopener noreferrer"><b>KaTeX</b></a> - {t('about.official_module')}
154155
</p>
155156
</div>
156157
</div>

0 commit comments

Comments
 (0)