chore(release): bump version to 4.4.5

This commit is contained in:
2026-06-30 13:57:34 +05:30
parent e72b863362
commit 1a180ca80c
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
Electron desktop app for Markdown editing and universal file conversion powered by Pandoc. Cross-platform (Win/macOS/Linux). Features: multi-tab editor with live preview, 25+ themes, PDF viewer/editor (merge/split/compress/rotate/watermark/password), export to 20+ formats (PDF/DOCX/ODT/EPUB/HTML/LaTeX/RTF/PPTX), batch conversion, syntax highlighting, diagram support (Mermaid), Git integration, and a plugin system.
- **Version:** 4.4.3
- **Version:** 4.4.5
- **License:** MIT
- **App ID:** `com.concreteinfo.markdownconverter`
+1 -1
View File
@@ -162,4 +162,4 @@ Amit Haridas (amit.wh@gmail.com)
## Version
v4.4.4
v4.4.5
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "markdown-converter",
"version": "4.4.4",
"version": "4.4.5",
"description": "Professional Markdown editor and universal file converter with PDF editing, batch processing, and syntax highlighting",
"main": "src/main.js",
"scripts": {
+1 -1
View File
@@ -1,6 +1,6 @@
/**
* MarkdownConverter Renderer Process
* @version 4.4.4
* @version 4.4.5
*/
const { ipcRenderer } = require('electron');
+1 -1
View File
@@ -1,6 +1,6 @@
/**
* ModalManager - Unified modal system with accessibility support
* @version 4.4.4
* @version 4.4.5
*/
class ModalManager {
#modal;
+1 -1
View File
@@ -16,6 +16,6 @@ describe('Project version consistency', () => {
});
test('README contains current version string', () => {
expect(readme).toContain('v4.4.4');
expect(readme).toContain(`v${packageJson.version}`);
});
});