* clue plugin: add widget scroll feature
* travis: update dist to xenial
* travis: switch to openjdk8
travis broke the install of oraclejdk8, but our release builds are built
with openjdk8 anyway.
* client: add custom cursor plugin
Co-authored-by: Kruithne <kruithne@gmail.com>
Co-authored-by: Trevor <trevorguidry6@gmail.com>
* daily task plugin: add Thirus's dynamite
* Use proxy methods for settings cursor via ClientUI
To not expose swing components directly just to set cursor on them,
create convenient proxy methods for updating and resetting cursor. Also
document that it is working properly only on Windows.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
* worldmap: add Battlefront teleport
* idlenotifier: add support pottery crafting (#8674)
adds potter's wheel & pottery oven
* Add Herbiboar support to the Loottracker (#8663)
Close#6136
* world hopper: disable Hop-to pvp worlds from regular worlds
* Fix bronze dart requirement in skillcalculator (1->10) (#8690)
* npcindicators: Add option to highlight NPC name in right click menu (#8673)
Resolves#8667
* client: add item identification plugin
* Optionally prevent virtual levels from effecting total level
* slayer: add 'south of' to task regex
* slayer: add test including 'south of'
* clue scroll plugin: add Falo the Bard clues
* Update Object IDs to 2019-05-02-rev179
* Update Widget IDs to 2019-05-02-rev179
* clanchat: Shorten message so it fits on the new interface
* [maven-release-plugin] prepare release runelite-parent-1.5.22
* [maven-release-plugin] prepare for next development iteration
* item identification: Grimy Toadflax isn't Irit
* Revert "npcindicators: Add option to highlight NPC name in right click menu (#8673)"
This reverts commit 8ff1aacfd8.
This world type is not specifically a PVP world type; at the time of
this commit, world 365 is a non-PVP high-risk world, where the world is
the same as a regular members' world, except that the Protect Item
prayer is disabled.
- Remove spring boot test (no longer necessary)
- Move test development configuration to main package
Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This is a much more natural fit for the config service which is really a
key value store, and has been abusing SQL. This will let us expand the
config stuff later to support profiles and per-account config values.
I have left in the SQL code for now so config changes are still being
sent there in the event of catastrophic mongodb failure.
Instead of replacing configuration with test configuration on classpath,
create test profile and use that.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
- Instead of replacing configuration with dev configuration on classpath,
create dev profile and use that
- Move common properties to application.yaml
Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
The exclude is supposed to be on SpringBootApplication annotation,
otherwise IntelliJ Spring plugin errors, and also SpringBootApplication
already contains EnableAutoConfiguration.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
The previous change to try and force GSON for serialization broke
default message converters such as text/plain. Change to use
extendMessageConverters and remove the Jackson converter instead.