snapexcel 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.html +2 -2
- package/src/main.js +1 -1
- package/src/renderer.js +3 -3
package/package.json
CHANGED
package/src/index.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>
|
|
6
|
+
<title>SnapExcel</title>
|
|
7
7
|
<link rel="stylesheet" href="styles.css">
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<path d="M2 8H4" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
|
|
22
22
|
</svg>
|
|
23
23
|
</div>
|
|
24
|
-
<h1>
|
|
24
|
+
<h1>SnapExcel</h1>
|
|
25
25
|
</div>
|
|
26
26
|
</header>
|
|
27
27
|
|
package/src/main.js
CHANGED
package/src/renderer.js
CHANGED
|
@@ -1349,7 +1349,7 @@ function generatePDFHTML() {
|
|
|
1349
1349
|
${sheetsHTML}
|
|
1350
1350
|
</div>
|
|
1351
1351
|
<footer class="footer">
|
|
1352
|
-
<p>Generated by
|
|
1352
|
+
<p>Generated by SnapExcel | ${getTotalScreenshots()} screenshots across ${state.sheets.length} sheet(s)</p>
|
|
1353
1353
|
</footer>
|
|
1354
1354
|
</div>
|
|
1355
1355
|
|
|
@@ -1502,14 +1502,14 @@ function generateHTML() {
|
|
|
1502
1502
|
<div class="container">
|
|
1503
1503
|
<header class="header">
|
|
1504
1504
|
<h1>🖥️ ${escapeHtml(state.fileName)}</h1>
|
|
1505
|
-
<p>
|
|
1505
|
+
<p>SnapExcel Report | Generated: ${new Date().toLocaleString()}</p>
|
|
1506
1506
|
</header>
|
|
1507
1507
|
<div class="content">
|
|
1508
1508
|
<p class="click-hint">🔍 Click on any screenshot to view in full size</p>
|
|
1509
1509
|
${sheetsHTML}
|
|
1510
1510
|
</div>
|
|
1511
1511
|
<footer class="footer">
|
|
1512
|
-
<p>Generated by
|
|
1512
|
+
<p>Generated by SnapExcel | ${getTotalScreenshots()} screenshots across ${state.sheets.length} sheets</p>
|
|
1513
1513
|
</footer>
|
|
1514
1514
|
</div>
|
|
1515
1515
|
|