cyclecad 3.9.3 → 3.9.4
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/app/index.html +5 -1
- package/package.json +1 -1
package/app/index.html
CHANGED
|
@@ -1337,11 +1337,15 @@
|
|
|
1337
1337
|
<div style="font-size:11px;font-weight:400;color:rgba(255,255,255,0.7);margin-top:4px;">Load .ipj / .ipt / .iam</div>
|
|
1338
1338
|
</button>
|
|
1339
1339
|
</div>
|
|
1340
|
-
<div style="color:#666;font-size:11px;">v0.9.0 · 12 killer features · 46 modules · <a href="https://github.com/vvlars-cmd/cyclecad" target="_blank" style="color:#0284C7;text-decoration:none;">GitHub</a></div>
|
|
1340
|
+
<div style="color:#666;font-size:11px;"><span id="splash-version">v0.9.0</span> · 12 killer features · 46 modules · <a href="https://github.com/vvlars-cmd/cyclecad" target="_blank" style="color:#0284C7;text-decoration:none;">GitHub</a></div>
|
|
1341
1341
|
</div>
|
|
1342
1342
|
</div>
|
|
1343
1343
|
<script>
|
|
1344
1344
|
window._dismissSplash = function(action) {
|
|
1345
|
+
// Update splash version from status bar
|
|
1346
|
+
var sv = document.getElementById('splash-version');
|
|
1347
|
+
var sb = document.querySelector('[class*="status"]');
|
|
1348
|
+
if (sv && sb) { var m = sb.textContent.match(/v[\d.]+/); if (m) sv.textContent = m[0]; }
|
|
1345
1349
|
document.getElementById('welcome-panel').style.display = 'none';
|
|
1346
1350
|
if (action === 'sketch') {
|
|
1347
1351
|
// Will be handled by module script once loaded
|
package/package.json
CHANGED