Save current progress of Quality Print Desktop project
This commit is contained in:
@@ -213,10 +213,13 @@
|
||||
<strong>🖥️ Quality Print Desktop v1.0.0 (RECOMMENDED)</strong>
|
||||
</div>
|
||||
<div style="font-size: 10px; color: #495057; margin-bottom: 10px; line-height: 1.3;">
|
||||
Professional desktop app with built-in thermal printing • Direct hardware access • Rich formatting
|
||||
Professional desktop app • Direct hardware access • Rich formatting
|
||||
</div>
|
||||
<button onclick="downloadElectronApp()" class="btn btn-success btn-sm" style="font-size: 10px; padding: 4px 12px; margin-right: 5px;">
|
||||
📥 Download Desktop App (98MB)
|
||||
📥 Download Linux Version (99MB)
|
||||
</button>
|
||||
<button onclick="downloadPortableApp()" class="btn btn-outline-success btn-sm" style="font-size: 10px; padding: 4px 12px; margin-right: 5px;">
|
||||
💻 Windows Portable (8KB)
|
||||
</button>
|
||||
<small style="color: #28a745; font-weight: bold;">✅ READY!</small>
|
||||
</div>
|
||||
@@ -236,7 +239,7 @@
|
||||
|
||||
<div style="font-size: 9px; color: #6c757d; margin-top: 5px; line-height: 1.2;">
|
||||
<strong>🏆 Desktop App Benefits:</strong> Direct thermal printing • Rich barcodes/QR codes • Better reliability<br>
|
||||
<small>✨ Now includes: electron-pos-printer • One-click install • Cross-platform support</small>
|
||||
<small>✨ Two versions: Full Linux AppImage or Lightweight Windows Portable • Cross-platform support</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1107,7 +1110,20 @@ function downloadElectronApp() {
|
||||
document.body.removeChild(link);
|
||||
|
||||
// Show success message
|
||||
showNotification('<EFBFBD> Quality Print Desktop v1.0.0 download started!', 'success');
|
||||
showNotification('📱 Quality Print Desktop v1.0.0 download started!', 'success');
|
||||
}
|
||||
|
||||
function downloadPortableApp() {
|
||||
// Download the portable Windows version
|
||||
const link = document.createElement('a');
|
||||
link.href = '/download/portable-app';
|
||||
link.download = 'Quality_Print_Desktop_Portable_v1.0.0_Windows.zip';
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
document.body.removeChild(link);
|
||||
|
||||
// Show success message
|
||||
showNotification('💻 Portable Windows version download started!', 'success');
|
||||
}
|
||||
|
||||
document.getElementById('print-label-btn').addEventListener('click', function() {
|
||||
|
||||
Reference in New Issue
Block a user