Files
fiveq-website-2026/massiveedit/en/changelog.html
T
2026-08-24 15:37:08 +08:00

117 lines
5.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MassiveEdit Changelog</title>
<meta name="description" content="Version history for MassiveEdit." />
<script>
(function () {
try {
var t = localStorage.getItem("massiveedit-theme-mode") || "auto";
if (t !== "light" && t !== "dark") t = "auto";
document.documentElement.setAttribute("data-theme", t);
} catch (e) {}
})();
</script>
<link rel="stylesheet" href="../site.css" />
</head>
<body>
<header class="wrap">
<div class="topbar">
<div class="brand">MassiveEdit</div>
<nav class="topnav">
<a href="./index.html">Home</a>
<a href="./download.html">Download</a>
<a class="active" href="./changelog.html">Changelog</a>
<a href="./privacy.html">Privacy</a>
<a href="https://github.com/paineliu/massiveedit" target="_blank" rel="noopener noreferrer">GitHub</a>
<a href="../changelog.html" data-lang-switch="zh"></a>
<div class="theme-switch" role="group" aria-label="Theme">
<button type="button" data-theme-mode="auto" aria-pressed="false">Auto</button>
<button type="button" data-theme-mode="light" aria-pressed="false">Light</button>
<button type="button" data-theme-mode="dark" aria-pressed="false">Dark</button>
</div>
</nav>
</div>
</header>
<main class="wrap">
<h1>Changelog</h1>
<p class="lead">GitHub Releases is the source of truth. This page summarizes major changes.</p>
<article class="entry">
<div class="entry-head"><h2>v1.0.2</h2><span class="date">2026-06-14</span></div>
<ul>
<li>Faster opening of very large files (tens of GB); first screen content appears immediately.</li>
<li>Fixed scrollbar drag freezing on large files.</li>
<li>Added a horizontal scrollbar for extra-long lines.</li>
<li>Fixed repeated prompts when an open file is continuously modified externally.</li>
<li>Fixed line numbers disappearing after horizontal scrolling.</li>
</ul>
</article>
<article class="entry">
<div class="entry-head"><h2>v1.0.1</h2><span class="date">2026-04-26</span></div>
<ul>
<li>Improved macOS App Store packaging and sandbox entitlements.</li>
<li>Refined Qt deployment for more reliable macOS builds.</li>
<li>Added App Store preflight checks (dependencies, signing, entitlements).</li>
</ul>
</article>
<article class="entry">
<div class="entry-head"><h2>v1.0.0</h2><span class="date">2026-04-20</span></div>
<ul>
<li>Initial macOS App Store release.</li>
<li>Streaming open, virtualized rendering, and basic editing for large files.</li>
<li>Find/replace, undo/redo, encoding, and line-ending controls.</li>
<li>Updated app icon and macOS bundle metadata.</li>
</ul>
</article>
<article class="entry">
<div class="entry-head"><h2>v0.1.3</h2><span class="date">2026-03-30</span></div>
<ul>
<li>Fixed mojibake in the "app is running" installer prompt on Windows (NSIS script now parsed as UTF-8).</li>
<li>Bumped version to 0.1.3 and synchronized installer naming and website labels.</li>
</ul>
</article>
<article class="entry">
<div class="entry-head"><h2>v0.1.2</h2><span class="date">2026-03-30</span></div>
<ul>
<li>Windows installer naming updated to <code>MassiveEdit-version-Setup.exe</code>.</li>
<li>NSIS install/uninstall now checks whether the app is running and asks the user to retry after closing it.</li>
<li>Website static pages launched (Home, Download, Changelog, Privacy).</li>
</ul>
</article>
<article class="entry">
<div class="entry-head"><h2>v0.1.1</h2><span class="date">2026-03-30</span></div>
<ul>
<li>Fixed Windows Unicode file path opening by using UTF-16 path conversion.</li>
<li>Added drag-and-drop file opening in the main window.</li>
<li>Improved Windows executable and installer icon setup.</li>
</ul>
</article>
<article class="entry">
<div class="entry-head"><h2>v0.1.0</h2><span class="date">2026-03-29</span></div>
<ul>
<li>First cross-platform usable release with large-file browsing and basic editing.</li>
<li>Included find/replace, undo/redo, encoding, and line-ending controls.</li>
<li>Provided build/packaging scripts for Windows, macOS, and Linux.</li>
</ul>
</article>
</main>
<footer class="wrap">
<div>Five Questions (Beijing) Technology Co., Ltd.</div>
<div><a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025143052号</a></div>
</footer>
<script src="../theme.js"></script>
<script src="../lang.js" defer></script>
</body>
</html>