Commit Graph

1707 Commits

Author SHA1 Message Date
Owain van Brakel
7005ab65c9 Merge remote-tracking branch 'runelite/master' into 1710-merge 2019-10-17 19:12:46 +02:00
Runelite auto updater
38e3cd1ed3 [maven-release-plugin] prepare for next development iteration 2019-10-17 13:40:59 +00:00
Runelite auto updater
a924773edc [maven-release-plugin] prepare release runelite-parent-1.5.36 2019-10-17 13:40:53 +00:00
RuneLite Cache-Code Autoupdater
a0eedbe39f Update Widget IDs to 2019-10-17-rev182 2019-10-17 05:15:57 -06:00
RuneLite Cache-Code Autoupdater
6bb868cf1b Update NPC IDs to 2019-10-17-rev182 2019-10-17 10:32:59 +00:00
RuneLite Cache-Code Autoupdater
c9dc881e49 Update Object IDs to 2019-10-17-rev182 2019-10-17 10:32:59 +00:00
RuneLite Cache-Code Autoupdater
846c115503 Update Item IDs to 2019-10-17-rev182 2019-10-17 10:32:58 +00:00
Adam
a63389866a Merge pull request #10036 from abextm/misc-docs
runelite-api: Add some more documentation
2019-10-16 12:39:44 -04:00
Max Weber
5acdcae75d runelite-api: Add some more documentation 2019-10-16 09:44:54 -06:00
Tyler Bochard
4b592bfb99 Merge pull request #1778 from Lucwousin/you-have-been-disconnected
login plugin: Hide "You have been disconnected" when 5 min logged
2019-10-13 19:30:45 -04:00
Lucwousin
5604fa0ffd Hide "You have been disconnected" when 5 min logged 2019-10-14 00:36:46 +02:00
Owain van Brakel
47d56f9d0a Merge remote-tracking branch 'runelite/master' into 1310-merge 2019-10-13 16:02:41 +02:00
Ganom
ea30a23a53 runecraft: add pouch degrade overlay. (#1765) 2019-10-12 22:20:44 -07:00
Abex
4dd5d4b2c7 Merge pull request #10048 from abextm/cache-code-2019-10-02-c1-rev182
Cache code 2019 10 02 c1 rev182
2019-10-12 23:06:15 -06:00
Lucwousin
85f266c181 api/client: various (MenuEntry api stuff, agility/translate plugin stuff to use that) (#1748)
* Standardize MenuEntry methods, make MenuEntry events extend MenuEntry

* Make agility plugin only change entries it needs to

* Clean up chat translator by a lot, also implement cloneable instead of just adding a ranodm copy method smh

* actions: allow slash in PR title

* devtools: Fix checkstyle

* examineplugin: Fix tests
2019-10-11 11:05:45 +01:00
Lucwousin
1a1684d1c3 mes: Add right click 'Last-destination' option for Jewellery Boxes (#1737)
* api: menu event, prio runelite menuopcode, widget stuff, eventbus logging

add "Menu" event to keep everything in chronological order

add MenuOpcode.PRIO_RUNELITE which is sub 1000 so it doesn't get sorted

add Jewellery box widget info

add getOnOp

fix exception logging in eventbus

redisable gpu debug messages

* mes: add (right click only) last destination to jewellery boxes

* mes: use Object objects for eventbus instead of strings
2019-10-08 14:18:20 -04:00
Lucwousin
3858c09b64 api: ImageUtil sprite additions and random bits and bobs 2019-10-06 22:22:16 +02:00
ST0NEWALL
027a369084 client: Rebrand (#1688)
client: Rebrand
2019-10-04 22:49:34 -04:00
Owain van Brakel
946ba0f500 api: Fix RectangleUnionTest 2019-10-03 21:59:30 +02:00
Owain van Brakel
72ae9ddabd Merge remote-tracking branch 'runelite/master' into 2009-merge 2019-10-03 17:35:19 +02:00
Owain van Brakel
3eb6156ca4 Merge remote-tracking branch 'upstream/openosrs_branding' into openosrs_branding 2019-10-03 05:14:16 +02:00
Adam
5f745be26d api: add getConvexHull to GroundObject 2019-10-02 21:17:37 -04:00
Adam
740697fd49 Merge pull request #9848 from abextm/faster-click-hull-external
Optimize getClickbox and getConvexHull
2019-10-02 14:24:52 -04:00
Runelite auto updater
03c4422628 [maven-release-plugin] prepare for next development iteration 2019-10-02 12:51:48 +00:00
Runelite auto updater
1549bc63d7 [maven-release-plugin] prepare release runelite-parent-1.5.35 2019-10-02 12:51:41 +00:00
RuneLite Cache-Code Autoupdater
cb59bbdaa7 Update NPC IDs to 2019-10-02-c1-rev182 2019-10-02 10:33:47 +00:00
RuneLite Cache-Code Autoupdater
c9d27c3227 Update Object IDs to 2019-10-02-c1-rev182 2019-10-02 10:33:47 +00:00
RuneLite Cache-Code Autoupdater
f957b386b7 Update Item IDs to 2019-10-02-c1-rev182 2019-10-02 10:33:46 +00:00
Max Weber
9e696ac3f2 runelite-api: Remove Triangle and Vertex classes 2019-10-01 18:00:24 -06:00
Max Weber
f16cd53d09 runelite-api: Optimize getClickbox
- Use the pre-calculated center/extreme xyz fields for the aabb
 - use modelToCanvas and reduce indirection
 - Use a specialized union that only does axis-aligned rectangles
     instead of the Area class
 - Use a specialized intersection that only does convex polygons, again
     to avoid Area
2019-10-01 18:00:24 -06:00
Max Weber
80709f1bfa Jarvis: use primitive arrays
This creates much less garbage and allows use with modelToCanvas
2019-10-01 18:00:23 -06:00
Max Weber
b77461a3e0 Perspective: Add modelToCanvas
This has significantly less overhead than repeatedly calling
localToCanvas, and may be vectorized in the future by a smarter jit
2019-10-01 18:00:23 -06:00
Max Weber
293b9cdf7c runelite-api: Add simple Shape implementations 2019-10-01 18:00:23 -06:00
Max Weber
a4cfbc3b42 runelite-api: Use more general Shape for clickboxes and convex hulls 2019-10-01 18:00:22 -06:00
dekvall
3819994572 runelite-api: add convexhull to wallobject 2019-10-01 14:05:51 +02:00
Owain van Brakel
5a7e5d43dc Merge remote-tracking branch 'runelite/master' into 2009-merge 2019-09-30 09:29:23 +02:00
tha23rd
44fbcda490 api: add devin's query system back in for niche uses. (#1687)
* adds query support to runelite

* adding custom filters re Ganom
2019-09-29 20:43:35 -04:00
f0rmatme
00f6cbf39e OPENOSRS branding 2019-09-29 17:29:53 -07:00
Ganom
6f3152456f theatre: fix nylo handler swaps. (#1640)
* theatre: fix nylo handler swaps.

* nylohandler: bug-fix

* Update ItemID.java

* Update Weapons.java

* Update Weapons.java
2019-09-28 17:04:47 +01:00
Runelite auto updater
6547478c07 [maven-release-plugin] prepare for next development iteration 2019-09-26 10:58:41 +00:00
Runelite auto updater
c1d4848830 [maven-release-plugin] prepare release runelite-parent-1.5.34 2019-09-26 10:58:35 +00:00
Bebop
e8b6fd062d Fixed Pyramid Plunder room overlay 2019-09-26 08:52:09 +00:00
Adam
276a278461 api: add volume changed event 2019-09-23 11:00:37 -04:00
Ganom
17dd88d50a client: add setters for selected spells and items (#1634)
* client: add setters for selected spells and items (thanks to Skitzo the absolute beast.)

* deob: change "changeSpellFlag" method name to "selectSpell"

* deob: export "selectSpell" for tests.
2019-09-22 00:25:03 +02:00
Adam
bac42955f1 Merge pull request #9756 from abextm/widget-picker
WidgetInspector: Add widget picker
2019-09-21 15:27:37 -04:00
Adam
1705fa642c api: add sound volume accessors and vars 2019-09-21 13:15:37 -04:00
Lucwousin
1e6cf0f5c7 Clean up merge and remove standardizedtarget field as it's not really used 2019-09-19 17:38:10 +02:00
Lucwousin
db03a245e3 Cleanup withdraw menu entry swaps 2019-09-19 17:30:49 +02:00
Owain van Brakel
7c4f1ae253 modeloutline: Use rotation instead of orientation (#1607)
Orientation lags behind most of the times while rotation doesn't
2019-09-14 21:50:18 -04:00
ST0NEWALL
36259e0792 Merge pull request #1605 from xKylee/lms
WidgetID: move LMS Widget
2019-09-13 09:19:07 -04:00