Functional first prototype
All checks were successful
Build & Test WASM / build-and-test (push) Successful in 2m42s
All checks were successful
Build & Test WASM / build-and-test (push) Successful in 2m42s
This commit is contained in:
@@ -16,8 +16,15 @@ GOOS=js GOARCH=wasm go build -o kobopatch.wasm .
|
||||
|
||||
echo "WASM binary size: $(du -h kobopatch.wasm | cut -f1)"
|
||||
|
||||
# Cache-busting timestamp
|
||||
TS=$(date +%s)
|
||||
|
||||
echo "Copying artifacts to $PUBLIC_DIR..."
|
||||
cp kobopatch.wasm "$PUBLIC_DIR/kobopatch.wasm"
|
||||
cp wasm_exec.js "$PUBLIC_DIR/wasm_exec.js"
|
||||
|
||||
# Update the cache-busting timestamp in the worker
|
||||
sed -i "s|kobopatch\.wasm?ts=[0-9]*|kobopatch.wasm?ts=$TS|g" "$PUBLIC_DIR/patch-worker.js"
|
||||
|
||||
echo "Build timestamp: $TS"
|
||||
echo "Done."
|
||||
|
||||
@@ -5,7 +5,6 @@ import (
|
||||
"archive/zip"
|
||||
"bytes"
|
||||
"compress/gzip"
|
||||
"crypto/sha1"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
@@ -132,7 +131,6 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
}
|
||||
|
||||
// Parse config.
|
||||
logf("Parsing config...")
|
||||
var config Config
|
||||
dec := yaml.NewDecoder(bytes.NewReader(configYAML))
|
||||
if err := dec.Decode(&config); err != nil {
|
||||
@@ -143,8 +141,6 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
return nil, errors.New("invalid config: version and patches are required")
|
||||
}
|
||||
|
||||
logf("Firmware version: %s", config.Version)
|
||||
|
||||
// Open the firmware zip from memory.
|
||||
logf("Opening firmware zip (%d MB)...", len(firmwareZip)/1024/1024)
|
||||
zipReader, err := zip.NewReader(bytes.NewReader(firmwareZip), int64(len(firmwareZip)))
|
||||
@@ -182,7 +178,6 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
outGZ := gzip.NewWriter(&outBuf)
|
||||
outTar := tar.NewWriter(outGZ)
|
||||
var outTarExpectedSize int64
|
||||
sums := map[string]string{}
|
||||
|
||||
// Iterate over firmware tar entries and apply patches.
|
||||
for {
|
||||
@@ -210,7 +205,7 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
return nil, fmt.Errorf("could not patch '%s': not a regular file", h.Name)
|
||||
}
|
||||
|
||||
logf("Patching %s", h.Name)
|
||||
logf("\nPatching %s", h.Name)
|
||||
|
||||
entryBytes, err := io.ReadAll(tarReader)
|
||||
if err != nil {
|
||||
@@ -220,7 +215,6 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
pt := patchlib.NewPatcher(entryBytes)
|
||||
|
||||
for _, pfn := range matchingPatchFiles {
|
||||
logf(" Loading patch file: %s", pfn)
|
||||
|
||||
patchData, ok := patchFileContents[pfn]
|
||||
if !ok {
|
||||
@@ -240,14 +234,15 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
|
||||
// Apply overrides.
|
||||
if overrides, ok := config.Overrides[pfn]; ok {
|
||||
logf(" Applying overrides")
|
||||
for name, enabled := range overrides {
|
||||
if err := ps.SetEnabled(name, enabled); err != nil {
|
||||
return nil, fmt.Errorf("could not set override '%s' in '%s': %w", name, pfn, err)
|
||||
}
|
||||
if enabled {
|
||||
logf(" ENABLE %s", name)
|
||||
logf(" ENABLE `%s`", name)
|
||||
} else {
|
||||
logf(" DISABLE %s", name)
|
||||
logf(" DISABLE `%s`", name)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -256,9 +251,8 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
return nil, fmt.Errorf("invalid patch file '%s': %w", pfn, err)
|
||||
}
|
||||
|
||||
patchfile.Log = func(format string, a ...interface{}) {
|
||||
logf(" "+format, a...)
|
||||
}
|
||||
// patchfile.Log is debug-level output (goes to log file in native kobopatch)
|
||||
patchfile.Log = func(format string, a ...interface{}) {}
|
||||
|
||||
if err := ps.ApplyTo(pt); err != nil {
|
||||
return nil, fmt.Errorf("error applying patches from '%s': %w", pfn, err)
|
||||
@@ -289,7 +283,6 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
return nil, fmt.Errorf("could not write patched '%s': %w", h.Name, err)
|
||||
}
|
||||
|
||||
sums[h.Name] = fmt.Sprintf("%x", sha1.Sum(patchedBytes))
|
||||
}
|
||||
|
||||
// Finalize the output tar.gz.
|
||||
@@ -301,7 +294,7 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
}
|
||||
|
||||
// Verify consistency.
|
||||
logf("Verifying output KoboRoot.tgz...")
|
||||
logf("\nChecking patched KoboRoot.tgz for consistency")
|
||||
verifyReader, err := gzip.NewReader(bytes.NewReader(outBuf.Bytes()))
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("could not verify output: %w", err)
|
||||
@@ -322,11 +315,6 @@ func patchFirmware(configYAML []byte, firmwareZip []byte, patchFileContents map[
|
||||
return nil, fmt.Errorf("output size mismatch: expected %d, got %d", outTarExpectedSize, verifySum)
|
||||
}
|
||||
|
||||
logf("Output verified. Size: %d bytes", outBuf.Len())
|
||||
for f, s := range sums {
|
||||
logf(" sha1 %s %s", s, f)
|
||||
}
|
||||
|
||||
return &patchResult{
|
||||
tgzBytes: outBuf.Bytes(),
|
||||
log: logBuf.String(),
|
||||
|
||||
@@ -41,6 +41,19 @@
|
||||
const writeSuccess = document.getElementById('write-success');
|
||||
const firmwareVersionLabel = document.getElementById('firmware-version-label');
|
||||
// const firmwareVersionLabelManual = document.getElementById('firmware-version-label-manual'); // fallback
|
||||
const patchCountHint = document.getElementById('patch-count-hint');
|
||||
|
||||
function updatePatchCount() {
|
||||
const count = patchUI.getEnabledCount();
|
||||
btnBuild.disabled = count === 0;
|
||||
patchCountHint.textContent = count === 0
|
||||
? 'Select at least one patch to continue.'
|
||||
: count === 1
|
||||
? '1 patch selected.'
|
||||
: count + ' patches selected.';
|
||||
}
|
||||
|
||||
patchUI.onChange = updatePatchCount;
|
||||
|
||||
const allSteps = [stepConnect, stepManual, stepDevice, stepPatches, stepFirmware, stepBuilding, stepDone, stepError];
|
||||
|
||||
@@ -112,6 +125,7 @@
|
||||
|
||||
await patchUI.loadFromURL('patches/' + match.filename);
|
||||
patchUI.render(patchContainer);
|
||||
updatePatchCount();
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -190,6 +204,7 @@
|
||||
|
||||
await patchUI.loadFromURL('patches/' + match.filename);
|
||||
patchUI.render(patchContainer);
|
||||
updatePatchCount();
|
||||
configureFirmwareStep(info.firmware, info.serialPrefix);
|
||||
|
||||
showSteps(stepDevice, stepPatches, stepFirmware);
|
||||
@@ -278,19 +293,17 @@
|
||||
const firmwareBytes = await downloadFirmware(firmwareURL);
|
||||
appendLog('Firmware downloaded: ' + (firmwareBytes.length / 1024 / 1024).toFixed(1) + ' MB');
|
||||
|
||||
buildProgress.textContent = 'Loading WASM patcher...';
|
||||
await runner.load();
|
||||
appendLog('WASM module loaded');
|
||||
|
||||
buildProgress.textContent = 'Applying patches...';
|
||||
const configYAML = patchUI.generateConfig();
|
||||
const patchFiles = patchUI.getPatchFileBytes();
|
||||
|
||||
const result = await runner.patchFirmware(configYAML, firmwareBytes, patchFiles, (msg) => {
|
||||
appendLog(msg);
|
||||
// Update headline with the latest high-level step
|
||||
if (msg.startsWith('Patching ') || msg.startsWith('Extracting ') || msg.startsWith('Verifying ')) {
|
||||
buildProgress.textContent = msg;
|
||||
// Update headline with high-level steps
|
||||
const trimmed = msg.trimStart();
|
||||
if (trimmed.startsWith('Patching ') || trimmed.startsWith('Checking ') ||
|
||||
trimmed.startsWith('Loading WASM') || trimmed.startsWith('WASM module')) {
|
||||
buildProgress.textContent = trimmed;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -3,14 +3,16 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Kobopatch Web UI</title>
|
||||
<title>KoboPatch Web UI</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<script src="https://cdn.jsdelivr.net/npm/jszip@3/dist/jszip.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>Kobopatch Web UI</h1>
|
||||
<header class="hero">
|
||||
<h1>KoboPatch <span class="hero-accent">Web UI</span></h1>
|
||||
<p class="subtitle">Custom patches for your Kobo e-reader</p>
|
||||
</header>
|
||||
|
||||
<!-- Step 1: Connect device (automatic, Chromium only) -->
|
||||
<section id="step-connect" class="step" hidden>
|
||||
@@ -90,7 +92,8 @@
|
||||
</p>
|
||||
<input type="file" id="firmware-input" accept=".zip" hidden>
|
||||
-->
|
||||
<button id="btn-build" class="primary">Build Patched Firmware</button>
|
||||
<button id="btn-build" class="primary" disabled>Build Patched Firmware</button>
|
||||
<p id="patch-count-hint" class="fallback-hint"></p>
|
||||
</section>
|
||||
|
||||
<!-- Step 5: Building -->
|
||||
@@ -125,7 +128,7 @@
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<script src="wasm_exec.js"></script>
|
||||
<!-- wasm_exec.js loaded by patch-worker.js inside the Web Worker -->
|
||||
<script src="kobo-device.js"></script>
|
||||
<script src="kobopatch.js"></script>
|
||||
<script src="patch-ui.js"></script>
|
||||
|
||||
@@ -1,35 +1,13 @@
|
||||
/**
|
||||
* Loads and manages the kobopatch WASM module.
|
||||
* Runs kobopatch WASM in a Web Worker for non-blocking UI.
|
||||
*/
|
||||
class KobopatchRunner {
|
||||
constructor() {
|
||||
this.ready = false;
|
||||
this._go = null;
|
||||
this._worker = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Load the WASM module. Must be called before patchFirmware().
|
||||
*/
|
||||
async load() {
|
||||
if (this.ready) return;
|
||||
|
||||
this._go = new Go();
|
||||
const result = await WebAssembly.instantiateStreaming(
|
||||
fetch('kobopatch.wasm'),
|
||||
this._go.importObject
|
||||
);
|
||||
// Go WASM runs as a long-lived instance.
|
||||
this._go.run(result.instance);
|
||||
|
||||
// Wait for the global function to become available.
|
||||
if (typeof globalThis.patchFirmware !== 'function') {
|
||||
throw new Error('WASM module loaded but patchFirmware() not found');
|
||||
}
|
||||
this.ready = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Run the patching pipeline.
|
||||
* Run the patching pipeline in a Web Worker.
|
||||
*
|
||||
* @param {string} configYAML - kobopatch.yaml content
|
||||
* @param {Uint8Array} firmwareZip - firmware zip file bytes
|
||||
@@ -37,10 +15,39 @@ class KobopatchRunner {
|
||||
* @param {Function} [onProgress] - optional callback(message) for progress updates
|
||||
* @returns {Promise<{tgz: Uint8Array, log: string}>}
|
||||
*/
|
||||
async patchFirmware(configYAML, firmwareZip, patchFiles, onProgress) {
|
||||
if (!this.ready) {
|
||||
throw new Error('WASM module not loaded. Call load() first.');
|
||||
patchFirmware(configYAML, firmwareZip, patchFiles, onProgress) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const worker = new Worker('patch-worker.js');
|
||||
this._worker = worker;
|
||||
|
||||
worker.onmessage = (e) => {
|
||||
const msg = e.data;
|
||||
if (msg.type === 'progress') {
|
||||
if (onProgress) onProgress(msg.message);
|
||||
} else if (msg.type === 'done') {
|
||||
worker.terminate();
|
||||
this._worker = null;
|
||||
resolve({ tgz: msg.tgz, log: msg.log });
|
||||
} else if (msg.type === 'error') {
|
||||
worker.terminate();
|
||||
this._worker = null;
|
||||
reject(new Error(msg.message));
|
||||
}
|
||||
return globalThis.patchFirmware(configYAML, firmwareZip, patchFiles, onProgress || null);
|
||||
};
|
||||
|
||||
worker.onerror = (e) => {
|
||||
worker.terminate();
|
||||
this._worker = null;
|
||||
reject(new Error('Worker error: ' + e.message));
|
||||
};
|
||||
|
||||
// Transfer the firmwareZip buffer to avoid copying
|
||||
worker.postMessage({
|
||||
type: 'patch',
|
||||
configYAML,
|
||||
firmwareZip,
|
||||
patchFiles,
|
||||
}, [firmwareZip.buffer]);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -157,6 +157,8 @@ class PatchUI {
|
||||
this.patchConfig = {};
|
||||
this.firmwareVersion = null;
|
||||
this.configYAML = null;
|
||||
// Called when patch selection changes
|
||||
this.onChange = null;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -304,6 +306,18 @@ class PatchUI {
|
||||
if (countEl) countEl.textContent = `${count} / ${patches.length} enabled`;
|
||||
idx++;
|
||||
}
|
||||
if (this.onChange) this.onChange();
|
||||
}
|
||||
|
||||
/**
|
||||
* Count total enabled patches across all files.
|
||||
*/
|
||||
getEnabledCount() {
|
||||
let count = 0;
|
||||
for (const [, { patches }] of Object.entries(this.patchFiles)) {
|
||||
count += patches.filter(p => p.enabled).length;
|
||||
}
|
||||
return count;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -10,7 +10,7 @@ async function loadWasm() {
|
||||
|
||||
const go = new Go();
|
||||
const result = await WebAssembly.instantiateStreaming(
|
||||
fetch('kobopatch.wasm'),
|
||||
fetch('kobopatch.wasm?ts=1773611308'),
|
||||
go.importObject
|
||||
);
|
||||
go.run(result.instance);
|
||||
|
||||
@@ -7,13 +7,15 @@
|
||||
}
|
||||
|
||||
:root {
|
||||
--bg: #fafafa;
|
||||
--bg: #f5f5f7;
|
||||
--card-bg: #fff;
|
||||
--border: #e0e0e0;
|
||||
--text: #1a1a1a;
|
||||
--text-secondary: #555;
|
||||
--primary: #1a6ed8;
|
||||
--primary-hover: #1558b0;
|
||||
--border: #d1d5db;
|
||||
--border-light: #e5e7eb;
|
||||
--text: #111827;
|
||||
--text-secondary: #6b7280;
|
||||
--primary: #2563eb;
|
||||
--primary-hover: #1d4ed8;
|
||||
--primary-light: #eff6ff;
|
||||
--error-bg: #fef2f2;
|
||||
--error-border: #fca5a5;
|
||||
--error-text: #991b1b;
|
||||
@@ -23,37 +25,56 @@
|
||||
--success-bg: #f0fdf4;
|
||||
--success-border: #86efac;
|
||||
--success-text: #166534;
|
||||
--shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
|
||||
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
line-height: 1.6;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
main {
|
||||
max-width: 600px;
|
||||
margin: 3rem auto;
|
||||
padding: 0 1.5rem;
|
||||
max-width: 640px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem 1.5rem 4rem;
|
||||
}
|
||||
|
||||
/* Hero header */
|
||||
.hero {
|
||||
margin-bottom: 2.5rem;
|
||||
padding-bottom: 1.5rem;
|
||||
border-bottom: 1px solid var(--border-light);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.5rem;
|
||||
font-size: 1.75rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.hero-accent {
|
||||
color: var(--primary);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 2rem;
|
||||
font-size: 0.95rem;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0.75rem;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
/* Steps */
|
||||
.step {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
@@ -61,52 +82,67 @@ h2 {
|
||||
.step p {
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.95rem;
|
||||
font-size: 0.93rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
button {
|
||||
font-size: 0.95rem;
|
||||
padding: 0.6rem 1.4rem;
|
||||
border-radius: 6px;
|
||||
font-size: 0.9rem;
|
||||
padding: 0.55rem 1.25rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--border);
|
||||
cursor: pointer;
|
||||
font-weight: 500;
|
||||
transition: background 0.15s, border-color 0.15s;
|
||||
transition: all 0.15s ease;
|
||||
}
|
||||
|
||||
button.primary {
|
||||
background: var(--primary);
|
||||
color: #fff;
|
||||
border-color: var(--primary);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
button.primary:hover {
|
||||
background: var(--primary-hover);
|
||||
border-color: var(--primary-hover);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
|
||||
button.secondary {
|
||||
background: var(--card-bg);
|
||||
color: var(--text);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
button.secondary:hover {
|
||||
background: #f0f0f0;
|
||||
background: #f9fafb;
|
||||
border-color: #9ca3af;
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
opacity: 0.4;
|
||||
cursor: not-allowed;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* Cards */
|
||||
.info-card {
|
||||
background: var(--card-bg);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
padding: 1rem 1.25rem;
|
||||
border: 1px solid var(--border-light);
|
||||
border-radius: 10px;
|
||||
padding: 0.75rem 1.25rem;
|
||||
margin-bottom: 1rem;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.info-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 0.4rem 0;
|
||||
border-bottom: 1px solid var(--border);
|
||||
align-items: center;
|
||||
padding: 0.5rem 0;
|
||||
border-bottom: 1px solid var(--border-light);
|
||||
}
|
||||
|
||||
.info-row:last-child {
|
||||
@@ -116,22 +152,25 @@ button.secondary:hover {
|
||||
.info-row .label {
|
||||
font-weight: 500;
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
font-size: 0.85rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.03em;
|
||||
}
|
||||
|
||||
.info-row .value {
|
||||
font-family: "SF Mono", "Fira Code", monospace;
|
||||
font-size: 0.9rem;
|
||||
font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
/* Status banners */
|
||||
.warning {
|
||||
background: var(--warning-bg);
|
||||
border: 1px solid var(--warning-border);
|
||||
color: var(--warning-text);
|
||||
padding: 1rem 1.25rem;
|
||||
padding: 0.75rem 1rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1.5rem;
|
||||
font-size: 0.9rem;
|
||||
font-size: 0.88rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
@@ -143,37 +182,39 @@ button.secondary:hover {
|
||||
background: var(--error-bg);
|
||||
border: 1px solid var(--error-border);
|
||||
color: var(--error-text);
|
||||
padding: 1rem 1.25rem;
|
||||
padding: 0.75rem 1rem;
|
||||
border-radius: 8px;
|
||||
font-size: 0.9rem;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
.status-supported {
|
||||
background: var(--success-bg);
|
||||
border: 1px solid var(--success-border);
|
||||
color: var(--success-text);
|
||||
padding: 0.75rem 1rem;
|
||||
padding: 0.65rem 1rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
.status-unsupported {
|
||||
background: var(--warning-bg);
|
||||
border: 1px solid var(--warning-border);
|
||||
color: var(--warning-text);
|
||||
padding: 0.75rem 1rem;
|
||||
padding: 0.65rem 1rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
/* Patch file sections */
|
||||
.patch-file-section {
|
||||
background: var(--card-bg);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--border-light);
|
||||
border-radius: 10px;
|
||||
margin-bottom: 0.75rem;
|
||||
box-shadow: var(--shadow);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.patch-file-section summary {
|
||||
@@ -183,23 +224,31 @@ button.secondary:hover {
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-weight: 500;
|
||||
font-size: 0.95rem;
|
||||
font-size: 0.93rem;
|
||||
user-select: none;
|
||||
transition: background 0.1s;
|
||||
}
|
||||
|
||||
.patch-file-section summary:hover {
|
||||
background: #f5f5f5;
|
||||
background: #f9fafb;
|
||||
}
|
||||
|
||||
.patch-file-section[open] summary {
|
||||
border-bottom: 1px solid var(--border-light);
|
||||
}
|
||||
|
||||
.patch-count {
|
||||
font-weight: 400;
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.85rem;
|
||||
font-size: 0.8rem;
|
||||
background: var(--primary-light);
|
||||
color: var(--primary);
|
||||
padding: 0.15rem 0.6rem;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.patch-list {
|
||||
border-top: 1px solid var(--border);
|
||||
padding: 0.5rem 0;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
|
||||
.patch-item {
|
||||
@@ -207,7 +256,7 @@ button.secondary:hover {
|
||||
}
|
||||
|
||||
.patch-item + .patch-item {
|
||||
border-top: 1px solid #f0f0f0;
|
||||
border-top: 1px solid var(--border-light);
|
||||
}
|
||||
|
||||
.patch-header {
|
||||
@@ -215,11 +264,12 @@ button.secondary:hover {
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
cursor: pointer;
|
||||
font-size: 0.9rem;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
.patch-header input {
|
||||
flex-shrink: 0;
|
||||
accent-color: var(--primary);
|
||||
}
|
||||
|
||||
.patch-name {
|
||||
@@ -227,9 +277,10 @@ button.secondary:hover {
|
||||
}
|
||||
|
||||
.patch-group-badge {
|
||||
font-size: 0.75rem;
|
||||
background: #e8e8e8;
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.7rem;
|
||||
font-weight: 500;
|
||||
background: var(--primary-light);
|
||||
color: var(--primary);
|
||||
padding: 0.1rem 0.5rem;
|
||||
border-radius: 4px;
|
||||
margin-left: auto;
|
||||
@@ -237,24 +288,19 @@ button.secondary:hover {
|
||||
}
|
||||
|
||||
.patch-description {
|
||||
margin-top: 0.35rem;
|
||||
margin-top: 0.3rem;
|
||||
margin-left: 1.6rem;
|
||||
font-size: 0.8rem;
|
||||
font-size: 0.78rem;
|
||||
color: var(--text-secondary);
|
||||
white-space: pre-line;
|
||||
line-height: 1.4;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
/* Firmware input */
|
||||
input[type="file"] {
|
||||
display: block;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
#build-actions {
|
||||
@@ -265,89 +311,116 @@ button:disabled {
|
||||
|
||||
/* Spinner */
|
||||
.spinner {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border: 3px solid var(--border);
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border: 3px solid var(--border-light);
|
||||
border-top-color: var(--primary);
|
||||
border-radius: 50%;
|
||||
animation: spin 0.8s linear infinite;
|
||||
animation: spin 0.7s linear infinite;
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
/* Build log terminal */
|
||||
.build-log {
|
||||
margin-top: 0.75rem;
|
||||
padding: 0.75rem;
|
||||
background: #1a1a1a;
|
||||
color: #a0a0a0;
|
||||
border-radius: 6px;
|
||||
font-family: "SF Mono", "Fira Code", monospace;
|
||||
font-size: 0.75rem;
|
||||
padding: 0.75rem 1rem;
|
||||
background: #0f172a;
|
||||
color: #94a3b8;
|
||||
border-radius: 8px;
|
||||
font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
|
||||
font-size: 0.73rem;
|
||||
white-space: pre-wrap;
|
||||
height: calc(10 * 1.5em + 1.5rem);
|
||||
overflow-y: auto;
|
||||
line-height: 1.5;
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.hint {
|
||||
margin-top: 1rem;
|
||||
padding: 0.75rem 1rem;
|
||||
padding: 0.65rem 1rem;
|
||||
background: var(--success-bg);
|
||||
border: 1px solid var(--success-border);
|
||||
color: var(--success-text);
|
||||
border-radius: 8px;
|
||||
font-size: 0.9rem;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
.error-log {
|
||||
margin-top: 0.75rem;
|
||||
padding: 0.75rem;
|
||||
background: #1a1a1a;
|
||||
color: #e0e0e0;
|
||||
border-radius: 6px;
|
||||
font-family: "SF Mono", "Fira Code", monospace;
|
||||
font-size: 0.8rem;
|
||||
padding: 0.75rem 1rem;
|
||||
background: #0f172a;
|
||||
color: #e2e8f0;
|
||||
border-radius: 8px;
|
||||
font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
|
||||
font-size: 0.78rem;
|
||||
white-space: pre-wrap;
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.step a {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.step a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.fallback-hint {
|
||||
margin-top: 1rem;
|
||||
font-size: 0.85rem;
|
||||
font-size: 0.83rem;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.info-banner {
|
||||
background: #eff6ff;
|
||||
background: var(--primary-light);
|
||||
border: 1px solid #bfdbfe;
|
||||
color: #1e40af;
|
||||
padding: 0.65rem 1rem;
|
||||
padding: 0.6rem 1rem;
|
||||
border-radius: 8px;
|
||||
font-size: 0.85rem;
|
||||
font-size: 0.83rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
#firmware-download-url {
|
||||
font-size: 0.8rem;
|
||||
display: inline-block;
|
||||
margin: 0.4rem 0;
|
||||
padding: 0.3rem 0.6rem;
|
||||
font-size: 0.7rem;
|
||||
word-break: break-all;
|
||||
color: var(--text-secondary);
|
||||
color: #64748b;
|
||||
background: #f1f5f9;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
select {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.5rem 0.75rem;
|
||||
font-size: 0.95rem;
|
||||
font-size: 0.93rem;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 6px;
|
||||
border-radius: 8px;
|
||||
background: var(--card-bg);
|
||||
color: var(--text);
|
||||
margin-bottom: 1rem;
|
||||
box-shadow: var(--shadow);
|
||||
appearance: none;
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 0.75rem center;
|
||||
padding-right: 2rem;
|
||||
}
|
||||
|
||||
select:focus,
|
||||
button:focus-visible {
|
||||
outline: 2px solid var(--primary);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user