Commit Graph
7646 Commits
Author SHA1 Message Date
zeruth 7a84166d79 Merge branch 'master' of https://github.com/runelite-extended/runelite 2019-04-29 20:11:38 -04:00
zeruth 7c3808b9a8 Update AgilityPlugin.java 2019-04-29 20:11:33 -04:00
Tyler Bochard 6a7d2d7715 Merge pull request #152 from Raieverr/master
Update BAToolsPlugin.java
2019-04-29 19:29:24 -04:00
Jonathan ec13aa24ca Update BAToolsPlugin.java 2019-04-29 17:24:45 -06:00
Tomas Slusny 0adedb655a Merge pull request #8686 from deathbeam/cursor-proxy
Use proxy methods for setting cursor via ClientUI
2019-04-30 00:41:53 +02:00
zeruth de0f9a9de6 Various
Fix my bad fix, Increment version, a lot has changed since 0.1.0
2019-04-29 18:14:04 -04:00
Adam d960518122 world hopper: disable Hop-to pvp worlds from regular worlds 2019-04-29 17:53:20 -04:00
zeruth 9206768662 Merge branch 'master' of https://github.com/runelite-extended/runelite 2019-04-29 17:40:33 -04:00
zeruth ea43d94b37 Update PrayerTracker.java
Fix constant NPE
2019-04-29 17:40:30 -04:00
rlw0014 8617d6bf74 Update barb assault plugin (#148) 2019-04-29 17:24:29 -04:00
Kyleeld 9f7787771e Kyleeld patch 1 (#151)
* safespot

* Update Player.java

int getRsOverheadIcon();

* FreezeTimers

FreezeTimers

* various updates (#150)

updates to pvp tools, wilderness locations & location chatter

* Update WildernessLocation.java

* Update Client.java

void toggleRenderSelf();

* Update RSClient.java

* Update Player.java

remove change
2019-04-29 16:39:44 -04:00
zeruth d4aca9cbcf Various
License Flexo
Adds transformRenderSelf, still needs testing. Required for #151
2019-04-29 16:37:02 -04:00
James bed6c919b0 Added xp tracker to overlay (#147)
* Added a split component to be able to put layout elements above eachother or next to eachother easily

* Modified xp tracker plugin to allow infoboxes to be added to canvas

* Formatted experience numbers using StackFormatter

* Cleaned up swing code as a suggestion in discord to use string states

* Forgot to initialize the menu item with the ADD_STATE

* Added final back to popupMenu

* Extracted duplicate enum Orientation from PanelComponent and SplitComponent into a seperate class named ComponentOrientation. Also changed the plugins that used the previous PanelComponent.Orientation to use ComponentOrientation

* Syntax and code convention fixes from deathbeams review

* Fixed a bug where logging into an other account did not reset the tracker overlay

* Removed useless methods and fixed some code convention issues

* fix

* fix

* fix2

* fix3
2019-04-29 16:23:52 -04:00
zaydsalah 0258260024 Add Herbiboar support to the Loottracker (#8663)
Close #6136
2019-04-29 22:03:13 +02:00
Tomas Slusny cb96ae03cc Merge pull request #8666 from Twiglet1022/battlefront-teleport-worldmap
worldmap: add Battlefront teleport
2019-04-29 20:57:36 +02:00
xDemoN 6e1d64cc46 idlenotifier: add support pottery crafting (#8674)
adds potter's wheel & pottery oven
2019-04-29 20:56:39 +02:00
Twiglet1022 9e512b932d worldmap: add Battlefront teleport 2019-04-29 20:44:29 +02:00
Tomas Slusny bc2a5cf8f4 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>
2019-04-29 20:42:29 +02:00
langhillie 51b2456026 daily task plugin: add Thirus's dynamite 2019-04-29 14:40:07 -04:00
8d16c82377 client: add custom cursor plugin
Co-authored-by: Kruithne <kruithne@gmail.com>
Co-authored-by: Trevor <trevorguidry6@gmail.com>
2019-04-29 14:25:07 -04:00
Adam 173dead8d3 travis: switch to openjdk8
travis broke the install of oraclejdk8, but our release builds are built
with openjdk8 anyway.
2019-04-29 13:30:20 -04:00
Adam 932143b26d travis: update dist to xenial 2019-04-29 13:07:50 -04:00
zeruth be531a6eb4 various
flexo update
2019-04-29 03:31:58 -04:00
James 8c11b259b4 Merge pull request #149 from gazivodag/master
added flexo to client pom so external plugins using flexo will not crash
2019-04-28 21:37:07 -07:00
gazivodag 36400d97c9 added flexo to client pom so external plugins using flexo will not crash
(when building artifacts you must extract flexo to the artifact)
2019-04-29 00:35:18 -04:00
Ganom 1f220ff146 Adding Oak's graphic change transformer (#146) 2019-04-28 22:00:19 -04:00
zeruth 1af505ed47 Splash
minor improvements
2019-04-28 19:50:58 -04:00
James 0ca0f728e1 Npc indicators highlight name (#141)
* Add config option to highlight NPC names in menu

* Simplify color string logic
2019-04-28 15:49:20 -04:00
James 367efac542 Enable ProgressBarComponents and the opponentinfo plugin to show both value and percentage in label (#144) 2019-04-28 15:48:57 -04:00
JamesandPeterMcteague 1bbb2c843b Agility shortcut showlevel (#142)
* Added agility level to agility shortcuts

With this commit, the agility plugin now shows the agility level required to pass shortcuts on hover/right-click/tooltip, with red/green coloring dependent on the players agility level.

* Adjusted code based on feedback

-Useless comments removed

-Now adds colortags using java.awt.color and colorutil

-Adjusted code layout to match style guidelines by moving curly brackets onto newlines and changing one-line if/else's to use brackets

-Removed getLevel function as it's already autogenerated (Whoops!)

-Changed start of plugin to a guard clause and added some other guard clauses for common menu-items

* Update runelite-client/src/main/java/net/runelite/client/plugins/agility/AgilityPlugin.java

Removed a newline

Co-Authored-By: PeterMcteague <07mcteaguepet@googlemail.com>

* Updated agility level on tooltip based on feedback

-Swapped * import for specific import (Whoops!)

-Swapped guarad for one that guards against any type that isnt the shortcut type (First option)

* Various changes to agility level plugin based on feedback

-Adjusted phrasing of config to something that was suggested that is far less awkward

-Fixed incorrect position variable (Incremented every one after it, as the position of it next to the other agility shortcut one seems appropriate)

-Removed unnecesary target == null check as suggested

-Modified main function logic to reduce nesting, complexity and number of for loops

* Change to agility level plugin based on feedback

Removed the "level-" already added check because it'd never happen.
2019-04-28 15:47:48 -04:00
James d9a475f309 Fix travis (#143)
* Use xenial in Travis

trusty is going EOL at end of this month and this also fixes openjdk11
builds.

Ref: https://travis-ci.community/t/oracle-jdk11-build-error/1865/6

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>

* Try to use matrix and manually install oracle jdk 8

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2019-04-28 15:43:03 -04:00
zeruth 5fd467c1ea Update ConfigPanel.java
Fix Flexo config not showing up. This is due to the library seperation and a small oversight.
2019-04-27 16:52:30 -04:00
Lucwousin e25edc60cf Remove jmod check for using page-up/down in chat (#140)
* Add script 2611

* Remove jmod check for using page-up + page-down in chat
2019-04-27 16:41:47 +01:00
James 352cd076dd Merge pull request #139 from runelite-extended/scout
Merging lyzrd dc scouter with updated raids plugin
2019-04-26 20:11:12 -07:00
Ganom 6f25dd0842 Removing leftover resources 2019-04-26 23:02:54 -04:00
Ganom 484efbcbc3 Removing lyzrd scouter in favor of updated one 2019-04-26 23:02:12 -04:00
Ganom 15ac022e59 Updating raids plugin with lyzrds dc scouter, and adding pts/hr. 2019-04-26 23:01:31 -04:00
zeruth 7dd4662977 Better Splash
A bit more informative as to the load time, I think it's pretty accurate in stepping.
2019-04-26 21:54:11 -04:00
James 3473d17084 Added player info plugin (#138)
* Added player info plugin

* Better
2019-04-26 19:40:19 -04:00
gazivodag f24b668364 added xarpus to aoe warnings (#136) 2019-04-26 15:51:22 +01:00
Lucwousin 1c654aa995 Loads of poison improvements, and a touch of imbued heart (#135)
* Fix poison plugin (check rl #7967 for more info)

* Timers: make antipoison/venom more accurate (rl #7956)

* Timers: Make imbued heart timer work in combat
2019-04-26 15:50:09 +01:00
gazivodag 24d7f431db Merge pull request #134 from gazivodag/fixDraw2010Bytecode
draw2010Menu was calling renamed protected methods so i fixed it
2019-04-26 09:00:58 -04:00
Giovanni Ruddy Gazivoda 4fbbeecd32 draw2010Menu was calling renamed protected methods so i fixed it and now works 2019-04-26 08:53:22 -04:00
Lucwousin 6ec7427a15 XPdrop: Don't show damage indicators on fishing spots (#133) 2019-04-26 12:32:43 +01:00
Lucwousin ebb09f44ae Fix fountain range to be just the 1x1 square (wiki was wrong) (#132) 2019-04-26 10:52:51 +01:00
Lucwousin 0a63a79a8c Alch hydra: Improve poison overlay, add defence overlay, bugfixes (#129)
* Alch hydra: Improve poison overlay, add defence overlay, bugfixes

* Hydra: use WorldArea instead of npc poly tile or whatever it was
2019-04-26 09:20:09 +01:00
James d5359261f0 Merge pull request #131 from runelite-extended/updatey
Update
2019-04-25 22:35:07 -07:00
James Munson 7974c64420 Merge branch 'master' of https://github.com/runelite/runelite into updatey
# Conflicts:
#	runelite-client/src/main/java/net/runelite/client/plugins/ammo/AmmoPlugin.java
2019-04-25 22:29:47 -07:00
James f6374fb2fb Updated from master, added leantoclick plugin etc (#124)
* interface styles: invalidate healthbar cache on shutdown

The padding needs to be reset for the normal healthbar

* ammo: fix the infobox not getting removed

* Fix Mutated Zygomite fungicide weaknes threshold

Based on Wiki its 0-7

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>

* chat history: fix pm cycling deque max size

* chat history: clear friend deque when clearing pm history

* Added leantoclick plugin

* Worldmap hider replaced by learn to click

* Fix for playerindicators
2019-04-26 00:36:17 -04:00
James 01a1e7af73 Read me update (#130) 2019-04-26 00:34:25 -04:00