change html
This commit is contained in:
@@ -0,0 +1,116 @@
|
||||
<!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>
|
||||
@@ -0,0 +1,77 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>MassiveEdit Downloads</title>
|
||||
<meta name="description" content="Download MassiveEdit for Windows, macOS, and Linux." />
|
||||
<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 class="active" href="./download.html">Download</a>
|
||||
<a 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="../download.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>Download MassiveEdit</h1>
|
||||
<p class="lead">Current website version: <strong>1.0.2</strong> (macOS App Store). Windows / Linux packages are on GitHub Releases.</p>
|
||||
<p class="tip">
|
||||
Please use the <a href="https://github.com/paineliu/massiveedit/releases" target="_blank" rel="noopener noreferrer">Releases page</a>
|
||||
for the latest packages. Windows installer naming pattern: <code>MassiveEdit-version-Setup.exe</code>.
|
||||
</p>
|
||||
|
||||
<section class="grid">
|
||||
<article class="card">
|
||||
<h2>Windows</h2>
|
||||
<p class="meta">NSIS installer and ZIP package are both available.<br />Example: <code>MassiveEdit-0.1.3-Setup.exe</code></p>
|
||||
<a class="btn btn-primary" href="https://github.com/paineliu/massiveedit/releases" target="_blank" rel="noopener noreferrer">Download for Windows</a>
|
||||
</article>
|
||||
<article class="card">
|
||||
<h2>macOS</h2>
|
||||
<p class="meta">Mac App Store is recommended (currently 1.0.2).<br />DMG and tar.gz are also available on Releases.</p>
|
||||
<a class="btn btn-primary" href="https://github.com/paineliu/massiveedit/releases" target="_blank" rel="noopener noreferrer">Download for macOS</a>
|
||||
</article>
|
||||
<article class="card">
|
||||
<h2>Linux</h2>
|
||||
<p class="meta">DEB / RPM / tar.gz package options are provided depending on the pipeline.</p>
|
||||
<a class="btn btn-primary" href="https://github.com/paineliu/massiveedit/releases" target="_blank" rel="noopener noreferrer">Download for Linux</a>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<section class="help">
|
||||
Need help? Contact <a href="mailto:support@fivequestions.cn">support@fivequestions.cn</a> or <a href="tel:+8613661144700">+86 13661144700</a>.
|
||||
</section>
|
||||
</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>
|
||||
@@ -0,0 +1,123 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>MassiveEdit - Large File Text Editor</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="MassiveEdit is a high-performance large-file text editor developed by Five Questions (Beijing) Technology Co., Ltd."
|
||||
/>
|
||||
<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="hero">
|
||||
<div class="wrap">
|
||||
<div class="topbar">
|
||||
<div class="brand"><span class="dot"></span>MassiveEdit</div>
|
||||
<nav class="topnav">
|
||||
<a class="active" href="./index.html">Home</a>
|
||||
<a href="./download.html">Download</a>
|
||||
<a 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="../index.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>
|
||||
<div class="hero-grid">
|
||||
<div>
|
||||
<p class="eyebrow">Large File Editor · v1.0.2</p>
|
||||
<h1>Built for Massive Text Files</h1>
|
||||
<p class="lead">
|
||||
MassiveEdit is a Qt-based large-file text editor focused on startup speed, smooth scrolling, and reliable editing behavior.<br />
|
||||
Maintained by Five Questions (Beijing) Technology Co., Ltd.
|
||||
</p>
|
||||
<div class="cta">
|
||||
<a class="btn btn-primary" href="./download.html">Get Downloads</a>
|
||||
<a class="btn btn-ghost" href="./changelog.html">See Changelog</a>
|
||||
</div>
|
||||
</div>
|
||||
<aside class="hero-panel">
|
||||
<div class="kpi">
|
||||
<div class="kpi-item"><strong>C++20</strong><span>Core Language</span></div>
|
||||
<div class="kpi-item"><strong>Qt 6</strong><span>Cross-platform UI</span></div>
|
||||
<div class="kpi-item"><strong>MIT</strong><span>Open-source License</span></div>
|
||||
<div class="kpi-item"><strong>Win / macOS / Linux</strong><span>Platform Coverage</span></div>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="wrap">
|
||||
<section>
|
||||
<h2 class="title">Core Capabilities</h2>
|
||||
<p class="sub">Designed for readability, search, and editing on very large text files with responsive interaction.</p>
|
||||
<div class="grid-3">
|
||||
<article class="card">
|
||||
<h3>Fast Large-file Loading</h3>
|
||||
<p>Chunked reading and caching reduce full-load wait time and keep scrolling smooth.</p>
|
||||
</article>
|
||||
<article class="card">
|
||||
<h3>Incremental Index & Search</h3>
|
||||
<p>Async search and result navigation keep large datasets practical to work with.</p>
|
||||
</article>
|
||||
<article class="card">
|
||||
<h3>Reliable Editing Base</h3>
|
||||
<p>Undo/redo, encoding controls, and line-ending management provide a stable foundation.</p>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 class="title">More Pages</h2>
|
||||
<p class="sub">Downloads, release history, and privacy details are separated for easy navigation.</p>
|
||||
<div class="grid-3">
|
||||
<article class="card"><h3>Downloads</h3><p><a href="./download.html">Platform packages</a> and installation notes.</p></article>
|
||||
<article class="card"><h3>Changelog</h3><p><a href="./changelog.html">Version changes</a> and fixes.</p></article>
|
||||
<article class="card"><h3>Privacy</h3><p><a href="./privacy.html">Data handling statement</a> and contact info.</p></article>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 class="title">Contact</h2>
|
||||
<p class="sub">For support, business inquiries, or feature suggestions:</p>
|
||||
<div class="contact">
|
||||
<article class="card">
|
||||
<h3>Email</h3>
|
||||
<a href="mailto:support@fivequestions.cn">support@fivequestions.cn</a>
|
||||
<span class="line">Include OS version, repro steps, and screenshots when possible.</span>
|
||||
</article>
|
||||
<article class="card">
|
||||
<h3>Phone</h3>
|
||||
<a href="tel:+8613661144700">+86 13661144700</a>
|
||||
<span class="line">Business hours: Mon-Fri 9:00-18:00 (UTC+8).</span>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div 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>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="../theme.js"></script>
|
||||
<script src="../lang.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,78 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>MassiveEdit Privacy Policy</title>
|
||||
<meta name="description" content="Privacy policy 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 href="./changelog.html">Changelog</a>
|
||||
<a class="active" href="./privacy.html">Privacy</a>
|
||||
<a href="https://github.com/paineliu/massiveedit" target="_blank" rel="noopener noreferrer">GitHub</a>
|
||||
<a href="../privacy.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>Privacy Policy</h1>
|
||||
<p class="lead">Effective Date: 2026-03-30</p>
|
||||
|
||||
<article class="policy">
|
||||
<section class="section">
|
||||
<h2>1. Overview</h2>
|
||||
<p>MassiveEdit is provided by Five Questions (Beijing) Technology Co., Ltd. This policy explains our basic data-handling principles for the website and desktop app.</p>
|
||||
</section>
|
||||
<section class="section">
|
||||
<h2>2. Local File Processing</h2>
|
||||
<p>MassiveEdit edits files locally on your device. By default, files you open, edit, and save are not uploaded to our servers.</p>
|
||||
</section>
|
||||
<section class="section">
|
||||
<h2>3. Website Access Data</h2>
|
||||
<p>The hosting platform may collect necessary access logs (time, IP, browser type) for security and operations. We do not use this data for unrelated purposes.</p>
|
||||
</section>
|
||||
<section class="section">
|
||||
<h2>4. Contact Information</h2>
|
||||
<p>If you contact support by email or phone, we only use the information you provide to handle your request and reply.</p>
|
||||
</section>
|
||||
<section class="section">
|
||||
<h2>5. Policy Updates</h2>
|
||||
<p>When this policy changes, we will update the content and effective date on this page.</p>
|
||||
</section>
|
||||
<section class="section">
|
||||
<h2>6. Contact</h2>
|
||||
<p>Email: <a href="mailto:support@fivequestions.cn">support@fivequestions.cn</a><br />Phone: <a href="tel:+8613661144700">+86 13661144700</a></p>
|
||||
</section>
|
||||
</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>
|
||||
Reference in New Issue
Block a user