Skip to content

Commit ede4075

Browse files
committed
release 1.5.1
1 parent b0dfce4 commit ede4075

28 files changed

+216
-3774
lines changed

CHANGELOG.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,11 @@ EasyEdit is an easy markdown editor that allows you to write Markdown (MD) and p
77
*EasyEdit 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.5.0 - Implemented File System Access API for modern browsers (Chrome/Edge/Opera)
11-
- Native file picker in web version for Git Repo
12-
- Save to same file with Ctrl+S for Git
13-
- Basic Git repository detection
14-
- Progressive enhancement (fallback for older browsers)
15-
- Full backward compatibility with Electron app
16-
- Implemented https secure API connection for Git Repository
17-
10+
- 1.5.1 - Several bug fixes and improvements, documentation
1811

1912

2013
## Version changes
14+
- 1.5.0 - Implemented File System Access API for modern browsers (Chrome/Edge/Opera)
2115
- 1.4.6 - Implemented new ascii template and ascii-art in preview
2216
- 1.4.5 - Implemented theme picker or creator
2317
- 1.4.2 - Implemented UML diagram and new look & feel

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ $ docker pull ghcr.io/gcclinux/easyedit:main
4545
$ docker run -d --name EASYEDIT -p 3024:3024 ghcr.io/gcclinux/easyedit:main
4646
```
4747

48+
## *New basic Git enabled feature added*
49+
50+
<a><img src="screenshots/git_feature.png" alt="Git Feature" width="720" height="400"></a>
51+
4852
## *Latest Example implementing Templates and Examples...*
4953

5054
<a><img src="screenshots/020-1800x900.png" alt="Example" width="720" height="400"></a>

about/about.html

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,19 @@ <h3>What it does</h3>
4545
<h3>Why you’ll like it</h3>
4646
<p>It’s fast, minimal, and gets out of your way — great for journaling, meeting notes, and planning.</p>
4747
</div>
48+
<div class="about-card">
49+
<h3>Customizable Themes</h3>
50+
<p>Choose from a variety of <strong>slick, modern themes</strong> with different color schemes to match your style and reduce eye strain. Switch themes instantly to find the perfect look for your workflow — whether you prefer light, dark, or vibrant color palettes.</p>
51+
<p>Personalize your editing experience with beautiful, carefully crafted designs.</p>
52+
</div>
53+
<div class="about-card">
54+
<h3>Git Integration</h3>
55+
<p><strong>Basic Git features</strong> built right in — clone repositories, edit Markdown files, stage changes, commit, and push directly to Git servers. Perfect for managing documentation, notes, and content stored in Git repositories without leaving the editor.</p>
56+
<p>Seamlessly work with GitHub, GitLab, and other Git hosting services.</p>
57+
</div>
4858
<div class="about-card">
4959
<h3>Credits</h3>
50-
<p>Built with care by <strong>Ricardo Wagemaker</strong>.<br><span class="muted">Last updated: 26 September 2025</span></p>
51-
<p>Contributions: <a href="https://github.com/Lewish1998" target="_blank">Lewis Halstead</a></p>
60+
<p>Built with care by <strong>Ricardo Wagemaker</strong>.<br><span class="muted">Last updated: Sun Dec 7 2025</span></p>
5261
<p>GitHub: <a href="https://github.com/gcclinux/EasyEdit" target="_blank">gcclinux/EasyEdit</a></p>
5362
<p>License: MIT<br>Version: <b id="version"></b></p>
5463
</div>

docs-site/package-lock.json

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

docs-site/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"dependencies": {
1212
"react": "^18.3.1",
1313
"react-dom": "^18.3.1",
14-
"react-router-dom": "^6.26.2",
1514
"react-markdown": "^9.0.1",
15+
"react-router-dom": "^6.30.2",
1616
"remark-gfm": "^4.0.0"
1717
},
1818
"devDependencies": {

docs-site/src/pages/Docs.tsx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@ export default function Docs() {
5656
<p>Create and import custom color themes for EasyEdit</p>
5757
</Link>
5858

59+
<Link to="/docs/git-integration" className="doc-card">
60+
<div className="doc-icon">🔀</div>
61+
<h3>Git Integration</h3>
62+
<p>Clone, edit, commit, and push Markdown files to Git repositories</p>
63+
</Link>
64+
5965
</div>
6066

6167
<div className="getting-started">
@@ -92,6 +98,19 @@ export default function Docs() {
9298
</ul>
9399
</div>
94100

101+
<div className="guide-section">
102+
<h3>Git Integration</h3>
103+
<p>Work with Git repositories directly from EasyEdit:</p>
104+
<ul>
105+
<li><strong>Clone:</strong> Clone repositories from GitHub, GitLab, or other Git servers</li>
106+
<li><strong>Edit:</strong> Open and edit Markdown files from your repository</li>
107+
<li><strong>Stage & Commit:</strong> Stage changes and commit with descriptive messages</li>
108+
<li><strong>Push:</strong> Push your commits to remote repositories</li>
109+
<li><strong>View History:</strong> Browse commit history and see who changed what</li>
110+
</ul>
111+
<p>Perfect for managing documentation, notes, and content stored in Git repositories.</p>
112+
</div>
113+
95114
<div className="guide-section">
96115
<h3>Keyboard Shortcuts</h3>
97116
<div className="shortcuts-grid">

0 commit comments

Comments
 (0)