Commit Graph

10573 Commits

Author SHA1 Message Date
jeremiah855
1cf77fb431 create inferno-scouter 2026-04-28 00:33:14 +00:00
Marcel Hollink
83883da448 update bankstanding (#11580)
- Removed the initial 5 minute delay before marking players as AFK
- Fixed the timer displayed on the debug overlay
- Added a developer-mode chat command to reset the Bankstanding level

Co-authored-by: m.hollink <m.hollink@dictu.nl>
2026-04-27 20:22:06 -04:00
peanubnutter
1a2244ffbd update collection-log-luck (#11579) 2026-04-27 20:19:37 -04:00
VolkezXO
7f6c5f5918 update expanded-bank (#11666) 2026-04-27 20:02:25 -04:00
Fiffers
bdb04ce4eb update ground-loot-icons (11669) 2026-04-27 20:00:05 -04:00
Nate
0724be7953 update the-gauntlet
* add plugin

* use correct url

* do it again because i cant read

* fix readme

* add better readme with credidation and pictures

* update hash again with more refined version

* rename

* Remove the-gauntlet-enhanced plugin

* takeover-combined-pr

* remove standalone

* update with newest hash addressing logs and LinkBrowser feedback

* Add build property for plugin-hub
2026-04-27 19:55:58 -04:00
Joe Bosch
3c59b14825 update camera-points to v3.0.1 (#11665) 2026-04-27 21:00:59 +02:00
Hooder
1f332c0da0 update 117hd (#11664) 2026-04-27 19:51:02 +02:00
Yookiop
da25961a4b create prevent-minimap-reset 2026-04-27 15:42:47 +00:00
Enriath
e9a2dd59fc add minion-info (#11662) 2026-04-27 11:40:31 -04:00
DangItOSRS
23a5eb12e5 update cox-analytics to v1.0.3 (#11578) 2026-04-27 11:38:11 -04:00
its-cue
6ff3acfd69 update compact-orbs (#11570) 2026-04-27 11:36:22 -04:00
Ftwpker
a925964e3d create webweaver-swap 2026-04-27 15:17:32 +00:00
DamnLol
7f4db128cb create petscape 2026-04-27 15:12:20 +00:00
bopsec
00c9ae4f4d update deprioritize-leave 2026-04-27 14:07:53 +00:00
scriptnapps
a85cec21c7 update chathighlightplayer 2026-04-27 12:57:28 +00:00
SFranciscoSouza
814506f395 update lulinha 2026-04-27 12:52:18 +00:00
infinity
2091c7c49f Update random-event-helper to v3.5.1 (#11658) 2026-04-27 07:23:50 -05:00
W.U.L.D.: Incorporated
a93bde2480 update osrs-mining-stats 2026-04-27 07:41:33 +00:00
Alexander Shiao
2e21827afb update demonic-leagues-task-checklist 2026-04-27 06:26:09 +00:00
W.U.L.D.: Incorporated
475396412a update osrs-mining-stats 2026-04-27 04:55:37 +00:00
W.U.L.D.: Incorporated
bb112d70c8 update osrs-mining-stats 2026-04-27 03:25:12 +00:00
Endrit-alt
7c71ef66ab Update visibilityenhancer (#11634) 2026-04-26 22:13:27 -05:00
Lake
31be66c486 Update contextual-cursor to v1.10.1 (#11656) 2026-04-26 22:11:44 -05:00
Avahe Kellenberger
bfe4e4d79f update verzik-camera-fix 2026-04-27 03:00:00 +00:00
ostechgit
216599ad78 update boomerangbandits to v1.3.3 (#11476) 2026-04-26 22:50:48 -04:00
VolkezXO
de5eac7ef7 update expanded-bank 2026-04-27 02:39:43 +00:00
scriptnapps
9e97398a81 update chathighlightplayer 2026-04-27 01:29:20 +00:00
Guvvv
845b583e26 update thrall-damage-tracker 2026-04-27 01:24:11 +00:00
CarelessEsper
0659928cc4 update deepseatrawling 2026-04-27 01:09:00 +00:00
Hooder
2624d389aa update 117hd 2026-04-26 20:46:13 -04:00
Outlashed
08c97176a2 update granite-tracker 2026-04-26 20:44:01 -04:00
Joe Bosch
442e9848e7 update camera-points
* Update camera-points

* Update camera-points
2026-04-26 20:41:43 -04:00
TheFestiveMedic
365e221403 update advanced-gear-search 2026-04-27 00:38:43 +00:00
Mark
f6d4ed79c5 update demonic-larva-tracker 2026-04-27 00:28:33 +00:00
DrieVeertien
c1b80a1c1a update daily-agility 2026-04-27 00:23:21 +00:00
Arun Sundaram
a90fff24f2 update trade-highlighter 2026-04-27 00:18:10 +00:00
Outlashed
dbf5c64606 update granite-tracker 2026-04-26 23:52:57 +00:00
Max Moons
f0db038c4e update data-logger
* Added data-logger

* Thanks for catching the reflection issues. To address the "Use of reflection is not allowed" feedback properly and avoid any hacky workarounds, I realized the plugin's core architecture needed a refactor.

Here is what I've updated:

    Removed Dynamic Class Loading: Overhauled the UI routing by removing the reflection-based panel instantiation and replacing it with explicit Guice bindings and a safe switch statement in DataLoggerPanel.

    Removed Gson TypeToken Reflection: Removed the dynamic TypeToken reflection in FileIOService, replacing it with standard Java function parsing via the LogType enum.

    Removed Method Invocation: Replaced the reflective invoke call with a direct client.getAccountHash() API call in the new AbstractLogger base class.
Let me know if everything looks good to go!

* To address the "Use of reflection is not allowed" feedback properly and avoid any hacky workarounds, I realized the plugin's core architecture needed a refactor.

I have made the following changes;

    Removed Dynamic Class Loading: Overhauled the UI routing by removing the reflection-based panel instantiation and replacing it with explicit Guice bindings and a safe switch statement in DataLoggerPanel.

    Removed Gson TypeToken Reflection: Removed the dynamic TypeToken reflection in FileIOService, replacing it with standard Java function parsing via the LogType enum.

    Removed Method Invocation: Replaced the reflective invoke call with a direct client.getAccountHash() API call in the new AbstractLogger base class.

Let me know if everything looks good to go!

* Update data-logger to 1.1

Added Colosseum attempt logger
Added Colosseum gamestate logger
Added Colosseum screenshot logger
Added Item Storage logger
Extended Grand Exchange Logger

* PR revision based on feedback

Shifted nearly all IO operations to FileIOService
Updated README
Removed poorly defined toString() method of ColosseumWave

* Small ExchangeLogger changes; fixed totalTimeTaken

Disabled submission of new offers via the History parser
Added offer submission logic before an offer collection event fires
Defined totalTimeTaken in ColosseumAttemptLogger

* Unregister itemVaultLogger on shutdown

The Plugin now unregisters the itemVaultLogger on shutdown

* Update commit reference in data-logger plugin

Substituted log.info calls with log.debug calls

* Updated hash to correct hash

* Substituted java.awt.Desktop calls with RuneLite LinkBrowser calls
2026-04-26 19:51:56 -04:00
Col-Log
d386ddcfa7 update qol-interfaces 2026-04-26 23:12:40 +00:00
Adam Sharp
20d054568f update simplifying-mixology 2026-04-26 23:07:30 +00:00
TheFestiveMedic
b8245d5be5 update advanced-gear-search 2026-04-26 22:32:15 +00:00
DamnLol
f8bc63cc02 update chasmsigils 2026-04-26 22:17:04 +00:00
samkovaly
bb523d1596 update blast-mine-tracker 2026-04-26 22:06:49 +00:00
Fiffers
bbb38690af update ground-loot-icons 2026-04-26 22:01:39 +00:00
noahnoah711
4636b6a414 update toa-invocation-display 2026-04-26 21:51:24 +00:00
Wozak-1
68a25e55ae update bank-poh-search 2026-04-26 20:30:48 +00:00
Speshkitty
1dd48cd2f8 update mastering-mixology-herb-values 2026-04-26 20:25:36 +00:00
psikoo
18c537627a update total-total-level 2026-04-26 20:15:27 +00:00
NathanVegetable
fb00205b6c update configurable-slayer-task-overlay (#11405)
Takeover request per plugin takeover policy. Original author
(mathiaslj) has been unresponsive for 3+ weeks.
See: https://github.com/mathiaslj/configurable-slayer-task-overlay/issues/27

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-26 16:09:05 -04:00