Skip to content

Commit 53d5e25

Browse files
committed
Updates
1 parent 09cf5f1 commit 53d5e25

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

asset-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@
182182
"static/media/instagram.svg": "/Candlestick/static/media/instagram.d77f30af.svg",
183183
"static/media/twitter.svg": "/Candlestick/static/media/twitter.47cbfa33.svg",
184184
"static/media/white-heart.svg": "/Candlestick/static/media/white-heart.daf330ed.svg",
185-
"static/css/1.b0877872.chunk.css.map": "/Candlestick/static/css/1.b0877872.chunk.css.map",
186185
"static/css/main.13325d57.chunk.css.map": "/Candlestick/static/css/main.13325d57.chunk.css.map",
186+
"static/css/1.b0877872.chunk.css.map": "/Candlestick/static/css/1.b0877872.chunk.css.map",
187187
"index.html": "/Candlestick/index.html",
188188
"precache-manifest.989a3cde6ea443c60fb1ecf5b567f411.js": "/Candlestick/precache-manifest.989a3cde6ea443c60fb1ecf5b567f411.js",
189189
"service-worker.js": "/Candlestick/service-worker.js"

corelibs/wick-engine/emptyproject.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<!-- The Wick Engine build is injected here during the engine build step (see gulpfile.js) -->
1515
<script>
1616
/*Wick Engine https://github.com/Wicklets/wick-engine*/
17-
var WICK_ENGINE_BUILD_VERSION = "2025.8.16.14.49.58";
17+
var WICK_ENGINE_BUILD_VERSION = "2025.8.16.15.26.1";
1818
/*!
1919
* Paper.js v0.12.4 - The Swiss Army Knife of Vector Graphics Scripting.
2020
* http://paperjs.org/
@@ -48654,7 +48654,7 @@
4865448654
static bundleProject(project, callback) {
4865548655
Wick.WickFile.toWickFile(project, wickFileBase64 => {
4865648656
fetch(Wick.resourcepath + 'emptyproject.html').then(resp => resp.text()).then(text => {
48657-
text = text.replace('<!--INJECT_WICKPROJECTDATA_HERE-->', wickFileBase64);
48657+
text = text.replace('<!--INJECT_WICKPROJECTDATA_HERE-->', wickFileBase64).replace('<title>Loading...</title>', '<title>' + project._name + '</title>');
4865848658
callback(text);
4865948659
}).catch(e => {
4866048660
console.error('Wick.HTMLExport: Could not download HTML file template.');

corelibs/wick-engine/wickengine.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*Wick Engine https://github.com/Wicklets/wick-engine*/
2-
var WICK_ENGINE_BUILD_VERSION = "2025.8.16.14.49.58";
2+
var WICK_ENGINE_BUILD_VERSION = "2025.8.16.15.26.1";
33
/*!
44
* Paper.js v0.12.4 - The Swiss Army Knife of Vector Graphics Scripting.
55
* http://paperjs.org/
@@ -48639,7 +48639,7 @@ Wick.HTMLExport = class {
4863948639
static bundleProject(project, callback) {
4864048640
Wick.WickFile.toWickFile(project, wickFileBase64 => {
4864148641
fetch(Wick.resourcepath + 'emptyproject.html').then(resp => resp.text()).then(text => {
48642-
text = text.replace('<!--INJECT_WICKPROJECTDATA_HERE-->', wickFileBase64);
48642+
text = text.replace('<!--INJECT_WICKPROJECTDATA_HERE-->', wickFileBase64).replace('<title>Loading...</title>', '<title>' + project._name + '</title>');
4864348643
callback(text);
4864448644
}).catch(e => {
4864548645
console.error('Wick.HTMLExport: Could not download HTML file template.');

0 commit comments

Comments
 (0)