-
Notifications
You must be signed in to change notification settings - Fork 8
Instructions for updating your plugin
Randori Plugin v0.2.4 is now available for download.
If you were working with an older plugin, you must update your SDK to use this version. The instructions follow:
-
Update your plugin, then download the latest Randori SDK from https://github.com/RandoriAS/randori-sdk/archive/master.zip and save it on your drive in a known location.
-
Unzip the SDK
-
Right click on your project in IntelliJ and choose Open Module Settings
-
Choose Platform Settings/SDKs
-
Remove the old SDK
-
Click the plus key and add a new Randori SDK and navigate to where you extracted the latest SDK. Click OK
-
Click on Project Settings/Project
-
Change the Project SDK to the new SDK you just created. Click Apply.
-
Click on Project Settings/Modules.
-
Click the Dependencies Tab
-
For the Module SDK, ensure Project SDK is selected
-
Click OK
-
The project should now compile.
Version v0.2.4 of the plugin changes the names of the Randori and Randori Guice libraries. Therefore if you were developing with an older version of the plugin, you must update your existing HTML files.
Pre-v0.2.4 they would have read:
<script type="text/javascript" src="generated/lib/RandoriGuice.js"></script>
<script type="text/javascript" src="generated/lib/Randori.js"></script>
Please update these references to read:
<script type="text/javascript" src="generated/lib/randori-guice-framework.js"></script>
<script type="text/javascript" src="generated/lib/randori-framework.js"></script>
After making these updates, your project should compile correctly and run with the latest plugin.