Upgrading Node.js Engine to v8.9.0
This commit is contained in:
parent
1654e7a2c4
commit
246def86d8
@ -1,7 +1,7 @@
|
|||||||
# Getting Started #
|
# Getting Started #
|
||||||
|
|
||||||
System Requirements:
|
System Requirements:
|
||||||
* [Node.js](https://nodejs.org/en/) v8.6.0+
|
* [Node.js](https://nodejs.org/en/) v8.9.0+
|
||||||
|
|
||||||
This repository is dedicated to the development of the new custom launcher for the [WesterosCraft](http://www.westeroscraft.com/) server. This project is developed primarily with [Node.js](https://nodejs.org/en/) and the [Electron](https://electron.atom.io/) framework. For further reference you may view [the repository of the new launcher written in JavaFX/Java](https://gitlab.com/westeroscraft/WesteroscraftNewLauncher) which was discontinued. You may also view the repository of the [current launcher](https://gitlab.com/westeroscraft/westeroscraftlaunchercore), a modified fork of MCUpdater.
|
This repository is dedicated to the development of the new custom launcher for the [WesterosCraft](http://www.westeroscraft.com/) server. This project is developed primarily with [Node.js](https://nodejs.org/en/) and the [Electron](https://electron.atom.io/) framework. For further reference you may view [the repository of the new launcher written in JavaFX/Java](https://gitlab.com/westeroscraft/WesteroscraftNewLauncher) which was discontinued. You may also view the repository of the [current launcher](https://gitlab.com/westeroscraft/westeroscraftlaunchercore), a modified fork of MCUpdater.
|
||||||
|
|
||||||
|
@ -284,4 +284,17 @@ body {
|
|||||||
#menu_img {
|
#menu_img {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes test {
|
||||||
|
0% {
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-1 {
|
||||||
|
animation: test 30s ease infinite;
|
||||||
}
|
}
|
@ -28,7 +28,7 @@ class ProcessBuilder {
|
|||||||
|
|
||||||
for(let i=0; i<mdles.length; ++i){
|
for(let i=0; i<mdles.length; ++i){
|
||||||
if(mdles[i].type != null && mdles[i].type === options.type){
|
if(mdles[i].type != null && mdles[i].type === options.type){
|
||||||
if(_shouldInclude(mdles[i])){
|
if(ProcessBuiler._shouldInclude(mdles[i])){
|
||||||
mods.push(mdles[i])
|
mods.push(mdles[i])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,8 @@
|
|||||||
<div class="bot_wrapper">
|
<div class="bot_wrapper">
|
||||||
<div id="content">
|
<div id="content">
|
||||||
<button id="menu_button">
|
<button id="menu_button">
|
||||||
<img src="assets/images/icons/arrow.svg" id="menu_img"/>
|
<% include assets/images/icons/arrow.svg %>
|
||||||
|
<!--<img src="assets/images/icons/arrow.svg" id="menu_img"/>-->
|
||||||
MENU
|
MENU
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
"start": "electron index.js"
|
"start": "electron index.js"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "8.6.x"
|
"node": "8.9.x"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
Loading…
Reference in New Issue
Block a user