You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-5Lines changed: 18 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ This repository does not provide any instructions on how to modify any Supercell
18
18
-[Issues](#issues)
19
19
-[Requirements](#requirements)
20
20
-[Installing](#installing)
21
+
-[Update](#update)
21
22
-[Dependencies](#dependecies)
22
23
-[Building](#building)
23
24
-[Examples](#examples)
@@ -136,6 +137,8 @@ By default, ```.jsfl``` is associated with Animate, so you can double-click on i
136
137
After installation is complete, be sure to restart Animate.
137
138
If you want to remove plugin, run ```install.jsfl``` again, and this time you will see a confirmation button.
138
139
140
+
<br/>
141
+
139
142
# Update
140
143
If you have an already installed plugin and want to update, run installation file and <strong>remove</strong> plugin, restart Animate and install plugin as usual.
141
144
@@ -171,12 +174,18 @@ Before starting you need to have:
171
174
-[Typescript and ts-node](https://www.npmjs.com/package/ts-node)
172
175
- MSVC Build tools (Visual Studio)
173
176
174
-
Instruction will be divided into 2 parts, instructions for building Plugin and Publish settings
177
+
Instruction will be divided into 3 parts, instructions for building Plugin and Publish settings
175
178
176
-
-PublishSettings
177
-
Open console in "publisher" folder and enter following command to install all dependencies needed for build:
179
+
-Installer
180
+
Install node modules inside the ```installer``` folder with command:
178
181
`
179
-
npm i --save-dev
182
+
npm install
183
+
`
184
+
185
+
- Publish Settings
186
+
Open console in ```publisher``` folder and enter following command to install all dependencies needed for build:
187
+
`
188
+
npm install --save-dev
180
189
`
181
190
After installation, try to start local server with command:
182
191
`
@@ -185,7 +194,11 @@ Instruction will be divided into 2 parts, instructions for building Plugin and P
185
194
Try opening `localhost:8080` in your browser. If page works and you see the publisher interface, then everything is OK!
186
195
187
196
- Plugin
188
-
Make sure you have installed Visual Studio with C++ build tools and also cmake which should be in system variables or PATH. That's all!
197
+
Install node modules inside the ```plugin``` folder with command:
198
+
`
199
+
npm install
200
+
`
201
+
And make sure you have installed Visual Studio with C++ build tools and also cmake which should be in system variables or PATH. That's all!
189
202
190
203
Next, after preparing all modules, you need to open console in root of repository.
0 commit comments