Commit Graph

13541 Commits

Author SHA1 Message Date
Kyle
4eaed7c18e project: splashscreen 2020-04-28 16:55:39 +01:00
Owain van Brakel
153717161c Merge pull request #2525 from open-osrs/Owain94-patch-1 2020-04-26 22:47:15 +02:00
Owain van Brakel
ab794c8c65 groups: Bind on local host instead of ip address 2020-04-26 22:39:18 +02:00
Kyle
3d6c5e5ede Merge pull request #2522 from xKylee/upstream
project: upstream + version bump
2020-04-26 13:14:24 +01:00
Kyle
611783a3c0 project: splash screen change and more logging (#2523)
* Update PluginManager.java

* Update ExternalPluginManager.java
2020-04-26 02:23:52 +01:00
github-actions[bot]
2cafafb5bd Merge pull request #2521 from open-osrs/NPC-UPDATE-967c3be8b
Client: Update NPC stats
2020-04-26 00:16:56 +00:00
OpenOSRS
9cc4881a3b Client: Update NPC stats 2020-04-26 00:09:34 +00:00
Kyle
959ed65c22 Update Model.java 2020-04-26 00:21:47 +01:00
Kyle
0c48ae448f mixins 2020-04-26 00:06:57 +01:00
Kyle
8216dfa20f upstream: merge and version bump
upstream: merge and version bump
2020-04-25 23:53:09 +01:00
Kyle
967c3be8ba Merge pull request #2518 from open-osrs/bootstrap-ram
bootstrap: allow java up to 1g of ram
2020-04-24 21:12:53 +01:00
Tim Granata
c507d0b4ff clues: add twisted slayer helm to warrior's guild steps (#11350) 2020-04-24 22:05:03 +02:00
github-actions[bot]
d628b81c18 Merge pull request #2519 from open-osrs/NPC-UPDATE-3e5efa9dd
Client: Update NPC stats
2020-04-24 00:17:57 +00:00
OpenOSRS
2cd935b3c4 Client: Update NPC stats 2020-04-24 00:10:45 +00:00
ThatGamerBlue
ed923ebc0b bootstrap: allow java up to 1g of ram 2020-04-23 16:24:25 +01:00
Runelite auto updater
1c9c71ef7c Bump for 1.6.13-SNAPSHOT 2020-04-23 11:21:55 +00:00
Runelite auto updater
522da94369 Release 1.6.12 2020-04-23 11:21:47 +00:00
Max Weber
c3c2a12c56 WidgetOverlay: remove bounty hunter info widget
This doesn't layout properly anymore
2020-04-23 04:47:09 -06:00
RuneLite Cache-Code Autoupdater
cfef584e43 Update Scripts to 2020-04-23-rev182 2020-04-23 10:32:27 +00:00
RuneLite Cache-Code Autoupdater
2cbe76c2e8 Update NPC IDs to 2020-04-23-rev182 2020-04-23 10:32:23 +00:00
RuneLite Cache-Code Autoupdater
eba4299235 Update Item variations to 2020-04-23-rev182 2020-04-23 10:32:22 +00:00
RuneLite Cache-Code Autoupdater
c746af58c3 Update Item IDs to 2020-04-23-rev182 2020-04-23 10:32:22 +00:00
Kyle
3e5efa9dd3 Merge pull request #2514 from Owain94/configpanelnumberformatexception
configpanel: Catch NumberFormatException
2020-04-23 10:11:29 +01:00
github-actions[bot]
d54ab0943c Merge pull request #2517 from open-osrs/NPC-UPDATE-43dcaa7da
Client: Update NPC stats
2020-04-23 00:16:26 +00:00
OpenOSRS
675f4cb1bb Client: Update NPC stats 2020-04-23 00:08:44 +00:00
Mitchell Kovacs
15b3d39446 timers plugin: add option to loop timers 2020-04-22 17:48:39 -04:00
Trevor
188a9414ff hitsplats: add missing multihitsplat varients 2020-04-22 14:05:08 -04:00
Max Weber
03511a4e00 interfacestyles: update widget bounds before every render
this reverts commit abaf45092b

We need to run this every frame because the client can update the widget
bounds cache without calling [proc,toplevel_resize]. This is easily
reproducible by resizing the client in fixed mode, which causes the
the tli to be revalidated, but because its in fixed mode it doesn't run
the resize listener because the bounds don't actually change.

We use BeforeRender instead of ClientTick because ClientTick is posted
before cs2s are evaluated each tick, so if [proc,toplevel_resize] (or
any other cs2 that can touch these widgets) is called the widget would
be in the vanilla position for the next frame.
2020-04-22 13:58:34 -04:00
Petter Sæther Moen
a626e97176 agility plugin: add laps per hour to lap counter overlay
Co-authored-by: Adam <Adam@sigterm.info>
2020-04-22 13:50:21 -04:00
Tomas Slusny
7d25ed8b42 Merge pull request #11323 from deathbeam/11318
Prevent screen marker overlays from being reset
2020-04-22 10:38:20 +02:00
Adam
6f0a2c9069 client: update itemcontainer api usage
Use new api methods if appropriate
2020-04-21 18:39:41 -04:00
Adam
8f12c2846d api: add useful utility methods to itemcontainer 2020-04-21 18:39:41 -04:00
github-actions[bot]
43dcaa7da3 Merge pull request #2516 from open-osrs/NPC-UPDATE-7f1488297
Client: Update NPC stats
2020-04-21 00:16:08 +00:00
OpenOSRS
1bc893b19c Client: Update NPC stats 2020-04-21 00:09:03 +00:00
Tomas Slusny
19412ac51c Merge pull request #11324 from deathbeam/prevent
Prevent HotkeyListener from consuming input on login screen
2020-04-21 00:44:56 +02:00
Adam
035c119f85 gpu: add option to disable compute shaders
This still gives a noticible performance boost over software rendering
as the rasterizing is entirely done on GPU
2020-04-20 18:36:27 -04:00
Adam
fe1772031a api: add drawFace callback 2020-04-20 18:36:27 -04:00
Adam
3b0bb05092 gpu: small refactor of compute shaders
split get_face into get_face + add_face_prio_distance, as the ssbo
reading did not need to be behind the first barrier used to initialize
the shared variables.

The rest of this is just code style cleanups
2020-04-20 18:36:27 -04:00
Adam
18ba6a54d0 hsl_to_rgb: remove unnecessary check for rgb 0
The client internally uses rgb 0 for alpha pixels, and so will use rgb 1
for things which are actually black. We don't do this.
2020-04-20 18:36:27 -04:00
Adam
af36b46aab gpu plugin: remove unnecessary buffer check
This buffer is initialized in initBuffers now and is never -1
2020-04-20 18:36:27 -04:00
Adam
319e257af3 gpu: add a couple missing Override annotations 2020-04-20 18:36:27 -04:00
Adam
ed53771295 gpu: fix one-off in model buffer selection
The small compute shader will sort up to 512 faces
2020-04-20 18:36:26 -04:00
Adam
c1fdec9d2e bank plugin: add option to input bankpin with keyboard 2020-04-20 17:30:31 -04:00
Adam
3422a7cfc8 api: add widget getOnOpListener 2020-04-20 17:30:30 -04:00
Adam
1e06b4dc58 api: add key script event fields 2020-04-20 17:30:29 -04:00
Tomas Slusny
57072c973f Merge pull request #11314 from Hydrox6/idle-notifier-enchant-bolts
idle notifier: add support for enchanting bolts
2020-04-20 14:42:14 +02:00
Flightkick
76fb24caec Properly address Grand Exchange price as 'GE' instead of 'EX' (#11317) 2020-04-20 14:29:11 +02:00
github-actions[bot]
7f14882971 Merge pull request #2515 from open-osrs/NPC-UPDATE-fe48eb120
Client: Update NPC stats
2020-04-20 00:20:06 +00:00
OpenOSRS
42572ac585 Client: Update NPC stats 2020-04-20 00:12:17 +00:00
Tomas Slusny
01bdbe5aab Prevent HotkeyListener from consuming input on login screen
This prvent HotkeyListener from running on login screen without being
explicitely enabled to do so.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2020-04-20 01:43:41 +02:00