From c280c4b9d4905cf77cf89e1084abf9f923f8c236 Mon Sep 17 00:00:00 2001 From: Essam Date: Mon, 6 Apr 2026 21:46:25 +0300 Subject: [PATCH 1/2] Add RTL toggle button for preview pane Adds an RTL button (text-only, no icon) to both the desktop toolbar and mobile menu that toggles right-to-left direction on the markdown preview. State is persisted to localStorage and restored on page load. Co-Authored-By: Claude Sonnet 4.6 --- index.html | 4 ++++ script.js | 17 +++++++++++++++++ styles.css | 6 ++++++ 3 files changed, 27 insertions(+) diff --git a/index.html b/index.html index 407a507..f50e5c3 100644 --- a/index.html +++ b/index.html @@ -139,6 +139,8 @@

Markdown Viewer

Share + + @@ -235,6 +237,8 @@
Menu
Share + + diff --git a/script.js b/script.js index ebafa41..33de2a6 100644 --- a/script.js +++ b/script.js @@ -61,6 +61,8 @@ document.addEventListener("DOMContentLoaded", function () { const mobileThemeToggle = document.getElementById("mobile-theme-toggle"); const shareButton = document.getElementById("share-button"); const mobileShareButton = document.getElementById("mobile-share-button"); + const rtlToggleButton = document.getElementById("rtl-toggle"); + const mobileRtlToggle = document.getElementById("mobile-rtl-toggle"); const githubImportModal = document.getElementById("github-import-modal"); const githubImportTitle = document.getElementById("github-import-title"); const githubImportUrlInput = document.getElementById("github-import-url"); @@ -1524,6 +1526,18 @@ This is a fully client-side application. Your content never leaves your browser saveGlobalState({ syncScrollingEnabled }); } + // RTL Preview Toggle + let rtlEnabled = false; + + function toggleRTL() { + rtlEnabled = !rtlEnabled; + markdownPreview.setAttribute("dir", rtlEnabled ? "rtl" : "ltr"); + [rtlToggleButton, mobileRtlToggle].forEach(btn => { + if (btn) btn.classList.toggle("rtl-active", rtlEnabled); + }); + saveGlobalState({ rtlEnabled }); + } + // View Mode Functions - Story 1.1 & 1.2 function setViewMode(mode) { if (mode === currentViewMode) return; @@ -1745,6 +1759,7 @@ This is a fully client-side application. Your content never leaves your browser initTabs(); if (loadGlobalState().syncScrollingEnabled === false) toggleSyncScrolling(); + if (loadGlobalState().rtlEnabled === true) toggleRTL(); updateMobileStats(); // Initialize resizer - Story 1.3 @@ -1801,6 +1816,8 @@ This is a fully client-side application. Your content never leaves your browser editorPane.addEventListener("scroll", syncEditorToPreview); previewPane.addEventListener("scroll", syncPreviewToEditor); toggleSyncButton.addEventListener("click", toggleSyncScrolling); + rtlToggleButton.addEventListener("click", toggleRTL); + mobileRtlToggle.addEventListener("click", () => { toggleRTL(); closeMobileMenu(); }); themeToggle.addEventListener("click", function () { const theme = document.documentElement.getAttribute("data-theme") === "dark" diff --git a/styles.css b/styles.css index 7795594..d1ef1d7 100644 --- a/styles.css +++ b/styles.css @@ -302,6 +302,12 @@ body { font-size: 16px; } +.tool-button.rtl-active { + background-color: var(--button-active); + border-color: var(--accent-color, #0969da); + color: var(--accent-color, #0969da); +} + .file-input { display: none; } From 35b029e1546cbbe4f34826e91776a5ccf61eb174 Mon Sep 17 00:00:00 2001 From: Baivab Sarkar Date: Sat, 9 May 2026 12:38:32 +0530 Subject: [PATCH 2/2] Refactor code structure for improved readability and maintainability --- .../skills/testing-markdown-viewer/SKILL.md | 42 - .devin/wiki.json | 269 - CHANGELOG.json | 2994 +++++++++ CHANGELOG.md | 5725 +++++++++++++++++ 4 files changed, 8719 insertions(+), 311 deletions(-) delete mode 100644 .agents/skills/testing-markdown-viewer/SKILL.md delete mode 100644 .devin/wiki.json create mode 100644 CHANGELOG.json create mode 100644 CHANGELOG.md diff --git a/.agents/skills/testing-markdown-viewer/SKILL.md b/.agents/skills/testing-markdown-viewer/SKILL.md deleted file mode 100644 index ce27b02..0000000 --- a/.agents/skills/testing-markdown-viewer/SKILL.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -name: testing-markdown-viewer -description: Test Markdown Viewer UI features end-to-end using preview deployments. Use when verifying toolbar, editor, preview, or settings changes. ---- - -# Testing Markdown Viewer - -## Overview -Markdown Viewer is a static client-side app (HTML/CSS/JS, no build step). It deploys to Cloudflare Pages and Vercel automatically on PRs. - -## Setup -1. Create a PR with your changes — CI runs automatically. -2. Use `git_pr_checks` to wait for deployment. Look for the Cloudflare Pages preview URL in the check details. -3. Open the preview URL in the browser for testing. - -## Testing Approach -- This is a purely frontend app with no backend. All state is stored in `localStorage`. -- Test directly on the Cloudflare Pages preview deployment (no local server setup needed). -- For mobile testing, use Chrome DevTools device toolbar (`Ctrl+Shift+M` with DevTools open). -- The mobile hamburger menu appears at viewport widths below the `md` Bootstrap breakpoint (~768px). - -## Key Areas to Test -- **Header toolbar**: View mode toggles, sync scrolling, import/export, copy, share, theme toggle. -- **Formatting toolbar**: Text formatting, alignment, headings, lists, links, code, emoji, etc. -- **Editor/Preview panes**: Text direction (RTL/LTR), content rendering, scroll sync. -- **Tab management**: New/close/rename/duplicate/reorder tabs. -- **Persistence**: Settings and tab state persist in `localStorage` — reload the page to verify. -- **Mobile menu**: All toolbar features are mirrored in the mobile hamburger menu. - -## State Persistence -- Global state (theme, direction, sync scrolling) is stored under `markdownViewerGlobalState` in `localStorage`. -- Tab content and metadata are stored separately in `localStorage`. -- To test persistence, change a setting, reload the page, and verify the setting is restored. - -## Tips -- No linter or test suite is configured — validation is manual/visual. -- The app uses Bootstrap 5 for responsive layout and Bootstrap Icons for toolbar icons. -- Mermaid diagrams, MathJax, and emoji rendering require network access to CDNs. -- When testing scoped changes (e.g., RTL only affecting editor/preview), verify that unaffected areas (header, toolbar, modals) are not impacted. - -## Devin Secrets Needed -None — the app is fully client-side with no authentication. diff --git a/.devin/wiki.json b/.devin/wiki.json deleted file mode 100644 index 1e520ae..0000000 --- a/.devin/wiki.json +++ /dev/null @@ -1,269 +0,0 @@ -{ - "repo_notes": [ - { - "content": "" - } - ], - "pages": [ - { - "title": "Overview", - "purpose": "Introduce the Markdown Viewer project, explaining what it is, its core purpose as a client-side markdown renderer, and its key features", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Getting Started", - "purpose": "Guide users on how to access, run, and use the Markdown Viewer, including local development setup", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Architecture Overview", - "purpose": "Provide a high-level view of the application's architecture, major systems, and how they interact", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "HTML Structure and Entry Point", - "purpose": "Comprehensive documentation of index.html - the application's entry point, its structure, and how it orchestrates resource loading", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "UI Components and Layout", - "purpose": "Detail the HTML elements that comprise the user interface, including editor pane, preview pane, toolbar, and mobile menu", - "parent": "HTML Structure and Entry Point", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "External Library Integration", - "purpose": "Explain how 15+ external libraries are loaded from CDNs, their versions, and loading order optimization", - "parent": "HTML Structure and Entry Point", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Application Logic (script.js)", - "purpose": "Comprehensive documentation of the JavaScript application logic - the core processing engine of the application", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Initialization and Configuration", - "purpose": "Document how the application initializes, detects user preferences, and configures external libraries", - "parent": "Application Logic (script.js)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Markdown Rendering Pipeline", - "purpose": "Explain the complete rendering pipeline from markdown input through parsing, sanitization, and enhancement", - "parent": "Application Logic (script.js)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Event Handling System", - "purpose": "Document how user interactions are captured, including keyboard shortcuts, button clicks, and file operations", - "parent": "Application Logic (script.js)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Import System", - "purpose": "Explain file import functionality including file upload dialog and drag-and-drop support", - "parent": "Application Logic (script.js)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Export System", - "purpose": "Detail the export features for Markdown, HTML, and PDF formats, including multiple PDF generation strategies", - "parent": "Application Logic (script.js)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Scroll Synchronization", - "purpose": "Explain the bidirectional scroll sync between editor and preview panes, including deadlock prevention", - "parent": "Application Logic (script.js)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Styling System (styles.css)", - "purpose": "Comprehensive documentation of the CSS architecture including theming, layout, and component styles", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Theme System and CSS Variables", - "purpose": "Explain the light/dark mode implementation using CSS custom properties and theme switching mechanism", - "parent": "Styling System (styles.css)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Layout System", - "purpose": "Document the flexbox-based layout structure including container hierarchy and pane arrangement", - "parent": "Styling System (styles.css)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Responsive Design", - "purpose": "Explain how the application adapts to different screen sizes using media queries and mobile menu", - "parent": "Styling System (styles.css)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "GitHub Markdown Styling", - "purpose": "Detail the comprehensive GitHub-style markdown rendering including syntax highlighting color schemes", - "parent": "Styling System (styles.css)", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "External Dependencies", - "purpose": "Comprehensive list of all external libraries, their versions, purposes, and how they're integrated", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Core Processing Libraries", - "purpose": "Document marked.js, DOMPurify, and highlight.js - the essential parsing and security libraries", - "parent": "External Dependencies", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Enhancement Libraries", - "purpose": "Explain MathJax, Mermaid, and JoyPixels - libraries that add LaTeX, diagrams, and emoji support", - "parent": "External Dependencies", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Export and UI Libraries", - "purpose": "Detail FileSaver, html2pdf, jsPDF, html2canvas, pdfMake, and Bootstrap - utility and UI libraries", - "parent": "External Dependencies", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Deployment Guide", - "purpose": "Instructions for deploying the application using Docker and understanding the CI/CD pipeline", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Docker Configuration", - "purpose": "Explain the Dockerfile (Nginx Alpine setup) and docker-compose.yml for local deployment", - "parent": "Deployment Guide", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "CI/CD Pipeline", - "purpose": "Document the GitHub Actions workflow for automated Docker builds, tagging strategy, and registry publishing", - "parent": "Deployment Guide", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "Assets and Static Resources", - "purpose": "Document the static assets including demo images and icons used in documentation", - "page_notes": [ - { - "content": "" - } - ] - }, - { - "title": "License and Contributing", - "purpose": "Document the Apache 2.0 license and guidelines for contributing to the project", - "page_notes": [ - { - "content": "" - } - ] - } - ] -} diff --git a/CHANGELOG.json b/CHANGELOG.json new file mode 100644 index 0000000..1a2e0f1 --- /dev/null +++ b/CHANGELOG.json @@ -0,0 +1,2994 @@ +[ + { + "commit_number": 272, + "sha": "32489532e60d2b6e0b27b58d1d25b3c95b509701", + "title": "Merge pull request #96 from ThisIs-Developer/devin/update-skills-1778217232", + "description": "Add testing skill for Markdown Viewer UI features", + "full_message": "Merge pull request #96 from ThisIs-Developer/devin/update-skills-1778217232\n\nAdd testing skill for Markdown Viewer UI features", + "author": "Baivab Sarkar", + "date": "2026-05-08T05:15:27Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/32489532e60d2b6e0b27b58d1d25b3c95b509701", + "version": "v3.5.3" + }, + { + "commit_number": 271, + "sha": "121ceef5a06fb9b359185c95090da7b0c4b8146a", + "title": "Merge pull request #95 from ThisIs-Developer/devin/1778216070-rtl-ltr-toggle-reposition", + "description": "UI Update: RTL/LTR Toggle Reposition & Behavior Improvement", + "full_message": "Merge pull request #95 from ThisIs-Developer/devin/1778216070-rtl-ltr-toggle-reposition\n\nUI Update: RTL/LTR Toggle Reposition & Behavior Improvement", + "author": "Baivab Sarkar", + "date": "2026-05-08T05:14:31Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/121ceef5a06fb9b359185c95090da7b0c4b8146a", + "version": "v3.5.2" + }, + { + "commit_number": 270, + "sha": "25b5d20d414d02343ea65c2df67b92ecbecfbc4b", + "title": "Add testing skill for Markdown Viewer UI features", + "description": "Co-authored-by: Baivab Sarkar ", + "full_message": "Add testing skill for Markdown Viewer UI features\n\nCo-authored-by: Baivab Sarkar ", + "author": "devin-ai-integration[bot]", + "date": "2026-05-08T05:13:53Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/25b5d20d414d02343ea65c2df67b92ecbecfbc4b", + "version": "v3.5.1" + }, + { + "commit_number": 269, + "sha": "32a0a3e08d1b2c4833cc249ada28e6e12195bcac", + "title": "Reposition RTL/LTR toggle next to Align Right, show L/R label, scope to editor/preview only", + "description": "- Move direction toggle from header toolbar to markdown formatting toolbar,\n placed directly after the Align Right button\n- Change toggle display from icon to text: L (LTR mode) / R (RTL mode)\n- Scope direction changes to only editor textarea and preview area,\n no longer affects full document/toolbar/sidebar/modals\n- Update mobile direction toggle to use the same scoped behavior\n\nCo-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>", + "full_message": "Reposition RTL/LTR toggle next to Align Right, show L/R label, scope to editor/preview only\n\n- Move direction toggle from header toolbar to markdown formatting toolbar,\n placed directly after the Align Right button\n- Change toggle display from icon to text: L (LTR mode) / R (RTL mode)\n- Scope direction changes to only editor textarea and preview area,\n no longer affects full document/toolbar/sidebar/modals\n- Update mobile direction toggle to use the same scoped behavior\n\nCo-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>", + "author": "Baivab Sarkar", + "date": "2026-05-08T04:55:05Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/32a0a3e08d1b2c4833cc249ada28e6e12195bcac", + "version": "v3.5.0" + }, + { + "commit_number": 268, + "sha": "31049a959da73c0219d57337237e89c7f6725ecb", + "title": "Update Features.md to include new features and enhancements", + "description": "", + "full_message": "Update Features.md to include new features and enhancements", + "author": "Baivab Sarkar", + "date": "2026-05-07T17:38:10Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/31049a959da73c0219d57337237e89c7f6725ecb", + "version": "v3.4.13" + }, + { + "commit_number": 267, + "sha": "d2071b33f1bac39b5d8a0df532909ec3b3b8cc3a", + "title": "Merge pull request #94 from ThisIs-Developer/copilot/add-text-alignment-buttons", + "description": "Add alignment toolbar actions and improve GitHub alert rendering", + "full_message": "Merge pull request #94 from ThisIs-Developer/copilot/add-text-alignment-buttons\n\nAdd alignment toolbar actions and improve GitHub alert rendering", + "author": "Baivab Sarkar", + "date": "2026-05-07T15:34:47Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d2071b33f1bac39b5d8a0df532909ec3b3b8cc3a", + "version": "v3.4.12" + }, + { + "commit_number": 266, + "sha": "e40ee3e46f085917ac8374f553e1bad780b4b936", + "title": "Changes before error encountered", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/88a5307e-325a-435a-855b-dd5a948a20da\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Changes before error encountered\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/88a5307e-325a-435a-855b-dd5a948a20da\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T15:08:35Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e40ee3e46f085917ac8374f553e1bad780b4b936", + "version": "v3.4.11" + }, + { + "commit_number": 265, + "sha": "85e5d364f3472147a4afdbc2c43d349f35465674", + "title": "Skip alignment insert on invalid values", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Skip alignment insert on invalid values\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T10:17:24Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/85e5d364f3472147a4afdbc2c43d349f35465674", + "version": "v3.4.10" + }, + { + "commit_number": 264, + "sha": "3268d7d333ef41e458996244ea0672bfd37b3b11", + "title": "Warn on unexpected alignment values", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Warn on unexpected alignment values\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T10:15:38Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3268d7d333ef41e458996244ea0672bfd37b3b11", + "version": "v3.4.9" + }, + { + "commit_number": 263, + "sha": "dd0d1148c57f37816f8ce7078307ba63981aba7d", + "title": "Rename GitHub alert marker regex", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Rename GitHub alert marker regex\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T10:13:38Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/dd0d1148c57f37816f8ce7078307ba63981aba7d", + "version": "v3.4.8" + }, + { + "commit_number": 262, + "sha": "c3c9dc54a58c3d8e2e61b9ff653bb611b2931b87", + "title": "Tighten alert marker matching", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Tighten alert marker matching\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T10:11:42Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c3c9dc54a58c3d8e2e61b9ff653bb611b2931b87", + "version": "v3.4.7" + }, + { + "commit_number": 261, + "sha": "61e994ee4cc14650ffc46e7dac4334547ac1b757", + "title": "Harden alignment insertion and rename alert regex", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Harden alignment insertion and rename alert regex\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T10:08:53Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/61e994ee4cc14650ffc46e7dac4334547ac1b757", + "version": "v3.4.6" + }, + { + "commit_number": 260, + "sha": "deb480d8a4d0ff72b52d97522b913abdde96e86e", + "title": "Add alignment tools and alert parsing fixes", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Add alignment tools and alert parsing fixes\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T10:06:47Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/deb480d8a4d0ff72b52d97522b913abdde96e86e", + "version": "v3.4.5" + }, + { + "commit_number": 259, + "sha": "d53a414c4e3776f975d147372d4482792641f6b7", + "title": "Merge pull request #93 from ThisIs-Developer/copilot/add-persistent-line-numbers-editor", + "description": "Fix preview line breaks and add wrap-aware editor line numbers", + "full_message": "Merge pull request #93 from ThisIs-Developer/copilot/add-persistent-line-numbers-editor\n\nFix preview line breaks and add wrap-aware editor line numbers", + "author": "Baivab Sarkar", + "date": "2026-05-07T09:41:22Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d53a414c4e3776f975d147372d4482792641f6b7", + "version": "v3.4.4" + }, + { + "commit_number": 258, + "sha": "ab3839f119cbd75da7d22473a49c77b600ae139f", + "title": "Optimize line number updates", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Optimize line number updates\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T09:37:01Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ab3839f119cbd75da7d22473a49c77b600ae139f", + "version": "v3.4.3" + }, + { + "commit_number": 257, + "sha": "0d85b187c96efc56a5fa41bdf99f2b5a11717ae4", + "title": "Remove redundant line number width update", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Remove redundant line number width update\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T09:34:05Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0d85b187c96efc56a5fa41bdf99f2b5a11717ae4", + "version": "v3.4.2" + }, + { + "commit_number": 256, + "sha": "4ec2f29ef0cc60ca178055f3a7229944d83237df", + "title": "Clarify line number constants", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Clarify line number constants\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T09:32:04Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4ec2f29ef0cc60ca178055f3a7229944d83237df", + "version": "v3.4.1" + }, + { + "commit_number": 255, + "sha": "4224079bd3c332b0eae0fc7fead05b4dc9b27d94", + "title": "Fix preview line breaks and add editor line numbers", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix preview line breaks and add editor line numbers\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T09:29:52Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4224079bd3c332b0eae0fc7fead05b4dc9b27d94", + "version": "v3.4.0" + }, + { + "commit_number": 254, + "sha": "e1dc6f6c2817bcb803e1b9275f32b086aeebaa84", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2026-05-07T05:03:35Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e1dc6f6c2817bcb803e1b9275f32b086aeebaa84", + "version": "v3.3.13" + }, + { + "commit_number": 253, + "sha": "a525ffe149f8eb64c5c2729213e00084854016b5", + "title": "Merge pull request #90 from ThisIs-Developer/copilot/toolbar-view-system-ui-update", + "description": "Updating toolbar and view system for improved UI", + "full_message": "Merge pull request #90 from ThisIs-Developer/copilot/toolbar-view-system-ui-update\n\nUpdating toolbar and view system for improved UI", + "author": "Baivab Sarkar", + "date": "2026-05-07T04:34:27Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a525ffe149f8eb64c5c2729213e00084854016b5", + "version": "v3.3.12" + }, + { + "commit_number": 252, + "sha": "d0ce2c119c51e1dfa42c4314701d58a8bbd56c3c", + "title": "Keep sync toggle visible across modes", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/a00bb011-4552-4d75-a3d5-34a6ae5bf099\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Keep sync toggle visible across modes\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/a00bb011-4552-4d75-a3d5-34a6ae5bf099\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T04:26:58Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d0ce2c119c51e1dfa42c4314701d58a8bbd56c3c", + "version": "v3.3.11" + }, + { + "commit_number": 251, + "sha": "4c51778ce8efac260f7cb72624e67c5ea1d88c90", + "title": "Sync desktop resources", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0fa74dcb-7602-4367-9e4c-962c09b06b1d\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Sync desktop resources\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0fa74dcb-7602-4367-9e4c-962c09b06b1d\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-07T03:22:39Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4c51778ce8efac260f7cb72624e67c5ea1d88c90", + "version": "v3.3.10" + }, + { + "commit_number": 250, + "sha": "a14a91969f950fba8dc55776d6822b0403522015", + "title": "Changes before error encountered", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Changes before error encountered\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T20:12:37Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a14a91969f950fba8dc55776d6822b0403522015", + "version": "v3.3.9" + }, + { + "commit_number": 249, + "sha": "5d26c77f14a6fe4e1bc5c669fc95934d74e6d6c4", + "title": "Simplify find match indexing", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Simplify find match indexing\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T20:07:03Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5d26c77f14a6fe4e1bc5c669fc95934d74e6d6c4", + "version": "v3.3.8" + }, + { + "commit_number": 248, + "sha": "2dc31c8b5a46cad3d74aef7f29d0e8e4bfaa4b41", + "title": "Refine view toggle and version wiring", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Refine view toggle and version wiring\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T20:06:02Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2dc31c8b5a46cad3d74aef7f29d0e8e4bfaa4b41", + "version": "v3.3.7" + }, + { + "commit_number": 247, + "sha": "faa7078ff9a9a8d814ac0a82fdde6485e52d367a", + "title": "Harden render error handling and find navigation", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Harden render error handling and find navigation\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T20:04:14Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/faa7078ff9a9a8d814ac0a82fdde6485e52d367a", + "version": "v3.3.6" + }, + { + "commit_number": 246, + "sha": "0b37a2cdacd261be47767bb8c935c7ef5509b033", + "title": "Implement toolbar view and modal updates", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Implement toolbar view and modal updates\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T20:02:46Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0b37a2cdacd261be47767bb8c935c7ef5509b033", + "version": "v3.3.5" + }, + { + "commit_number": 245, + "sha": "ad2ea3e3b84c3ee452f1aa8233604fdac15a76ae", + "title": "Merge pull request #89 from ThisIs-Developer/copilot/fix-emoji-rendering-in-markdown", + "description": "Render GitHub emoji shortcodes missing from JoyPixels", + "full_message": "Merge pull request #89 from ThisIs-Developer/copilot/fix-emoji-rendering-in-markdown\n\nRender GitHub emoji shortcodes missing from JoyPixels", + "author": "Baivab Sarkar", + "date": "2026-05-06T09:49:44Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ad2ea3e3b84c3ee452f1aa8233604fdac15a76ae", + "version": "v3.3.4" + }, + { + "commit_number": 244, + "sha": "560884e74302a1b8876f6056fce1369111808ec8", + "title": "Handle emoji lookup retries", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f228e998-7f39-496e-b4f1-ebb2774c3c69\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Handle emoji lookup retries\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f228e998-7f39-496e-b4f1-ebb2774c3c69\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T09:24:49Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/560884e74302a1b8876f6056fce1369111808ec8", + "version": "v3.3.3" + }, + { + "commit_number": 243, + "sha": "4a56585697555d150621a43f2cef4fb69f7e545e", + "title": "Fix emoji shortcode rendering", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f228e998-7f39-496e-b4f1-ebb2774c3c69\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix emoji shortcode rendering\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f228e998-7f39-496e-b4f1-ebb2774c3c69\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T09:22:21Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4a56585697555d150621a43f2cef4fb69f7e545e", + "version": "v3.3.2" + }, + { + "commit_number": 242, + "sha": "4a18e3fc80613cedbe334c27fb5fed129e18226f", + "title": "Merge pull request #88 from ThisIs-Developer/copilot/enhance-table-popup-emoji-picker", + "description": "Enhancing table insert functionality and emoji picker", + "full_message": "Merge pull request #88 from ThisIs-Developer/copilot/enhance-table-popup-emoji-picker\n\nEnhancing table insert functionality and emoji picker", + "author": "Baivab Sarkar", + "date": "2026-05-06T06:19:57Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4a18e3fc80613cedbe334c27fb5fed129e18226f", + "version": "v3.3.1" + }, + { + "commit_number": 241, + "sha": "b2da4d63485b279505ac35e05577ba14aa78c385", + "title": "Add toolbar modals for table, emoji, symbols, alerts", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/46127c68-a2c8-474f-8823-adc1b7c8a25e\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Add toolbar modals for table, emoji, symbols, alerts\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/46127c68-a2c8-474f-8823-adc1b7c8a25e\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T05:56:49Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b2da4d63485b279505ac35e05577ba14aa78c385", + "version": "v3.3.0" + }, + { + "commit_number": 240, + "sha": "a6c1909f8657d196e1304a0c4a843c723cf75bba", + "title": "Merge pull request #87 from ThisIs-Developer/copilot/fix-reference-btn-icon-and-width", + "description": "Render reference links as superscripts and widen link/image/reference modals", + "full_message": "Merge pull request #87 from ThisIs-Developer/copilot/fix-reference-btn-icon-and-width\n\nRender reference links as superscripts and widen link/image/reference modals", + "author": "Baivab Sarkar", + "date": "2026-05-06T03:28:57Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a6c1909f8657d196e1304a0c4a843c723cf75bba", + "version": "v3.2.12" + }, + { + "commit_number": 239, + "sha": "c367455edbbcad95dc03c96ccdfad462da17e73e", + "title": "Validate reference URLs before linking", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Validate reference URLs before linking\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T03:20:52Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c367455edbbcad95dc03c96ccdfad462da17e73e", + "version": "v3.2.11" + }, + { + "commit_number": 238, + "sha": "9dc506605e77728b6fb8678745ef531821f4864b", + "title": "Simplify reference link matching", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Simplify reference link matching\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T03:19:43Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9dc506605e77728b6fb8678745ef531821f4864b", + "version": "v3.2.10" + }, + { + "commit_number": 237, + "sha": "c1f47a750ad4bca6b66a19daa5fa232e0d24ab0b", + "title": "Document reference definition regex", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Document reference definition regex\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T03:18:32Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c1f47a750ad4bca6b66a19daa5fa232e0d24ab0b", + "version": "v3.2.9" + }, + { + "commit_number": 236, + "sha": "09e3d5b6f8a39cdd79f7265f1d9e49e0a4fd406a", + "title": "Sort reference tokens numerically", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Sort reference tokens numerically\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T03:17:29Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/09e3d5b6f8a39cdd79f7265f1d9e49e0a4fd406a", + "version": "v3.2.8" + }, + { + "commit_number": 235, + "sha": "4ad4123dd199f01ec2d0ea21260fe1526ca3ae6d", + "title": "Fix reference definition parsing", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix reference definition parsing\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T03:16:22Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4ad4123dd199f01ec2d0ea21260fe1526ca3ae6d", + "version": "v3.2.7" + }, + { + "commit_number": 234, + "sha": "7d35f9163c410467ffc0656a781f9b4c0bfb225d", + "title": "Update reference previews and modal widths", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Update reference previews and modal widths\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-06T03:15:08Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7d35f9163c410467ffc0656a781f9b4c0bfb225d", + "version": "v3.2.6" + }, + { + "commit_number": 233, + "sha": "80fe0b862cad7bde342389fa2c1cca688c3edc65", + "title": "Merge pull request #86 from ThisIs-Developer/copilot/update-link-reference-image-button-modal", + "description": "Modal-based link/reference/image insertion with consistent UX", + "full_message": "Merge pull request #86 from ThisIs-Developer/copilot/update-link-reference-image-button-modal\n\nModal-based link/reference/image insertion with consistent UX", + "author": "Baivab Sarkar", + "date": "2026-05-05T18:47:33Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/80fe0b862cad7bde342389fa2c1cca688c3edc65", + "version": "v3.2.5" + }, + { + "commit_number": 232, + "sha": "c3d3980100dfc31c75dcaf32107370ae62c6e936", + "title": "Tighten reference icon and preview handling", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0b1640e1-7932-428f-8aa1-ded4211f4d36\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Tighten reference icon and preview handling\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0b1640e1-7932-428f-8aa1-ded4211f4d36\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-05T17:51:35Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c3d3980100dfc31c75dcaf32107370ae62c6e936", + "version": "v3.2.4" + }, + { + "commit_number": 231, + "sha": "6d03e43c94951fd3edd18dc7f1e152fce61f9c9f", + "title": "Refine reference previews and image uploads", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0b1640e1-7932-428f-8aa1-ded4211f4d36\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Refine reference previews and image uploads\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0b1640e1-7932-428f-8aa1-ded4211f4d36\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-05T17:49:19Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6d03e43c94951fd3edd18dc7f1e152fce61f9c9f", + "version": "v3.2.3" + }, + { + "commit_number": 230, + "sha": "a67552b795884845483cbf0de8eb15d5c4e1a35c", + "title": "Refine reference detection and labels", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Refine reference detection and labels\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-05T17:24:36Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a67552b795884845483cbf0de8eb15d5c4e1a35c", + "version": "v3.2.2" + }, + { + "commit_number": 229, + "sha": "eba538de43050123d859fe23302be61bcd791bca", + "title": "Sanitize modal title inputs", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Sanitize modal title inputs\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-05T17:22:26Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eba538de43050123d859fe23302be61bcd791bca", + "version": "v3.2.1" + }, + { + "commit_number": 228, + "sha": "47ed137be382dab3a34a8efe89ab446229216b1f", + "title": "Add modal UI for link, reference, and image tools", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Add modal UI for link, reference, and image tools\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-05T17:20:22Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/47ed137be382dab3a34a8efe89ab446229216b1f", + "version": "v3.2.0" + }, + { + "commit_number": 227, + "sha": "3499907ccef58c978f59e9854bb3a8f20bcc9587", + "title": "feat: implement list handling features for Markdown editor", + "description": "", + "full_message": "feat: implement list handling features for Markdown editor", + "author": "Baivab Sarkar", + "date": "2026-05-05T16:48:10Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3499907ccef58c978f59e9854bb3a8f20bcc9587", + "version": "v3.1.5" + }, + { + "commit_number": 226, + "sha": "6c370ea69e82aed37743a835c1bd8c26081e2ef5", + "title": "feat: add Markdown formatting toolbar with various editing options and styles", + "description": "", + "full_message": "feat: add Markdown formatting toolbar with various editing options and styles", + "author": "Baivab Sarkar", + "date": "2026-05-05T15:23:16Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6c370ea69e82aed37743a835c1bd8c26081e2ef5", + "version": "v3.1.4" + }, + { + "commit_number": 225, + "sha": "42b31e4c847d3b13b772185d09105206823f8862", + "title": "feat: add Markdown formatting toolbar with various editing options", + "description": "", + "full_message": "feat: add Markdown formatting toolbar with various editing options", + "author": "Baivab Sarkar", + "date": "2026-05-05T15:22:45Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/42b31e4c847d3b13b772185d09105206823f8862", + "version": "v3.1.3" + }, + { + "commit_number": 224, + "sha": "f6eb342e940d4f953038606dd9d1b1cb75e16cf8", + "title": "style: refine button and header dimensions for improved layout consistency", + "description": "", + "full_message": "style: refine button and header dimensions for improved layout consistency", + "author": "Baivab Sarkar", + "date": "2026-05-05T14:56:22Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f6eb342e940d4f953038606dd9d1b1cb75e16cf8", + "version": "v3.1.2" + }, + { + "commit_number": 223, + "sha": "4b4fa9f22d607eb49719b3adaf94a43c6f3d383b", + "title": "feat: enhance dropdown menu items with icons for import and export actions", + "description": "", + "full_message": "feat: enhance dropdown menu items with icons for import and export actions", + "author": "Baivab Sarkar", + "date": "2026-05-05T14:41:16Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4b4fa9f22d607eb49719b3adaf94a43c6f3d383b", + "version": "v3.1.1" + }, + { + "commit_number": 222, + "sha": "80bbdcc35e8d464110c2e764b074f0f1248d6cb4", + "title": "feat: implement tab action menu with dropdown for rename, duplicate, and delete actions", + "description": "", + "full_message": "feat: implement tab action menu with dropdown for rename, duplicate, and delete actions", + "author": "Baivab Sarkar", + "date": "2026-05-05T14:08:42Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/80bbdcc35e8d464110c2e764b074f0f1248d6cb4", + "version": "v3.1.0" + }, + { + "commit_number": 221, + "sha": "a92b9ed62e561995d8ef05f86bdc44e033f280c2", + "title": "Enhance links with target and rel attributes", + "description": "Updated links in README.md to open in new tab with noreferrer.", + "full_message": "Enhance links with target and rel attributes\n\nUpdated links in README.md to open in new tab with noreferrer.", + "author": "Baivab Sarkar", + "date": "2026-05-05T11:59:55Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a92b9ed62e561995d8ef05f86bdc44e033f280c2", + "version": "v3.0.4" + }, + { + "commit_number": 220, + "sha": "941a2baf37c641f9334531e14dd7f5345c90df02", + "title": "Update badge links in README.md", + "description": "", + "full_message": "Update badge links in README.md", + "author": "Baivab Sarkar", + "date": "2026-05-05T11:38:27Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/941a2baf37c641f9334531e14dd7f5345c90df02", + "version": "v3.0.3" + }, + { + "commit_number": 219, + "sha": "444d6a1bff1a0492eceaf6c85d049f8a7c2d32dc", + "title": "Merge pull request #82 from ThisIs-Developer/copilot/remove-navbar-and-improve-space-management", + "description": "Remove dropzone banner; make full window the drag-and-drop target", + "full_message": "Merge pull request #82 from ThisIs-Developer/copilot/remove-navbar-and-improve-space-management\n\nRemove dropzone banner; make full window the drag-and-drop target", + "author": "Baivab Sarkar", + "date": "2026-05-05T05:40:52Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/444d6a1bff1a0492eceaf6c85d049f8a7c2d32dc", + "version": "v3.0.2" + }, + { + "commit_number": 218, + "sha": "c7cfdd61b3ceda8333f21f28de383b2b42ef4f90", + "title": "fix: guard dragleave handler against non-file drag events to prevent depth counter desync", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/32f3ea84-25cb-422a-8e8f-941055bdd220\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "fix: guard dragleave handler against non-file drag events to prevent depth counter desync\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/32f3ea84-25cb-422a-8e8f-941055bdd220\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-05T05:28:17Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c7cfdd61b3ceda8333f21f28de383b2b42ef4f90", + "version": "v3.0.1" + }, + { + "commit_number": 217, + "sha": "9d1904e3649ac1d838196a105c0482bb1f044ab2", + "title": "feat: replace dedicated dropzone banner with full-window drag-and-drop overlay and subtle editor hint", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/32f3ea84-25cb-422a-8e8f-941055bdd220\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: replace dedicated dropzone banner with full-window drag-and-drop overlay and subtle editor hint\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/32f3ea84-25cb-422a-8e8f-941055bdd220\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-05T05:27:32Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9d1904e3649ac1d838196a105c0482bb1f044ab2", + "version": "v3.0.0" + }, + { + "commit_number": 216, + "sha": "9ab3f4f2d5ba7b3a74b935fee46311eb64886928", + "title": "Merge pull request #81 from ThisIs-Developer/copilot/fix-stats-container-visibility", + "description": "fix: show .stats-container across all viewport widths ≥768px", + "full_message": "Merge pull request #81 from ThisIs-Developer/copilot/fix-stats-container-visibility\n\nfix: show .stats-container across all viewport widths ≥768px", + "author": "Baivab Sarkar", + "date": "2026-05-05T04:07:46Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9ab3f4f2d5ba7b3a74b935fee46311eb64886928", + "version": "v2.9.9" + }, + { + "commit_number": 215, + "sha": "63a053eaab970a8c01e45e48b7baf743852a4061", + "title": "fix: consolidate navbar media queries to fix Bootstrap breakpoint conflict", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/885bd598-8a4f-4fe8-925d-b7b91082f7c6\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "fix: consolidate navbar media queries to fix Bootstrap breakpoint conflict\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/885bd598-8a4f-4fe8-925d-b7b91082f7c6\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-05T04:05:57Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/63a053eaab970a8c01e45e48b7baf743852a4061", + "version": "v2.9.8" + }, + { + "commit_number": 214, + "sha": "77abb998715749784e725e652f7b474e9551198f", + "title": "fix: show stats-container in 768px–991px viewport range", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/e7db951b-fe40-43c2-bd0d-b04dcf479266\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "fix: show stats-container in 768px–991px viewport range\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/e7db951b-fe40-43c2-bd0d-b04dcf479266\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-04T19:20:40Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/77abb998715749784e725e652f7b474e9551198f", + "version": "v2.9.7" + }, + { + "commit_number": 213, + "sha": "a0505287061f3721d7e7153a056fb720b8319f7b", + "title": "Merge pull request #78 from ThisIs-Developer/copilot/fix-view-mode-controls-overflow", + "description": "Fix toolbar overflow — icon-only buttons and no-wrap header layout", + "full_message": "Merge pull request #78 from ThisIs-Developer/copilot/fix-view-mode-controls-overflow\n\nFix toolbar overflow — icon-only buttons and no-wrap header layout", + "author": "Baivab Sarkar", + "date": "2026-05-04T12:42:45Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a0505287061f3721d7e7153a056fb720b8319f7b", + "version": "v2.9.6" + }, + { + "commit_number": 212, + "sha": "f5f55d69b4a03706e86cca6c17f113e416bb1cec", + "title": "fix: prevent header left/right sections from wrapping (flex: 1 0 auto + white-space: nowrap)", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1211a95d-2e79-4609-bacb-b1dfb830747f\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "fix: prevent header left/right sections from wrapping (flex: 1 0 auto + white-space: nowrap)\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1211a95d-2e79-4609-bacb-b1dfb830747f\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-04T12:26:36Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f5f55d69b4a03706e86cca6c17f113e416bb1cec", + "version": "v2.9.5" + }, + { + "commit_number": 211, + "sha": "662c4ccaf308c0a1e997c5255979961a36678cfd", + "title": "feat: restore bordered icon-only toolbar buttons matching reference screenshot", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/5180bf21-1fab-43f3-b005-cd39b588cc92\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: restore bordered icon-only toolbar buttons matching reference screenshot\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/5180bf21-1fab-43f3-b005-cd39b588cc92\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-04T12:20:08Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/662c4ccaf308c0a1e997c5255979961a36678cfd", + "version": "v2.9.4" + }, + { + "commit_number": 210, + "sha": "07c78f513034bdd06cda7645297e64c4d7d4c8e4", + "title": "feat: icon-only toolbar buttons styled like stats-container, centered view-mode group", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/4d48d269-e1f8-4446-926b-376d011e1a89\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: icon-only toolbar buttons styled like stats-container, centered view-mode group\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/4d48d269-e1f8-4446-926b-376d011e1a89\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-04T12:09:10Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/07c78f513034bdd06cda7645297e64c4d7d4c8e4", + "version": "v2.9.3" + }, + { + "commit_number": 209, + "sha": "0d5d21ca28f16776431bb6ae85b7c7152e69d13c", + "title": "fix: center view-mode-group with flex:1 for proper three-column header", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/9aec1d3e-5fb8-46c5-80be-006dc659d05d\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "fix: center view-mode-group with flex:1 for proper three-column header\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/9aec1d3e-5fb8-46c5-80be-006dc659d05d\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-04T04:46:49Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0d5d21ca28f16776431bb6ae85b7c7152e69d13c", + "version": "v2.9.2" + }, + { + "commit_number": 208, + "sha": "8d61630cbacb589afbc8c97116a50c1b8b398dfd", + "title": "Changes before error encountered", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7306ffbb-b358-4269-a33c-022f114bf692\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Changes before error encountered\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7306ffbb-b358-4269-a33c-022f114bf692\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-03T17:05:35Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8d61630cbacb589afbc8c97116a50c1b8b398dfd", + "version": "v2.9.1" + }, + { + "commit_number": 207, + "sha": "cb457e0eb967c5a5a1f3601309cfd6cc7bea7336", + "title": "Fix toolbar overflow at medium viewport widths (768-1079px)", + "description": "- Wrap toolbar button text in in both index.html files\n- At <=1079px: hide .btn-text and .view-mode-btn span (icon-only buttons)\n- Reduce toolbar gap (8px->4px) and tool-button padding at medium widths\n- Update toggleSyncScrolling() innerHTML to preserve \n- Add title attribute to Export button for accessibility\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/d83f1a83-5190-4e83-a222-71e7a974a194\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix toolbar overflow at medium viewport widths (768-1079px)\n\n- Wrap toolbar button text in in both index.html files\n- At <=1079px: hide .btn-text and .view-mode-btn span (icon-only buttons)\n- Reduce toolbar gap (8px->4px) and tool-button padding at medium widths\n- Update toggleSyncScrolling() innerHTML to preserve \n- Add title attribute to Export button for accessibility\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/d83f1a83-5190-4e83-a222-71e7a974a194\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-03T16:53:29Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cb457e0eb967c5a5a1f3601309cfd6cc7bea7336", + "version": "v2.9.0" + }, + { + "commit_number": 206, + "sha": "5bc16cf2ef5acf52e082480d6cc733c35b387473", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-05-03T16:42:47Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5bc16cf2ef5acf52e082480d6cc733c35b387473", + "version": "v2.8.8" + }, + { + "commit_number": 205, + "sha": "a88c62319f3ff50962a1926c0a191a09bc53e935", + "title": "Remove screenshot from README", + "description": "Removed Markdown Viewer screenshot from README.", + "full_message": "Remove screenshot from README\n\nRemoved Markdown Viewer screenshot from README.", + "author": "Baivab Sarkar", + "date": "2026-04-29T15:24:51Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a88c62319f3ff50962a1926c0a191a09bc53e935", + "version": "v2.8.7" + }, + { + "commit_number": 204, + "sha": "061a73e4212dad54738823ddb58ba650524d8f1e", + "title": "Merge pull request #74 from ThisIs-Developer/copilot/update-readme-with-badge", + "description": "Add Deepwiki badge before hero screenshot in README", + "full_message": "Merge pull request #74 from ThisIs-Developer/copilot/update-readme-with-badge\n\nAdd Deepwiki badge before hero screenshot in README", + "author": "Baivab Sarkar", + "date": "2026-04-29T15:24:17Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/061a73e4212dad54738823ddb58ba650524d8f1e", + "version": "v2.8.6" + }, + { + "commit_number": 203, + "sha": "43e5466a9080e88bc78c710d903882c312ef841d", + "title": "Add Deepwiki badge to README", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1a39497c-bed5-47a0-a7c5-a8c36cf28157\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Add Deepwiki badge to README\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1a39497c-bed5-47a0-a7c5-a8c36cf28157\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-29T15:20:12Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/43e5466a9080e88bc78c710d903882c312ef841d", + "version": "v2.8.5" + }, + { + "commit_number": 202, + "sha": "b0e392fb3a8f38cc159823177d52abbb09003299", + "title": "Add initial wiki documentation structure", + "description": "", + "full_message": "Add initial wiki documentation structure", + "author": "Baivab Sarkar", + "date": "2026-04-29T10:29:06Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b0e392fb3a8f38cc159823177d52abbb09003299", + "version": "v2.8.4" + }, + { + "commit_number": 201, + "sha": "c10e63ddac3d2ce231cbcf0e25340bfadbc7a020", + "title": "Merge pull request #73 from ThisIs-Developer/copilot/update-readme-professionalism", + "description": "Refresh README to professional template with full feature coverage", + "full_message": "Merge pull request #73 from ThisIs-Developer/copilot/update-readme-professionalism\n\nRefresh README to professional template with full feature coverage", + "author": "Baivab Sarkar", + "date": "2026-04-29T09:59:16Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c10e63ddac3d2ce231cbcf0e25340bfadbc7a020", + "version": "v2.8.3" + }, + { + "commit_number": 200, + "sha": "4d5a0a39e5a617309a4315804c3748c24795a48c", + "title": "docs(wiki): add transparency details and development journey", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/047fc32f-9402-4e59-8078-751b25f53099\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "docs(wiki): add transparency details and development journey\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/047fc32f-9402-4e59-8078-751b25f53099\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-29T09:54:59Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4d5a0a39e5a617309a4315804c3748c24795a48c", + "version": "v2.8.2" + }, + { + "commit_number": 199, + "sha": "85c66c312f4ca56509c4ff599fd61ab2c29cd206", + "title": "docs: add development journey section", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b08a4e87-065d-4dba-86ae-061a26ec9c52\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "docs: add development journey section\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b08a4e87-065d-4dba-86ae-061a26ec9c52\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-29T09:41:54Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/85c66c312f4ca56509c4ff599fd61ab2c29cd206", + "version": "v2.8.1" + }, + { + "commit_number": 198, + "sha": "52ed2faefa8247f764076f6824fc3c81655aa336", + "title": "docs: refresh README layout and feature list", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/31c08c9f-8568-420e-8c30-3a7db9c6c8cb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "docs: refresh README layout and feature list\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/31c08c9f-8568-420e-8c30-3a7db9c6c8cb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-29T09:34:34Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/52ed2faefa8247f764076f6824fc3c81655aa336", + "version": "v2.8.0" + }, + { + "commit_number": 197, + "sha": "620cdc0016662e58fbf245f3cd3b949120a2a21e", + "title": "Merge pull request #72 from ThisIs-Developer/copilot/error-handling-in-build-script", + "description": "fix: exclude staging dir from source tarball in release workflow", + "full_message": "Merge pull request #72 from ThisIs-Developer/copilot/error-handling-in-build-script\n\nfix: exclude staging dir from source tarball in release workflow", + "author": "Baivab Sarkar", + "date": "2026-04-28T09:28:49Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/620cdc0016662e58fbf245f3cd3b949120a2a21e", + "version": "v2.7.10" + }, + { + "commit_number": 196, + "sha": "1af85a70c8fb4e6cb83b52142d5c20b1d25e2a0e", + "title": "fix: exclude staging dir from source tarball to prevent self-referencing tar error", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00108a06-4d52-45bf-b27b-eeb50f9e847e\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "fix: exclude staging dir from source tarball to prevent self-referencing tar error\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00108a06-4d52-45bf-b27b-eeb50f9e847e\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-28T09:19:16Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1af85a70c8fb4e6cb83b52142d5c20b1d25e2a0e", + "version": "v2.7.9" + }, + { + "commit_number": 195, + "sha": "440da15482d44a9b02671069dd6e18e0178543de", + "title": "Merge pull request #71 from ThisIs-Developer/copilot/fix-copy-shortcut-windows", + "description": "[WIP] Fix copy keyboard shortcut issue in Windows app", + "full_message": "Merge pull request #71 from ThisIs-Developer/copilot/fix-copy-shortcut-windows\n\n[WIP] Fix copy keyboard shortcut issue in Windows app", + "author": "Baivab Sarkar", + "date": "2026-04-28T06:53:13Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/440da15482d44a9b02671069dd6e18e0178543de", + "version": "v2.7.8" + }, + { + "commit_number": 194, + "sha": "a59cf5caa71d21a433ef4fa433d6ce855f551130", + "title": "fix: prevent Ctrl+C from copying entire document when editor text is selected on Windows", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/8553a508-b532-417a-bf24-6cf69fbec85d\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "fix: prevent Ctrl+C from copying entire document when editor text is selected on Windows\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/8553a508-b532-417a-bf24-6cf69fbec85d\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-28T04:55:56Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a59cf5caa71d21a433ef4fa433d6ce855f551130", + "version": "v2.7.7" + }, + { + "commit_number": 193, + "sha": "97672a38429d940c6c236adca4262056cfb73bb5", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-26T10:37:53Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/97672a38429d940c6c236adca4262056cfb73bb5", + "version": "v2.7.6" + }, + { + "commit_number": 192, + "sha": "0a82ab94bb367a9c3cb507e4eb46a8d8f7580df4", + "title": "Update license from MIT to Apache License", + "description": "", + "full_message": "Update license from MIT to Apache License", + "author": "Baivab Sarkar", + "date": "2026-04-20T07:19:13Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0a82ab94bb367a9c3cb507e4eb46a8d8f7580df4", + "version": "v2.7.5" + }, + { + "commit_number": 191, + "sha": "7e82536955655d80f0c60b57ee97609fcb8c0884", + "title": "Merge pull request #68 from jhrepo/fix/tab-view-mode-pane-reset", + "description": "Fix pane widths not resetting when switching tabs across view modes", + "full_message": "Merge pull request #68 from jhrepo/fix/tab-view-mode-pane-reset\n\nFix pane widths not resetting when switching tabs across view modes", + "author": "Baivab Sarkar", + "date": "2026-04-08T04:44:42Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7e82536955655d80f0c60b57ee97609fcb8c0884", + "version": "v2.7.4" + }, + { + "commit_number": 190, + "sha": "6f7772c3d09e7145787c7efc9e4e7ca633d8fb37", + "title": "Fix pane widths not resetting when switching tabs across view modes", + "description": "When switching between tabs with different view modes (e.g., split and\npreview), the inline flex styles from split mode were not being cleared.\nThis happened because restoreViewMode() sets currentViewMode to null\nbefore calling setViewMode(), causing the previousMode === 'split'\ncheck to always fail.\n\nChanged the condition to always reset pane widths when entering a\nnon-split mode, regardless of the previous mode value.", + "full_message": "Fix pane widths not resetting when switching tabs across view modes\n\nWhen switching between tabs with different view modes (e.g., split and\npreview), the inline flex styles from split mode were not being cleared.\nThis happened because restoreViewMode() sets currentViewMode to null\nbefore calling setViewMode(), causing the previousMode === 'split'\ncheck to always fail.\n\nChanged the condition to always reset pane widths when entering a\nnon-split mode, regardless of the previous mode value.", + "author": "jeongho", + "date": "2026-04-07T11:04:04Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6f7772c3d09e7145787c7efc9e4e7ca633d8fb37", + "version": "v2.7.3" + }, + { + "commit_number": 189, + "sha": "beb6b944eae59458a42d1fcc0dd8ff0ad1e3c70e", + "title": "Merge pull request #64 from ThisIs-Developer/copilot/fix-math-equations-rendering", + "description": "Fix exported HTML to render LaTeX math equations via MathJax", + "full_message": "Merge pull request #64 from ThisIs-Developer/copilot/fix-math-equations-rendering\n\nFix exported HTML to render LaTeX math equations via MathJax", + "author": "Baivab Sarkar", + "date": "2026-04-03T04:36:41Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/beb6b944eae59458a42d1fcc0dd8ff0ad1e3c70e", + "version": "v2.7.2" + }, + { + "commit_number": 188, + "sha": "1d0219c57a0b502ea4a8cb75c46974f7e3233a64", + "title": "Fix HTML export MathJax rendering", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7ab2d0b8-a7b3-478d-8251-d5a9897f6fc0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix HTML export MathJax rendering\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7ab2d0b8-a7b3-478d-8251-d5a9897f6fc0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-03T04:32:08Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1d0219c57a0b502ea4a8cb75c46974f7e3233a64", + "version": "v2.7.1" + }, + { + "commit_number": 187, + "sha": "e1532801d37c8798215be52df2ccd2f57d9d12d9", + "title": "Plan HTML export math rendering fix", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7ab2d0b8-a7b3-478d-8251-d5a9897f6fc0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Plan HTML export math rendering fix\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7ab2d0b8-a7b3-478d-8251-d5a9897f6fc0\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-03T04:31:40Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e1532801d37c8798215be52df2ccd2f57d9d12d9", + "version": "v2.7.0" + }, + { + "commit_number": 186, + "sha": "d918c7155af501db86d4f94efd2705e9dcaf91be", + "title": "Merge pull request #57 from mhakash/feature/persist-settings", + "description": "Persist sync scrolling and theme states", + "full_message": "Merge pull request #57 from mhakash/feature/persist-settings\n\nPersist sync scrolling and theme states", + "author": "Baivab Sarkar", + "date": "2026-04-02T05:26:24Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d918c7155af501db86d4f94efd2705e9dcaf91be", + "version": "v2.6.10" + }, + { + "commit_number": 185, + "sha": "0611723baa20624d032b551ce870868a628539aa", + "title": "Merge pull request #62 from ThisIs-Developer/copilot/fix-latex-inline-rendering", + "description": "Enable single-dollar inline LaTeX rendering in MathJax", + "full_message": "Merge pull request #62 from ThisIs-Developer/copilot/fix-latex-inline-rendering\n\nEnable single-dollar inline LaTeX rendering in MathJax", + "author": "Baivab Sarkar", + "date": "2026-04-02T05:21:45Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0611723baa20624d032b551ce870868a628539aa", + "version": "v2.6.9" + }, + { + "commit_number": 184, + "sha": "4144576011aa79dfe16e602eb341b443f273bda0", + "title": "Normalize script tag indentation in index files", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Normalize script tag indentation in index files\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-02T05:06:11Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4144576011aa79dfe16e602eb341b443f273bda0", + "version": "v2.6.8" + }, + { + "commit_number": 183, + "sha": "50734aee96712b73a933a3ccf8644a16008baea4", + "title": "Fix inline MathJax delimiters and revert unintended resource diffs", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix inline MathJax delimiters and revert unintended resource diffs\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-02T05:04:02Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/50734aee96712b73a933a3ccf8644a16008baea4", + "version": "v2.6.7" + }, + { + "commit_number": 182, + "sha": "b37377a1c4b919a835fe909bfe5701b040ad6060", + "title": "Plan: investigate and fix inline LaTeX rendering", + "description": "Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Plan: investigate and fix inline LaTeX rendering\n\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-02T04:59:59Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b37377a1c4b919a835fe909bfe5701b040ad6060", + "version": "v2.6.6" + }, + { + "commit_number": 181, + "sha": "d0db9e408e2f8552e648d1f26962c7edd5b5ce47", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-04-02T04:58:48Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d0db9e408e2f8552e648d1f26962c7edd5b5ce47", + "version": "v2.6.5" + }, + { + "commit_number": 180, + "sha": "9a2f258e878f1e03f873b577d8331633fe846bac", + "title": "Merge pull request #59 from jhrepo/add-built-with-section", + "description": "Add Built with Markdown Viewer section: Markdown Desk (macOS native wrapper)", + "full_message": "Merge pull request #59 from jhrepo/add-built-with-section\n\nAdd Built with Markdown Viewer section: Markdown Desk (macOS native wrapper)", + "author": "Baivab Sarkar", + "date": "2026-03-28T05:05:02Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9a2f258e878f1e03f873b577d8331633fe846bac", + "version": "v2.6.4" + }, + { + "commit_number": 179, + "sha": "52e1b4a4a916845cede1cb45033ffb92fb421cda", + "title": "Add Built with Markdown Viewer section: Markdown Desk", + "description": "", + "full_message": "Add Built with Markdown Viewer section: Markdown Desk", + "author": "jeongho", + "date": "2026-03-27T06:37:36Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/52e1b4a4a916845cede1cb45033ffb92fb421cda", + "version": "v2.6.3" + }, + { + "commit_number": 178, + "sha": "e6680ffd10dabaa1776d2e3e4f12a3db5ca7881e", + "title": "Persist sync scrolling and theme states", + "description": "", + "full_message": "Persist sync scrolling and theme states", + "author": "Mehdi Hassan Akash", + "date": "2026-03-27T05:17:23Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e6680ffd10dabaa1776d2e3e4f12a3db5ca7881e", + "version": "v2.6.2" + }, + { + "commit_number": 177, + "sha": "4b2ee58d938172280b1768b1e1c74e49871e9920", + "title": "Merge pull request #56 from mhakash/feature/yaml-frontmatter", + "description": "Add support for github style yaml frontmatter", + "full_message": "Merge pull request #56 from mhakash/feature/yaml-frontmatter\n\nAdd support for github style yaml frontmatter", + "author": "Baivab Sarkar", + "date": "2026-03-27T03:20:13Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4b2ee58d938172280b1768b1e1c74e49871e9920", + "version": "v2.6.1" + }, + { + "commit_number": 176, + "sha": "f1451352d2afbddd5f69af3439f67a308f25f3f2", + "title": "Add support for yaml frontmatter", + "description": "", + "full_message": "Add support for yaml frontmatter", + "author": "Mehdi Hassan Akash", + "date": "2026-03-26T09:00:58Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f1451352d2afbddd5f69af3439f67a308f25f3f2", + "version": "v2.6.0" + }, + { + "commit_number": 175, + "sha": "f8b70ec3111c893e9826148fb3b244dfdc079529", + "title": "Merge pull request #52 from ThisIs-Developer/copilot/add-support-for-admonitions", + "description": "Add GitHub-style alert/admonition rendering for NOTE/TIP/IMPORTANT/WARNING/CAUTION", + "full_message": "Merge pull request #52 from ThisIs-Developer/copilot/add-support-for-admonitions\n\nAdd GitHub-style alert/admonition rendering for NOTE/TIP/IMPORTANT/WARNING/CAUTION", + "author": "Baivab Sarkar", + "date": "2026-03-25T12:03:43Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f8b70ec3111c893e9826148fb3b244dfdc079529", + "version": "v2.5.8" + }, + { + "commit_number": 174, + "sha": "60981e96242cfd9b3a4fc40ef89d02e661c182f5", + "title": "Adjust alert icon fallback viewBox for Font Awesome", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7a7f788a-ac86-476b-afbb-d2cd30792f53", + "full_message": "Adjust alert icon fallback viewBox for Font Awesome\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7a7f788a-ac86-476b-afbb-d2cd30792f53", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-25T11:37:52Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/60981e96242cfd9b3a4fc40ef89d02e661c182f5", + "version": "v2.5.7" + }, + { + "commit_number": 173, + "sha": "ffd9143dd03d0977e88d928900859fb2fdb52a08", + "title": "Switch markdown alert icons to Font Awesome paths", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7a7f788a-ac86-476b-afbb-d2cd30792f53", + "full_message": "Switch markdown alert icons to Font Awesome paths\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7a7f788a-ac86-476b-afbb-d2cd30792f53", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-25T11:36:29Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ffd9143dd03d0977e88d928900859fb2fdb52a08", + "version": "v2.5.6" + }, + { + "commit_number": 172, + "sha": "a89d5f414f11782ffaa2e24bcc61f973d4953a4e", + "title": "Use GitHub octicons for alert icons", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/83f65a4f-ae77-4dfd-89db-e665a971c32d", + "full_message": "Use GitHub octicons for alert icons\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/83f65a4f-ae77-4dfd-89db-e665a971c32d", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-25T11:29:05Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a89d5f414f11782ffaa2e24bcc61f973d4953a4e", + "version": "v2.5.5" + }, + { + "commit_number": 171, + "sha": "7093e325313a21d54c5f9989257c42d256976aaf", + "title": "Harden alert icon rendering and fix note icon path", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/84385004-bd3c-4cc3-b710-45a4fd6d69e2", + "full_message": "Harden alert icon rendering and fix note icon path\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/84385004-bd3c-4cc3-b710-45a4fd6d69e2", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-25T11:19:41Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7093e325313a21d54c5f9989257c42d256976aaf", + "version": "v2.5.4" + }, + { + "commit_number": 170, + "sha": "0aa30d8d0d401d82fbcf3deb52a6ecd35af28585", + "title": "Match GitHub-style alert title icons and colors", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/84385004-bd3c-4cc3-b710-45a4fd6d69e2", + "full_message": "Match GitHub-style alert title icons and colors\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/84385004-bd3c-4cc3-b710-45a4fd6d69e2", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-25T11:17:45Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0aa30d8d0d401d82fbcf3deb52a6ecd35af28585", + "version": "v2.5.3" + }, + { + "commit_number": 169, + "sha": "433bbbad55f2946b9f6e599b7d3c36b6fd5a7f28", + "title": "Polish admonition marker parsing readability", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289", + "full_message": "Polish admonition marker parsing readability\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-25T07:30:57Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/433bbbad55f2946b9f6e599b7d3c36b6fd5a7f28", + "version": "v2.5.2" + }, + { + "commit_number": 168, + "sha": "7090d872f0a753e6115b5b9adcd0110cb1f64659", + "title": "Handle same-line GitHub alert markers robustly", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289", + "full_message": "Handle same-line GitHub alert markers robustly\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-25T07:30:16Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7090d872f0a753e6115b5b9adcd0110cb1f64659", + "version": "v2.5.1" + }, + { + "commit_number": 167, + "sha": "74eae5acad02ebbcef766ce912dd1bf682be5805", + "title": "Add GitHub-style admonition parsing and styling", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289", + "full_message": "Add GitHub-style admonition parsing and styling\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-25T07:28:24Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/74eae5acad02ebbcef766ce912dd1bf682be5805", + "version": "v2.5.0" + }, + { + "commit_number": 166, + "sha": "eecfffb480290cfdd0a0ecc1b50a8f55d5a096fb", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-25T07:22:11Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eecfffb480290cfdd0a0ecc1b50a8f55d5a096fb", + "version": "v2.4.6" + }, + { + "commit_number": 165, + "sha": "6ae149a365983c258ec15f4c6fd122641c40281d", + "title": "Merge pull request #49 from ThisIs-Developer/copilot/enhance-github-import-file-browser", + "description": "Set GitHub Import modal to 60% viewport width on desktop/tablet", + "full_message": "Merge pull request #49 from ThisIs-Developer/copilot/enhance-github-import-file-browser\n\nSet GitHub Import modal to 60% viewport width on desktop/tablet", + "author": "Baivab Sarkar", + "date": "2026-03-20T17:04:17Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6ae149a365983c258ec15f4c6fd122641c40281d", + "version": "v2.4.5" + }, + { + "commit_number": 164, + "sha": "dce38f2be1181a2d312ab87ab78c4d3bee061a13", + "title": "style: set github import modal width to 60vw on desktop tablet", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "style: set github import modal width to 60vw on desktop tablet\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-20T17:00:57Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/dce38f2be1181a2d312ab87ab78c4d3bee061a13", + "version": "v2.4.4" + }, + { + "commit_number": 163, + "sha": "87831ebd5e2cd31bd5c8d75ab66c7d62dbc3af65", + "title": "feat: support multi-select github import with select-all and count", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: support multi-select github import with select-all and count\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-20T16:50:40Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/87831ebd5e2cd31bd5c8d75ab66c7d62dbc3af65", + "version": "v2.4.3" + }, + { + "commit_number": 162, + "sha": "6c5ec91d0f39c5afc1bd05123a364dd839fbe82b", + "title": "feat: add multi-select controls to github import modal", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: add multi-select controls to github import modal\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-20T16:46:21Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6c5ec91d0f39c5afc1bd05123a364dd839fbe82b", + "version": "v2.4.2" + }, + { + "commit_number": 161, + "sha": "cb10d4829f558b9acb6f24f5749129b3140b6060", + "title": "chore: address review nits and finalize github import browser", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "chore: address review nits and finalize github import browser\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-20T16:35:24Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cb10d4829f558b9acb6f24f5749129b3140b6060", + "version": "v2.4.1" + }, + { + "commit_number": 160, + "sha": "9c764986c7e174b7ae53aaf2ea213d413b6bc092", + "title": "feat: add github import mini file browser with basic rate limiting", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: add github import mini file browser with basic rate limiting\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-20T16:33:34Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9c764986c7e174b7ae53aaf2ea213d413b6bc092", + "version": "v2.4.0" + }, + { + "commit_number": 159, + "sha": "1713f801068a7a383540a5e5a147a87e67b979af", + "title": "chore: outline plan for github import file browser", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "chore: outline plan for github import file browser\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-20T16:29:09Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1713f801068a7a383540a5e5a147a87e67b979af", + "version": "v2.3.6" + }, + { + "commit_number": 158, + "sha": "706250efec76d779f1e22e2d08aec9f253c08d2f", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-20T16:27:40Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/706250efec76d779f1e22e2d08aec9f253c08d2f", + "version": "v2.3.5" + }, + { + "commit_number": 157, + "sha": "6142e6a907851d8e308a36278a29933a78644ea7", + "title": "Merge pull request #48 from ayoubmata81/fix/open-file-from-cli-args", + "description": "fix(desktop): open file passed as CLI argument on launch", + "full_message": "Merge pull request #48 from ayoubmata81/fix/open-file-from-cli-args\n\nfix(desktop): open file passed as CLI argument on launch", + "author": "Baivab Sarkar", + "date": "2026-03-20T05:33:32Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6142e6a907851d8e308a36278a29933a78644ea7", + "version": "v2.3.4" + }, + { + "commit_number": 156, + "sha": "ca0148f3e7c5f6905608c797ac83ae452c18b9ed", + "title": "fix(desktop): open file passed as CLI argument on launch", + "description": "When a .md file is set to open with the desktop app (e.g. via OS file\nassociation), the file path is passed as a command-line argument.\nPreviously the app ignored it and always showed the landing page,\nrequiring the user to drag-and-drop or import the file manually.\n\nThis change reads the argument in main.js using Neutralino.filesystem\n.readFile and injects the content into the editor on startup.\nfilesystem.readFile is also added to nativeAllowList in\nneutralino.config.json to permit the API call.", + "full_message": "fix(desktop): open file passed as CLI argument on launch\n\nWhen a .md file is set to open with the desktop app (e.g. via OS file\nassociation), the file path is passed as a command-line argument.\nPreviously the app ignored it and always showed the landing page,\nrequiring the user to drag-and-drop or import the file manually.\n\nThis change reads the argument in main.js using Neutralino.filesystem\n.readFile and injects the content into the editor on startup.\nfilesystem.readFile is also added to nativeAllowList in\nneutralino.config.json to permit the API call.", + "author": "ayoubmata81", + "date": "2026-03-20T00:41:07Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ca0148f3e7c5f6905608c797ac83ae452c18b9ed", + "version": "v2.3.3" + }, + { + "commit_number": 155, + "sha": "60d4c000c0d4cfa09bb4ef53e5953ba3014eaca3", + "title": "Merge pull request #47 from ThisIs-Developer/copilot/update-import-button-dropdown", + "description": "Improve GitHub import modal readability and usability for desktop/mobile", + "full_message": "Merge pull request #47 from ThisIs-Developer/copilot/update-import-button-dropdown\n\nImprove GitHub import modal readability and usability for desktop/mobile", + "author": "Baivab Sarkar", + "date": "2026-03-19T13:00:51Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/60d4c000c0d4cfa09bb4ef53e5953ba3014eaca3", + "version": "v2.3.2" + }, + { + "commit_number": 154, + "sha": "a207b2fb11248aae2ff8bd4fc32a10f2a2365286", + "title": "refactor: harden github import modal disable handling", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "refactor: harden github import modal disable handling\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T12:21:07Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a207b2fb11248aae2ff8bd4fc32a10f2a2365286", + "version": "v2.3.1" + }, + { + "commit_number": 153, + "sha": "359a903102cbfc20c48bd4fa400652a30d4ea878", + "title": "style: enlarge github import modal for readability and usability", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "style: enlarge github import modal for readability and usability\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T12:18:07Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/359a903102cbfc20c48bd4fa400652a30d4ea878", + "version": "v2.3.0" + }, + { + "commit_number": 152, + "sha": "b4721ff261470821e7d64d0897dbad9ddf0fd425", + "title": "Revert \"chore: plan larger readable import modal\"", + "description": "This reverts commit c69136dc9bebd5c77d05f937aaeefcfae9d326ee.", + "full_message": "Revert \"chore: plan larger readable import modal\"\n\nThis reverts commit c69136dc9bebd5c77d05f937aaeefcfae9d326ee.", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T12:15:01Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b4721ff261470821e7d64d0897dbad9ddf0fd425", + "version": "v2.2.10" + }, + { + "commit_number": 151, + "sha": "c69136dc9bebd5c77d05f937aaeefcfae9d326ee", + "title": "chore: plan larger readable import modal", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "chore: plan larger readable import modal\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T12:14:31Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c69136dc9bebd5c77d05f937aaeefcfae9d326ee", + "version": "v2.2.9" + }, + { + "commit_number": 150, + "sha": "f6ca4884cb2237b965e724e3da21d530f6599565", + "title": "chore: remove accidental desktop resource churn from PR", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "chore: remove accidental desktop resource churn from PR\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T12:09:47Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f6ca4884cb2237b965e724e3da21d530f6599565", + "version": "v2.2.8" + }, + { + "commit_number": 149, + "sha": "26b5430a73de443665529353ad44874f9746d421", + "title": "chore: address review feedback for github import messaging", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "chore: address review feedback for github import messaging\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T12:06:50Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/26b5430a73de443665529353ad44874f9746d421", + "version": "v2.2.7" + }, + { + "commit_number": 148, + "sha": "8d45c6a0c7a4634a3155cc70d71820fb14066974", + "title": "feat: merge import actions into dropdown and add github import modal", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: merge import actions into dropdown and add github import modal\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T12:02:59Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8d45c6a0c7a4634a3155cc70d71820fb14066974", + "version": "v2.2.6" + }, + { + "commit_number": 147, + "sha": "b7fc65a6c2bee0896ec032049df409cb714c800a", + "title": "Revert \"chore: outline plan for import UI updates\"", + "description": "This reverts commit 5eef2df9f3003bd56fcd64bbaeb3b1c7c2ab763c.", + "full_message": "Revert \"chore: outline plan for import UI updates\"\n\nThis reverts commit 5eef2df9f3003bd56fcd64bbaeb3b1c7c2ab763c.", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T12:00:56Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b7fc65a6c2bee0896ec032049df409cb714c800a", + "version": "v2.2.5" + }, + { + "commit_number": 146, + "sha": "5eef2df9f3003bd56fcd64bbaeb3b1c7c2ab763c", + "title": "chore: outline plan for import UI updates", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "chore: outline plan for import UI updates\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T11:54:44Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5eef2df9f3003bd56fcd64bbaeb3b1c7c2ab763c", + "version": "v2.2.4" + }, + { + "commit_number": 145, + "sha": "9d0b8a5bda2519128e1e8f25a4a2f50724d8b8eb", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T11:53:25Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9d0b8a5bda2519128e1e8f25a4a2f50724d8b8eb", + "version": "v2.2.3" + }, + { + "commit_number": 144, + "sha": "b2c3c85e4d7619bd30645015275155d61b62be69", + "title": "Merge pull request #46 from ThisIs-Developer/copilot/add-import-markdown-from-github", + "description": "Add GitHub URL-based Markdown import (repo/tree/blob/raw) with file discovery and selection", + "full_message": "Merge pull request #46 from ThisIs-Developer/copilot/add-import-markdown-from-github\n\nAdd GitHub URL-based Markdown import (repo/tree/blob/raw) with file discovery and selection", + "author": "Baivab Sarkar", + "date": "2026-03-19T11:50:42Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b2c3c85e4d7619bd30645015275155d61b62be69", + "version": "v2.2.2" + }, + { + "commit_number": 143, + "sha": "eca1c6365c8a652db2f5d3c0cb98988933ad45a2", + "title": "chore: address review feedback for GitHub import selection prompt", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "chore: address review feedback for GitHub import selection prompt\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T11:46:50Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eca1c6365c8a652db2f5d3c0cb98988933ad45a2", + "version": "v2.2.1" + }, + { + "commit_number": 142, + "sha": "cac85189dff4eb4015a1d43562db5454fe22da31", + "title": "feat: add GitHub URL markdown import support", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: add GitHub URL markdown import support\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T11:45:39Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cac85189dff4eb4015a1d43562db5454fe22da31", + "version": "v2.2.0" + }, + { + "commit_number": 141, + "sha": "53d1c923976508530a384ebfc8789d01a5ae237d", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-19T11:39:03Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/53d1c923976508530a384ebfc8789d01a5ae237d", + "version": "v2.1.10" + }, + { + "commit_number": 140, + "sha": "6c16a5fe16aa215a6fa283c7dc9b130a9df3ba51", + "title": "Merge pull request #43 from ThisIs-Developer/copilot/implement-document-tab-mobile-view", + "description": "Implement document tabs in mobile menu with full desktop feature parity", + "full_message": "Merge pull request #43 from ThisIs-Developer/copilot/implement-document-tab-mobile-view\n\nImplement document tabs in mobile menu with full desktop feature parity", + "author": "Baivab Sarkar", + "date": "2026-03-09T10:04:02Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6c16a5fe16aa215a6fa283c7dc9b130a9df3ba51", + "version": "v2.1.9" + }, + { + "commit_number": 139, + "sha": "448fc5c593e1ab99392742dca63cf97468490b7c", + "title": "Align mobile tab with desktop: three-dot menu + reset button", + "description": "Replace the mobile tab's simple × delete button with the same\nthree-dot (⋯) dropdown menu used on the desktop (Rename,\nDuplicate, Delete). Add a \"Reset all files\" button below the\nmobile tab list matching the desktop Reset button. Clean up\nthe now-unused mobile-tab-delete-btn CSS.\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Align mobile tab with desktop: three-dot menu + reset button\n\nReplace the mobile tab's simple × delete button with the same\nthree-dot (⋯) dropdown menu used on the desktop (Rename,\nDuplicate, Delete). Add a \"Reset all files\" button below the\nmobile tab list matching the desktop Reset button. Clean up\nthe now-unused mobile-tab-delete-btn CSS.\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-09T10:01:39Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/448fc5c593e1ab99392742dca63cf97468490b7c", + "version": "v2.1.8" + }, + { + "commit_number": 138, + "sha": "323c642158b783a27bc5e182dc2c844ff0329974", + "title": "Implement document tab in mobile tab view", + "description": "Add a Documents section to the mobile menu panel that shows all\nopen tabs with the active one highlighted. Users can switch tabs\nby tapping, delete tabs via the × button, and create new tabs\nvia the + button. The mobile tab list is kept in sync with the\ndesktop tab bar via renderMobileTabList called from renderTabBar.\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Implement document tab in mobile tab view\n\nAdd a Documents section to the mobile menu panel that shows all\nopen tabs with the active one highlighted. Users can switch tabs\nby tapping, delete tabs via the × button, and create new tabs\nvia the + button. The mobile tab list is kept in sync with the\ndesktop tab bar via renderMobileTabList called from renderTabBar.\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-09T07:52:12Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/323c642158b783a27bc5e182dc2c844ff0329974", + "version": "v2.1.7" + }, + { + "commit_number": 137, + "sha": "94777b5644551a520b50e491b40c504c23c77457", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-09T07:45:12Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/94777b5644551a520b50e491b40c504c23c77457", + "version": "v2.1.6" + }, + { + "commit_number": 136, + "sha": "ed0169b3f12eab609e6f3527931836ee5ab492d0", + "title": "Merge pull request #42 from ThisIs-Developer/copilot/fix-document-tab-visibility", + "description": "Fix tab three-dot menu: always visible and no longer clipped by scroll container", + "full_message": "Merge pull request #42 from ThisIs-Developer/copilot/fix-document-tab-visibility\n\nFix tab three-dot menu: always visible and no longer clipped by scroll container", + "author": "Baivab Sarkar", + "date": "2026-03-09T06:38:38Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ed0169b3f12eab609e6f3527931836ee5ab492d0", + "version": "v2.1.5" + }, + { + "commit_number": 135, + "sha": "68c4b22d095070333eee3dab684aadbb4ccd056d", + "title": "Fix tab dropdown clipped by overflow scroll container: use position:fixed + getBoundingClientRect positioning", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix tab dropdown clipped by overflow scroll container: use position:fixed + getBoundingClientRect positioning\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-09T06:36:32Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/68c4b22d095070333eee3dab684aadbb4ccd056d", + "version": "v2.1.4" + }, + { + "commit_number": 134, + "sha": "d6585ed251096eb490392ad2c277f3e6caae58f1", + "title": "Fix three-dot menu button hidden on inactive tabs: set opacity 0.65 by default", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix three-dot menu button hidden on inactive tabs: set opacity 0.65 by default\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-09T06:18:00Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d6585ed251096eb490392ad2c277f3e6caae58f1", + "version": "v2.1.3" + }, + { + "commit_number": 133, + "sha": "854f3262a29fe0935b42dab3f1f40cd19f958e2a", + "title": "Fix Document tab hidden: replace position:sticky with position:relative on .app-header, add flex-shrink:0 and overflow:hidden", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix Document tab hidden: replace position:sticky with position:relative on .app-header, add flex-shrink:0 and overflow:hidden\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-09T05:36:41Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/854f3262a29fe0935b42dab3f1f40cd19f958e2a", + "version": "v2.1.2" + }, + { + "commit_number": 132, + "sha": "874d8f7f812aea5a6e584b40683bfba4e9875d9f", + "title": "Fix Document tab visibility by adding position and z-index to .tab-bar", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix Document tab visibility by adding position and z-index to .tab-bar\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-09T05:02:36Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/874d8f7f812aea5a6e584b40683bfba4e9875d9f", + "version": "v2.1.1" + }, + { + "commit_number": 131, + "sha": "3d46e0bbe0a6f4e844d7f48d182795e18fddc02e", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-09T04:55:42Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3d46e0bbe0a6f4e844d7f48d182795e18fddc02e", + "version": "v2.1.0" + }, + { + "commit_number": 130, + "sha": "7d8b9c0081fdc3c7eeae1abfa4ce23e289ef7ac4", + "title": "Change overflow properties for focus styles to improve visibility", + "description": "", + "full_message": "Change overflow properties for focus styles to improve visibility", + "author": "Baivab Sarkar", + "date": "2026-03-09T04:49:50Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7d8b9c0081fdc3c7eeae1abfa4ce23e289ef7ac4", + "version": "v2.0.7" + }, + { + "commit_number": 129, + "sha": "4d4a088668fda0c2473c5181c1079e2890747917", + "title": "Remove overflow hidden from link styles and increase z-index for better visibility", + "description": "", + "full_message": "Remove overflow hidden from link styles and increase z-index for better visibility", + "author": "Baivab Sarkar", + "date": "2026-03-09T04:44:35Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4d4a088668fda0c2473c5181c1079e2890747917", + "version": "v2.0.6" + }, + { + "commit_number": 128, + "sha": "0663392b578780c0986dff52b9991596eeb4bb85", + "title": "Merge pull request #41 from ThisIs-Developer/copilot/update-document-tabs-ui", + "description": "Overhaul Document Tabs UI: three-dot menu, sequential naming, reset, and delete-last-tab", + "full_message": "Merge pull request #41 from ThisIs-Developer/copilot/update-document-tabs-ui\n\nOverhaul Document Tabs UI: three-dot menu, sequential naming, reset, and delete-last-tab", + "author": "Baivab Sarkar", + "date": "2026-03-08T04:12:18Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0663392b578780c0986dff52b9991596eeb4bb85", + "version": "v2.0.5" + }, + { + "commit_number": 127, + "sha": "cedd372640d718aea697a88e210786ca0db17930", + "title": "Add three-dot menu, sequential naming, reset button, and delete-last-tab support to tabs UI", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Add three-dot menu, sequential naming, reset button, and delete-last-tab support to tabs UI\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-07T19:00:33Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cedd372640d718aea697a88e210786ca0db17930", + "version": "v2.0.4" + }, + { + "commit_number": 126, + "sha": "d9d4ce0445de974179240af49914820a44306790", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-07T18:54:30Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d9d4ce0445de974179240af49914820a44306790", + "version": "v2.0.3" + }, + { + "commit_number": 125, + "sha": "63f49fac5610d9e67123820fabb97d0be5e59e8b", + "title": "Delete .github/workflows/github_workflows_auto-tag-release.yml", + "description": "", + "full_message": "Delete .github/workflows/github_workflows_auto-tag-release.yml", + "author": "Baivab Sarkar", + "date": "2026-03-07T18:42:18Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/63f49fac5610d9e67123820fabb97d0be5e59e8b", + "version": "v2.0.2" + }, + { + "commit_number": 124, + "sha": "2fed8d5003bd008d34562cb8ddaaacf33f9cf515", + "title": "Merge pull request #40 from ThisIs-Developer/copilot/add-document-tabs-session-management", + "description": "feat: Multi-tab workspace with localStorage session persistence", + "full_message": "Merge pull request #40 from ThisIs-Developer/copilot/add-document-tabs-session-management\n\nfeat: Multi-tab workspace with localStorage session persistence", + "author": "Baivab Sarkar", + "date": "2026-03-07T18:40:15Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2fed8d5003bd008d34562cb8ddaaacf33f9cf515", + "version": "v2.0.1" + }, + { + "commit_number": 123, + "sha": "d8510fc8ea736e1727fcab2cc1b54f6a968070db", + "title": "feat: implement Document Tabs & Session Management", + "description": "- Add tab bar HTML to index.html (between header and dropzone)\n- Add complete tab bar CSS to styles.css (tabs, dark mode, animations, responsive)\n- Add TabManager module to script.js:\n - Storage helpers (localStorage keys, load/save)\n - deriveTitleFromContent, createTab, renderTabBar with drag-and-drop\n - initTabs, switchTab, newTab, closeTab, updateActiveTabTitle\n - saveCurrentTabState, restoreViewMode helper\n- Wire into existing app: initTabs() replaces renderMarkdown() on init\n- importMarkdownFile opens files in new tab\n- Debounced save (500ms) and title update (800ms) on editor input\n- saveCurrentTabState on view mode button click\n- Ctrl/Cmd+T (new tab), Ctrl/Cmd+W (close tab) keyboard shortcuts\n- tab-new-btn click handler\n- loadFromShareHash persists shared content to current tab\n- Max 20 tabs with informative alert\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: implement Document Tabs & Session Management\n\n- Add tab bar HTML to index.html (between header and dropzone)\n- Add complete tab bar CSS to styles.css (tabs, dark mode, animations, responsive)\n- Add TabManager module to script.js:\n - Storage helpers (localStorage keys, load/save)\n - deriveTitleFromContent, createTab, renderTabBar with drag-and-drop\n - initTabs, switchTab, newTab, closeTab, updateActiveTabTitle\n - saveCurrentTabState, restoreViewMode helper\n- Wire into existing app: initTabs() replaces renderMarkdown() on init\n- importMarkdownFile opens files in new tab\n- Debounced save (500ms) and title update (800ms) on editor input\n- saveCurrentTabState on view mode button click\n- Ctrl/Cmd+T (new tab), Ctrl/Cmd+W (close tab) keyboard shortcuts\n- tab-new-btn click handler\n- loadFromShareHash persists shared content to current tab\n- Max 20 tabs with informative alert\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-07T18:38:07Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d8510fc8ea736e1727fcab2cc1b54f6a968070db", + "version": "v2.0.0" + }, + { + "commit_number": 122, + "sha": "d94e5c2d6a41e99a5c741c5b287c955169f5cb5b", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-07T18:25:25Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d94e5c2d6a41e99a5c741c5b287c955169f5cb5b", + "version": "v1.9.3" + }, + { + "commit_number": 121, + "sha": "6b93babd047bb5e98e26c48c8c2c50fe749df2e9", + "title": "Add files via upload", + "description": "", + "full_message": "Add files via upload", + "author": "Baivab Sarkar", + "date": "2026-03-07T18:17:33Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6b93babd047bb5e98e26c48c8c2c50fe749df2e9", + "version": "v1.9.2" + }, + { + "commit_number": 120, + "sha": "01effc7d914129f2e71485de6871f28daf1027de", + "title": "Merge pull request #39 from ThisIs-Developer/copilot/create-project-wiki", + "description": "Add professional wiki documentation", + "full_message": "Merge pull request #39 from ThisIs-Developer/copilot/create-project-wiki\n\nAdd professional wiki documentation", + "author": "Baivab Sarkar", + "date": "2026-03-07T18:15:18Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/01effc7d914129f2e71485de6871f28daf1027de", + "version": "v1.9.1" + }, + { + "commit_number": 119, + "sha": "435c24d53b4796cc4c5e0f056518b3bf72ed8bed", + "title": "Create professional wiki with 9 comprehensive documentation pages", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Create professional wiki with 9 comprehensive documentation pages\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-07T17:39:43Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/435c24d53b4796cc4c5e0f056518b3bf72ed8bed", + "version": "v1.9.0" + }, + { + "commit_number": 118, + "sha": "8001cd9ccd7f0011e4484c33a91e745c76101c49", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-07T17:33:10Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8001cd9ccd7f0011e4484c33a91e745c76101c49", + "version": "v1.8.9" + }, + { + "commit_number": 117, + "sha": "e1cc8a09df8f238b4b92bae65424758b9474f7c5", + "title": "Merge pull request #38 from LakshmanKishore/fix/syntax-highlight-dark-mode", + "description": "feat: implement CSS-variable based syntax highlighting for dark mode", + "full_message": "Merge pull request #38 from LakshmanKishore/fix/syntax-highlight-dark-mode\n\nfeat: implement CSS-variable based syntax highlighting for dark mode", + "author": "Baivab Sarkar", + "date": "2026-03-07T17:27:31Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e1cc8a09df8f238b4b92bae65424758b9474f7c5", + "version": "v1.8.8" + }, + { + "commit_number": 116, + "sha": "a01f20473fbd5934617999ca8f9e616c75e99127", + "title": "feat: implement CSS-variable based syntax highlighting for dark mode", + "description": "", + "full_message": "feat: implement CSS-variable based syntax highlighting for dark mode", + "author": "LakshmanKishore", + "date": "2026-03-06T04:09:26Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a01f20473fbd5934617999ca8f9e616c75e99127", + "version": "v1.8.7" + }, + { + "commit_number": 115, + "sha": "a46877e47593ffef464772e90dc6e44a91de90f0", + "title": "Merge pull request #37 from LakshmanKishore/main", + "description": "Update: Change Markdown Logo image source", + "full_message": "Merge pull request #37 from LakshmanKishore/main\n\nUpdate: Change Markdown Logo image source", + "author": "Baivab Sarkar", + "date": "2026-03-05T16:31:59Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a46877e47593ffef464772e90dc6e44a91de90f0", + "version": "v1.8.6" + }, + { + "commit_number": 114, + "sha": "c2a5a64d2d072989440f2119738af05ed293ddde", + "title": "Update: Change Markdown Logo image source", + "description": "Updated image link for Markdown Logo in script.js.", + "full_message": "Update: Change Markdown Logo image source\n\nUpdated image link for Markdown Logo in script.js.", + "author": "Lakshman", + "date": "2026-03-05T05:13:38Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c2a5a64d2d072989440f2119738af05ed293ddde", + "version": "v1.8.5" + }, + { + "commit_number": 113, + "sha": "c6df362d586fcc80235a3dff5f1fb6279449c043", + "title": "Merge pull request #36 from ThisIs-Developer/copilot/fix-ctrl-c-shortcut-bug", + "description": "Fix: Ctrl+C respects text selection instead of always copying full markdown", + "full_message": "Merge pull request #36 from ThisIs-Developer/copilot/fix-ctrl-c-shortcut-bug\n\nFix: Ctrl+C respects text selection instead of always copying full markdown", + "author": "Baivab Sarkar", + "date": "2026-03-05T03:16:20Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c6df362d586fcc80235a3dff5f1fb6279449c043", + "version": "v1.8.4" + }, + { + "commit_number": 112, + "sha": "ae80a331bb792ae4f1078e457c730771e305372c", + "title": "Fix: Ctrl+C only copies full markdown when no text is selected", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix: Ctrl+C only copies full markdown when no text is selected\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T13:46:33Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ae80a331bb792ae4f1078e457c730771e305372c", + "version": "v1.8.3" + }, + { + "commit_number": 111, + "sha": "4954e73f3b4f546be1257956316f389de158d8f3", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T13:44:23Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4954e73f3b4f546be1257956316f389de158d8f3", + "version": "v1.8.2" + }, + { + "commit_number": 110, + "sha": "331c7d4c00409309d0850cfba1b0a310b320e06c", + "title": "Merge pull request #35 from ThisIs-Developer/copilot/fix-large-markdown-link-issue", + "description": "Remove Share modal — copy URL directly on button click", + "full_message": "Merge pull request #35 from ThisIs-Developer/copilot/fix-large-markdown-link-issue\n\nRemove Share modal — copy URL directly on button click", + "author": "Baivab Sarkar", + "date": "2026-03-04T13:41:29Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/331c7d4c00409309d0850cfba1b0a310b320e06c", + "version": "v1.8.1" + }, + { + "commit_number": 109, + "sha": "e5fb3aeec59eca9cab897ea34dbd4c2eb555bc03", + "title": "Remove Share via URL modal; copy URL directly on share button click", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Remove Share via URL modal; copy URL directly on share button click\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T13:33:40Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e5fb3aeec59eca9cab897ea34dbd4c2eb555bc03", + "version": "v1.8.0" + }, + { + "commit_number": 108, + "sha": "b0e64a6d018dd4ac6427e238d81bcb9803a75552", + "title": "Merge: remove URL display from share modal", + "description": "", + "full_message": "Merge: remove URL display from share modal", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T13:29:00Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b0e64a6d018dd4ac6427e238d81bcb9803a75552", + "version": "v1.7.11" + }, + { + "commit_number": 107, + "sha": "3e5b0e1bef706af4a289ca88ebde1c7d6e65ab67", + "title": "Remove generated URL display from share modal", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Remove generated URL display from share modal\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T13:28:10Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3e5b0e1bef706af4a289ca88ebde1c7d6e65ab67", + "version": "v1.7.10" + }, + { + "commit_number": 106, + "sha": "1215fdabf4c66aa530ca17e9e26993d381c9fad8", + "title": "Remove generated URL display from share modal", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Remove generated URL display from share modal\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T13:26:33Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1215fdabf4c66aa530ca17e9e26993d381c9fad8", + "version": "v1.7.9" + }, + { + "commit_number": 105, + "sha": "6f09af509e94e790bd109d8a663274f9a3dca173", + "title": "Remove generated URL display from share modal", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Remove generated URL display from share modal\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T13:26:18Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6f09af509e94e790bd109d8a663274f9a3dca173", + "version": "v1.7.8" + }, + { + "commit_number": 104, + "sha": "65077841db3401cd8ae0b85968a30d21357e677a", + "title": "Fix large markdown share URL: replace blocking alert with share modal", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix large markdown share URL: replace blocking alert with share modal\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T09:43:54Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/65077841db3401cd8ae0b85968a30d21357e677a", + "version": "v1.7.7" + }, + { + "commit_number": 103, + "sha": "eb7006ed8469548719d13a7aae90960a7c4ee400", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T09:38:00Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eb7006ed8469548719d13a7aae90960a7c4ee400", + "version": "v1.7.6" + }, + { + "commit_number": 102, + "sha": "73579688c5be737feef83aa22cef176a0810ed88", + "title": "Merge pull request #34 from ThisIs-Developer/copilot/fix-integration-error-and-warnings", + "description": "Fix invalid pako SRI hash and hljs double-highlight warning", + "full_message": "Merge pull request #34 from ThisIs-Developer/copilot/fix-integration-error-and-warnings\n\nFix invalid pako SRI hash and hljs double-highlight warning", + "author": "Baivab Sarkar", + "date": "2026-03-04T05:08:30Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/73579688c5be737feef83aa22cef176a0810ed88", + "version": "v1.7.5" + }, + { + "commit_number": 101, + "sha": "bfc7301f1813ebfb19dd40003c10cb271225cc9b", + "title": "Fix invalid SRI hash for pako.min.js and skip double-highlighting in hljs", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix invalid SRI hash for pako.min.js and skip double-highlighting in hljs\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T05:02:26Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/bfc7301f1813ebfb19dd40003c10cb271225cc9b", + "version": "v1.7.4" + }, + { + "commit_number": 100, + "sha": "e506efce93175fe35ea98fda7713cf8d6d3b6777", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T04:57:51Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e506efce93175fe35ea98fda7713cf8d6d3b6777", + "version": "v1.7.3" + }, + { + "commit_number": 99, + "sha": "84249045eb1ccdb82f0823efa6d257c728f94b27", + "title": "Merge pull request #33 from ThisIs-Developer/copilot/add-share-button-markdown", + "description": "Fix invalid Docker image tag on PR builds", + "full_message": "Merge pull request #33 from ThisIs-Developer/copilot/add-share-button-markdown\n\nFix invalid Docker image tag on PR builds", + "author": "Baivab Sarkar", + "date": "2026-03-04T04:55:54Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/84249045eb1ccdb82f0823efa6d257c728f94b27", + "version": "v1.7.2" + }, + { + "commit_number": 98, + "sha": "92c2fdf0094ceade0b1523c34576f95b387cec29", + "title": "Fix invalid Docker tag on PR events by using static sha- prefix", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Fix invalid Docker tag on PR events by using static sha- prefix\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T04:53:48Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/92c2fdf0094ceade0b1523c34576f95b387cec29", + "version": "v1.7.1" + }, + { + "commit_number": 97, + "sha": "c857f3b5ac62a98b0afc45098aa8daf3d89b0ee9", + "title": "Add share button with URL-encoded markdown using pako compression", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Add share button with URL-encoded markdown using pako compression\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T04:49:11Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c857f3b5ac62a98b0afc45098aa8daf3d89b0ee9", + "version": "v1.7.0" + }, + { + "commit_number": 96, + "sha": "c06fffc9941fdc32783ba9aec3dc12cac9a17758", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-04T04:43:58Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c06fffc9941fdc32783ba9aec3dc12cac9a17758", + "version": "v1.6.6" + }, + { + "commit_number": 95, + "sha": "efa5f2b8d0904429d025409c0270f7d602dd2d45", + "title": "Merge pull request #27 from ThisIs-Developer/copilot/fix-copy-button-toolbar-order", + "description": "Mermaid UI: fix Copy button visibility, toolbar order, modal size, and modal Copy action", + "full_message": "Merge pull request #27 from ThisIs-Developer/copilot/fix-copy-button-toolbar-order\n\nMermaid UI: fix Copy button visibility, toolbar order, modal size, and modal Copy action", + "author": "Baivab Sarkar", + "date": "2026-03-01T14:53:36Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/efa5f2b8d0904429d025409c0270f7d602dd2d45", + "version": "v1.6.5" + }, + { + "commit_number": 94, + "sha": "3abcdd743e5d018818c5fde6ddb4ee7826d7f786", + "title": "Mermaid UI updates: copy button label, toolbar order, modal size, modal copy button", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Mermaid UI updates: copy button label, toolbar order, modal size, modal copy button\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-01T14:51:15Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3abcdd743e5d018818c5fde6ddb4ee7826d7f786", + "version": "v1.6.4" + }, + { + "commit_number": 93, + "sha": "4aeeddd09e8d858a844aff43b526760b46ce8763", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-03-01T14:47:48Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4aeeddd09e8d858a844aff43b526760b46ce8763", + "version": "v1.6.3" + }, + { + "commit_number": 92, + "sha": "03b4b596047611f65b3033536fd6d0b41b2c8ead", + "title": "Merge pull request #26 from ThisIs-Developer/copilot/add-copy-export-zoom-mermaid-diagrams", + "description": "feat: Add copy/export & zoom toolbar for rendered Mermaid diagrams", + "full_message": "Merge pull request #26 from ThisIs-Developer/copilot/add-copy-export-zoom-mermaid-diagrams\n\nfeat: Add copy/export & zoom toolbar for rendered Mermaid diagrams", + "author": "Baivab Sarkar", + "date": "2026-03-01T06:49:28Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/03b4b596047611f65b3033536fd6d0b41b2c8ead", + "version": "v1.6.2" + }, + { + "commit_number": 91, + "sha": "4de24246577a00bfebff0cf25d087d6b6d84dd7b", + "title": "refine: Address code review feedback (rounded dimensions, CSS variable bg, timestamped filenames)", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "refine: Address code review feedback (rounded dimensions, CSS variable bg, timestamped filenames)\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-02-27T16:24:12Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4de24246577a00bfebff0cf25d087d6b6d84dd7b", + "version": "v1.6.1" + }, + { + "commit_number": 90, + "sha": "d75d01cc803921014ccfa1b2aa9092d72ffba349", + "title": "feat: Add copy/export & zoom toolbar for rendered Mermaid diagrams", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "feat: Add copy/export & zoom toolbar for rendered Mermaid diagrams\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-02-27T16:21:22Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d75d01cc803921014ccfa1b2aa9092d72ffba349", + "version": "v1.6.0" + }, + { + "commit_number": 89, + "sha": "adf2feb47dbc4f76d0a3754dee88fadf4f85183a", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-02-27T16:16:19Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/adf2feb47dbc4f76d0a3754dee88fadf4f85183a", + "version": "v1.5.6" + }, + { + "commit_number": 88, + "sha": "cc0c33f4c3aa930ccc24b68b38bcfc018878d385", + "title": "Merge pull request #24 from ramezio/main", + "description": "feat: desktop app port (issue #23)", + "full_message": "Merge pull request #24 from ramezio/main\n\nfeat: desktop app port (issue #23)", + "author": "Baivab Sarkar", + "date": "2026-02-18T09:58:19Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cc0c33f4c3aa930ccc24b68b38bcfc018878d385", + "version": "v1.5.5" + }, + { + "commit_number": 87, + "sha": "cbc523a0bd3a764c68d618cd612da703747bc84d", + "title": "fix(desktop): add idempotent binary setup to fix empty build output", + "description": "`neu build` requires platform binaries in `bin/`, which are gitignored\nand absent on fresh clones — producing an empty `dist/` folder.\n\nAdd [setup-binaries.js](cci:7://file:///c:/personal/personal/dev/forks/markdown-viewer-fork/desktop-app/setup-binaries.js:0:0-0:0) which downloads binaries via `neu update` only\nwhen missing or when the pinned version in [neutralino.config.json](cci:7://file:///c:/personal/personal/dev/forks/markdown-viewer-fork/desktop-app/neutralino.config.json:0:0-0:0)\nchanges, tracked by a `bin/.version` marker file.\n\nWire it into the npm script chain via `setup` + `postsetup` hooks so\nthat `npm run dev`, `npm run build`, and `npm run build:all` all\nensure binaries exist before proceeding.\n\n- Simplify Dockerfile from 3 stages to 2 (setup handled by npm hooks)\n- Add explicit setup step in GitHub Actions workflow\n- Update README with setup documentation", + "full_message": "fix(desktop): add idempotent binary setup to fix empty build output\n\n`neu build` requires platform binaries in `bin/`, which are gitignored\nand absent on fresh clones — producing an empty `dist/` folder.\n\nAdd [setup-binaries.js](cci:7://file:///c:/personal/personal/dev/forks/markdown-viewer-fork/desktop-app/setup-binaries.js:0:0-0:0) which downloads binaries via `neu update` only\nwhen missing or when the pinned version in [neutralino.config.json](cci:7://file:///c:/personal/personal/dev/forks/markdown-viewer-fork/desktop-app/neutralino.config.json:0:0-0:0)\nchanges, tracked by a `bin/.version` marker file.\n\nWire it into the npm script chain via `setup` + `postsetup` hooks so\nthat `npm run dev`, `npm run build`, and `npm run build:all` all\nensure binaries exist before proceeding.\n\n- Simplify Dockerfile from 3 stages to 2 (setup handled by npm hooks)\n- Add explicit setup step in GitHub Actions workflow\n- Update README with setup documentation", + "author": "ramezio", + "date": "2026-02-18T07:59:38Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cbc523a0bd3a764c68d618cd612da703747bc84d", + "version": "v1.5.4" + }, + { + "commit_number": 86, + "sha": "b782511070e844585562b76f9c508cbaefad4507", + "title": "chore(desktop): remove local neu dependency in favor of npx", + "description": "- Remove `npm install` requirements from README, Dockerfile, and CI.\n- Update package.json scripts to use `npx -y` for all neutralino commands.\n- Simplify build instructions to rely on npm scripts abstraction.", + "full_message": "chore(desktop): remove local neu dependency in favor of npx\n\n- Remove `npm install` requirements from README, Dockerfile, and CI.\n- Update package.json scripts to use `npx -y` for all neutralino commands.\n- Simplify build instructions to rely on npm scripts abstraction.", + "author": "ramezio", + "date": "2026-02-17T21:33:28Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b782511070e844585562b76f9c508cbaefad4507", + "version": "v1.5.3" + }, + { + "commit_number": 85, + "sha": "7b12698630f9176a0456d5e54f65afc20e28b212", + "title": "feat(desktop-app): add Neutralinojs desktop port with CI/CD and Docker build", + "description": "- Add prepare.js build script to copy/transform shared browser-version\n files (script.js, styles.css, assets/, index.html) into resources/\n- Add package.json with dev, build (embedded), build:portable, and\n build:all npm scripts using @neutralinojs/neu CLI\n- Add multi-stage Dockerfile and docker-compose.yml for containerized\n builds without local toolchain\n- Add GitHub Actions workflow (desktop-build.yml) triggered on\n desktop-v* tags to build and publish release assets (executables,\n portable ZIPs, source archive, SHA256 checksums)\n- Update .gitignore for build artifacts, node_modules, and Docker output\n- Add .dockerignore to exclude generated resources and build artifacts\n- Update index.html with Neutralinojs script injections and app wrapper\n- Update styles.css (desktop-specific overrides inherited from upstream)\n- Add README with architecture, dev setup, build\n instructions (npm + npx + Docker), and release documentation", + "full_message": "feat(desktop-app): add Neutralinojs desktop port with CI/CD and Docker build\n\n- Add prepare.js build script to copy/transform shared browser-version\n files (script.js, styles.css, assets/, index.html) into resources/\n- Add package.json with dev, build (embedded), build:portable, and\n build:all npm scripts using @neutralinojs/neu CLI\n- Add multi-stage Dockerfile and docker-compose.yml for containerized\n builds without local toolchain\n- Add GitHub Actions workflow (desktop-build.yml) triggered on\n desktop-v* tags to build and publish release assets (executables,\n portable ZIPs, source archive, SHA256 checksums)\n- Update .gitignore for build artifacts, node_modules, and Docker output\n- Add .dockerignore to exclude generated resources and build artifacts\n- Update index.html with Neutralinojs script injections and app wrapper\n- Update styles.css (desktop-specific overrides inherited from upstream)\n- Add README with architecture, dev setup, build\n instructions (npm + npx + Docker), and release documentation", + "author": "ramezio", + "date": "2026-02-17T19:31:17Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7b12698630f9176a0456d5e54f65afc20e28b212", + "version": "v1.5.2" + }, + { + "commit_number": 84, + "sha": "167fb64bbab593895e78e6eed7641ddc0beede21", + "title": "chore: update readme.md with preliminary to-do", + "description": "", + "full_message": "chore: update readme.md with preliminary to-do", + "author": "ramezio", + "date": "2026-02-10T20:30:35Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/167fb64bbab593895e78e6eed7641ddc0beede21", + "version": "v1.5.1" + }, + { + "commit_number": 83, + "sha": "687f2c6e2baf09080e5dcc9e515fd651c312fc3a", + "title": "feat: Implement initial setup for the Markdown Viewer desktop application using Neutralinojs.", + "description": "", + "full_message": "feat: Implement initial setup for the Markdown Viewer desktop application using Neutralinojs.", + "author": "ramezio", + "date": "2026-02-10T19:53:13Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/687f2c6e2baf09080e5dcc9e515fd651c312fc3a", + "version": "v1.5.0" + }, + { + "commit_number": 82, + "sha": "2745de84c5259ffa1bd83cb2d481da7e759c024f", + "title": "Merge pull request #20 from ThisIs-Developer/copilot/fix-tab-key-behavior-editor", + "description": "Fix Tab key to insert indentation instead of changing focus", + "full_message": "Merge pull request #20 from ThisIs-Developer/copilot/fix-tab-key-behavior-editor\n\nFix Tab key to insert indentation instead of changing focus", + "author": "Baivab Sarkar", + "date": "2026-01-22T07:59:43Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2745de84c5259ffa1bd83cb2d481da7e759c024f", + "version": "v1.4.4" + }, + { + "commit_number": 81, + "sha": "5abab83159e01a01cc10ff5a17597348aac50a63", + "title": "Add Tab key handler to insert 2 spaces instead of moving focus", + "description": "Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "full_message": "Add Tab key handler to insert 2 spaces instead of moving focus\n\nCo-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com>", + "author": "copilot-swe-agent[bot]", + "date": "2026-01-22T07:55:55Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5abab83159e01a01cc10ff5a17597348aac50a63", + "version": "v1.4.3" + }, + { + "commit_number": 80, + "sha": "6c6d2e926ef40060ee13fb48a60ad5e50a0e0671", + "title": "Initial plan", + "description": "", + "full_message": "Initial plan", + "author": "copilot-swe-agent[bot]", + "date": "2026-01-22T07:48:55Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6c6d2e926ef40060ee13fb48a60ad5e50a0e0671", + "version": "v1.4.2" + }, + { + "commit_number": 79, + "sha": "177805d1b51765f9b9143878a59eee9d17817f2c", + "title": "Merge pull request #19 from mmoerman/main", + "description": "Feature improvements to viewer and PDF export", + "full_message": "Merge pull request #19 from mmoerman/main\n\nFeature improvements to viewer and PDF export", + "author": "Baivab Sarkar", + "date": "2026-01-22T07:43:09Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/177805d1b51765f9b9143878a59eee9d17817f2c", + "version": "v1.4.1" + }, + { + "commit_number": 78, + "sha": "9ab5ad89217cbea79abebff444db9b9be4e1b7cb", + "title": "Feature improvements:\n- Added 3 view mode buttons (Editor, Split, Preview)\n- Made the Sync button only appear in Split view\n- Added ability to resize the views in Split view", + "description": "PDF improvements/bug fixes:\n- Improved rendering of graphics so as to try and avoid splitting them in the middle\n- Improved rendering of span cells in tables\n- Improved rendering of formulas", + "full_message": "Feature improvements:\n- Added 3 view mode buttons (Editor, Split, Preview)\n- Made the Sync button only appear in Split view\n- Added ability to resize the views in Split view\n\nPDF improvements/bug fixes:\n- Improved rendering of graphics so as to try and avoid splitting them in the middle\n- Improved rendering of span cells in tables\n- Improved rendering of formulas", + "author": "Michael Moerman", + "date": "2026-01-10T14:32:10Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9ab5ad89217cbea79abebff444db9b9be4e1b7cb", + "version": "v1.4.0" + }, + { + "commit_number": 77, + "sha": "78e0dcad4f457113b7fafa8fda0b4885a4c46ed4", + "title": "Merge pull request #16 from ThisIs-Developer/feature", + "description": "Feature", + "full_message": "Merge pull request #16 from ThisIs-Developer/feature\n\nFeature", + "author": "Baivab Sarkar", + "date": "2025-10-11T17:02:34Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/78e0dcad4f457113b7fafa8fda0b4885a4c46ed4", + "version": "v1.3.7" + }, + { + "commit_number": 76, + "sha": "525152bcfdfa491f327ee2c3cad494f8f5762423", + "title": "Merge pull request #15 from JBroeren/main", + "description": "Approved ✅\n\nHuge thanks, @JBroeren — this is a fantastic addition! The Docker support is well thought out and makes local dev and deployment much easier.", + "full_message": "Merge pull request #15 from JBroeren/main\n\nApproved ✅\n\nHuge thanks, @JBroeren — this is a fantastic addition! The Docker support is well thought out and makes local dev and deployment much easier.", + "author": "Baivab Sarkar", + "date": "2025-10-11T17:00:37Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/525152bcfdfa491f327ee2c3cad494f8f5762423", + "version": "v1.3.6" + }, + { + "commit_number": 75, + "sha": "294422e68c73fda69122095f5118a20b995353df", + "title": "Refactor: Improve PDF export functionality and enhance UI responsiveness", + "description": "", + "full_message": "Refactor: Improve PDF export functionality and enhance UI responsiveness", + "author": "Jacco Broeren", + "date": "2025-09-29T16:24:03Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/294422e68c73fda69122095f5118a20b995353df", + "version": "v1.3.5" + }, + { + "commit_number": 74, + "sha": "1ba9ec197a5f13333b9137398064a31ca22c3320", + "title": "Add files via upload", + "description": "", + "full_message": "Add files via upload", + "author": "Baivab Sarkar", + "date": "2025-05-14T19:37:04Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1ba9ec197a5f13333b9137398064a31ca22c3320", + "version": "v1.3.4" + }, + { + "commit_number": 73, + "sha": "73ce1e1abe85adb3c4bc676e144cfa233b59405d", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2025-05-14T19:13:09Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/73ce1e1abe85adb3c4bc676e144cfa233b59405d", + "version": "v1.3.3" + }, + { + "commit_number": 72, + "sha": "b0fef5f58960a1e48a08f5803f3002faa078e456", + "title": "Add files via upload", + "description": "", + "full_message": "Add files via upload", + "author": "Baivab Sarkar", + "date": "2025-05-14T18:47:02Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b0fef5f58960a1e48a08f5803f3002faa078e456", + "version": "v1.3.2" + }, + { + "commit_number": 71, + "sha": "8a8c93c4475c17056347a858d3fd1fe5ce230da0", + "title": "Merge pull request #14 from ThisIs-Developer/feature", + "description": "Optimize PDF Export & Improve UI Feedback", + "full_message": "Merge pull request #14 from ThisIs-Developer/feature\n\nOptimize PDF Export & Improve UI Feedback", + "author": "Baivab Sarkar", + "date": "2025-05-09T13:53:11Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8a8c93c4475c17056347a858d3fd1fe5ce230da0", + "version": "v1.3.1" + }, + { + "commit_number": 70, + "sha": "ae15e31900840156418799fcffe263c728d4d47a", + "title": "Update: Optimized PDF export\nAdd: Progress UI for PDF export\nUpdate: Change name Toggle Mode", + "description": "", + "full_message": "Update: Optimized PDF export\nAdd: Progress UI for PDF export\nUpdate: Change name Toggle Mode", + "author": "Baivab Sarkar", + "date": "2025-05-09T13:50:09Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ae15e31900840156418799fcffe263c728d4d47a", + "version": "v1.3.0" + }, + { + "commit_number": 69, + "sha": "fc6fdc036045d166b94404a4c087c660fb93ea6d", + "title": "Update: PDF export wiht better rendering", + "description": "", + "full_message": "Update: PDF export wiht better rendering", + "author": "Baivab Sarkar", + "date": "2025-05-09T11:40:31Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/fc6fdc036045d166b94404a4c087c660fb93ea6d", + "version": "v1.2.3" + }, + { + "commit_number": 68, + "sha": "f06b8d0491d643abfa9effd7f0832ed77714e368", + "title": "Fix: PDF Export: Replace html2pdf with jsPDF + html2canvas", + "description": "", + "full_message": "Fix: PDF Export: Replace html2pdf with jsPDF + html2canvas", + "author": "Baivab Sarkar", + "date": "2025-05-09T08:20:06Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f06b8d0491d643abfa9effd7f0832ed77714e368", + "version": "v1.2.2" + }, + { + "commit_number": 67, + "sha": "45733bccff9d7559420e3230e8c672051f0f8ed0", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2025-05-03T18:44:09Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/45733bccff9d7559420e3230e8c672051f0f8ed0", + "version": "v1.2.1" + }, + { + "commit_number": 66, + "sha": "a443f1e4f758da011cdeacf71e1369ff8e445c60", + "title": "Merge pull request #12 from ThisIs-Developer/feature", + "description": "Update README Documentation", + "full_message": "Merge pull request #12 from ThisIs-Developer/feature\n\nUpdate README Documentation", + "author": "Baivab Sarkar", + "date": "2025-05-03T18:39:03Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a443f1e4f758da011cdeacf71e1369ff8e445c60", + "version": "v1.2.0" + }, + { + "commit_number": 65, + "sha": "fb64ffcee056637093541f2e647f16e98e30e7e2", + "title": "Update: README", + "description": "", + "full_message": "Update: README", + "author": "Baivab Sarkar", + "date": "2025-05-03T18:37:31Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/fb64ffcee056637093541f2e647f16e98e30e7e2", + "version": "v1.1.4" + }, + { + "commit_number": 64, + "sha": "004b7abdd7988148462fe2e3596f44eb80aafb2e", + "title": "Merge pull request #11 from ThisIs-Developer/feature", + "description": "Update Meta Tags and SEO Enhancements + UI Adjustments", + "full_message": "Merge pull request #11 from ThisIs-Developer/feature\n\nUpdate Meta Tags and SEO Enhancements + UI Adjustments", + "author": "Baivab Sarkar", + "date": "2025-05-03T17:09:49Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/004b7abdd7988148462fe2e3596f44eb80aafb2e", + "version": "v1.1.3" + }, + { + "commit_number": 63, + "sha": "55718693eaf48cccd56541cf40c858d0c1387418", + "title": "Update: Media Quray\nAdd: Github Link\nRemove: Tips Page", + "description": "", + "full_message": "Update: Media Quray\nAdd: Github Link\nRemove: Tips Page", + "author": "Baivab Sarkar", + "date": "2025-05-03T17:08:27Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/55718693eaf48cccd56541cf40c858d0c1387418", + "version": "v1.1.2" + }, + { + "commit_number": 62, + "sha": "28a346ab6269163c686fb56fa810fd04609aa837", + "title": "Update: Description/keyword", + "description": "", + "full_message": "Update: Description/keyword", + "author": "Baivab Sarkar", + "date": "2025-05-03T16:44:15Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/28a346ab6269163c686fb56fa810fd04609aa837", + "version": "v1.1.1" + }, + { + "commit_number": 61, + "sha": "a5d48820f39328f9666ff7e120c36bad36c87fed", + "title": "Merge pull request #10 from ThisIs-Developer/feature", + "description": "Remove Incorrect Image Tag Link", + "full_message": "Merge pull request #10 from ThisIs-Developer/feature\n\nRemove Incorrect Image Tag Link", + "author": "Baivab Sarkar", + "date": "2025-05-03T16:01:41Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a5d48820f39328f9666ff7e120c36bad36c87fed", + "version": "v1.1.0" + }, + { + "commit_number": 60, + "sha": "9d0f5be04e1d23726444795f63764d2086032b87", + "title": "Remove: Image tag link", + "description": "", + "full_message": "Remove: Image tag link", + "author": "Baivab Sarkar", + "date": "2025-05-03T16:00:10Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9d0f5be04e1d23726444795f63764d2086032b87", + "version": "v1.0.9" + }, + { + "commit_number": 59, + "sha": "95fc984aa345423f2d8e23eade316ecbc0384aa5", + "title": "Merge pull request #9 from ThisIs-Developer/feature", + "description": "Update Welcome Markdown Example", + "full_message": "Merge pull request #9 from ThisIs-Developer/feature\n\nUpdate Welcome Markdown Example", + "author": "Baivab Sarkar", + "date": "2025-05-03T15:57:06Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/95fc984aa345423f2d8e23eade316ecbc0384aa5", + "version": "v1.0.8" + }, + { + "commit_number": 58, + "sha": "a569b5bc8e4a9e46737cb7a9a4c2ed3d04cada59", + "title": "Update: Simple Markdown", + "description": "", + "full_message": "Update: Simple Markdown", + "author": "Baivab Sarkar", + "date": "2025-05-03T15:55:47Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a569b5bc8e4a9e46737cb7a9a4c2ed3d04cada59", + "version": "v1.0.7" + }, + { + "commit_number": 57, + "sha": "b834a2725ec3799238dd5cb7eb81c9482127c344", + "title": "Merge pull request #8 from ThisIs-Developer/feature", + "description": "Add Emoji Support Using JoyPixels (emoji-toolkit)", + "full_message": "Merge pull request #8 from ThisIs-Developer/feature\n\nAdd Emoji Support Using JoyPixels (emoji-toolkit)", + "author": "Baivab Sarkar", + "date": "2025-05-03T14:19:26Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b834a2725ec3799238dd5cb7eb81c9482127c344", + "version": "v1.0.6" + }, + { + "commit_number": 56, + "sha": "960fbc5e5705c4809cb14224a985ed06373508cf", + "title": "Update: Support for github emojis", + "description": "", + "full_message": "Update: Support for github emojis", + "author": "Baivab Sarkar", + "date": "2025-05-03T14:17:36Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/960fbc5e5705c4809cb14224a985ed06373508cf", + "version": "v1.0.5" + }, + { + "commit_number": 55, + "sha": "dbcfdd4c3de048d5e505f3697b2b443af9df1ceb", + "title": "Merge pull request #7 from ThisIs-Developer/feature", + "description": "Update Mermaid to v11.6.0 and Fix Dark Mode Initialization Bug", + "full_message": "Merge pull request #7 from ThisIs-Developer/feature\n\nUpdate Mermaid to v11.6.0 and Fix Dark Mode Initialization Bug", + "author": "Baivab Sarkar", + "date": "2025-05-03T13:28:56Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/dbcfdd4c3de048d5e505f3697b2b443af9df1ceb", + "version": "v1.0.4" + }, + { + "commit_number": 54, + "sha": "5380946a5a03b750fe2954fab743a92401a83272", + "title": "Fix: initial Mermaid theme", + "description": "", + "full_message": "Fix: initial Mermaid theme", + "author": "Baivab Sarkar", + "date": "2025-05-03T13:26:10Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5380946a5a03b750fe2954fab743a92401a83272", + "version": "v1.0.3" + }, + { + "commit_number": 53, + "sha": "da92568df567392024679c88bab900da54d00836", + "title": "Update: Latest version support Mermaid", + "description": "", + "full_message": "Update: Latest version support Mermaid", + "author": "Baivab Sarkar", + "date": "2025-05-03T11:56:46Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/da92568df567392024679c88bab900da54d00836", + "version": "v1.0.2" + }, + { + "commit_number": 52, + "sha": "4e1fb019ebd9e45087132987eef2c87414bad73f", + "title": "Merge pull request #6 from ThisIs-Developer/feature", + "description": "Add: Support for Mermaid Diagrams and LaTeX Math Expressions", + "full_message": "Merge pull request #6 from ThisIs-Developer/feature\n\nAdd: Support for Mermaid Diagrams and LaTeX Math Expressions", + "author": "Baivab Sarkar", + "date": "2025-05-03T11:39:47Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4e1fb019ebd9e45087132987eef2c87414bad73f", + "version": "v1.0.1" + }, + { + "commit_number": 51, + "sha": "cc53828c4ac3a164c0f4df64cd34e78ae2d15fe7", + "title": "Add: Support for Mermaid Diagrams and LaTeX Math Expressions", + "description": "", + "full_message": "Add: Support for Mermaid Diagrams and LaTeX Math Expressions", + "author": "Baivab Sarkar", + "date": "2025-05-03T11:38:06Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cc53828c4ac3a164c0f4df64cd34e78ae2d15fe7", + "version": "v1.0.0" + }, + { + "commit_number": 50, + "sha": "e7a661106a282ef5abdda85be88efdc4f20e6377", + "title": "Merge pull request #5 from ThisIs-Developer/feature", + "description": "🔄 Update Copy HTML to Copy Markdown", + "full_message": "Merge pull request #5 from ThisIs-Developer/feature\n\n🔄 Update Copy HTML to Copy Markdown", + "author": "Baivab Sarkar", + "date": "2025-05-03T10:46:23Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e7a661106a282ef5abdda85be88efdc4f20e6377", + "version": "v0.5.6" + }, + { + "commit_number": 49, + "sha": "6f838dfeddbd1918a0805f3e985a297cec0c2b43", + "title": "Update: change copyHtmlBtn -> copyMdBtn", + "description": "", + "full_message": "Update: change copyHtmlBtn -> copyMdBtn", + "author": "Baivab Sarkar", + "date": "2025-05-03T08:55:14Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6f838dfeddbd1918a0805f3e985a297cec0c2b43", + "version": "v0.5.5" + }, + { + "commit_number": 48, + "sha": "a93c940aaa988d0dd4d8a1c3f7c54c26b4d10a37", + "title": "Merge pull request #4 from ThisIs-Developer/feature", + "description": "Add mobile hamburger menu with full feature support", + "full_message": "Merge pull request #4 from ThisIs-Developer/feature\n\nAdd mobile hamburger menu with full feature support", + "author": "Baivab Sarkar", + "date": "2025-05-03T07:18:34Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a93c940aaa988d0dd4d8a1c3f7c54c26b4d10a37", + "version": "v0.5.4" + }, + { + "commit_number": 47, + "sha": "c3a3fa465c6ce45462a472700ceb377f8be655cc", + "title": "Update: Website navbar Name", + "description": "", + "full_message": "Update: Website navbar Name", + "author": "Baivab Sarkar", + "date": "2025-05-03T07:15:09Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c3a3fa465c6ce45462a472700ceb377f8be655cc", + "version": "v0.5.3" + }, + { + "commit_number": 46, + "sha": "85689c8a31ca10a0b3d4b064ea6698f72ca7f58f", + "title": "Fix: UI for Media quray", + "description": "", + "full_message": "Fix: UI for Media quray", + "author": "Baivab Sarkar", + "date": "2025-05-03T07:13:01Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/85689c8a31ca10a0b3d4b064ea6698f72ca7f58f", + "version": "v0.5.2" + }, + { + "commit_number": 45, + "sha": "d54a170d27e772225ac0562231e1ea01361711e3", + "title": "Merge pull request #3 from ThisIs-Developer/feature", + "description": "Add Favicon and SEO Meta Tags for Better Branding and Discoverability", + "full_message": "Merge pull request #3 from ThisIs-Developer/feature\n\nAdd Favicon and SEO Meta Tags for Better Branding and Discoverability", + "author": "Baivab Sarkar", + "date": "2025-05-01T16:37:43Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d54a170d27e772225ac0562231e1ea01361711e3", + "version": "v0.5.1" + }, + { + "commit_number": 44, + "sha": "b761575f3b8ef85ec6c4306ca81667a396548432", + "title": "Update: Add favicon\nAdd: Metatags fro SEO", + "description": "", + "full_message": "Update: Add favicon\nAdd: Metatags fro SEO", + "author": "Baivab Sarkar", + "date": "2025-05-01T16:34:02Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b761575f3b8ef85ec6c4306ca81667a396548432", + "version": "v0.5.0" + }, + { + "commit_number": 43, + "sha": "ec49a606141a7652c0a00f17e2af586a36199778", + "title": "Fix: remove padding editorPanel", + "description": "", + "full_message": "Fix: remove padding editorPanel", + "author": "Baivab Sarkar", + "date": "2025-05-01T11:39:00Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ec49a606141a7652c0a00f17e2af586a36199778", + "version": "v0.4.10" + }, + { + "commit_number": 42, + "sha": "8734259c64b8a35f292c7f2b786bbac8adbacbbf", + "title": "Merge pull request #2 from ThisIs-Developer/feature", + "description": "Add Drop Zone Toggle & CSS Fixes", + "full_message": "Merge pull request #2 from ThisIs-Developer/feature\n\nAdd Drop Zone Toggle & CSS Fixes", + "author": "Baivab Sarkar", + "date": "2025-05-01T11:19:56Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8734259c64b8a35f292c7f2b786bbac8adbacbbf", + "version": "v0.4.9" + }, + { + "commit_number": 41, + "sha": "5be5e86d04505549152cd4f737e37605866099be", + "title": "Fix: ToolBar issue", + "description": "", + "full_message": "Fix: ToolBar issue", + "author": "Baivab Sarkar", + "date": "2025-05-01T11:13:12Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5be5e86d04505549152cd4f737e37605866099be", + "version": "v0.4.8" + }, + { + "commit_number": 40, + "sha": "9fc7eeca6142231ae03777b37f3f0abf6daac1ee", + "title": "Update: Add closeBtn in dropzone", + "description": "", + "full_message": "Update: Add closeBtn in dropzone", + "author": "Baivab Sarkar", + "date": "2025-05-01T10:57:53Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9fc7eeca6142231ae03777b37f3f0abf6daac1ee", + "version": "v0.4.7" + }, + { + "commit_number": 39, + "sha": "6bf47347647cb7803bdf94e441d2bdce94d3e3c6", + "title": "Merge pull request #1 from ThisIs-Developer/UI", + "description": "feat: New UI, Add theme toggle, drop zone support, improved markdown rendering and UI enhancements", + "full_message": "Merge pull request #1 from ThisIs-Developer/UI\n\nfeat: New UI, Add theme toggle, drop zone support, improved markdown rendering and UI enhancements", + "author": "Baivab Sarkar", + "date": "2025-05-01T07:46:09Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6bf47347647cb7803bdf94e441d2bdce94d3e3c6", + "version": "v0.4.6" + }, + { + "commit_number": 38, + "sha": "ab4b5c05cfeadd2e388c25cf07dc80a3a6014e24", + "title": "Remove: LivePage Dir", + "description": "", + "full_message": "Remove: LivePage Dir", + "author": "Baivab Sarkar", + "date": "2025-05-01T07:36:53Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ab4b5c05cfeadd2e388c25cf07dc80a3a6014e24", + "version": "v0.4.5" + }, + { + "commit_number": 37, + "sha": "bc0526b1210eb49b07ce9e4fbea07a05388ade29", + "title": "Update: Sync/StatsCard", + "description": "", + "full_message": "Update: Sync/StatsCard", + "author": "Baivab Sarkar", + "date": "2025-05-01T07:35:49Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/bc0526b1210eb49b07ce9e4fbea07a05388ade29", + "version": "v0.4.4" + }, + { + "commit_number": 36, + "sha": "8f72846e07f413014aca8cbcd260c1e13cd838d9", + "title": "Update: Sync/StatsCard", + "description": "", + "full_message": "Update: Sync/StatsCard", + "author": "Baivab Sarkar", + "date": "2025-04-30T21:16:35Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8f72846e07f413014aca8cbcd260c1e13cd838d9", + "version": "v0.4.3" + }, + { + "commit_number": 35, + "sha": "127d274a2ab78662f7d3752378f855dcc6d078b2", + "title": "Fix: Coloring of Code brases in Darktoggle", + "description": "", + "full_message": "Fix: Coloring of Code brases in Darktoggle", + "author": "Baivab Sarkar", + "date": "2025-04-30T20:30:50Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/127d274a2ab78662f7d3752378f855dcc6d078b2", + "version": "v0.4.2" + }, + { + "commit_number": 34, + "sha": "1129d0efaf0569d20affd5272a59e37d4dd77287", + "title": "Fix: file path", + "description": "", + "full_message": "Fix: file path", + "author": "Baivab Sarkar", + "date": "2025-04-30T19:41:50Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1129d0efaf0569d20affd5272a59e37d4dd77287", + "version": "v0.4.1" + }, + { + "commit_number": 33, + "sha": "59c4a86cfb7825601787c4f05a259e0a5342a451", + "title": "Update: New UI", + "description": "", + "full_message": "Update: New UI", + "author": "Baivab Sarkar", + "date": "2025-04-30T19:26:35Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/59c4a86cfb7825601787c4f05a259e0a5342a451", + "version": "v0.4.0" + }, + { + "commit_number": 32, + "sha": "6e79b4570be419b1dab77bd388356edecfddeda0", + "title": "Updated Readme", + "description": "", + "full_message": "Updated Readme", + "author": "ThisIs-Developer", + "date": "2024-08-23T07:54:46Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6e79b4570be419b1dab77bd388356edecfddeda0", + "version": "v0.3.14" + }, + { + "commit_number": 31, + "sha": "8bdfb0d7270bb9ec060b0eeba8946da5712b1d2f", + "title": "Updated Index Link", + "description": "", + "full_message": "Updated Index Link", + "author": "ThisIs-Developer", + "date": "2024-08-23T07:52:26Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8bdfb0d7270bb9ec060b0eeba8946da5712b1d2f", + "version": "v0.3.13" + }, + { + "commit_number": 30, + "sha": "3ac144069faf7ec17a9cdd8629eb6dd10581aac3", + "title": "Updated files", + "description": "", + "full_message": "Updated files", + "author": "ThisIs-Developer", + "date": "2024-08-23T07:50:27Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3ac144069faf7ec17a9cdd8629eb6dd10581aac3", + "version": "v0.3.12" + }, + { + "commit_number": 29, + "sha": "65401c5ae6ed5ebc6c640e5e8d2167e488b648a2", + "title": "fix: css", + "description": "", + "full_message": "fix: css", + "author": "ThisIs-Developer", + "date": "2024-04-13T04:20:11Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/65401c5ae6ed5ebc6c640e5e8d2167e488b648a2", + "version": "v0.3.11" + }, + { + "commit_number": 28, + "sha": "3f56965c7afb9a9335366495ddb545cb5c896a33", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2024-04-12T15:27:39Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3f56965c7afb9a9335366495ddb545cb5c896a33", + "version": "v0.3.10" + }, + { + "commit_number": 27, + "sha": "26062cee8f05914519c6c83d72de93f5290ea0d1", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2024-04-12T15:21:41Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/26062cee8f05914519c6c83d72de93f5290ea0d1", + "version": "v0.3.9" + }, + { + "commit_number": 26, + "sha": "1a0cb55e9310ed3acd858e85dfd8fb8c6995fe2f", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2024-04-12T15:20:49Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1a0cb55e9310ed3acd858e85dfd8fb8c6995fe2f", + "version": "v0.3.8" + }, + { + "commit_number": 25, + "sha": "faf12c3723f61ae148c644c4164b845b1dd517f0", + "title": "Update LICENSE", + "description": "", + "full_message": "Update LICENSE", + "author": "Baivab Sarkar", + "date": "2024-04-12T15:19:06Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/faf12c3723f61ae148c644c4164b845b1dd517f0", + "version": "v0.3.7" + }, + { + "commit_number": 24, + "sha": "2e8a1ce98b2c5e7362e81a35f777c744cb8691ac", + "title": "add tooltip@media1200px", + "description": "", + "full_message": "add tooltip@media1200px", + "author": "ThisIs-Developer", + "date": "2024-04-12T15:10:37Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2e8a1ce98b2c5e7362e81a35f777c744cb8691ac", + "version": "v0.3.6" + }, + { + "commit_number": 23, + "sha": "b370daac7b1ca68ad75fdeb27525c1a1e116e518", + "title": "fix: css", + "description": "", + "full_message": "fix: css", + "author": "ThisIs-Developer", + "date": "2024-04-12T12:53:18Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b370daac7b1ca68ad75fdeb27525c1a1e116e518", + "version": "v0.3.5" + }, + { + "commit_number": 22, + "sha": "10b87b5cd6de5c8ecc8cb30bb0ad7e8f37dbe6ca", + "title": "add more btn/tooltips", + "description": "", + "full_message": "add more btn/tooltips", + "author": "ThisIs-Developer", + "date": "2024-04-12T10:29:17Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/10b87b5cd6de5c8ecc8cb30bb0ad7e8f37dbe6ca", + "version": "v0.3.4" + }, + { + "commit_number": 21, + "sha": "4bef4bda95890d5ff696b11915f828993aab40b4", + "title": "fix: spelling", + "description": "", + "full_message": "fix: spelling", + "author": "ThisIs-Developer", + "date": "2024-04-12T08:43:42Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4bef4bda95890d5ff696b11915f828993aab40b4", + "version": "v0.3.3" + }, + { + "commit_number": 20, + "sha": "b60b9020912e81d8c00551de19155ab5e47a7f57", + "title": "Add Reading-stats", + "description": "", + "full_message": "Add Reading-stats", + "author": "ThisIs-Developer", + "date": "2024-04-12T08:23:40Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b60b9020912e81d8c00551de19155ab5e47a7f57", + "version": "v0.3.2" + }, + { + "commit_number": 19, + "sha": "eceb56e475549d9582aef3a25ed18b403b93735a", + "title": "Merge branch 'main' of https://github.com/ThisIs-Developer/Markdown-Viwer", + "description": "", + "full_message": "Merge branch 'main' of https://github.com/ThisIs-Developer/Markdown-Viwer", + "author": "ThisIs-Developer", + "date": "2024-04-11T21:41:38Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eceb56e475549d9582aef3a25ed18b403b93735a", + "version": "v0.3.1" + }, + { + "commit_number": 18, + "sha": "ec5318df41778f9d2900312b9763814f2c49e498", + "title": "Add Tips/MediaQuray updated", + "description": "", + "full_message": "Add Tips/MediaQuray updated", + "author": "ThisIs-Developer", + "date": "2024-04-11T21:41:28Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ec5318df41778f9d2900312b9763814f2c49e498", + "version": "v0.3.0" + }, + { + "commit_number": 17, + "sha": "3d4a95e4dc081f628d56e57b0db7c717b28438a5", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2024-04-10T06:15:09Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3d4a95e4dc081f628d56e57b0db7c717b28438a5", + "version": "v0.2.8" + }, + { + "commit_number": 16, + "sha": "b4e4ed48417a8d9c5b3d0962e7af46f30a691b0c", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2024-04-10T06:09:18Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b4e4ed48417a8d9c5b3d0962e7af46f30a691b0c", + "version": "v0.2.7" + }, + { + "commit_number": 15, + "sha": "55c7b96cfd76ec0c8f31dbed203f25dbbc7af594", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2024-04-10T06:06:51Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/55c7b96cfd76ec0c8f31dbed203f25dbbc7af594", + "version": "v0.2.6" + }, + { + "commit_number": 14, + "sha": "bd4e8cf41696e91ea807671a43c78c58a958f1df", + "title": "Update README.md", + "description": "", + "full_message": "Update README.md", + "author": "Baivab Sarkar", + "date": "2024-04-09T20:31:05Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/bd4e8cf41696e91ea807671a43c78c58a958f1df", + "version": "v0.2.5" + }, + { + "commit_number": 13, + "sha": "7cd66bad4778f65c6932a8089bdb6a7072b28d83", + "title": "updated css", + "description": "", + "full_message": "updated css", + "author": "ThisIs-Developer", + "date": "2024-04-09T20:04:23Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7cd66bad4778f65c6932a8089bdb6a7072b28d83", + "version": "v0.2.4" + }, + { + "commit_number": 12, + "sha": "1b19bc664c2968ea217d2dbd6e8de8b91ab5a2b0", + "title": "updated css", + "description": "", + "full_message": "updated css", + "author": "ThisIs-Developer", + "date": "2024-04-09T19:59:16Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1b19bc664c2968ea217d2dbd6e8de8b91ab5a2b0", + "version": "v0.2.3" + }, + { + "commit_number": 11, + "sha": "bfd248c48044ccd4beae4977fc1e00d00bd9058f", + "title": "remove unused js", + "description": "", + "full_message": "remove unused js", + "author": "ThisIs-Developer", + "date": "2024-04-09T19:47:10Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/bfd248c48044ccd4beae4977fc1e00d00bd9058f", + "version": "v0.2.2" + }, + { + "commit_number": 10, + "sha": "dd9548dcc76f64a9315143ee0d18b18315f566a9", + "title": "Add import", + "description": "", + "full_message": "Add import", + "author": "ThisIs-Developer", + "date": "2024-04-09T19:31:57Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/dd9548dcc76f64a9315143ee0d18b18315f566a9", + "version": "v0.2.1" + }, + { + "commit_number": 9, + "sha": "3d6ff67f8fc0d52f35cb9e6a98cc3f197073356a", + "title": "Add preview", + "description": "", + "full_message": "Add preview", + "author": "ThisIs-Developer", + "date": "2024-04-09T17:43:58Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3d6ff67f8fc0d52f35cb9e6a98cc3f197073356a", + "version": "v0.2.0" + }, + { + "commit_number": 8, + "sha": "801f830768cee83ab70ead1882f78486edba05b9", + "title": "Colour", + "description": "", + "full_message": "Colour", + "author": "ThisIs-Developer", + "date": "2024-04-09T16:35:44Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/801f830768cee83ab70ead1882f78486edba05b9", + "version": "v0.1.7" + }, + { + "commit_number": 7, + "sha": "29578f1fd0da242572d64a9daded27023516387e", + "title": "fix: layout boarder", + "description": "", + "full_message": "fix: layout boarder", + "author": "ThisIs-Developer", + "date": "2024-04-09T16:03:06Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/29578f1fd0da242572d64a9daded27023516387e", + "version": "v0.1.6" + }, + { + "commit_number": 6, + "sha": "9fad69c959aa64d56396c5948a8f2f5f34af5b11", + "title": "fix: layout/add logo-nav", + "description": "", + "full_message": "fix: layout/add logo-nav", + "author": "ThisIs-Developer", + "date": "2024-04-09T15:55:34Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9fad69c959aa64d56396c5948a8f2f5f34af5b11", + "version": "v0.1.5" + }, + { + "commit_number": 5, + "sha": "42db836fc05cda88edd52668fa8f7f6b90ad955a", + "title": "fix: layout(navbar/media", + "description": "", + "full_message": "fix: layout(navbar/media", + "author": "ThisIs-Developer", + "date": "2024-04-09T15:05:19Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/42db836fc05cda88edd52668fa8f7f6b90ad955a", + "version": "v0.1.4" + }, + { + "commit_number": 4, + "sha": "ecf02617c6d244e2dddac170f0c5550e3e8dc7e1", + "title": "Updated layout", + "description": "", + "full_message": "Updated layout", + "author": "ThisIs-Developer", + "date": "2024-04-08T22:10:46Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ecf02617c6d244e2dddac170f0c5550e3e8dc7e1", + "version": "v0.1.3" + }, + { + "commit_number": 3, + "sha": "37a3ef0e31900f24a71d323733496db5621b9464", + "title": "add nav@export(all)", + "description": "", + "full_message": "add nav@export(all)", + "author": "ThisIs-Developer", + "date": "2024-04-08T20:32:56Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/37a3ef0e31900f24a71d323733496db5621b9464", + "version": "v0.1.2" + }, + { + "commit_number": 2, + "sha": "2b37ae90bb8e60418469b806cfc3b67ad9ff2059", + "title": "add markdown page", + "description": "", + "full_message": "add markdown page", + "author": "ThisIs-Developer", + "date": "2024-04-08T18:24:17Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2b37ae90bb8e60418469b806cfc3b67ad9ff2059", + "version": "v0.1.1" + }, + { + "commit_number": 1, + "sha": "5d34b992c1d8c4ad4dfd3cf79b5a627f28a163b1", + "title": "Initial commit", + "description": "", + "full_message": "Initial commit", + "author": "Baivab Sarkar", + "date": "2024-04-08T18:18:31Z", + "url": "https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5d34b992c1d8c4ad4dfd3cf79b5a627f28a163b1", + "version": "v0.1.0" + } +] \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..32c92d7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5725 @@ +# Markdown Viewer - Release History + +## v3.5.3 — Commit #272 + +**Title:** Merge pull request #96 from ThisIs-Developer/devin/update-skills-1778217232 + +**Description:** Add testing skill for Markdown Viewer UI features + +**Author:** Baivab Sarkar +**Date:** 2026-05-08T05:15:27Z +**SHA:** `32489532e60d2b6e0b27b58d1d25b3c95b509701` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/32489532e60d2b6e0b27b58d1d25b3c95b509701 + +### Full Message + +``` +Merge pull request #96 from ThisIs-Developer/devin/update-skills-1778217232 + +Add testing skill for Markdown Viewer UI features +``` + +--- + +## v3.5.2 — Commit #271 + +**Title:** Merge pull request #95 from ThisIs-Developer/devin/1778216070-rtl-ltr-toggle-reposition + +**Description:** UI Update: RTL/LTR Toggle Reposition & Behavior Improvement + +**Author:** Baivab Sarkar +**Date:** 2026-05-08T05:14:31Z +**SHA:** `121ceef5a06fb9b359185c95090da7b0c4b8146a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/121ceef5a06fb9b359185c95090da7b0c4b8146a + +### Full Message + +``` +Merge pull request #95 from ThisIs-Developer/devin/1778216070-rtl-ltr-toggle-reposition + +UI Update: RTL/LTR Toggle Reposition & Behavior Improvement +``` + +--- + +## v3.5.1 — Commit #270 + +**Title:** Add testing skill for Markdown Viewer UI features + +**Description:** Co-authored-by: Baivab Sarkar + +**Author:** devin-ai-integration[bot] +**Date:** 2026-05-08T05:13:53Z +**SHA:** `25b5d20d414d02343ea65c2df67b92ecbecfbc4b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/25b5d20d414d02343ea65c2df67b92ecbecfbc4b + +### Full Message + +``` +Add testing skill for Markdown Viewer UI features + +Co-authored-by: Baivab Sarkar +``` + +--- + +## v3.5.0 — Commit #269 + +**Title:** Reposition RTL/LTR toggle next to Align Right, show L/R label, scope to editor/preview only + +**Description:** - Move direction toggle from header toolbar to markdown formatting toolbar, + placed directly after the Align Right button +- Change toggle display from icon to text: L (LTR mode) / R (RTL mode) +- Scope direction changes to only editor textarea and preview area, + no longer affects full document/toolbar/sidebar/modals +- Update mobile direction toggle to use the same scoped behavior + +Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> + +**Author:** Baivab Sarkar +**Date:** 2026-05-08T04:55:05Z +**SHA:** `32a0a3e08d1b2c4833cc249ada28e6e12195bcac` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/32a0a3e08d1b2c4833cc249ada28e6e12195bcac + +### Full Message + +``` +Reposition RTL/LTR toggle next to Align Right, show L/R label, scope to editor/preview only + +- Move direction toggle from header toolbar to markdown formatting toolbar, + placed directly after the Align Right button +- Change toggle display from icon to text: L (LTR mode) / R (RTL mode) +- Scope direction changes to only editor textarea and preview area, + no longer affects full document/toolbar/sidebar/modals +- Update mobile direction toggle to use the same scoped behavior + +Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> +``` + +--- + +## v3.4.13 — Commit #268 + +**Title:** Update Features.md to include new features and enhancements + +**Author:** Baivab Sarkar +**Date:** 2026-05-07T17:38:10Z +**SHA:** `31049a959da73c0219d57337237e89c7f6725ecb` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/31049a959da73c0219d57337237e89c7f6725ecb + +### Full Message + +``` +Update Features.md to include new features and enhancements +``` + +--- + +## v3.4.12 — Commit #267 + +**Title:** Merge pull request #94 from ThisIs-Developer/copilot/add-text-alignment-buttons + +**Description:** Add alignment toolbar actions and improve GitHub alert rendering + +**Author:** Baivab Sarkar +**Date:** 2026-05-07T15:34:47Z +**SHA:** `d2071b33f1bac39b5d8a0df532909ec3b3b8cc3a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d2071b33f1bac39b5d8a0df532909ec3b3b8cc3a + +### Full Message + +``` +Merge pull request #94 from ThisIs-Developer/copilot/add-text-alignment-buttons + +Add alignment toolbar actions and improve GitHub alert rendering +``` + +--- + +## v3.4.11 — Commit #266 + +**Title:** Changes before error encountered + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/88a5307e-325a-435a-855b-dd5a948a20da + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T15:08:35Z +**SHA:** `e40ee3e46f085917ac8374f553e1bad780b4b936` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e40ee3e46f085917ac8374f553e1bad780b4b936 + +### Full Message + +``` +Changes before error encountered + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/88a5307e-325a-435a-855b-dd5a948a20da + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.10 — Commit #265 + +**Title:** Skip alignment insert on invalid values + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T10:17:24Z +**SHA:** `85e5d364f3472147a4afdbc2c43d349f35465674` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/85e5d364f3472147a4afdbc2c43d349f35465674 + +### Full Message + +``` +Skip alignment insert on invalid values + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.9 — Commit #264 + +**Title:** Warn on unexpected alignment values + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T10:15:38Z +**SHA:** `3268d7d333ef41e458996244ea0672bfd37b3b11` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3268d7d333ef41e458996244ea0672bfd37b3b11 + +### Full Message + +``` +Warn on unexpected alignment values + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.8 — Commit #263 + +**Title:** Rename GitHub alert marker regex + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T10:13:38Z +**SHA:** `dd0d1148c57f37816f8ce7078307ba63981aba7d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/dd0d1148c57f37816f8ce7078307ba63981aba7d + +### Full Message + +``` +Rename GitHub alert marker regex + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.7 — Commit #262 + +**Title:** Tighten alert marker matching + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T10:11:42Z +**SHA:** `c3c9dc54a58c3d8e2e61b9ff653bb611b2931b87` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c3c9dc54a58c3d8e2e61b9ff653bb611b2931b87 + +### Full Message + +``` +Tighten alert marker matching + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.6 — Commit #261 + +**Title:** Harden alignment insertion and rename alert regex + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T10:08:53Z +**SHA:** `61e994ee4cc14650ffc46e7dac4334547ac1b757` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/61e994ee4cc14650ffc46e7dac4334547ac1b757 + +### Full Message + +``` +Harden alignment insertion and rename alert regex + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.5 — Commit #260 + +**Title:** Add alignment tools and alert parsing fixes + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T10:06:47Z +**SHA:** `deb480d8a4d0ff72b52d97522b913abdde96e86e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/deb480d8a4d0ff72b52d97522b913abdde96e86e + +### Full Message + +``` +Add alignment tools and alert parsing fixes + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/c205950e-47bd-47bc-9aa5-ca82ae2d8136 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.4 — Commit #259 + +**Title:** Merge pull request #93 from ThisIs-Developer/copilot/add-persistent-line-numbers-editor + +**Description:** Fix preview line breaks and add wrap-aware editor line numbers + +**Author:** Baivab Sarkar +**Date:** 2026-05-07T09:41:22Z +**SHA:** `d53a414c4e3776f975d147372d4482792641f6b7` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d53a414c4e3776f975d147372d4482792641f6b7 + +### Full Message + +``` +Merge pull request #93 from ThisIs-Developer/copilot/add-persistent-line-numbers-editor + +Fix preview line breaks and add wrap-aware editor line numbers +``` + +--- + +## v3.4.3 — Commit #258 + +**Title:** Optimize line number updates + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T09:37:01Z +**SHA:** `ab3839f119cbd75da7d22473a49c77b600ae139f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ab3839f119cbd75da7d22473a49c77b600ae139f + +### Full Message + +``` +Optimize line number updates + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.2 — Commit #257 + +**Title:** Remove redundant line number width update + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T09:34:05Z +**SHA:** `0d85b187c96efc56a5fa41bdf99f2b5a11717ae4` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0d85b187c96efc56a5fa41bdf99f2b5a11717ae4 + +### Full Message + +``` +Remove redundant line number width update + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.1 — Commit #256 + +**Title:** Clarify line number constants + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T09:32:04Z +**SHA:** `4ec2f29ef0cc60ca178055f3a7229944d83237df` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4ec2f29ef0cc60ca178055f3a7229944d83237df + +### Full Message + +``` +Clarify line number constants + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.4.0 — Commit #255 + +**Title:** Fix preview line breaks and add editor line numbers + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T09:29:52Z +**SHA:** `4224079bd3c332b0eae0fc7fead05b4dc9b27d94` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4224079bd3c332b0eae0fc7fead05b4dc9b27d94 + +### Full Message + +``` +Fix preview line breaks and add editor line numbers + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00696684-c211-4305-9b33-1638d9f49bdb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.13 — Commit #254 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2026-05-07T05:03:35Z +**SHA:** `e1dc6f6c2817bcb803e1b9275f32b086aeebaa84` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e1dc6f6c2817bcb803e1b9275f32b086aeebaa84 + +### Full Message + +``` +Update README.md +``` + +--- + +## v3.3.12 — Commit #253 + +**Title:** Merge pull request #90 from ThisIs-Developer/copilot/toolbar-view-system-ui-update + +**Description:** Updating toolbar and view system for improved UI + +**Author:** Baivab Sarkar +**Date:** 2026-05-07T04:34:27Z +**SHA:** `a525ffe149f8eb64c5c2729213e00084854016b5` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a525ffe149f8eb64c5c2729213e00084854016b5 + +### Full Message + +``` +Merge pull request #90 from ThisIs-Developer/copilot/toolbar-view-system-ui-update + +Updating toolbar and view system for improved UI +``` + +--- + +## v3.3.11 — Commit #252 + +**Title:** Keep sync toggle visible across modes + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/a00bb011-4552-4d75-a3d5-34a6ae5bf099 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T04:26:58Z +**SHA:** `d0ce2c119c51e1dfa42c4314701d58a8bbd56c3c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d0ce2c119c51e1dfa42c4314701d58a8bbd56c3c + +### Full Message + +``` +Keep sync toggle visible across modes + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/a00bb011-4552-4d75-a3d5-34a6ae5bf099 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.10 — Commit #251 + +**Title:** Sync desktop resources + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0fa74dcb-7602-4367-9e4c-962c09b06b1d + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-07T03:22:39Z +**SHA:** `4c51778ce8efac260f7cb72624e67c5ea1d88c90` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4c51778ce8efac260f7cb72624e67c5ea1d88c90 + +### Full Message + +``` +Sync desktop resources + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0fa74dcb-7602-4367-9e4c-962c09b06b1d + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.9 — Commit #250 + +**Title:** Changes before error encountered + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T20:12:37Z +**SHA:** `a14a91969f950fba8dc55776d6822b0403522015` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a14a91969f950fba8dc55776d6822b0403522015 + +### Full Message + +``` +Changes before error encountered + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.8 — Commit #249 + +**Title:** Simplify find match indexing + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T20:07:03Z +**SHA:** `5d26c77f14a6fe4e1bc5c669fc95934d74e6d6c4` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5d26c77f14a6fe4e1bc5c669fc95934d74e6d6c4 + +### Full Message + +``` +Simplify find match indexing + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.7 — Commit #248 + +**Title:** Refine view toggle and version wiring + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T20:06:02Z +**SHA:** `2dc31c8b5a46cad3d74aef7f29d0e8e4bfaa4b41` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2dc31c8b5a46cad3d74aef7f29d0e8e4bfaa4b41 + +### Full Message + +``` +Refine view toggle and version wiring + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.6 — Commit #247 + +**Title:** Harden render error handling and find navigation + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T20:04:14Z +**SHA:** `faa7078ff9a9a8d814ac0a82fdde6485e52d367a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/faa7078ff9a9a8d814ac0a82fdde6485e52d367a + +### Full Message + +``` +Harden render error handling and find navigation + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.5 — Commit #246 + +**Title:** Implement toolbar view and modal updates + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T20:02:46Z +**SHA:** `0b37a2cdacd261be47767bb8c935c7ef5509b033` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0b37a2cdacd261be47767bb8c935c7ef5509b033 + +### Full Message + +``` +Implement toolbar view and modal updates + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1d1f0d43-2348-47f2-9f50-dfd73674eda0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.4 — Commit #245 + +**Title:** Merge pull request #89 from ThisIs-Developer/copilot/fix-emoji-rendering-in-markdown + +**Description:** Render GitHub emoji shortcodes missing from JoyPixels + +**Author:** Baivab Sarkar +**Date:** 2026-05-06T09:49:44Z +**SHA:** `ad2ea3e3b84c3ee452f1aa8233604fdac15a76ae` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ad2ea3e3b84c3ee452f1aa8233604fdac15a76ae + +### Full Message + +``` +Merge pull request #89 from ThisIs-Developer/copilot/fix-emoji-rendering-in-markdown + +Render GitHub emoji shortcodes missing from JoyPixels +``` + +--- + +## v3.3.3 — Commit #244 + +**Title:** Handle emoji lookup retries + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f228e998-7f39-496e-b4f1-ebb2774c3c69 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T09:24:49Z +**SHA:** `560884e74302a1b8876f6056fce1369111808ec8` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/560884e74302a1b8876f6056fce1369111808ec8 + +### Full Message + +``` +Handle emoji lookup retries + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f228e998-7f39-496e-b4f1-ebb2774c3c69 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.2 — Commit #243 + +**Title:** Fix emoji shortcode rendering + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f228e998-7f39-496e-b4f1-ebb2774c3c69 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T09:22:21Z +**SHA:** `4a56585697555d150621a43f2cef4fb69f7e545e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4a56585697555d150621a43f2cef4fb69f7e545e + +### Full Message + +``` +Fix emoji shortcode rendering + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f228e998-7f39-496e-b4f1-ebb2774c3c69 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.3.1 — Commit #242 + +**Title:** Merge pull request #88 from ThisIs-Developer/copilot/enhance-table-popup-emoji-picker + +**Description:** Enhancing table insert functionality and emoji picker + +**Author:** Baivab Sarkar +**Date:** 2026-05-06T06:19:57Z +**SHA:** `4a18e3fc80613cedbe334c27fb5fed129e18226f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4a18e3fc80613cedbe334c27fb5fed129e18226f + +### Full Message + +``` +Merge pull request #88 from ThisIs-Developer/copilot/enhance-table-popup-emoji-picker + +Enhancing table insert functionality and emoji picker +``` + +--- + +## v3.3.0 — Commit #241 + +**Title:** Add toolbar modals for table, emoji, symbols, alerts + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/46127c68-a2c8-474f-8823-adc1b7c8a25e + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T05:56:49Z +**SHA:** `b2da4d63485b279505ac35e05577ba14aa78c385` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b2da4d63485b279505ac35e05577ba14aa78c385 + +### Full Message + +``` +Add toolbar modals for table, emoji, symbols, alerts + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/46127c68-a2c8-474f-8823-adc1b7c8a25e + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.12 — Commit #240 + +**Title:** Merge pull request #87 from ThisIs-Developer/copilot/fix-reference-btn-icon-and-width + +**Description:** Render reference links as superscripts and widen link/image/reference modals + +**Author:** Baivab Sarkar +**Date:** 2026-05-06T03:28:57Z +**SHA:** `a6c1909f8657d196e1304a0c4a843c723cf75bba` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a6c1909f8657d196e1304a0c4a843c723cf75bba + +### Full Message + +``` +Merge pull request #87 from ThisIs-Developer/copilot/fix-reference-btn-icon-and-width + +Render reference links as superscripts and widen link/image/reference modals +``` + +--- + +## v3.2.11 — Commit #239 + +**Title:** Validate reference URLs before linking + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T03:20:52Z +**SHA:** `c367455edbbcad95dc03c96ccdfad462da17e73e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c367455edbbcad95dc03c96ccdfad462da17e73e + +### Full Message + +``` +Validate reference URLs before linking + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.10 — Commit #238 + +**Title:** Simplify reference link matching + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T03:19:43Z +**SHA:** `9dc506605e77728b6fb8678745ef531821f4864b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9dc506605e77728b6fb8678745ef531821f4864b + +### Full Message + +``` +Simplify reference link matching + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.9 — Commit #237 + +**Title:** Document reference definition regex + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T03:18:32Z +**SHA:** `c1f47a750ad4bca6b66a19daa5fa232e0d24ab0b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c1f47a750ad4bca6b66a19daa5fa232e0d24ab0b + +### Full Message + +``` +Document reference definition regex + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.8 — Commit #236 + +**Title:** Sort reference tokens numerically + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T03:17:29Z +**SHA:** `09e3d5b6f8a39cdd79f7265f1d9e49e0a4fd406a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/09e3d5b6f8a39cdd79f7265f1d9e49e0a4fd406a + +### Full Message + +``` +Sort reference tokens numerically + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.7 — Commit #235 + +**Title:** Fix reference definition parsing + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T03:16:22Z +**SHA:** `4ad4123dd199f01ec2d0ea21260fe1526ca3ae6d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4ad4123dd199f01ec2d0ea21260fe1526ca3ae6d + +### Full Message + +``` +Fix reference definition parsing + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.6 — Commit #234 + +**Title:** Update reference previews and modal widths + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-06T03:15:08Z +**SHA:** `7d35f9163c410467ffc0656a781f9b4c0bfb225d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7d35f9163c410467ffc0656a781f9b4c0bfb225d + +### Full Message + +``` +Update reference previews and modal widths + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/99943a44-4124-43de-bc07-de65731f16a0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.5 — Commit #233 + +**Title:** Merge pull request #86 from ThisIs-Developer/copilot/update-link-reference-image-button-modal + +**Description:** Modal-based link/reference/image insertion with consistent UX + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T18:47:33Z +**SHA:** `80fe0b862cad7bde342389fa2c1cca688c3edc65` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/80fe0b862cad7bde342389fa2c1cca688c3edc65 + +### Full Message + +``` +Merge pull request #86 from ThisIs-Developer/copilot/update-link-reference-image-button-modal + +Modal-based link/reference/image insertion with consistent UX +``` + +--- + +## v3.2.4 — Commit #232 + +**Title:** Tighten reference icon and preview handling + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0b1640e1-7932-428f-8aa1-ded4211f4d36 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-05T17:51:35Z +**SHA:** `c3d3980100dfc31c75dcaf32107370ae62c6e936` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c3d3980100dfc31c75dcaf32107370ae62c6e936 + +### Full Message + +``` +Tighten reference icon and preview handling + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0b1640e1-7932-428f-8aa1-ded4211f4d36 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.3 — Commit #231 + +**Title:** Refine reference previews and image uploads + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0b1640e1-7932-428f-8aa1-ded4211f4d36 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-05T17:49:19Z +**SHA:** `6d03e43c94951fd3edd18dc7f1e152fce61f9c9f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6d03e43c94951fd3edd18dc7f1e152fce61f9c9f + +### Full Message + +``` +Refine reference previews and image uploads + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/0b1640e1-7932-428f-8aa1-ded4211f4d36 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.2 — Commit #230 + +**Title:** Refine reference detection and labels + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-05T17:24:36Z +**SHA:** `a67552b795884845483cbf0de8eb15d5c4e1a35c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a67552b795884845483cbf0de8eb15d5c4e1a35c + +### Full Message + +``` +Refine reference detection and labels + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.1 — Commit #229 + +**Title:** Sanitize modal title inputs + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-05T17:22:26Z +**SHA:** `eba538de43050123d859fe23302be61bcd791bca` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eba538de43050123d859fe23302be61bcd791bca + +### Full Message + +``` +Sanitize modal title inputs + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.2.0 — Commit #228 + +**Title:** Add modal UI for link, reference, and image tools + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-05T17:20:22Z +**SHA:** `47ed137be382dab3a34a8efe89ab446229216b1f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/47ed137be382dab3a34a8efe89ab446229216b1f + +### Full Message + +``` +Add modal UI for link, reference, and image tools + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b2788a61-05c8-4f0f-a5d0-8ecd315db97a + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.1.5 — Commit #227 + +**Title:** feat: implement list handling features for Markdown editor + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T16:48:10Z +**SHA:** `3499907ccef58c978f59e9854bb3a8f20bcc9587` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3499907ccef58c978f59e9854bb3a8f20bcc9587 + +### Full Message + +``` +feat: implement list handling features for Markdown editor +``` + +--- + +## v3.1.4 — Commit #226 + +**Title:** feat: add Markdown formatting toolbar with various editing options and styles + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T15:23:16Z +**SHA:** `6c370ea69e82aed37743a835c1bd8c26081e2ef5` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6c370ea69e82aed37743a835c1bd8c26081e2ef5 + +### Full Message + +``` +feat: add Markdown formatting toolbar with various editing options and styles +``` + +--- + +## v3.1.3 — Commit #225 + +**Title:** feat: add Markdown formatting toolbar with various editing options + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T15:22:45Z +**SHA:** `42b31e4c847d3b13b772185d09105206823f8862` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/42b31e4c847d3b13b772185d09105206823f8862 + +### Full Message + +``` +feat: add Markdown formatting toolbar with various editing options +``` + +--- + +## v3.1.2 — Commit #224 + +**Title:** style: refine button and header dimensions for improved layout consistency + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T14:56:22Z +**SHA:** `f6eb342e940d4f953038606dd9d1b1cb75e16cf8` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f6eb342e940d4f953038606dd9d1b1cb75e16cf8 + +### Full Message + +``` +style: refine button and header dimensions for improved layout consistency +``` + +--- + +## v3.1.1 — Commit #223 + +**Title:** feat: enhance dropdown menu items with icons for import and export actions + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T14:41:16Z +**SHA:** `4b4fa9f22d607eb49719b3adaf94a43c6f3d383b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4b4fa9f22d607eb49719b3adaf94a43c6f3d383b + +### Full Message + +``` +feat: enhance dropdown menu items with icons for import and export actions +``` + +--- + +## v3.1.0 — Commit #222 + +**Title:** feat: implement tab action menu with dropdown for rename, duplicate, and delete actions + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T14:08:42Z +**SHA:** `80bbdcc35e8d464110c2e764b074f0f1248d6cb4` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/80bbdcc35e8d464110c2e764b074f0f1248d6cb4 + +### Full Message + +``` +feat: implement tab action menu with dropdown for rename, duplicate, and delete actions +``` + +--- + +## v3.0.4 — Commit #221 + +**Title:** Enhance links with target and rel attributes + +**Description:** Updated links in README.md to open in new tab with noreferrer. + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T11:59:55Z +**SHA:** `a92b9ed62e561995d8ef05f86bdc44e033f280c2` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a92b9ed62e561995d8ef05f86bdc44e033f280c2 + +### Full Message + +``` +Enhance links with target and rel attributes + +Updated links in README.md to open in new tab with noreferrer. +``` + +--- + +## v3.0.3 — Commit #220 + +**Title:** Update badge links in README.md + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T11:38:27Z +**SHA:** `941a2baf37c641f9334531e14dd7f5345c90df02` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/941a2baf37c641f9334531e14dd7f5345c90df02 + +### Full Message + +``` +Update badge links in README.md +``` + +--- + +## v3.0.2 — Commit #219 + +**Title:** Merge pull request #82 from ThisIs-Developer/copilot/remove-navbar-and-improve-space-management + +**Description:** Remove dropzone banner; make full window the drag-and-drop target + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T05:40:52Z +**SHA:** `444d6a1bff1a0492eceaf6c85d049f8a7c2d32dc` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/444d6a1bff1a0492eceaf6c85d049f8a7c2d32dc + +### Full Message + +``` +Merge pull request #82 from ThisIs-Developer/copilot/remove-navbar-and-improve-space-management + +Remove dropzone banner; make full window the drag-and-drop target +``` + +--- + +## v3.0.1 — Commit #218 + +**Title:** fix: guard dragleave handler against non-file drag events to prevent depth counter desync + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/32f3ea84-25cb-422a-8e8f-941055bdd220 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-05T05:28:17Z +**SHA:** `c7cfdd61b3ceda8333f21f28de383b2b42ef4f90` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c7cfdd61b3ceda8333f21f28de383b2b42ef4f90 + +### Full Message + +``` +fix: guard dragleave handler against non-file drag events to prevent depth counter desync + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/32f3ea84-25cb-422a-8e8f-941055bdd220 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v3.0.0 — Commit #217 + +**Title:** feat: replace dedicated dropzone banner with full-window drag-and-drop overlay and subtle editor hint + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/32f3ea84-25cb-422a-8e8f-941055bdd220 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-05T05:27:32Z +**SHA:** `9d1904e3649ac1d838196a105c0482bb1f044ab2` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9d1904e3649ac1d838196a105c0482bb1f044ab2 + +### Full Message + +``` +feat: replace dedicated dropzone banner with full-window drag-and-drop overlay and subtle editor hint + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/32f3ea84-25cb-422a-8e8f-941055bdd220 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.9.9 — Commit #216 + +**Title:** Merge pull request #81 from ThisIs-Developer/copilot/fix-stats-container-visibility + +**Description:** fix: show .stats-container across all viewport widths ≥768px + +**Author:** Baivab Sarkar +**Date:** 2026-05-05T04:07:46Z +**SHA:** `9ab3f4f2d5ba7b3a74b935fee46311eb64886928` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9ab3f4f2d5ba7b3a74b935fee46311eb64886928 + +### Full Message + +``` +Merge pull request #81 from ThisIs-Developer/copilot/fix-stats-container-visibility + +fix: show .stats-container across all viewport widths ≥768px +``` + +--- + +## v2.9.8 — Commit #215 + +**Title:** fix: consolidate navbar media queries to fix Bootstrap breakpoint conflict + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/885bd598-8a4f-4fe8-925d-b7b91082f7c6 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-05T04:05:57Z +**SHA:** `63a053eaab970a8c01e45e48b7baf743852a4061` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/63a053eaab970a8c01e45e48b7baf743852a4061 + +### Full Message + +``` +fix: consolidate navbar media queries to fix Bootstrap breakpoint conflict + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/885bd598-8a4f-4fe8-925d-b7b91082f7c6 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.9.7 — Commit #214 + +**Title:** fix: show stats-container in 768px–991px viewport range + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/e7db951b-fe40-43c2-bd0d-b04dcf479266 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-04T19:20:40Z +**SHA:** `77abb998715749784e725e652f7b474e9551198f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/77abb998715749784e725e652f7b474e9551198f + +### Full Message + +``` +fix: show stats-container in 768px–991px viewport range + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/e7db951b-fe40-43c2-bd0d-b04dcf479266 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.9.6 — Commit #213 + +**Title:** Merge pull request #78 from ThisIs-Developer/copilot/fix-view-mode-controls-overflow + +**Description:** Fix toolbar overflow — icon-only buttons and no-wrap header layout + +**Author:** Baivab Sarkar +**Date:** 2026-05-04T12:42:45Z +**SHA:** `a0505287061f3721d7e7153a056fb720b8319f7b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a0505287061f3721d7e7153a056fb720b8319f7b + +### Full Message + +``` +Merge pull request #78 from ThisIs-Developer/copilot/fix-view-mode-controls-overflow + +Fix toolbar overflow — icon-only buttons and no-wrap header layout +``` + +--- + +## v2.9.5 — Commit #212 + +**Title:** fix: prevent header left/right sections from wrapping (flex: 1 0 auto + white-space: nowrap) + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1211a95d-2e79-4609-bacb-b1dfb830747f + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-04T12:26:36Z +**SHA:** `f5f55d69b4a03706e86cca6c17f113e416bb1cec` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f5f55d69b4a03706e86cca6c17f113e416bb1cec + +### Full Message + +``` +fix: prevent header left/right sections from wrapping (flex: 1 0 auto + white-space: nowrap) + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1211a95d-2e79-4609-bacb-b1dfb830747f + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.9.4 — Commit #211 + +**Title:** feat: restore bordered icon-only toolbar buttons matching reference screenshot + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/5180bf21-1fab-43f3-b005-cd39b588cc92 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-04T12:20:08Z +**SHA:** `662c4ccaf308c0a1e997c5255979961a36678cfd` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/662c4ccaf308c0a1e997c5255979961a36678cfd + +### Full Message + +``` +feat: restore bordered icon-only toolbar buttons matching reference screenshot + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/5180bf21-1fab-43f3-b005-cd39b588cc92 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.9.3 — Commit #210 + +**Title:** feat: icon-only toolbar buttons styled like stats-container, centered view-mode group + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/4d48d269-e1f8-4446-926b-376d011e1a89 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-04T12:09:10Z +**SHA:** `07c78f513034bdd06cda7645297e64c4d7d4c8e4` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/07c78f513034bdd06cda7645297e64c4d7d4c8e4 + +### Full Message + +``` +feat: icon-only toolbar buttons styled like stats-container, centered view-mode group + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/4d48d269-e1f8-4446-926b-376d011e1a89 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.9.2 — Commit #209 + +**Title:** fix: center view-mode-group with flex:1 for proper three-column header + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/9aec1d3e-5fb8-46c5-80be-006dc659d05d + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-04T04:46:49Z +**SHA:** `0d5d21ca28f16776431bb6ae85b7c7152e69d13c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0d5d21ca28f16776431bb6ae85b7c7152e69d13c + +### Full Message + +``` +fix: center view-mode-group with flex:1 for proper three-column header + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/9aec1d3e-5fb8-46c5-80be-006dc659d05d + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.9.1 — Commit #208 + +**Title:** Changes before error encountered + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7306ffbb-b358-4269-a33c-022f114bf692 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-03T17:05:35Z +**SHA:** `8d61630cbacb589afbc8c97116a50c1b8b398dfd` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8d61630cbacb589afbc8c97116a50c1b8b398dfd + +### Full Message + +``` +Changes before error encountered + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7306ffbb-b358-4269-a33c-022f114bf692 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.9.0 — Commit #207 + +**Title:** Fix toolbar overflow at medium viewport widths (768-1079px) + +**Description:** - Wrap toolbar button text in in both index.html files +- At <=1079px: hide .btn-text and .view-mode-btn span (icon-only buttons) +- Reduce toolbar gap (8px->4px) and tool-button padding at medium widths +- Update toggleSyncScrolling() innerHTML to preserve +- Add title attribute to Export button for accessibility + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/d83f1a83-5190-4e83-a222-71e7a974a194 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-03T16:53:29Z +**SHA:** `cb457e0eb967c5a5a1f3601309cfd6cc7bea7336` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cb457e0eb967c5a5a1f3601309cfd6cc7bea7336 + +### Full Message + +``` +Fix toolbar overflow at medium viewport widths (768-1079px) + +- Wrap toolbar button text in in both index.html files +- At <=1079px: hide .btn-text and .view-mode-btn span (icon-only buttons) +- Reduce toolbar gap (8px->4px) and tool-button padding at medium widths +- Update toggleSyncScrolling() innerHTML to preserve +- Add title attribute to Export button for accessibility + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/d83f1a83-5190-4e83-a222-71e7a974a194 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.8.8 — Commit #206 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-05-03T16:42:47Z +**SHA:** `5bc16cf2ef5acf52e082480d6cc733c35b387473` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5bc16cf2ef5acf52e082480d6cc733c35b387473 + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.8.7 — Commit #205 + +**Title:** Remove screenshot from README + +**Description:** Removed Markdown Viewer screenshot from README. + +**Author:** Baivab Sarkar +**Date:** 2026-04-29T15:24:51Z +**SHA:** `a88c62319f3ff50962a1926c0a191a09bc53e935` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a88c62319f3ff50962a1926c0a191a09bc53e935 + +### Full Message + +``` +Remove screenshot from README + +Removed Markdown Viewer screenshot from README. +``` + +--- + +## v2.8.6 — Commit #204 + +**Title:** Merge pull request #74 from ThisIs-Developer/copilot/update-readme-with-badge + +**Description:** Add Deepwiki badge before hero screenshot in README + +**Author:** Baivab Sarkar +**Date:** 2026-04-29T15:24:17Z +**SHA:** `061a73e4212dad54738823ddb58ba650524d8f1e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/061a73e4212dad54738823ddb58ba650524d8f1e + +### Full Message + +``` +Merge pull request #74 from ThisIs-Developer/copilot/update-readme-with-badge + +Add Deepwiki badge before hero screenshot in README +``` + +--- + +## v2.8.5 — Commit #203 + +**Title:** Add Deepwiki badge to README + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1a39497c-bed5-47a0-a7c5-a8c36cf28157 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-29T15:20:12Z +**SHA:** `43e5466a9080e88bc78c710d903882c312ef841d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/43e5466a9080e88bc78c710d903882c312ef841d + +### Full Message + +``` +Add Deepwiki badge to README + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/1a39497c-bed5-47a0-a7c5-a8c36cf28157 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.8.4 — Commit #202 + +**Title:** Add initial wiki documentation structure + +**Author:** Baivab Sarkar +**Date:** 2026-04-29T10:29:06Z +**SHA:** `b0e392fb3a8f38cc159823177d52abbb09003299` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b0e392fb3a8f38cc159823177d52abbb09003299 + +### Full Message + +``` +Add initial wiki documentation structure +``` + +--- + +## v2.8.3 — Commit #201 + +**Title:** Merge pull request #73 from ThisIs-Developer/copilot/update-readme-professionalism + +**Description:** Refresh README to professional template with full feature coverage + +**Author:** Baivab Sarkar +**Date:** 2026-04-29T09:59:16Z +**SHA:** `c10e63ddac3d2ce231cbcf0e25340bfadbc7a020` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c10e63ddac3d2ce231cbcf0e25340bfadbc7a020 + +### Full Message + +``` +Merge pull request #73 from ThisIs-Developer/copilot/update-readme-professionalism + +Refresh README to professional template with full feature coverage +``` + +--- + +## v2.8.2 — Commit #200 + +**Title:** docs(wiki): add transparency details and development journey + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/047fc32f-9402-4e59-8078-751b25f53099 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-29T09:54:59Z +**SHA:** `4d5a0a39e5a617309a4315804c3748c24795a48c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4d5a0a39e5a617309a4315804c3748c24795a48c + +### Full Message + +``` +docs(wiki): add transparency details and development journey + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/047fc32f-9402-4e59-8078-751b25f53099 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.8.1 — Commit #199 + +**Title:** docs: add development journey section + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b08a4e87-065d-4dba-86ae-061a26ec9c52 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-29T09:41:54Z +**SHA:** `85c66c312f4ca56509c4ff599fd61ab2c29cd206` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/85c66c312f4ca56509c4ff599fd61ab2c29cd206 + +### Full Message + +``` +docs: add development journey section + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/b08a4e87-065d-4dba-86ae-061a26ec9c52 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.8.0 — Commit #198 + +**Title:** docs: refresh README layout and feature list + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/31c08c9f-8568-420e-8c30-3a7db9c6c8cb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-29T09:34:34Z +**SHA:** `52ed2faefa8247f764076f6824fc3c81655aa336` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/52ed2faefa8247f764076f6824fc3c81655aa336 + +### Full Message + +``` +docs: refresh README layout and feature list + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/31c08c9f-8568-420e-8c30-3a7db9c6c8cb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.7.10 — Commit #197 + +**Title:** Merge pull request #72 from ThisIs-Developer/copilot/error-handling-in-build-script + +**Description:** fix: exclude staging dir from source tarball in release workflow + +**Author:** Baivab Sarkar +**Date:** 2026-04-28T09:28:49Z +**SHA:** `620cdc0016662e58fbf245f3cd3b949120a2a21e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/620cdc0016662e58fbf245f3cd3b949120a2a21e + +### Full Message + +``` +Merge pull request #72 from ThisIs-Developer/copilot/error-handling-in-build-script + +fix: exclude staging dir from source tarball in release workflow +``` + +--- + +## v2.7.9 — Commit #196 + +**Title:** fix: exclude staging dir from source tarball to prevent self-referencing tar error + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00108a06-4d52-45bf-b27b-eeb50f9e847e + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-28T09:19:16Z +**SHA:** `1af85a70c8fb4e6cb83b52142d5c20b1d25e2a0e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1af85a70c8fb4e6cb83b52142d5c20b1d25e2a0e + +### Full Message + +``` +fix: exclude staging dir from source tarball to prevent self-referencing tar error + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/00108a06-4d52-45bf-b27b-eeb50f9e847e + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.7.8 — Commit #195 + +**Title:** Merge pull request #71 from ThisIs-Developer/copilot/fix-copy-shortcut-windows + +**Description:** [WIP] Fix copy keyboard shortcut issue in Windows app + +**Author:** Baivab Sarkar +**Date:** 2026-04-28T06:53:13Z +**SHA:** `440da15482d44a9b02671069dd6e18e0178543de` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/440da15482d44a9b02671069dd6e18e0178543de + +### Full Message + +``` +Merge pull request #71 from ThisIs-Developer/copilot/fix-copy-shortcut-windows + +[WIP] Fix copy keyboard shortcut issue in Windows app +``` + +--- + +## v2.7.7 — Commit #194 + +**Title:** fix: prevent Ctrl+C from copying entire document when editor text is selected on Windows + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/8553a508-b532-417a-bf24-6cf69fbec85d + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-28T04:55:56Z +**SHA:** `a59cf5caa71d21a433ef4fa433d6ce855f551130` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a59cf5caa71d21a433ef4fa433d6ce855f551130 + +### Full Message + +``` +fix: prevent Ctrl+C from copying entire document when editor text is selected on Windows + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/8553a508-b532-417a-bf24-6cf69fbec85d + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.7.6 — Commit #193 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-26T10:37:53Z +**SHA:** `97672a38429d940c6c236adca4262056cfb73bb5` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/97672a38429d940c6c236adca4262056cfb73bb5 + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.7.5 — Commit #192 + +**Title:** Update license from MIT to Apache License + +**Author:** Baivab Sarkar +**Date:** 2026-04-20T07:19:13Z +**SHA:** `0a82ab94bb367a9c3cb507e4eb46a8d8f7580df4` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0a82ab94bb367a9c3cb507e4eb46a8d8f7580df4 + +### Full Message + +``` +Update license from MIT to Apache License +``` + +--- + +## v2.7.4 — Commit #191 + +**Title:** Merge pull request #68 from jhrepo/fix/tab-view-mode-pane-reset + +**Description:** Fix pane widths not resetting when switching tabs across view modes + +**Author:** Baivab Sarkar +**Date:** 2026-04-08T04:44:42Z +**SHA:** `7e82536955655d80f0c60b57ee97609fcb8c0884` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7e82536955655d80f0c60b57ee97609fcb8c0884 + +### Full Message + +``` +Merge pull request #68 from jhrepo/fix/tab-view-mode-pane-reset + +Fix pane widths not resetting when switching tabs across view modes +``` + +--- + +## v2.7.3 — Commit #190 + +**Title:** Fix pane widths not resetting when switching tabs across view modes + +**Description:** When switching between tabs with different view modes (e.g., split and +preview), the inline flex styles from split mode were not being cleared. +This happened because restoreViewMode() sets currentViewMode to null +before calling setViewMode(), causing the previousMode === 'split' +check to always fail. + +Changed the condition to always reset pane widths when entering a +non-split mode, regardless of the previous mode value. + +**Author:** jeongho +**Date:** 2026-04-07T11:04:04Z +**SHA:** `6f7772c3d09e7145787c7efc9e4e7ca633d8fb37` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6f7772c3d09e7145787c7efc9e4e7ca633d8fb37 + +### Full Message + +``` +Fix pane widths not resetting when switching tabs across view modes + +When switching between tabs with different view modes (e.g., split and +preview), the inline flex styles from split mode were not being cleared. +This happened because restoreViewMode() sets currentViewMode to null +before calling setViewMode(), causing the previousMode === 'split' +check to always fail. + +Changed the condition to always reset pane widths when entering a +non-split mode, regardless of the previous mode value. +``` + +--- + +## v2.7.2 — Commit #189 + +**Title:** Merge pull request #64 from ThisIs-Developer/copilot/fix-math-equations-rendering + +**Description:** Fix exported HTML to render LaTeX math equations via MathJax + +**Author:** Baivab Sarkar +**Date:** 2026-04-03T04:36:41Z +**SHA:** `beb6b944eae59458a42d1fcc0dd8ff0ad1e3c70e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/beb6b944eae59458a42d1fcc0dd8ff0ad1e3c70e + +### Full Message + +``` +Merge pull request #64 from ThisIs-Developer/copilot/fix-math-equations-rendering + +Fix exported HTML to render LaTeX math equations via MathJax +``` + +--- + +## v2.7.1 — Commit #188 + +**Title:** Fix HTML export MathJax rendering + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7ab2d0b8-a7b3-478d-8251-d5a9897f6fc0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-03T04:32:08Z +**SHA:** `1d0219c57a0b502ea4a8cb75c46974f7e3233a64` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1d0219c57a0b502ea4a8cb75c46974f7e3233a64 + +### Full Message + +``` +Fix HTML export MathJax rendering + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7ab2d0b8-a7b3-478d-8251-d5a9897f6fc0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.7.0 — Commit #187 + +**Title:** Plan HTML export math rendering fix + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7ab2d0b8-a7b3-478d-8251-d5a9897f6fc0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-03T04:31:40Z +**SHA:** `e1532801d37c8798215be52df2ccd2f57d9d12d9` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e1532801d37c8798215be52df2ccd2f57d9d12d9 + +### Full Message + +``` +Plan HTML export math rendering fix + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7ab2d0b8-a7b3-478d-8251-d5a9897f6fc0 + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.6.10 — Commit #186 + +**Title:** Merge pull request #57 from mhakash/feature/persist-settings + +**Description:** Persist sync scrolling and theme states + +**Author:** Baivab Sarkar +**Date:** 2026-04-02T05:26:24Z +**SHA:** `d918c7155af501db86d4f94efd2705e9dcaf91be` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d918c7155af501db86d4f94efd2705e9dcaf91be + +### Full Message + +``` +Merge pull request #57 from mhakash/feature/persist-settings + +Persist sync scrolling and theme states +``` + +--- + +## v2.6.9 — Commit #185 + +**Title:** Merge pull request #62 from ThisIs-Developer/copilot/fix-latex-inline-rendering + +**Description:** Enable single-dollar inline LaTeX rendering in MathJax + +**Author:** Baivab Sarkar +**Date:** 2026-04-02T05:21:45Z +**SHA:** `0611723baa20624d032b551ce870868a628539aa` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0611723baa20624d032b551ce870868a628539aa + +### Full Message + +``` +Merge pull request #62 from ThisIs-Developer/copilot/fix-latex-inline-rendering + +Enable single-dollar inline LaTeX rendering in MathJax +``` + +--- + +## v2.6.8 — Commit #184 + +**Title:** Normalize script tag indentation in index files + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-02T05:06:11Z +**SHA:** `4144576011aa79dfe16e602eb341b443f273bda0` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4144576011aa79dfe16e602eb341b443f273bda0 + +### Full Message + +``` +Normalize script tag indentation in index files + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.6.7 — Commit #183 + +**Title:** Fix inline MathJax delimiters and revert unintended resource diffs + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-02T05:04:02Z +**SHA:** `50734aee96712b73a933a3ccf8644a16008baea4` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/50734aee96712b73a933a3ccf8644a16008baea4 + +### Full Message + +``` +Fix inline MathJax delimiters and revert unintended resource diffs + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.6.6 — Commit #182 + +**Title:** Plan: investigate and fix inline LaTeX rendering + +**Description:** Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-02T04:59:59Z +**SHA:** `b37377a1c4b919a835fe909bfe5701b040ad6060` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b37377a1c4b919a835fe909bfe5701b040ad6060 + +### Full Message + +``` +Plan: investigate and fix inline LaTeX rendering + +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/25e889c7-d501-4e74-9e49-01839bcf0feb + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.6.5 — Commit #181 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-04-02T04:58:48Z +**SHA:** `d0db9e408e2f8552e648d1f26962c7edd5b5ce47` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d0db9e408e2f8552e648d1f26962c7edd5b5ce47 + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.6.4 — Commit #180 + +**Title:** Merge pull request #59 from jhrepo/add-built-with-section + +**Description:** Add Built with Markdown Viewer section: Markdown Desk (macOS native wrapper) + +**Author:** Baivab Sarkar +**Date:** 2026-03-28T05:05:02Z +**SHA:** `9a2f258e878f1e03f873b577d8331633fe846bac` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9a2f258e878f1e03f873b577d8331633fe846bac + +### Full Message + +``` +Merge pull request #59 from jhrepo/add-built-with-section + +Add Built with Markdown Viewer section: Markdown Desk (macOS native wrapper) +``` + +--- + +## v2.6.3 — Commit #179 + +**Title:** Add Built with Markdown Viewer section: Markdown Desk + +**Author:** jeongho +**Date:** 2026-03-27T06:37:36Z +**SHA:** `52e1b4a4a916845cede1cb45033ffb92fb421cda` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/52e1b4a4a916845cede1cb45033ffb92fb421cda + +### Full Message + +``` +Add Built with Markdown Viewer section: Markdown Desk +``` + +--- + +## v2.6.2 — Commit #178 + +**Title:** Persist sync scrolling and theme states + +**Author:** Mehdi Hassan Akash +**Date:** 2026-03-27T05:17:23Z +**SHA:** `e6680ffd10dabaa1776d2e3e4f12a3db5ca7881e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e6680ffd10dabaa1776d2e3e4f12a3db5ca7881e + +### Full Message + +``` +Persist sync scrolling and theme states +``` + +--- + +## v2.6.1 — Commit #177 + +**Title:** Merge pull request #56 from mhakash/feature/yaml-frontmatter + +**Description:** Add support for github style yaml frontmatter + +**Author:** Baivab Sarkar +**Date:** 2026-03-27T03:20:13Z +**SHA:** `4b2ee58d938172280b1768b1e1c74e49871e9920` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4b2ee58d938172280b1768b1e1c74e49871e9920 + +### Full Message + +``` +Merge pull request #56 from mhakash/feature/yaml-frontmatter + +Add support for github style yaml frontmatter +``` + +--- + +## v2.6.0 — Commit #176 + +**Title:** Add support for yaml frontmatter + +**Author:** Mehdi Hassan Akash +**Date:** 2026-03-26T09:00:58Z +**SHA:** `f1451352d2afbddd5f69af3439f67a308f25f3f2` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f1451352d2afbddd5f69af3439f67a308f25f3f2 + +### Full Message + +``` +Add support for yaml frontmatter +``` + +--- + +## v2.5.8 — Commit #175 + +**Title:** Merge pull request #52 from ThisIs-Developer/copilot/add-support-for-admonitions + +**Description:** Add GitHub-style alert/admonition rendering for NOTE/TIP/IMPORTANT/WARNING/CAUTION + +**Author:** Baivab Sarkar +**Date:** 2026-03-25T12:03:43Z +**SHA:** `f8b70ec3111c893e9826148fb3b244dfdc079529` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f8b70ec3111c893e9826148fb3b244dfdc079529 + +### Full Message + +``` +Merge pull request #52 from ThisIs-Developer/copilot/add-support-for-admonitions + +Add GitHub-style alert/admonition rendering for NOTE/TIP/IMPORTANT/WARNING/CAUTION +``` + +--- + +## v2.5.7 — Commit #174 + +**Title:** Adjust alert icon fallback viewBox for Font Awesome + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7a7f788a-ac86-476b-afbb-d2cd30792f53 + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-25T11:37:52Z +**SHA:** `60981e96242cfd9b3a4fc40ef89d02e661c182f5` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/60981e96242cfd9b3a4fc40ef89d02e661c182f5 + +### Full Message + +``` +Adjust alert icon fallback viewBox for Font Awesome + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7a7f788a-ac86-476b-afbb-d2cd30792f53 +``` + +--- + +## v2.5.6 — Commit #173 + +**Title:** Switch markdown alert icons to Font Awesome paths + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7a7f788a-ac86-476b-afbb-d2cd30792f53 + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-25T11:36:29Z +**SHA:** `ffd9143dd03d0977e88d928900859fb2fdb52a08` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ffd9143dd03d0977e88d928900859fb2fdb52a08 + +### Full Message + +``` +Switch markdown alert icons to Font Awesome paths + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/7a7f788a-ac86-476b-afbb-d2cd30792f53 +``` + +--- + +## v2.5.5 — Commit #172 + +**Title:** Use GitHub octicons for alert icons + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/83f65a4f-ae77-4dfd-89db-e665a971c32d + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-25T11:29:05Z +**SHA:** `a89d5f414f11782ffaa2e24bcc61f973d4953a4e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a89d5f414f11782ffaa2e24bcc61f973d4953a4e + +### Full Message + +``` +Use GitHub octicons for alert icons + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/83f65a4f-ae77-4dfd-89db-e665a971c32d +``` + +--- + +## v2.5.4 — Commit #171 + +**Title:** Harden alert icon rendering and fix note icon path + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/84385004-bd3c-4cc3-b710-45a4fd6d69e2 + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-25T11:19:41Z +**SHA:** `7093e325313a21d54c5f9989257c42d256976aaf` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7093e325313a21d54c5f9989257c42d256976aaf + +### Full Message + +``` +Harden alert icon rendering and fix note icon path + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/84385004-bd3c-4cc3-b710-45a4fd6d69e2 +``` + +--- + +## v2.5.3 — Commit #170 + +**Title:** Match GitHub-style alert title icons and colors + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/84385004-bd3c-4cc3-b710-45a4fd6d69e2 + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-25T11:17:45Z +**SHA:** `0aa30d8d0d401d82fbcf3deb52a6ecd35af28585` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0aa30d8d0d401d82fbcf3deb52a6ecd35af28585 + +### Full Message + +``` +Match GitHub-style alert title icons and colors + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/84385004-bd3c-4cc3-b710-45a4fd6d69e2 +``` + +--- + +## v2.5.2 — Commit #169 + +**Title:** Polish admonition marker parsing readability + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289 + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-25T07:30:57Z +**SHA:** `433bbbad55f2946b9f6e599b7d3c36b6fd5a7f28` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/433bbbad55f2946b9f6e599b7d3c36b6fd5a7f28 + +### Full Message + +``` +Polish admonition marker parsing readability + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289 +``` + +--- + +## v2.5.1 — Commit #168 + +**Title:** Handle same-line GitHub alert markers robustly + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289 + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-25T07:30:16Z +**SHA:** `7090d872f0a753e6115b5b9adcd0110cb1f64659` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7090d872f0a753e6115b5b9adcd0110cb1f64659 + +### Full Message + +``` +Handle same-line GitHub alert markers robustly + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289 +``` + +--- + +## v2.5.0 — Commit #167 + +**Title:** Add GitHub-style admonition parsing and styling + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289 + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-25T07:28:24Z +**SHA:** `74eae5acad02ebbcef766ce912dd1bf682be5805` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/74eae5acad02ebbcef766ce912dd1bf682be5805 + +### Full Message + +``` +Add GitHub-style admonition parsing and styling + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +Agent-Logs-Url: https://github.com/ThisIs-Developer/Markdown-Viewer/sessions/f710fab7-1abb-4b80-9730-df6d03e47289 +``` + +--- + +## v2.4.6 — Commit #166 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-25T07:22:11Z +**SHA:** `eecfffb480290cfdd0a0ecc1b50a8f55d5a096fb` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eecfffb480290cfdd0a0ecc1b50a8f55d5a096fb + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.4.5 — Commit #165 + +**Title:** Merge pull request #49 from ThisIs-Developer/copilot/enhance-github-import-file-browser + +**Description:** Set GitHub Import modal to 60% viewport width on desktop/tablet + +**Author:** Baivab Sarkar +**Date:** 2026-03-20T17:04:17Z +**SHA:** `6ae149a365983c258ec15f4c6fd122641c40281d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6ae149a365983c258ec15f4c6fd122641c40281d + +### Full Message + +``` +Merge pull request #49 from ThisIs-Developer/copilot/enhance-github-import-file-browser + +Set GitHub Import modal to 60% viewport width on desktop/tablet +``` + +--- + +## v2.4.4 — Commit #164 + +**Title:** style: set github import modal width to 60vw on desktop tablet + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-20T17:00:57Z +**SHA:** `dce38f2be1181a2d312ab87ab78c4d3bee061a13` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/dce38f2be1181a2d312ab87ab78c4d3bee061a13 + +### Full Message + +``` +style: set github import modal width to 60vw on desktop tablet + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.4.3 — Commit #163 + +**Title:** feat: support multi-select github import with select-all and count + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-20T16:50:40Z +**SHA:** `87831ebd5e2cd31bd5c8d75ab66c7d62dbc3af65` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/87831ebd5e2cd31bd5c8d75ab66c7d62dbc3af65 + +### Full Message + +``` +feat: support multi-select github import with select-all and count + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.4.2 — Commit #162 + +**Title:** feat: add multi-select controls to github import modal + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-20T16:46:21Z +**SHA:** `6c5ec91d0f39c5afc1bd05123a364dd839fbe82b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6c5ec91d0f39c5afc1bd05123a364dd839fbe82b + +### Full Message + +``` +feat: add multi-select controls to github import modal + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.4.1 — Commit #161 + +**Title:** chore: address review nits and finalize github import browser + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-20T16:35:24Z +**SHA:** `cb10d4829f558b9acb6f24f5749129b3140b6060` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cb10d4829f558b9acb6f24f5749129b3140b6060 + +### Full Message + +``` +chore: address review nits and finalize github import browser + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.4.0 — Commit #160 + +**Title:** feat: add github import mini file browser with basic rate limiting + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-20T16:33:34Z +**SHA:** `9c764986c7e174b7ae53aaf2ea213d413b6bc092` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9c764986c7e174b7ae53aaf2ea213d413b6bc092 + +### Full Message + +``` +feat: add github import mini file browser with basic rate limiting + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.3.6 — Commit #159 + +**Title:** chore: outline plan for github import file browser + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-20T16:29:09Z +**SHA:** `1713f801068a7a383540a5e5a147a87e67b979af` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1713f801068a7a383540a5e5a147a87e67b979af + +### Full Message + +``` +chore: outline plan for github import file browser + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.3.5 — Commit #158 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-20T16:27:40Z +**SHA:** `706250efec76d779f1e22e2d08aec9f253c08d2f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/706250efec76d779f1e22e2d08aec9f253c08d2f + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.3.4 — Commit #157 + +**Title:** Merge pull request #48 from ayoubmata81/fix/open-file-from-cli-args + +**Description:** fix(desktop): open file passed as CLI argument on launch + +**Author:** Baivab Sarkar +**Date:** 2026-03-20T05:33:32Z +**SHA:** `6142e6a907851d8e308a36278a29933a78644ea7` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6142e6a907851d8e308a36278a29933a78644ea7 + +### Full Message + +``` +Merge pull request #48 from ayoubmata81/fix/open-file-from-cli-args + +fix(desktop): open file passed as CLI argument on launch +``` + +--- + +## v2.3.3 — Commit #156 + +**Title:** fix(desktop): open file passed as CLI argument on launch + +**Description:** When a .md file is set to open with the desktop app (e.g. via OS file +association), the file path is passed as a command-line argument. +Previously the app ignored it and always showed the landing page, +requiring the user to drag-and-drop or import the file manually. + +This change reads the argument in main.js using Neutralino.filesystem +.readFile and injects the content into the editor on startup. +filesystem.readFile is also added to nativeAllowList in +neutralino.config.json to permit the API call. + +**Author:** ayoubmata81 +**Date:** 2026-03-20T00:41:07Z +**SHA:** `ca0148f3e7c5f6905608c797ac83ae452c18b9ed` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ca0148f3e7c5f6905608c797ac83ae452c18b9ed + +### Full Message + +``` +fix(desktop): open file passed as CLI argument on launch + +When a .md file is set to open with the desktop app (e.g. via OS file +association), the file path is passed as a command-line argument. +Previously the app ignored it and always showed the landing page, +requiring the user to drag-and-drop or import the file manually. + +This change reads the argument in main.js using Neutralino.filesystem +.readFile and injects the content into the editor on startup. +filesystem.readFile is also added to nativeAllowList in +neutralino.config.json to permit the API call. +``` + +--- + +## v2.3.2 — Commit #155 + +**Title:** Merge pull request #47 from ThisIs-Developer/copilot/update-import-button-dropdown + +**Description:** Improve GitHub import modal readability and usability for desktop/mobile + +**Author:** Baivab Sarkar +**Date:** 2026-03-19T13:00:51Z +**SHA:** `60d4c000c0d4cfa09bb4ef53e5953ba3014eaca3` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/60d4c000c0d4cfa09bb4ef53e5953ba3014eaca3 + +### Full Message + +``` +Merge pull request #47 from ThisIs-Developer/copilot/update-import-button-dropdown + +Improve GitHub import modal readability and usability for desktop/mobile +``` + +--- + +## v2.3.1 — Commit #154 + +**Title:** refactor: harden github import modal disable handling + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T12:21:07Z +**SHA:** `a207b2fb11248aae2ff8bd4fc32a10f2a2365286` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a207b2fb11248aae2ff8bd4fc32a10f2a2365286 + +### Full Message + +``` +refactor: harden github import modal disable handling + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.3.0 — Commit #153 + +**Title:** style: enlarge github import modal for readability and usability + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T12:18:07Z +**SHA:** `359a903102cbfc20c48bd4fa400652a30d4ea878` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/359a903102cbfc20c48bd4fa400652a30d4ea878 + +### Full Message + +``` +style: enlarge github import modal for readability and usability + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.2.10 — Commit #152 + +**Title:** Revert "chore: plan larger readable import modal" + +**Description:** This reverts commit c69136dc9bebd5c77d05f937aaeefcfae9d326ee. + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T12:15:01Z +**SHA:** `b4721ff261470821e7d64d0897dbad9ddf0fd425` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b4721ff261470821e7d64d0897dbad9ddf0fd425 + +### Full Message + +``` +Revert "chore: plan larger readable import modal" + +This reverts commit c69136dc9bebd5c77d05f937aaeefcfae9d326ee. +``` + +--- + +## v2.2.9 — Commit #151 + +**Title:** chore: plan larger readable import modal + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T12:14:31Z +**SHA:** `c69136dc9bebd5c77d05f937aaeefcfae9d326ee` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c69136dc9bebd5c77d05f937aaeefcfae9d326ee + +### Full Message + +``` +chore: plan larger readable import modal + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.2.8 — Commit #150 + +**Title:** chore: remove accidental desktop resource churn from PR + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T12:09:47Z +**SHA:** `f6ca4884cb2237b965e724e3da21d530f6599565` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f6ca4884cb2237b965e724e3da21d530f6599565 + +### Full Message + +``` +chore: remove accidental desktop resource churn from PR + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.2.7 — Commit #149 + +**Title:** chore: address review feedback for github import messaging + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T12:06:50Z +**SHA:** `26b5430a73de443665529353ad44874f9746d421` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/26b5430a73de443665529353ad44874f9746d421 + +### Full Message + +``` +chore: address review feedback for github import messaging + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.2.6 — Commit #148 + +**Title:** feat: merge import actions into dropdown and add github import modal + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T12:02:59Z +**SHA:** `8d45c6a0c7a4634a3155cc70d71820fb14066974` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8d45c6a0c7a4634a3155cc70d71820fb14066974 + +### Full Message + +``` +feat: merge import actions into dropdown and add github import modal + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.2.5 — Commit #147 + +**Title:** Revert "chore: outline plan for import UI updates" + +**Description:** This reverts commit 5eef2df9f3003bd56fcd64bbaeb3b1c7c2ab763c. + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T12:00:56Z +**SHA:** `b7fc65a6c2bee0896ec032049df409cb714c800a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b7fc65a6c2bee0896ec032049df409cb714c800a + +### Full Message + +``` +Revert "chore: outline plan for import UI updates" + +This reverts commit 5eef2df9f3003bd56fcd64bbaeb3b1c7c2ab763c. +``` + +--- + +## v2.2.4 — Commit #146 + +**Title:** chore: outline plan for import UI updates + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T11:54:44Z +**SHA:** `5eef2df9f3003bd56fcd64bbaeb3b1c7c2ab763c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5eef2df9f3003bd56fcd64bbaeb3b1c7c2ab763c + +### Full Message + +``` +chore: outline plan for import UI updates + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.2.3 — Commit #145 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T11:53:25Z +**SHA:** `9d0b8a5bda2519128e1e8f25a4a2f50724d8b8eb` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9d0b8a5bda2519128e1e8f25a4a2f50724d8b8eb + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.2.2 — Commit #144 + +**Title:** Merge pull request #46 from ThisIs-Developer/copilot/add-import-markdown-from-github + +**Description:** Add GitHub URL-based Markdown import (repo/tree/blob/raw) with file discovery and selection + +**Author:** Baivab Sarkar +**Date:** 2026-03-19T11:50:42Z +**SHA:** `b2c3c85e4d7619bd30645015275155d61b62be69` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b2c3c85e4d7619bd30645015275155d61b62be69 + +### Full Message + +``` +Merge pull request #46 from ThisIs-Developer/copilot/add-import-markdown-from-github + +Add GitHub URL-based Markdown import (repo/tree/blob/raw) with file discovery and selection +``` + +--- + +## v2.2.1 — Commit #143 + +**Title:** chore: address review feedback for GitHub import selection prompt + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T11:46:50Z +**SHA:** `eca1c6365c8a652db2f5d3c0cb98988933ad45a2` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eca1c6365c8a652db2f5d3c0cb98988933ad45a2 + +### Full Message + +``` +chore: address review feedback for GitHub import selection prompt + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.2.0 — Commit #142 + +**Title:** feat: add GitHub URL markdown import support + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T11:45:39Z +**SHA:** `cac85189dff4eb4015a1d43562db5454fe22da31` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cac85189dff4eb4015a1d43562db5454fe22da31 + +### Full Message + +``` +feat: add GitHub URL markdown import support + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.1.10 — Commit #141 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-19T11:39:03Z +**SHA:** `53d1c923976508530a384ebfc8789d01a5ae237d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/53d1c923976508530a384ebfc8789d01a5ae237d + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.1.9 — Commit #140 + +**Title:** Merge pull request #43 from ThisIs-Developer/copilot/implement-document-tab-mobile-view + +**Description:** Implement document tabs in mobile menu with full desktop feature parity + +**Author:** Baivab Sarkar +**Date:** 2026-03-09T10:04:02Z +**SHA:** `6c16a5fe16aa215a6fa283c7dc9b130a9df3ba51` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6c16a5fe16aa215a6fa283c7dc9b130a9df3ba51 + +### Full Message + +``` +Merge pull request #43 from ThisIs-Developer/copilot/implement-document-tab-mobile-view + +Implement document tabs in mobile menu with full desktop feature parity +``` + +--- + +## v2.1.8 — Commit #139 + +**Title:** Align mobile tab with desktop: three-dot menu + reset button + +**Description:** Replace the mobile tab's simple × delete button with the same +three-dot (⋯) dropdown menu used on the desktop (Rename, +Duplicate, Delete). Add a "Reset all files" button below the +mobile tab list matching the desktop Reset button. Clean up +the now-unused mobile-tab-delete-btn CSS. + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-09T10:01:39Z +**SHA:** `448fc5c593e1ab99392742dca63cf97468490b7c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/448fc5c593e1ab99392742dca63cf97468490b7c + +### Full Message + +``` +Align mobile tab with desktop: three-dot menu + reset button + +Replace the mobile tab's simple × delete button with the same +three-dot (⋯) dropdown menu used on the desktop (Rename, +Duplicate, Delete). Add a "Reset all files" button below the +mobile tab list matching the desktop Reset button. Clean up +the now-unused mobile-tab-delete-btn CSS. + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.1.7 — Commit #138 + +**Title:** Implement document tab in mobile tab view + +**Description:** Add a Documents section to the mobile menu panel that shows all +open tabs with the active one highlighted. Users can switch tabs +by tapping, delete tabs via the × button, and create new tabs +via the + button. The mobile tab list is kept in sync with the +desktop tab bar via renderMobileTabList called from renderTabBar. + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-09T07:52:12Z +**SHA:** `323c642158b783a27bc5e182dc2c844ff0329974` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/323c642158b783a27bc5e182dc2c844ff0329974 + +### Full Message + +``` +Implement document tab in mobile tab view + +Add a Documents section to the mobile menu panel that shows all +open tabs with the active one highlighted. Users can switch tabs +by tapping, delete tabs via the × button, and create new tabs +via the + button. The mobile tab list is kept in sync with the +desktop tab bar via renderMobileTabList called from renderTabBar. + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.1.6 — Commit #137 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-09T07:45:12Z +**SHA:** `94777b5644551a520b50e491b40c504c23c77457` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/94777b5644551a520b50e491b40c504c23c77457 + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.1.5 — Commit #136 + +**Title:** Merge pull request #42 from ThisIs-Developer/copilot/fix-document-tab-visibility + +**Description:** Fix tab three-dot menu: always visible and no longer clipped by scroll container + +**Author:** Baivab Sarkar +**Date:** 2026-03-09T06:38:38Z +**SHA:** `ed0169b3f12eab609e6f3527931836ee5ab492d0` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ed0169b3f12eab609e6f3527931836ee5ab492d0 + +### Full Message + +``` +Merge pull request #42 from ThisIs-Developer/copilot/fix-document-tab-visibility + +Fix tab three-dot menu: always visible and no longer clipped by scroll container +``` + +--- + +## v2.1.4 — Commit #135 + +**Title:** Fix tab dropdown clipped by overflow scroll container: use position:fixed + getBoundingClientRect positioning + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-09T06:36:32Z +**SHA:** `68c4b22d095070333eee3dab684aadbb4ccd056d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/68c4b22d095070333eee3dab684aadbb4ccd056d + +### Full Message + +``` +Fix tab dropdown clipped by overflow scroll container: use position:fixed + getBoundingClientRect positioning + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.1.3 — Commit #134 + +**Title:** Fix three-dot menu button hidden on inactive tabs: set opacity 0.65 by default + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-09T06:18:00Z +**SHA:** `d6585ed251096eb490392ad2c277f3e6caae58f1` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d6585ed251096eb490392ad2c277f3e6caae58f1 + +### Full Message + +``` +Fix three-dot menu button hidden on inactive tabs: set opacity 0.65 by default + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.1.2 — Commit #133 + +**Title:** Fix Document tab hidden: replace position:sticky with position:relative on .app-header, add flex-shrink:0 and overflow:hidden + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-09T05:36:41Z +**SHA:** `854f3262a29fe0935b42dab3f1f40cd19f958e2a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/854f3262a29fe0935b42dab3f1f40cd19f958e2a + +### Full Message + +``` +Fix Document tab hidden: replace position:sticky with position:relative on .app-header, add flex-shrink:0 and overflow:hidden + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.1.1 — Commit #132 + +**Title:** Fix Document tab visibility by adding position and z-index to .tab-bar + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-09T05:02:36Z +**SHA:** `874d8f7f812aea5a6e584b40683bfba4e9875d9f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/874d8f7f812aea5a6e584b40683bfba4e9875d9f + +### Full Message + +``` +Fix Document tab visibility by adding position and z-index to .tab-bar + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.1.0 — Commit #131 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-09T04:55:42Z +**SHA:** `3d46e0bbe0a6f4e844d7f48d182795e18fddc02e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3d46e0bbe0a6f4e844d7f48d182795e18fddc02e + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.0.7 — Commit #130 + +**Title:** Change overflow properties for focus styles to improve visibility + +**Author:** Baivab Sarkar +**Date:** 2026-03-09T04:49:50Z +**SHA:** `7d8b9c0081fdc3c7eeae1abfa4ce23e289ef7ac4` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7d8b9c0081fdc3c7eeae1abfa4ce23e289ef7ac4 + +### Full Message + +``` +Change overflow properties for focus styles to improve visibility +``` + +--- + +## v2.0.6 — Commit #129 + +**Title:** Remove overflow hidden from link styles and increase z-index for better visibility + +**Author:** Baivab Sarkar +**Date:** 2026-03-09T04:44:35Z +**SHA:** `4d4a088668fda0c2473c5181c1079e2890747917` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4d4a088668fda0c2473c5181c1079e2890747917 + +### Full Message + +``` +Remove overflow hidden from link styles and increase z-index for better visibility +``` + +--- + +## v2.0.5 — Commit #128 + +**Title:** Merge pull request #41 from ThisIs-Developer/copilot/update-document-tabs-ui + +**Description:** Overhaul Document Tabs UI: three-dot menu, sequential naming, reset, and delete-last-tab + +**Author:** Baivab Sarkar +**Date:** 2026-03-08T04:12:18Z +**SHA:** `0663392b578780c0986dff52b9991596eeb4bb85` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/0663392b578780c0986dff52b9991596eeb4bb85 + +### Full Message + +``` +Merge pull request #41 from ThisIs-Developer/copilot/update-document-tabs-ui + +Overhaul Document Tabs UI: three-dot menu, sequential naming, reset, and delete-last-tab +``` + +--- + +## v2.0.4 — Commit #127 + +**Title:** Add three-dot menu, sequential naming, reset button, and delete-last-tab support to tabs UI + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-07T19:00:33Z +**SHA:** `cedd372640d718aea697a88e210786ca0db17930` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cedd372640d718aea697a88e210786ca0db17930 + +### Full Message + +``` +Add three-dot menu, sequential naming, reset button, and delete-last-tab support to tabs UI + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v2.0.3 — Commit #126 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-07T18:54:30Z +**SHA:** `d9d4ce0445de974179240af49914820a44306790` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d9d4ce0445de974179240af49914820a44306790 + +### Full Message + +``` +Initial plan +``` + +--- + +## v2.0.2 — Commit #125 + +**Title:** Delete .github/workflows/github_workflows_auto-tag-release.yml + +**Author:** Baivab Sarkar +**Date:** 2026-03-07T18:42:18Z +**SHA:** `63f49fac5610d9e67123820fabb97d0be5e59e8b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/63f49fac5610d9e67123820fabb97d0be5e59e8b + +### Full Message + +``` +Delete .github/workflows/github_workflows_auto-tag-release.yml +``` + +--- + +## v2.0.1 — Commit #124 + +**Title:** Merge pull request #40 from ThisIs-Developer/copilot/add-document-tabs-session-management + +**Description:** feat: Multi-tab workspace with localStorage session persistence + +**Author:** Baivab Sarkar +**Date:** 2026-03-07T18:40:15Z +**SHA:** `2fed8d5003bd008d34562cb8ddaaacf33f9cf515` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2fed8d5003bd008d34562cb8ddaaacf33f9cf515 + +### Full Message + +``` +Merge pull request #40 from ThisIs-Developer/copilot/add-document-tabs-session-management + +feat: Multi-tab workspace with localStorage session persistence +``` + +--- + +## v2.0.0 — Commit #123 + +**Title:** feat: implement Document Tabs & Session Management + +**Description:** - Add tab bar HTML to index.html (between header and dropzone) +- Add complete tab bar CSS to styles.css (tabs, dark mode, animations, responsive) +- Add TabManager module to script.js: + - Storage helpers (localStorage keys, load/save) + - deriveTitleFromContent, createTab, renderTabBar with drag-and-drop + - initTabs, switchTab, newTab, closeTab, updateActiveTabTitle + - saveCurrentTabState, restoreViewMode helper +- Wire into existing app: initTabs() replaces renderMarkdown() on init +- importMarkdownFile opens files in new tab +- Debounced save (500ms) and title update (800ms) on editor input +- saveCurrentTabState on view mode button click +- Ctrl/Cmd+T (new tab), Ctrl/Cmd+W (close tab) keyboard shortcuts +- tab-new-btn click handler +- loadFromShareHash persists shared content to current tab +- Max 20 tabs with informative alert + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-07T18:38:07Z +**SHA:** `d8510fc8ea736e1727fcab2cc1b54f6a968070db` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d8510fc8ea736e1727fcab2cc1b54f6a968070db + +### Full Message + +``` +feat: implement Document Tabs & Session Management + +- Add tab bar HTML to index.html (between header and dropzone) +- Add complete tab bar CSS to styles.css (tabs, dark mode, animations, responsive) +- Add TabManager module to script.js: + - Storage helpers (localStorage keys, load/save) + - deriveTitleFromContent, createTab, renderTabBar with drag-and-drop + - initTabs, switchTab, newTab, closeTab, updateActiveTabTitle + - saveCurrentTabState, restoreViewMode helper +- Wire into existing app: initTabs() replaces renderMarkdown() on init +- importMarkdownFile opens files in new tab +- Debounced save (500ms) and title update (800ms) on editor input +- saveCurrentTabState on view mode button click +- Ctrl/Cmd+T (new tab), Ctrl/Cmd+W (close tab) keyboard shortcuts +- tab-new-btn click handler +- loadFromShareHash persists shared content to current tab +- Max 20 tabs with informative alert + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.9.3 — Commit #122 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-07T18:25:25Z +**SHA:** `d94e5c2d6a41e99a5c741c5b287c955169f5cb5b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d94e5c2d6a41e99a5c741c5b287c955169f5cb5b + +### Full Message + +``` +Initial plan +``` + +--- + +## v1.9.2 — Commit #121 + +**Title:** Add files via upload + +**Author:** Baivab Sarkar +**Date:** 2026-03-07T18:17:33Z +**SHA:** `6b93babd047bb5e98e26c48c8c2c50fe749df2e9` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6b93babd047bb5e98e26c48c8c2c50fe749df2e9 + +### Full Message + +``` +Add files via upload +``` + +--- + +## v1.9.1 — Commit #120 + +**Title:** Merge pull request #39 from ThisIs-Developer/copilot/create-project-wiki + +**Description:** Add professional wiki documentation + +**Author:** Baivab Sarkar +**Date:** 2026-03-07T18:15:18Z +**SHA:** `01effc7d914129f2e71485de6871f28daf1027de` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/01effc7d914129f2e71485de6871f28daf1027de + +### Full Message + +``` +Merge pull request #39 from ThisIs-Developer/copilot/create-project-wiki + +Add professional wiki documentation +``` + +--- + +## v1.9.0 — Commit #119 + +**Title:** Create professional wiki with 9 comprehensive documentation pages + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-07T17:39:43Z +**SHA:** `435c24d53b4796cc4c5e0f056518b3bf72ed8bed` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/435c24d53b4796cc4c5e0f056518b3bf72ed8bed + +### Full Message + +``` +Create professional wiki with 9 comprehensive documentation pages + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.8.9 — Commit #118 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-07T17:33:10Z +**SHA:** `8001cd9ccd7f0011e4484c33a91e745c76101c49` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8001cd9ccd7f0011e4484c33a91e745c76101c49 + +### Full Message + +``` +Initial plan +``` + +--- + +## v1.8.8 — Commit #117 + +**Title:** Merge pull request #38 from LakshmanKishore/fix/syntax-highlight-dark-mode + +**Description:** feat: implement CSS-variable based syntax highlighting for dark mode + +**Author:** Baivab Sarkar +**Date:** 2026-03-07T17:27:31Z +**SHA:** `e1cc8a09df8f238b4b92bae65424758b9474f7c5` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e1cc8a09df8f238b4b92bae65424758b9474f7c5 + +### Full Message + +``` +Merge pull request #38 from LakshmanKishore/fix/syntax-highlight-dark-mode + +feat: implement CSS-variable based syntax highlighting for dark mode +``` + +--- + +## v1.8.7 — Commit #116 + +**Title:** feat: implement CSS-variable based syntax highlighting for dark mode + +**Author:** LakshmanKishore +**Date:** 2026-03-06T04:09:26Z +**SHA:** `a01f20473fbd5934617999ca8f9e616c75e99127` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a01f20473fbd5934617999ca8f9e616c75e99127 + +### Full Message + +``` +feat: implement CSS-variable based syntax highlighting for dark mode +``` + +--- + +## v1.8.6 — Commit #115 + +**Title:** Merge pull request #37 from LakshmanKishore/main + +**Description:** Update: Change Markdown Logo image source + +**Author:** Baivab Sarkar +**Date:** 2026-03-05T16:31:59Z +**SHA:** `a46877e47593ffef464772e90dc6e44a91de90f0` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a46877e47593ffef464772e90dc6e44a91de90f0 + +### Full Message + +``` +Merge pull request #37 from LakshmanKishore/main + +Update: Change Markdown Logo image source +``` + +--- + +## v1.8.5 — Commit #114 + +**Title:** Update: Change Markdown Logo image source + +**Description:** Updated image link for Markdown Logo in script.js. + +**Author:** Lakshman +**Date:** 2026-03-05T05:13:38Z +**SHA:** `c2a5a64d2d072989440f2119738af05ed293ddde` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c2a5a64d2d072989440f2119738af05ed293ddde + +### Full Message + +``` +Update: Change Markdown Logo image source + +Updated image link for Markdown Logo in script.js. +``` + +--- + +## v1.8.4 — Commit #113 + +**Title:** Merge pull request #36 from ThisIs-Developer/copilot/fix-ctrl-c-shortcut-bug + +**Description:** Fix: Ctrl+C respects text selection instead of always copying full markdown + +**Author:** Baivab Sarkar +**Date:** 2026-03-05T03:16:20Z +**SHA:** `c6df362d586fcc80235a3dff5f1fb6279449c043` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c6df362d586fcc80235a3dff5f1fb6279449c043 + +### Full Message + +``` +Merge pull request #36 from ThisIs-Developer/copilot/fix-ctrl-c-shortcut-bug + +Fix: Ctrl+C respects text selection instead of always copying full markdown +``` + +--- + +## v1.8.3 — Commit #112 + +**Title:** Fix: Ctrl+C only copies full markdown when no text is selected + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T13:46:33Z +**SHA:** `ae80a331bb792ae4f1078e457c730771e305372c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ae80a331bb792ae4f1078e457c730771e305372c + +### Full Message + +``` +Fix: Ctrl+C only copies full markdown when no text is selected + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.8.2 — Commit #111 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T13:44:23Z +**SHA:** `4954e73f3b4f546be1257956316f389de158d8f3` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4954e73f3b4f546be1257956316f389de158d8f3 + +### Full Message + +``` +Initial plan +``` + +--- + +## v1.8.1 — Commit #110 + +**Title:** Merge pull request #35 from ThisIs-Developer/copilot/fix-large-markdown-link-issue + +**Description:** Remove Share modal — copy URL directly on button click + +**Author:** Baivab Sarkar +**Date:** 2026-03-04T13:41:29Z +**SHA:** `331c7d4c00409309d0850cfba1b0a310b320e06c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/331c7d4c00409309d0850cfba1b0a310b320e06c + +### Full Message + +``` +Merge pull request #35 from ThisIs-Developer/copilot/fix-large-markdown-link-issue + +Remove Share modal — copy URL directly on button click +``` + +--- + +## v1.8.0 — Commit #109 + +**Title:** Remove Share via URL modal; copy URL directly on share button click + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T13:33:40Z +**SHA:** `e5fb3aeec59eca9cab897ea34dbd4c2eb555bc03` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e5fb3aeec59eca9cab897ea34dbd4c2eb555bc03 + +### Full Message + +``` +Remove Share via URL modal; copy URL directly on share button click + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.7.11 — Commit #108 + +**Title:** Merge: remove URL display from share modal + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T13:29:00Z +**SHA:** `b0e64a6d018dd4ac6427e238d81bcb9803a75552` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b0e64a6d018dd4ac6427e238d81bcb9803a75552 + +### Full Message + +``` +Merge: remove URL display from share modal +``` + +--- + +## v1.7.10 — Commit #107 + +**Title:** Remove generated URL display from share modal + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T13:28:10Z +**SHA:** `3e5b0e1bef706af4a289ca88ebde1c7d6e65ab67` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3e5b0e1bef706af4a289ca88ebde1c7d6e65ab67 + +### Full Message + +``` +Remove generated URL display from share modal + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.7.9 — Commit #106 + +**Title:** Remove generated URL display from share modal + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T13:26:33Z +**SHA:** `1215fdabf4c66aa530ca17e9e26993d381c9fad8` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1215fdabf4c66aa530ca17e9e26993d381c9fad8 + +### Full Message + +``` +Remove generated URL display from share modal + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.7.8 — Commit #105 + +**Title:** Remove generated URL display from share modal + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T13:26:18Z +**SHA:** `6f09af509e94e790bd109d8a663274f9a3dca173` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6f09af509e94e790bd109d8a663274f9a3dca173 + +### Full Message + +``` +Remove generated URL display from share modal + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.7.7 — Commit #104 + +**Title:** Fix large markdown share URL: replace blocking alert with share modal + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T09:43:54Z +**SHA:** `65077841db3401cd8ae0b85968a30d21357e677a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/65077841db3401cd8ae0b85968a30d21357e677a + +### Full Message + +``` +Fix large markdown share URL: replace blocking alert with share modal + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.7.6 — Commit #103 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T09:38:00Z +**SHA:** `eb7006ed8469548719d13a7aae90960a7c4ee400` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eb7006ed8469548719d13a7aae90960a7c4ee400 + +### Full Message + +``` +Initial plan +``` + +--- + +## v1.7.5 — Commit #102 + +**Title:** Merge pull request #34 from ThisIs-Developer/copilot/fix-integration-error-and-warnings + +**Description:** Fix invalid pako SRI hash and hljs double-highlight warning + +**Author:** Baivab Sarkar +**Date:** 2026-03-04T05:08:30Z +**SHA:** `73579688c5be737feef83aa22cef176a0810ed88` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/73579688c5be737feef83aa22cef176a0810ed88 + +### Full Message + +``` +Merge pull request #34 from ThisIs-Developer/copilot/fix-integration-error-and-warnings + +Fix invalid pako SRI hash and hljs double-highlight warning +``` + +--- + +## v1.7.4 — Commit #101 + +**Title:** Fix invalid SRI hash for pako.min.js and skip double-highlighting in hljs + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T05:02:26Z +**SHA:** `bfc7301f1813ebfb19dd40003c10cb271225cc9b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/bfc7301f1813ebfb19dd40003c10cb271225cc9b + +### Full Message + +``` +Fix invalid SRI hash for pako.min.js and skip double-highlighting in hljs + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.7.3 — Commit #100 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T04:57:51Z +**SHA:** `e506efce93175fe35ea98fda7713cf8d6d3b6777` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e506efce93175fe35ea98fda7713cf8d6d3b6777 + +### Full Message + +``` +Initial plan +``` + +--- + +## v1.7.2 — Commit #99 + +**Title:** Merge pull request #33 from ThisIs-Developer/copilot/add-share-button-markdown + +**Description:** Fix invalid Docker image tag on PR builds + +**Author:** Baivab Sarkar +**Date:** 2026-03-04T04:55:54Z +**SHA:** `84249045eb1ccdb82f0823efa6d257c728f94b27` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/84249045eb1ccdb82f0823efa6d257c728f94b27 + +### Full Message + +``` +Merge pull request #33 from ThisIs-Developer/copilot/add-share-button-markdown + +Fix invalid Docker image tag on PR builds +``` + +--- + +## v1.7.1 — Commit #98 + +**Title:** Fix invalid Docker tag on PR events by using static sha- prefix + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T04:53:48Z +**SHA:** `92c2fdf0094ceade0b1523c34576f95b387cec29` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/92c2fdf0094ceade0b1523c34576f95b387cec29 + +### Full Message + +``` +Fix invalid Docker tag on PR events by using static sha- prefix + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.7.0 — Commit #97 + +**Title:** Add share button with URL-encoded markdown using pako compression + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T04:49:11Z +**SHA:** `c857f3b5ac62a98b0afc45098aa8daf3d89b0ee9` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c857f3b5ac62a98b0afc45098aa8daf3d89b0ee9 + +### Full Message + +``` +Add share button with URL-encoded markdown using pako compression + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.6.6 — Commit #96 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-04T04:43:58Z +**SHA:** `c06fffc9941fdc32783ba9aec3dc12cac9a17758` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c06fffc9941fdc32783ba9aec3dc12cac9a17758 + +### Full Message + +``` +Initial plan +``` + +--- + +## v1.6.5 — Commit #95 + +**Title:** Merge pull request #27 from ThisIs-Developer/copilot/fix-copy-button-toolbar-order + +**Description:** Mermaid UI: fix Copy button visibility, toolbar order, modal size, and modal Copy action + +**Author:** Baivab Sarkar +**Date:** 2026-03-01T14:53:36Z +**SHA:** `efa5f2b8d0904429d025409c0270f7d602dd2d45` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/efa5f2b8d0904429d025409c0270f7d602dd2d45 + +### Full Message + +``` +Merge pull request #27 from ThisIs-Developer/copilot/fix-copy-button-toolbar-order + +Mermaid UI: fix Copy button visibility, toolbar order, modal size, and modal Copy action +``` + +--- + +## v1.6.4 — Commit #94 + +**Title:** Mermaid UI updates: copy button label, toolbar order, modal size, modal copy button + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-01T14:51:15Z +**SHA:** `3abcdd743e5d018818c5fde6ddb4ee7826d7f786` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3abcdd743e5d018818c5fde6ddb4ee7826d7f786 + +### Full Message + +``` +Mermaid UI updates: copy button label, toolbar order, modal size, modal copy button + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.6.3 — Commit #93 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-03-01T14:47:48Z +**SHA:** `4aeeddd09e8d858a844aff43b526760b46ce8763` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4aeeddd09e8d858a844aff43b526760b46ce8763 + +### Full Message + +``` +Initial plan +``` + +--- + +## v1.6.2 — Commit #92 + +**Title:** Merge pull request #26 from ThisIs-Developer/copilot/add-copy-export-zoom-mermaid-diagrams + +**Description:** feat: Add copy/export & zoom toolbar for rendered Mermaid diagrams + +**Author:** Baivab Sarkar +**Date:** 2026-03-01T06:49:28Z +**SHA:** `03b4b596047611f65b3033536fd6d0b41b2c8ead` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/03b4b596047611f65b3033536fd6d0b41b2c8ead + +### Full Message + +``` +Merge pull request #26 from ThisIs-Developer/copilot/add-copy-export-zoom-mermaid-diagrams + +feat: Add copy/export & zoom toolbar for rendered Mermaid diagrams +``` + +--- + +## v1.6.1 — Commit #91 + +**Title:** refine: Address code review feedback (rounded dimensions, CSS variable bg, timestamped filenames) + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-02-27T16:24:12Z +**SHA:** `4de24246577a00bfebff0cf25d087d6b6d84dd7b` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4de24246577a00bfebff0cf25d087d6b6d84dd7b + +### Full Message + +``` +refine: Address code review feedback (rounded dimensions, CSS variable bg, timestamped filenames) + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.6.0 — Commit #90 + +**Title:** feat: Add copy/export & zoom toolbar for rendered Mermaid diagrams + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-02-27T16:21:22Z +**SHA:** `d75d01cc803921014ccfa1b2aa9092d72ffba349` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d75d01cc803921014ccfa1b2aa9092d72ffba349 + +### Full Message + +``` +feat: Add copy/export & zoom toolbar for rendered Mermaid diagrams + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.5.6 — Commit #89 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-02-27T16:16:19Z +**SHA:** `adf2feb47dbc4f76d0a3754dee88fadf4f85183a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/adf2feb47dbc4f76d0a3754dee88fadf4f85183a + +### Full Message + +``` +Initial plan +``` + +--- + +## v1.5.5 — Commit #88 + +**Title:** Merge pull request #24 from ramezio/main + +**Description:** feat: desktop app port (issue #23) + +**Author:** Baivab Sarkar +**Date:** 2026-02-18T09:58:19Z +**SHA:** `cc0c33f4c3aa930ccc24b68b38bcfc018878d385` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cc0c33f4c3aa930ccc24b68b38bcfc018878d385 + +### Full Message + +``` +Merge pull request #24 from ramezio/main + +feat: desktop app port (issue #23) +``` + +--- + +## v1.5.4 — Commit #87 + +**Title:** fix(desktop): add idempotent binary setup to fix empty build output + +**Description:** `neu build` requires platform binaries in `bin/`, which are gitignored +and absent on fresh clones — producing an empty `dist/` folder. + +Add [setup-binaries.js](cci:7://file:///c:/personal/personal/dev/forks/markdown-viewer-fork/desktop-app/setup-binaries.js:0:0-0:0) which downloads binaries via `neu update` only +when missing or when the pinned version in [neutralino.config.json](cci:7://file:///c:/personal/personal/dev/forks/markdown-viewer-fork/desktop-app/neutralino.config.json:0:0-0:0) +changes, tracked by a `bin/.version` marker file. + +Wire it into the npm script chain via `setup` + `postsetup` hooks so +that `npm run dev`, `npm run build`, and `npm run build:all` all +ensure binaries exist before proceeding. + +- Simplify Dockerfile from 3 stages to 2 (setup handled by npm hooks) +- Add explicit setup step in GitHub Actions workflow +- Update README with setup documentation + +**Author:** ramezio +**Date:** 2026-02-18T07:59:38Z +**SHA:** `cbc523a0bd3a764c68d618cd612da703747bc84d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cbc523a0bd3a764c68d618cd612da703747bc84d + +### Full Message + +``` +fix(desktop): add idempotent binary setup to fix empty build output + +`neu build` requires platform binaries in `bin/`, which are gitignored +and absent on fresh clones — producing an empty `dist/` folder. + +Add [setup-binaries.js](cci:7://file:///c:/personal/personal/dev/forks/markdown-viewer-fork/desktop-app/setup-binaries.js:0:0-0:0) which downloads binaries via `neu update` only +when missing or when the pinned version in [neutralino.config.json](cci:7://file:///c:/personal/personal/dev/forks/markdown-viewer-fork/desktop-app/neutralino.config.json:0:0-0:0) +changes, tracked by a `bin/.version` marker file. + +Wire it into the npm script chain via `setup` + `postsetup` hooks so +that `npm run dev`, `npm run build`, and `npm run build:all` all +ensure binaries exist before proceeding. + +- Simplify Dockerfile from 3 stages to 2 (setup handled by npm hooks) +- Add explicit setup step in GitHub Actions workflow +- Update README with setup documentation +``` + +--- + +## v1.5.3 — Commit #86 + +**Title:** chore(desktop): remove local neu dependency in favor of npx + +**Description:** - Remove `npm install` requirements from README, Dockerfile, and CI. +- Update package.json scripts to use `npx -y` for all neutralino commands. +- Simplify build instructions to rely on npm scripts abstraction. + +**Author:** ramezio +**Date:** 2026-02-17T21:33:28Z +**SHA:** `b782511070e844585562b76f9c508cbaefad4507` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b782511070e844585562b76f9c508cbaefad4507 + +### Full Message + +``` +chore(desktop): remove local neu dependency in favor of npx + +- Remove `npm install` requirements from README, Dockerfile, and CI. +- Update package.json scripts to use `npx -y` for all neutralino commands. +- Simplify build instructions to rely on npm scripts abstraction. +``` + +--- + +## v1.5.2 — Commit #85 + +**Title:** feat(desktop-app): add Neutralinojs desktop port with CI/CD and Docker build + +**Description:** - Add prepare.js build script to copy/transform shared browser-version + files (script.js, styles.css, assets/, index.html) into resources/ +- Add package.json with dev, build (embedded), build:portable, and + build:all npm scripts using @neutralinojs/neu CLI +- Add multi-stage Dockerfile and docker-compose.yml for containerized + builds without local toolchain +- Add GitHub Actions workflow (desktop-build.yml) triggered on + desktop-v* tags to build and publish release assets (executables, + portable ZIPs, source archive, SHA256 checksums) +- Update .gitignore for build artifacts, node_modules, and Docker output +- Add .dockerignore to exclude generated resources and build artifacts +- Update index.html with Neutralinojs script injections and app wrapper +- Update styles.css (desktop-specific overrides inherited from upstream) +- Add README with architecture, dev setup, build + instructions (npm + npx + Docker), and release documentation + +**Author:** ramezio +**Date:** 2026-02-17T19:31:17Z +**SHA:** `7b12698630f9176a0456d5e54f65afc20e28b212` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7b12698630f9176a0456d5e54f65afc20e28b212 + +### Full Message + +``` +feat(desktop-app): add Neutralinojs desktop port with CI/CD and Docker build + +- Add prepare.js build script to copy/transform shared browser-version + files (script.js, styles.css, assets/, index.html) into resources/ +- Add package.json with dev, build (embedded), build:portable, and + build:all npm scripts using @neutralinojs/neu CLI +- Add multi-stage Dockerfile and docker-compose.yml for containerized + builds without local toolchain +- Add GitHub Actions workflow (desktop-build.yml) triggered on + desktop-v* tags to build and publish release assets (executables, + portable ZIPs, source archive, SHA256 checksums) +- Update .gitignore for build artifacts, node_modules, and Docker output +- Add .dockerignore to exclude generated resources and build artifacts +- Update index.html with Neutralinojs script injections and app wrapper +- Update styles.css (desktop-specific overrides inherited from upstream) +- Add README with architecture, dev setup, build + instructions (npm + npx + Docker), and release documentation +``` + +--- + +## v1.5.1 — Commit #84 + +**Title:** chore: update readme.md with preliminary to-do + +**Author:** ramezio +**Date:** 2026-02-10T20:30:35Z +**SHA:** `167fb64bbab593895e78e6eed7641ddc0beede21` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/167fb64bbab593895e78e6eed7641ddc0beede21 + +### Full Message + +``` +chore: update readme.md with preliminary to-do +``` + +--- + +## v1.5.0 — Commit #83 + +**Title:** feat: Implement initial setup for the Markdown Viewer desktop application using Neutralinojs. + +**Author:** ramezio +**Date:** 2026-02-10T19:53:13Z +**SHA:** `687f2c6e2baf09080e5dcc9e515fd651c312fc3a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/687f2c6e2baf09080e5dcc9e515fd651c312fc3a + +### Full Message + +``` +feat: Implement initial setup for the Markdown Viewer desktop application using Neutralinojs. +``` + +--- + +## v1.4.4 — Commit #82 + +**Title:** Merge pull request #20 from ThisIs-Developer/copilot/fix-tab-key-behavior-editor + +**Description:** Fix Tab key to insert indentation instead of changing focus + +**Author:** Baivab Sarkar +**Date:** 2026-01-22T07:59:43Z +**SHA:** `2745de84c5259ffa1bd83cb2d481da7e759c024f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2745de84c5259ffa1bd83cb2d481da7e759c024f + +### Full Message + +``` +Merge pull request #20 from ThisIs-Developer/copilot/fix-tab-key-behavior-editor + +Fix Tab key to insert indentation instead of changing focus +``` + +--- + +## v1.4.3 — Commit #81 + +**Title:** Add Tab key handler to insert 2 spaces instead of moving focus + +**Description:** Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-01-22T07:55:55Z +**SHA:** `5abab83159e01a01cc10ff5a17597348aac50a63` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5abab83159e01a01cc10ff5a17597348aac50a63 + +### Full Message + +``` +Add Tab key handler to insert 2 spaces instead of moving focus + +Co-authored-by: ThisIs-Developer <109382325+ThisIs-Developer@users.noreply.github.com> +``` + +--- + +## v1.4.2 — Commit #80 + +**Title:** Initial plan + +**Author:** copilot-swe-agent[bot] +**Date:** 2026-01-22T07:48:55Z +**SHA:** `6c6d2e926ef40060ee13fb48a60ad5e50a0e0671` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6c6d2e926ef40060ee13fb48a60ad5e50a0e0671 + +### Full Message + +``` +Initial plan +``` + +--- + +## v1.4.1 — Commit #79 + +**Title:** Merge pull request #19 from mmoerman/main + +**Description:** Feature improvements to viewer and PDF export + +**Author:** Baivab Sarkar +**Date:** 2026-01-22T07:43:09Z +**SHA:** `177805d1b51765f9b9143878a59eee9d17817f2c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/177805d1b51765f9b9143878a59eee9d17817f2c + +### Full Message + +``` +Merge pull request #19 from mmoerman/main + +Feature improvements to viewer and PDF export +``` + +--- + +## v1.4.0 — Commit #78 + +**Title:** Feature improvements: +- Added 3 view mode buttons (Editor, Split, Preview) +- Made the Sync button only appear in Split view +- Added ability to resize the views in Split view + +**Description:** PDF improvements/bug fixes: +- Improved rendering of graphics so as to try and avoid splitting them in the middle +- Improved rendering of span cells in tables +- Improved rendering of formulas + +**Author:** Michael Moerman +**Date:** 2026-01-10T14:32:10Z +**SHA:** `9ab5ad89217cbea79abebff444db9b9be4e1b7cb` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9ab5ad89217cbea79abebff444db9b9be4e1b7cb + +### Full Message + +``` +Feature improvements: +- Added 3 view mode buttons (Editor, Split, Preview) +- Made the Sync button only appear in Split view +- Added ability to resize the views in Split view + +PDF improvements/bug fixes: +- Improved rendering of graphics so as to try and avoid splitting them in the middle +- Improved rendering of span cells in tables +- Improved rendering of formulas +``` + +--- + +## v1.3.7 — Commit #77 + +**Title:** Merge pull request #16 from ThisIs-Developer/feature + +**Description:** Feature + +**Author:** Baivab Sarkar +**Date:** 2025-10-11T17:02:34Z +**SHA:** `78e0dcad4f457113b7fafa8fda0b4885a4c46ed4` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/78e0dcad4f457113b7fafa8fda0b4885a4c46ed4 + +### Full Message + +``` +Merge pull request #16 from ThisIs-Developer/feature + +Feature +``` + +--- + +## v1.3.6 — Commit #76 + +**Title:** Merge pull request #15 from JBroeren/main + +**Description:** Approved ✅ + +Huge thanks, @JBroeren — this is a fantastic addition! The Docker support is well thought out and makes local dev and deployment much easier. + +**Author:** Baivab Sarkar +**Date:** 2025-10-11T17:00:37Z +**SHA:** `525152bcfdfa491f327ee2c3cad494f8f5762423` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/525152bcfdfa491f327ee2c3cad494f8f5762423 + +### Full Message + +``` +Merge pull request #15 from JBroeren/main + +Approved ✅ + +Huge thanks, @JBroeren — this is a fantastic addition! The Docker support is well thought out and makes local dev and deployment much easier. +``` + +--- + +## v1.3.5 — Commit #75 + +**Title:** Refactor: Improve PDF export functionality and enhance UI responsiveness + +**Author:** Jacco Broeren +**Date:** 2025-09-29T16:24:03Z +**SHA:** `294422e68c73fda69122095f5118a20b995353df` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/294422e68c73fda69122095f5118a20b995353df + +### Full Message + +``` +Refactor: Improve PDF export functionality and enhance UI responsiveness +``` + +--- + +## v1.3.4 — Commit #74 + +**Title:** Add files via upload + +**Author:** Baivab Sarkar +**Date:** 2025-05-14T19:37:04Z +**SHA:** `1ba9ec197a5f13333b9137398064a31ca22c3320` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1ba9ec197a5f13333b9137398064a31ca22c3320 + +### Full Message + +``` +Add files via upload +``` + +--- + +## v1.3.3 — Commit #73 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2025-05-14T19:13:09Z +**SHA:** `73ce1e1abe85adb3c4bc676e144cfa233b59405d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/73ce1e1abe85adb3c4bc676e144cfa233b59405d + +### Full Message + +``` +Update README.md +``` + +--- + +## v1.3.2 — Commit #72 + +**Title:** Add files via upload + +**Author:** Baivab Sarkar +**Date:** 2025-05-14T18:47:02Z +**SHA:** `b0fef5f58960a1e48a08f5803f3002faa078e456` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b0fef5f58960a1e48a08f5803f3002faa078e456 + +### Full Message + +``` +Add files via upload +``` + +--- + +## v1.3.1 — Commit #71 + +**Title:** Merge pull request #14 from ThisIs-Developer/feature + +**Description:** Optimize PDF Export & Improve UI Feedback + +**Author:** Baivab Sarkar +**Date:** 2025-05-09T13:53:11Z +**SHA:** `8a8c93c4475c17056347a858d3fd1fe5ce230da0` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8a8c93c4475c17056347a858d3fd1fe5ce230da0 + +### Full Message + +``` +Merge pull request #14 from ThisIs-Developer/feature + +Optimize PDF Export & Improve UI Feedback +``` + +--- + +## v1.3.0 — Commit #70 + +**Title:** Update: Optimized PDF export +Add: Progress UI for PDF export +Update: Change name Toggle Mode + +**Author:** Baivab Sarkar +**Date:** 2025-05-09T13:50:09Z +**SHA:** `ae15e31900840156418799fcffe263c728d4d47a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ae15e31900840156418799fcffe263c728d4d47a + +### Full Message + +``` +Update: Optimized PDF export +Add: Progress UI for PDF export +Update: Change name Toggle Mode +``` + +--- + +## v1.2.3 — Commit #69 + +**Title:** Update: PDF export wiht better rendering + +**Author:** Baivab Sarkar +**Date:** 2025-05-09T11:40:31Z +**SHA:** `fc6fdc036045d166b94404a4c087c660fb93ea6d` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/fc6fdc036045d166b94404a4c087c660fb93ea6d + +### Full Message + +``` +Update: PDF export wiht better rendering +``` + +--- + +## v1.2.2 — Commit #68 + +**Title:** Fix: PDF Export: Replace html2pdf with jsPDF + html2canvas + +**Author:** Baivab Sarkar +**Date:** 2025-05-09T08:20:06Z +**SHA:** `f06b8d0491d643abfa9effd7f0832ed77714e368` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/f06b8d0491d643abfa9effd7f0832ed77714e368 + +### Full Message + +``` +Fix: PDF Export: Replace html2pdf with jsPDF + html2canvas +``` + +--- + +## v1.2.1 — Commit #67 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T18:44:09Z +**SHA:** `45733bccff9d7559420e3230e8c672051f0f8ed0` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/45733bccff9d7559420e3230e8c672051f0f8ed0 + +### Full Message + +``` +Update README.md +``` + +--- + +## v1.2.0 — Commit #66 + +**Title:** Merge pull request #12 from ThisIs-Developer/feature + +**Description:** Update README Documentation + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T18:39:03Z +**SHA:** `a443f1e4f758da011cdeacf71e1369ff8e445c60` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a443f1e4f758da011cdeacf71e1369ff8e445c60 + +### Full Message + +``` +Merge pull request #12 from ThisIs-Developer/feature + +Update README Documentation +``` + +--- + +## v1.1.4 — Commit #65 + +**Title:** Update: README + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T18:37:31Z +**SHA:** `fb64ffcee056637093541f2e647f16e98e30e7e2` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/fb64ffcee056637093541f2e647f16e98e30e7e2 + +### Full Message + +``` +Update: README +``` + +--- + +## v1.1.3 — Commit #64 + +**Title:** Merge pull request #11 from ThisIs-Developer/feature + +**Description:** Update Meta Tags and SEO Enhancements + UI Adjustments + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T17:09:49Z +**SHA:** `004b7abdd7988148462fe2e3596f44eb80aafb2e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/004b7abdd7988148462fe2e3596f44eb80aafb2e + +### Full Message + +``` +Merge pull request #11 from ThisIs-Developer/feature + +Update Meta Tags and SEO Enhancements + UI Adjustments +``` + +--- + +## v1.1.2 — Commit #63 + +**Title:** Update: Media Quray +Add: Github Link +Remove: Tips Page + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T17:08:27Z +**SHA:** `55718693eaf48cccd56541cf40c858d0c1387418` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/55718693eaf48cccd56541cf40c858d0c1387418 + +### Full Message + +``` +Update: Media Quray +Add: Github Link +Remove: Tips Page +``` + +--- + +## v1.1.1 — Commit #62 + +**Title:** Update: Description/keyword + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T16:44:15Z +**SHA:** `28a346ab6269163c686fb56fa810fd04609aa837` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/28a346ab6269163c686fb56fa810fd04609aa837 + +### Full Message + +``` +Update: Description/keyword +``` + +--- + +## v1.1.0 — Commit #61 + +**Title:** Merge pull request #10 from ThisIs-Developer/feature + +**Description:** Remove Incorrect Image Tag Link + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T16:01:41Z +**SHA:** `a5d48820f39328f9666ff7e120c36bad36c87fed` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a5d48820f39328f9666ff7e120c36bad36c87fed + +### Full Message + +``` +Merge pull request #10 from ThisIs-Developer/feature + +Remove Incorrect Image Tag Link +``` + +--- + +## v1.0.9 — Commit #60 + +**Title:** Remove: Image tag link + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T16:00:10Z +**SHA:** `9d0f5be04e1d23726444795f63764d2086032b87` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9d0f5be04e1d23726444795f63764d2086032b87 + +### Full Message + +``` +Remove: Image tag link +``` + +--- + +## v1.0.8 — Commit #59 + +**Title:** Merge pull request #9 from ThisIs-Developer/feature + +**Description:** Update Welcome Markdown Example + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T15:57:06Z +**SHA:** `95fc984aa345423f2d8e23eade316ecbc0384aa5` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/95fc984aa345423f2d8e23eade316ecbc0384aa5 + +### Full Message + +``` +Merge pull request #9 from ThisIs-Developer/feature + +Update Welcome Markdown Example +``` + +--- + +## v1.0.7 — Commit #58 + +**Title:** Update: Simple Markdown + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T15:55:47Z +**SHA:** `a569b5bc8e4a9e46737cb7a9a4c2ed3d04cada59` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a569b5bc8e4a9e46737cb7a9a4c2ed3d04cada59 + +### Full Message + +``` +Update: Simple Markdown +``` + +--- + +## v1.0.6 — Commit #57 + +**Title:** Merge pull request #8 from ThisIs-Developer/feature + +**Description:** Add Emoji Support Using JoyPixels (emoji-toolkit) + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T14:19:26Z +**SHA:** `b834a2725ec3799238dd5cb7eb81c9482127c344` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b834a2725ec3799238dd5cb7eb81c9482127c344 + +### Full Message + +``` +Merge pull request #8 from ThisIs-Developer/feature + +Add Emoji Support Using JoyPixels (emoji-toolkit) +``` + +--- + +## v1.0.5 — Commit #56 + +**Title:** Update: Support for github emojis + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T14:17:36Z +**SHA:** `960fbc5e5705c4809cb14224a985ed06373508cf` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/960fbc5e5705c4809cb14224a985ed06373508cf + +### Full Message + +``` +Update: Support for github emojis +``` + +--- + +## v1.0.4 — Commit #55 + +**Title:** Merge pull request #7 from ThisIs-Developer/feature + +**Description:** Update Mermaid to v11.6.0 and Fix Dark Mode Initialization Bug + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T13:28:56Z +**SHA:** `dbcfdd4c3de048d5e505f3697b2b443af9df1ceb` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/dbcfdd4c3de048d5e505f3697b2b443af9df1ceb + +### Full Message + +``` +Merge pull request #7 from ThisIs-Developer/feature + +Update Mermaid to v11.6.0 and Fix Dark Mode Initialization Bug +``` + +--- + +## v1.0.3 — Commit #54 + +**Title:** Fix: initial Mermaid theme + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T13:26:10Z +**SHA:** `5380946a5a03b750fe2954fab743a92401a83272` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5380946a5a03b750fe2954fab743a92401a83272 + +### Full Message + +``` +Fix: initial Mermaid theme +``` + +--- + +## v1.0.2 — Commit #53 + +**Title:** Update: Latest version support Mermaid + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T11:56:46Z +**SHA:** `da92568df567392024679c88bab900da54d00836` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/da92568df567392024679c88bab900da54d00836 + +### Full Message + +``` +Update: Latest version support Mermaid +``` + +--- + +## v1.0.1 — Commit #52 + +**Title:** Merge pull request #6 from ThisIs-Developer/feature + +**Description:** Add: Support for Mermaid Diagrams and LaTeX Math Expressions + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T11:39:47Z +**SHA:** `4e1fb019ebd9e45087132987eef2c87414bad73f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4e1fb019ebd9e45087132987eef2c87414bad73f + +### Full Message + +``` +Merge pull request #6 from ThisIs-Developer/feature + +Add: Support for Mermaid Diagrams and LaTeX Math Expressions +``` + +--- + +## v1.0.0 — Commit #51 + +**Title:** Add: Support for Mermaid Diagrams and LaTeX Math Expressions + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T11:38:06Z +**SHA:** `cc53828c4ac3a164c0f4df64cd34e78ae2d15fe7` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/cc53828c4ac3a164c0f4df64cd34e78ae2d15fe7 + +### Full Message + +``` +Add: Support for Mermaid Diagrams and LaTeX Math Expressions +``` + +--- + +## v0.5.6 — Commit #50 + +**Title:** Merge pull request #5 from ThisIs-Developer/feature + +**Description:** 🔄 Update Copy HTML to Copy Markdown + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T10:46:23Z +**SHA:** `e7a661106a282ef5abdda85be88efdc4f20e6377` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/e7a661106a282ef5abdda85be88efdc4f20e6377 + +### Full Message + +``` +Merge pull request #5 from ThisIs-Developer/feature + +🔄 Update Copy HTML to Copy Markdown +``` + +--- + +## v0.5.5 — Commit #49 + +**Title:** Update: change copyHtmlBtn -> copyMdBtn + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T08:55:14Z +**SHA:** `6f838dfeddbd1918a0805f3e985a297cec0c2b43` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6f838dfeddbd1918a0805f3e985a297cec0c2b43 + +### Full Message + +``` +Update: change copyHtmlBtn -> copyMdBtn +``` + +--- + +## v0.5.4 — Commit #48 + +**Title:** Merge pull request #4 from ThisIs-Developer/feature + +**Description:** Add mobile hamburger menu with full feature support + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T07:18:34Z +**SHA:** `a93c940aaa988d0dd4d8a1c3f7c54c26b4d10a37` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/a93c940aaa988d0dd4d8a1c3f7c54c26b4d10a37 + +### Full Message + +``` +Merge pull request #4 from ThisIs-Developer/feature + +Add mobile hamburger menu with full feature support +``` + +--- + +## v0.5.3 — Commit #47 + +**Title:** Update: Website navbar Name + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T07:15:09Z +**SHA:** `c3a3fa465c6ce45462a472700ceb377f8be655cc` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/c3a3fa465c6ce45462a472700ceb377f8be655cc + +### Full Message + +``` +Update: Website navbar Name +``` + +--- + +## v0.5.2 — Commit #46 + +**Title:** Fix: UI for Media quray + +**Author:** Baivab Sarkar +**Date:** 2025-05-03T07:13:01Z +**SHA:** `85689c8a31ca10a0b3d4b064ea6698f72ca7f58f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/85689c8a31ca10a0b3d4b064ea6698f72ca7f58f + +### Full Message + +``` +Fix: UI for Media quray +``` + +--- + +## v0.5.1 — Commit #45 + +**Title:** Merge pull request #3 from ThisIs-Developer/feature + +**Description:** Add Favicon and SEO Meta Tags for Better Branding and Discoverability + +**Author:** Baivab Sarkar +**Date:** 2025-05-01T16:37:43Z +**SHA:** `d54a170d27e772225ac0562231e1ea01361711e3` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/d54a170d27e772225ac0562231e1ea01361711e3 + +### Full Message + +``` +Merge pull request #3 from ThisIs-Developer/feature + +Add Favicon and SEO Meta Tags for Better Branding and Discoverability +``` + +--- + +## v0.5.0 — Commit #44 + +**Title:** Update: Add favicon +Add: Metatags fro SEO + +**Author:** Baivab Sarkar +**Date:** 2025-05-01T16:34:02Z +**SHA:** `b761575f3b8ef85ec6c4306ca81667a396548432` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b761575f3b8ef85ec6c4306ca81667a396548432 + +### Full Message + +``` +Update: Add favicon +Add: Metatags fro SEO +``` + +--- + +## v0.4.10 — Commit #43 + +**Title:** Fix: remove padding editorPanel + +**Author:** Baivab Sarkar +**Date:** 2025-05-01T11:39:00Z +**SHA:** `ec49a606141a7652c0a00f17e2af586a36199778` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ec49a606141a7652c0a00f17e2af586a36199778 + +### Full Message + +``` +Fix: remove padding editorPanel +``` + +--- + +## v0.4.9 — Commit #42 + +**Title:** Merge pull request #2 from ThisIs-Developer/feature + +**Description:** Add Drop Zone Toggle & CSS Fixes + +**Author:** Baivab Sarkar +**Date:** 2025-05-01T11:19:56Z +**SHA:** `8734259c64b8a35f292c7f2b786bbac8adbacbbf` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8734259c64b8a35f292c7f2b786bbac8adbacbbf + +### Full Message + +``` +Merge pull request #2 from ThisIs-Developer/feature + +Add Drop Zone Toggle & CSS Fixes +``` + +--- + +## v0.4.8 — Commit #41 + +**Title:** Fix: ToolBar issue + +**Author:** Baivab Sarkar +**Date:** 2025-05-01T11:13:12Z +**SHA:** `5be5e86d04505549152cd4f737e37605866099be` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5be5e86d04505549152cd4f737e37605866099be + +### Full Message + +``` +Fix: ToolBar issue +``` + +--- + +## v0.4.7 — Commit #40 + +**Title:** Update: Add closeBtn in dropzone + +**Author:** Baivab Sarkar +**Date:** 2025-05-01T10:57:53Z +**SHA:** `9fc7eeca6142231ae03777b37f3f0abf6daac1ee` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9fc7eeca6142231ae03777b37f3f0abf6daac1ee + +### Full Message + +``` +Update: Add closeBtn in dropzone +``` + +--- + +## v0.4.6 — Commit #39 + +**Title:** Merge pull request #1 from ThisIs-Developer/UI + +**Description:** feat: New UI, Add theme toggle, drop zone support, improved markdown rendering and UI enhancements + +**Author:** Baivab Sarkar +**Date:** 2025-05-01T07:46:09Z +**SHA:** `6bf47347647cb7803bdf94e441d2bdce94d3e3c6` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6bf47347647cb7803bdf94e441d2bdce94d3e3c6 + +### Full Message + +``` +Merge pull request #1 from ThisIs-Developer/UI + +feat: New UI, Add theme toggle, drop zone support, improved markdown rendering and UI enhancements +``` + +--- + +## v0.4.5 — Commit #38 + +**Title:** Remove: LivePage Dir + +**Author:** Baivab Sarkar +**Date:** 2025-05-01T07:36:53Z +**SHA:** `ab4b5c05cfeadd2e388c25cf07dc80a3a6014e24` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ab4b5c05cfeadd2e388c25cf07dc80a3a6014e24 + +### Full Message + +``` +Remove: LivePage Dir +``` + +--- + +## v0.4.4 — Commit #37 + +**Title:** Update: Sync/StatsCard + +**Author:** Baivab Sarkar +**Date:** 2025-05-01T07:35:49Z +**SHA:** `bc0526b1210eb49b07ce9e4fbea07a05388ade29` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/bc0526b1210eb49b07ce9e4fbea07a05388ade29 + +### Full Message + +``` +Update: Sync/StatsCard +``` + +--- + +## v0.4.3 — Commit #36 + +**Title:** Update: Sync/StatsCard + +**Author:** Baivab Sarkar +**Date:** 2025-04-30T21:16:35Z +**SHA:** `8f72846e07f413014aca8cbcd260c1e13cd838d9` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8f72846e07f413014aca8cbcd260c1e13cd838d9 + +### Full Message + +``` +Update: Sync/StatsCard +``` + +--- + +## v0.4.2 — Commit #35 + +**Title:** Fix: Coloring of Code brases in Darktoggle + +**Author:** Baivab Sarkar +**Date:** 2025-04-30T20:30:50Z +**SHA:** `127d274a2ab78662f7d3752378f855dcc6d078b2` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/127d274a2ab78662f7d3752378f855dcc6d078b2 + +### Full Message + +``` +Fix: Coloring of Code brases in Darktoggle +``` + +--- + +## v0.4.1 — Commit #34 + +**Title:** Fix: file path + +**Author:** Baivab Sarkar +**Date:** 2025-04-30T19:41:50Z +**SHA:** `1129d0efaf0569d20affd5272a59e37d4dd77287` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1129d0efaf0569d20affd5272a59e37d4dd77287 + +### Full Message + +``` +Fix: file path +``` + +--- + +## v0.4.0 — Commit #33 + +**Title:** Update: New UI + +**Author:** Baivab Sarkar +**Date:** 2025-04-30T19:26:35Z +**SHA:** `59c4a86cfb7825601787c4f05a259e0a5342a451` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/59c4a86cfb7825601787c4f05a259e0a5342a451 + +### Full Message + +``` +Update: New UI +``` + +--- + +## v0.3.14 — Commit #32 + +**Title:** Updated Readme + +**Author:** ThisIs-Developer +**Date:** 2024-08-23T07:54:46Z +**SHA:** `6e79b4570be419b1dab77bd388356edecfddeda0` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/6e79b4570be419b1dab77bd388356edecfddeda0 + +### Full Message + +``` +Updated Readme +``` + +--- + +## v0.3.13 — Commit #31 + +**Title:** Updated Index Link + +**Author:** ThisIs-Developer +**Date:** 2024-08-23T07:52:26Z +**SHA:** `8bdfb0d7270bb9ec060b0eeba8946da5712b1d2f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/8bdfb0d7270bb9ec060b0eeba8946da5712b1d2f + +### Full Message + +``` +Updated Index Link +``` + +--- + +## v0.3.12 — Commit #30 + +**Title:** Updated files + +**Author:** ThisIs-Developer +**Date:** 2024-08-23T07:50:27Z +**SHA:** `3ac144069faf7ec17a9cdd8629eb6dd10581aac3` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3ac144069faf7ec17a9cdd8629eb6dd10581aac3 + +### Full Message + +``` +Updated files +``` + +--- + +## v0.3.11 — Commit #29 + +**Title:** fix: css + +**Author:** ThisIs-Developer +**Date:** 2024-04-13T04:20:11Z +**SHA:** `65401c5ae6ed5ebc6c640e5e8d2167e488b648a2` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/65401c5ae6ed5ebc6c640e5e8d2167e488b648a2 + +### Full Message + +``` +fix: css +``` + +--- + +## v0.3.10 — Commit #28 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2024-04-12T15:27:39Z +**SHA:** `3f56965c7afb9a9335366495ddb545cb5c896a33` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3f56965c7afb9a9335366495ddb545cb5c896a33 + +### Full Message + +``` +Update README.md +``` + +--- + +## v0.3.9 — Commit #27 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2024-04-12T15:21:41Z +**SHA:** `26062cee8f05914519c6c83d72de93f5290ea0d1` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/26062cee8f05914519c6c83d72de93f5290ea0d1 + +### Full Message + +``` +Update README.md +``` + +--- + +## v0.3.8 — Commit #26 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2024-04-12T15:20:49Z +**SHA:** `1a0cb55e9310ed3acd858e85dfd8fb8c6995fe2f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1a0cb55e9310ed3acd858e85dfd8fb8c6995fe2f + +### Full Message + +``` +Update README.md +``` + +--- + +## v0.3.7 — Commit #25 + +**Title:** Update LICENSE + +**Author:** Baivab Sarkar +**Date:** 2024-04-12T15:19:06Z +**SHA:** `faf12c3723f61ae148c644c4164b845b1dd517f0` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/faf12c3723f61ae148c644c4164b845b1dd517f0 + +### Full Message + +``` +Update LICENSE +``` + +--- + +## v0.3.6 — Commit #24 + +**Title:** add tooltip@media1200px + +**Author:** ThisIs-Developer +**Date:** 2024-04-12T15:10:37Z +**SHA:** `2e8a1ce98b2c5e7362e81a35f777c744cb8691ac` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2e8a1ce98b2c5e7362e81a35f777c744cb8691ac + +### Full Message + +``` +add tooltip@media1200px +``` + +--- + +## v0.3.5 — Commit #23 + +**Title:** fix: css + +**Author:** ThisIs-Developer +**Date:** 2024-04-12T12:53:18Z +**SHA:** `b370daac7b1ca68ad75fdeb27525c1a1e116e518` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b370daac7b1ca68ad75fdeb27525c1a1e116e518 + +### Full Message + +``` +fix: css +``` + +--- + +## v0.3.4 — Commit #22 + +**Title:** add more btn/tooltips + +**Author:** ThisIs-Developer +**Date:** 2024-04-12T10:29:17Z +**SHA:** `10b87b5cd6de5c8ecc8cb30bb0ad7e8f37dbe6ca` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/10b87b5cd6de5c8ecc8cb30bb0ad7e8f37dbe6ca + +### Full Message + +``` +add more btn/tooltips +``` + +--- + +## v0.3.3 — Commit #21 + +**Title:** fix: spelling + +**Author:** ThisIs-Developer +**Date:** 2024-04-12T08:43:42Z +**SHA:** `4bef4bda95890d5ff696b11915f828993aab40b4` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/4bef4bda95890d5ff696b11915f828993aab40b4 + +### Full Message + +``` +fix: spelling +``` + +--- + +## v0.3.2 — Commit #20 + +**Title:** Add Reading-stats + +**Author:** ThisIs-Developer +**Date:** 2024-04-12T08:23:40Z +**SHA:** `b60b9020912e81d8c00551de19155ab5e47a7f57` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b60b9020912e81d8c00551de19155ab5e47a7f57 + +### Full Message + +``` +Add Reading-stats +``` + +--- + +## v0.3.1 — Commit #19 + +**Title:** Merge branch 'main' of https://github.com/ThisIs-Developer/Markdown-Viwer + +**Author:** ThisIs-Developer +**Date:** 2024-04-11T21:41:38Z +**SHA:** `eceb56e475549d9582aef3a25ed18b403b93735a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/eceb56e475549d9582aef3a25ed18b403b93735a + +### Full Message + +``` +Merge branch 'main' of https://github.com/ThisIs-Developer/Markdown-Viwer +``` + +--- + +## v0.3.0 — Commit #18 + +**Title:** Add Tips/MediaQuray updated + +**Author:** ThisIs-Developer +**Date:** 2024-04-11T21:41:28Z +**SHA:** `ec5318df41778f9d2900312b9763814f2c49e498` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ec5318df41778f9d2900312b9763814f2c49e498 + +### Full Message + +``` +Add Tips/MediaQuray updated +``` + +--- + +## v0.2.8 — Commit #17 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2024-04-10T06:15:09Z +**SHA:** `3d4a95e4dc081f628d56e57b0db7c717b28438a5` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3d4a95e4dc081f628d56e57b0db7c717b28438a5 + +### Full Message + +``` +Update README.md +``` + +--- + +## v0.2.7 — Commit #16 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2024-04-10T06:09:18Z +**SHA:** `b4e4ed48417a8d9c5b3d0962e7af46f30a691b0c` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/b4e4ed48417a8d9c5b3d0962e7af46f30a691b0c + +### Full Message + +``` +Update README.md +``` + +--- + +## v0.2.6 — Commit #15 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2024-04-10T06:06:51Z +**SHA:** `55c7b96cfd76ec0c8f31dbed203f25dbbc7af594` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/55c7b96cfd76ec0c8f31dbed203f25dbbc7af594 + +### Full Message + +``` +Update README.md +``` + +--- + +## v0.2.5 — Commit #14 + +**Title:** Update README.md + +**Author:** Baivab Sarkar +**Date:** 2024-04-09T20:31:05Z +**SHA:** `bd4e8cf41696e91ea807671a43c78c58a958f1df` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/bd4e8cf41696e91ea807671a43c78c58a958f1df + +### Full Message + +``` +Update README.md +``` + +--- + +## v0.2.4 — Commit #13 + +**Title:** updated css + +**Author:** ThisIs-Developer +**Date:** 2024-04-09T20:04:23Z +**SHA:** `7cd66bad4778f65c6932a8089bdb6a7072b28d83` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/7cd66bad4778f65c6932a8089bdb6a7072b28d83 + +### Full Message + +``` +updated css +``` + +--- + +## v0.2.3 — Commit #12 + +**Title:** updated css + +**Author:** ThisIs-Developer +**Date:** 2024-04-09T19:59:16Z +**SHA:** `1b19bc664c2968ea217d2dbd6e8de8b91ab5a2b0` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/1b19bc664c2968ea217d2dbd6e8de8b91ab5a2b0 + +### Full Message + +``` +updated css +``` + +--- + +## v0.2.2 — Commit #11 + +**Title:** remove unused js + +**Author:** ThisIs-Developer +**Date:** 2024-04-09T19:47:10Z +**SHA:** `bfd248c48044ccd4beae4977fc1e00d00bd9058f` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/bfd248c48044ccd4beae4977fc1e00d00bd9058f + +### Full Message + +``` +remove unused js +``` + +--- + +## v0.2.1 — Commit #10 + +**Title:** Add import + +**Author:** ThisIs-Developer +**Date:** 2024-04-09T19:31:57Z +**SHA:** `dd9548dcc76f64a9315143ee0d18b18315f566a9` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/dd9548dcc76f64a9315143ee0d18b18315f566a9 + +### Full Message + +``` +Add import +``` + +--- + +## v0.2.0 — Commit #9 + +**Title:** Add preview + +**Author:** ThisIs-Developer +**Date:** 2024-04-09T17:43:58Z +**SHA:** `3d6ff67f8fc0d52f35cb9e6a98cc3f197073356a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/3d6ff67f8fc0d52f35cb9e6a98cc3f197073356a + +### Full Message + +``` +Add preview +``` + +--- + +## v0.1.7 — Commit #8 + +**Title:** Colour + +**Author:** ThisIs-Developer +**Date:** 2024-04-09T16:35:44Z +**SHA:** `801f830768cee83ab70ead1882f78486edba05b9` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/801f830768cee83ab70ead1882f78486edba05b9 + +### Full Message + +``` +Colour +``` + +--- + +## v0.1.6 — Commit #7 + +**Title:** fix: layout boarder + +**Author:** ThisIs-Developer +**Date:** 2024-04-09T16:03:06Z +**SHA:** `29578f1fd0da242572d64a9daded27023516387e` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/29578f1fd0da242572d64a9daded27023516387e + +### Full Message + +``` +fix: layout boarder +``` + +--- + +## v0.1.5 — Commit #6 + +**Title:** fix: layout/add logo-nav + +**Author:** ThisIs-Developer +**Date:** 2024-04-09T15:55:34Z +**SHA:** `9fad69c959aa64d56396c5948a8f2f5f34af5b11` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/9fad69c959aa64d56396c5948a8f2f5f34af5b11 + +### Full Message + +``` +fix: layout/add logo-nav +``` + +--- + +## v0.1.4 — Commit #5 + +**Title:** fix: layout(navbar/media + +**Author:** ThisIs-Developer +**Date:** 2024-04-09T15:05:19Z +**SHA:** `42db836fc05cda88edd52668fa8f7f6b90ad955a` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/42db836fc05cda88edd52668fa8f7f6b90ad955a + +### Full Message + +``` +fix: layout(navbar/media +``` + +--- + +## v0.1.3 — Commit #4 + +**Title:** Updated layout + +**Author:** ThisIs-Developer +**Date:** 2024-04-08T22:10:46Z +**SHA:** `ecf02617c6d244e2dddac170f0c5550e3e8dc7e1` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/ecf02617c6d244e2dddac170f0c5550e3e8dc7e1 + +### Full Message + +``` +Updated layout +``` + +--- + +## v0.1.2 — Commit #3 + +**Title:** add nav@export(all) + +**Author:** ThisIs-Developer +**Date:** 2024-04-08T20:32:56Z +**SHA:** `37a3ef0e31900f24a71d323733496db5621b9464` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/37a3ef0e31900f24a71d323733496db5621b9464 + +### Full Message + +``` +add nav@export(all) +``` + +--- + +## v0.1.1 — Commit #2 + +**Title:** add markdown page + +**Author:** ThisIs-Developer +**Date:** 2024-04-08T18:24:17Z +**SHA:** `2b37ae90bb8e60418469b806cfc3b67ad9ff2059` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/2b37ae90bb8e60418469b806cfc3b67ad9ff2059 + +### Full Message + +``` +add markdown page +``` + +--- + +## v0.1.0 — Commit #1 + +**Title:** Initial commit + +**Author:** Baivab Sarkar +**Date:** 2024-04-08T18:18:31Z +**SHA:** `5d34b992c1d8c4ad4dfd3cf79b5a627f28a163b1` +**URL:** https://github.com/ThisIs-Developer/Markdown-Viewer/commit/5d34b992c1d8c4ad4dfd3cf79b5a627f28a163b1 + +### Full Message + +``` +Initial commit +``` + +---