Skip to content

Commit 4471001

Browse files
committed
Release version 1.7.6
1 parent d6cd876 commit 4471001

9 files changed

Lines changed: 31 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.7.6 - feat: New personas and enable default Gemini LLM for subscriber
1011
- 1.7.5 - feat: Markdown file transfer, Implemented OneDrive cloud, Preview Component inline with editor
1112
- 1.7.4 - feat: Initial PDF text extractor to Markdown, feat: Introduced Spanish as native language, including Get API link, enhanced the license model look & feel, feat: included button to apply for Premium License
1213
- 1.7.3 - feat: Box Cloud Integration — users can now connect to Box cloud storage account to EasyEditor, enabling them to open, edit, and save Markdown files directly from Box, with full OAuth2 authentication flow, file/folder browsing, bug: opening repo will now accurately load repo images also, feat: templates with JIRA User Story & KaTeX (Free)
@@ -55,4 +56,4 @@ EasyEditor is an easy markdown editor that allows you to write Markdown (MD) and
5556
- 1.0.3 - Re-wrote and optimised the main.cjs so windows also have the ability of right click on MD and open with EasyEditor
5657
- 1.0.2 - Added capability to parse a file directly to executable
5758
- 1.0.1 - Added detect-port in case App starts and default port is already in use by another App
58-
- 1.0.0 - Initial version distributed
59+
- 1.0.0 - Initial version distributed (10th of November 2024)

docker-compose.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
services:
2+
easyeditor:
3+
build:
4+
context: .
5+
dockerfile: Dockerfile
6+
image: gcclinux/easyeditor:latest
7+
platform: linux/amd64
8+
container_name: easyeditor
9+
ports:
10+
- "3024:3024"
11+
environment:
12+
- NODE_ENV=production
13+
restart: unless-stopped
14+
healthcheck:
15+
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3024"]
16+
interval: 30s
17+
timeout: 10s
18+
retries: 3
19+
start_period: 10s
20+
labels:
21+
- "com.centurylinklabs.watchtower.enable=true"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
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.7.5",
4+
"version": "1.7.6",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

release/beta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "1.7.5"
2+
"version": "1.7.6"
33
}

release/latest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.7.5",
3-
"date": "Tue 12 May 2026 15:22:58 BST 2026"
2+
"version": "1.7.6",
3+
"date": "Thu 21 May 2026 12:59:31 BST 2026"
44
}

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.7.5'
2+
version: '1.7.6'
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.7.5"
3+
version = "1.7.6"
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.7.5",
3+
"version": "1.7.6",
44
"identifier": "RicardoWagemaker.Easyeditor",
55
"build": {
66
"beforeBuildCommand": "npm run build",

0 commit comments

Comments
 (0)