mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
Started logs loading management
This commit is contained in:
parent
079ea38e63
commit
855c125f8a
15
build.js
15
build.js
@ -15,11 +15,14 @@ console.log('Building Pixel Editor');
|
||||
|
||||
|
||||
function copy_images(){
|
||||
gulp.src('./images/*.png')
|
||||
.pipe(gulp.dest(path.join(BUILDDIR, SLUG)));
|
||||
|
||||
gulp.src('./images/Splash images/*.png')
|
||||
.pipe(gulp.dest(path.join(BUILDDIR, SLUG)));
|
||||
// Icons
|
||||
gulp.src('./images/*.png').pipe(gulp.dest(path.join(BUILDDIR, SLUG)));
|
||||
// Splash images
|
||||
gulp.src('./images/Splash images/*.png').pipe(gulp.dest(path.join(BUILDDIR, SLUG)));
|
||||
}
|
||||
|
||||
function copy_logs() {
|
||||
gulp.src('logs/*.html').pipe(gulp.dest(path.join(BUILDDIR, SLUG)));
|
||||
}
|
||||
|
||||
function render_js(){
|
||||
@ -59,4 +62,4 @@ function compile_page(){
|
||||
// empty the build folder, or create it
|
||||
fs.rmdirSync(BUILDDIR, { recursive: true });
|
||||
fs.mkdirSync(BUILDDIR);
|
||||
gulp.parallel(copy_images, render_js, render_css, compile_page)();
|
||||
gulp.parallel(copy_images, copy_logs, render_js, render_css, compile_page)();
|
||||
|
14
js/_logs.js
Normal file
14
js/_logs.js
Normal file
@ -0,0 +1,14 @@
|
||||
var rawFile = new XMLHttpRequest();
|
||||
rawFile.open("GET", '/pixel-editor/latestLog.html', false);
|
||||
rawFile.onreadystatechange = function ()
|
||||
{
|
||||
if(rawFile.readyState === 4)
|
||||
{
|
||||
if(rawFile.status === 200 || rawFile.status == 0)
|
||||
{
|
||||
var allText = rawFile.responseText;
|
||||
document.getElementById("latest-update").innerHTML = allText;
|
||||
}
|
||||
}
|
||||
}
|
||||
rawFile.send(null);
|
@ -54,6 +54,7 @@
|
||||
//=include _colorPicker.js
|
||||
//=include _paletteBlock.js
|
||||
//=include _splashPage.js
|
||||
//=include _logs.js
|
||||
|
||||
/**load file**/
|
||||
//=include _loadImage.js
|
||||
|
1
logs/latestLog.html
Normal file
1
logs/latestLog.html
Normal file
@ -0,0 +1 @@
|
||||
<h1>Hello update</h1>
|
@ -622,5 +622,6 @@
|
||||
</script>
|
||||
<script src="/pixel-editor/pixel-editor.js"></script>
|
||||
<script src="/reload/reload.js"></script>
|
||||
<script src="/fs/fs.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user