Commit Graph
986 Commits
Author SHA1 Message Date
Tomas Slusny 0fb7590ea9 Improve scoring of Jaro-Winkler
Increase scoring based on string equality and contains checks with
lowercased and original casing.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2018-03-04 17:31:34 +01:00
Tomas Slusny 1fe2879140 Merge pull request #700 from l2-/prayerEnhanceTimerFix
fix prayer enhance timer. its actually 10 seconds shorter than 5 minutes
2018-03-02 13:09:17 +01:00
Tomas Slusny 7509701682 Merge pull request #766 from Kamielvf/resize-hotfix
Fix visual bug occuring when sidepanel is contracted after resizing
2018-03-02 11:48:59 +01:00
Kamiel 3b93baa372 Make rotation whitelist not case-sensitive 2018-03-02 05:53:55 +01:00
Kamiel a66fa52266 Set size properly 2018-03-02 04:05:02 +01:00
Adam 09c8dd9e26 Merge pull request #713 from Kamielvf/raids-plugin-update
Add more features to raids plugin
2018-03-01 20:28:14 -05:00
Adam 798e0eea49 Merge pull request #744 from Tape/notifier-updates
Notifier improvements and fixes for Linux
2018-03-01 20:01:58 -05:00
David Kosub 865acfb2e8 Notifier improvements and fixes
* Correct an issue where if libnotify-bin is missing then runelite
doesn't do anything
* Add an icon to the Linux notifications using libnotify-bin if it's
present
2018-03-01 19:41:32 -05:00
Adam 100a4bde1d cannon plugin: use infobox counter instead of overlay 2018-03-01 19:32:05 -05:00
Adam d9679842d3 Merge pull request #760 from sethtroll/fixopponentname
opponent info: remove color tags from opponentOpponent name
2018-03-01 19:17:40 -05:00
Adam b4f1a6ee87 Merge pull request #735 from deathbeam/notifier-global-options
Move the notification options to Notifier
2018-03-01 19:14:58 -05:00
Adam 73e3288ce4 Merge pull request #743 from deathbeam/fuzzy-search
Add fuzzy searching to config panel
2018-03-01 19:06:54 -05:00
Adam 699d241dd2 Merge pull request #748 from deathbeam/oily-fishing
Add support for oily rod fishing to idle notifier
2018-03-01 18:38:52 -05:00
Seth ebbb73d080 opponent info: remove color tags from opponentOpponent name 2018-03-01 17:26:41 -06:00
Kamiel 8bc8bfa6a4 Get points from varbits instead of widget 2018-03-01 23:42:13 +01:00
Runelite auto updater af46fc4756 [maven-release-plugin] prepare for next development iteration 2018-03-01 14:43:43 +00:00
Runelite auto updater 5ae9a9fbff [maven-release-plugin] prepare release runelite-parent-1.2.18 2018-03-01 14:43:38 +00:00
Lotto 2b65979a21 runelite-client: remove diary progress plugin
The functionality was added to the game
2018-03-01 15:03:33 +01:00
Kamiel c004747a88 Add floor duration(s) to infobox tooltip 2018-03-01 11:07:51 +01:00
Tomas Slusny 3c7aa79ac5 Add support for oily rod fishing to idle notifier
- Mainly for infernal eels (and other eels as well)

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2018-03-01 08:36:44 +01:00
Tomas Slusny a386dab3f2 Remove notification settings from NMZ
Remove notification settings from NMZ that are now contained in
RuneLiteConfig.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2018-03-01 01:12:58 +01:00
Tomas Slusny 5f0f0c6836 Remove duplicate options from IdleNotifier
Remove options that are now contained in RuneLiteConfig from idle
notifier.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2018-03-01 01:12:58 +01:00
Tomas Slusny 6ffe5da929 Move the notification options to Notifier
- Move enabling of tray notifications to RuneLiteConfig
- Move request when focused notification option to RuneLiteConfig and
use it in notifier
- Move request window focus to RuneLiteConfig and use it in notifier
- Change Notifier to use Guice for creation

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2018-03-01 01:12:58 +01:00
semtexerror 9874b3af43 cannon plugin: draw npc double hit spots 2018-02-28 19:09:56 -05:00
semtexerror d747af78b7 cannon plugin: add overlay for cannonballs left 2018-02-28 19:09:52 -05:00
semtexerror d2b496ffd4 cannon plugin: cleanup 2018-02-28 19:09:48 -05:00
semtexerror 41cde74023 cannon plugin: support unloading cannon 2018-02-28 19:09:37 -05:00
Adam f1b541473f Merge pull request #717 from deathbeam/hunter-remove-anim-checks
Remove animation checks and catchrate from hunter
2018-02-28 18:02:01 -05:00
Tomas Slusny aebfe444af Add fuzzy searching to config panel
Add fuzzy search to config panel. Searches for matching query in list of
entries (plugin names) based on
[Jaro-Winkler Distance](https://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance).

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2018-02-28 23:43:45 +01:00
arlyon 7f0e1b2ba2 runelite-client: enable fullscreen on osx 2018-02-28 17:43:43 -05:00
arlyon 7601f984c4 runelite-client: split ostype into its own utility 2018-02-28 17:43:36 -05:00
Tomas Slusny 76fbab60fc Remove catch rate overlay
Remove catch rate overlay because the catch attemps do not always need
to be correct, because sometimes it might count other player's trap.
Also, it works only for imps, boxes and bird snares otherwise it always
shows 100%.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2018-02-28 10:27:13 +01:00
Tomas Slusny 70916be164 Remove animation checks
Remove animation checks from hunter plugin because animations are
unreliable and do not work during 3ticking. Reasoning is it is better to
have shown extra traps sometimes than not registering own traps
sometimes

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2018-02-28 10:26:13 +01:00
Kamiel a84f8fbaa4 Add ability to whitelist boss rotations 2018-02-28 04:43:45 +01:00
Kamiel 259d3c0eec Add ability to highlight rooms 2018-02-28 04:17:37 +01:00
Kamiel d1342f821b Add ability to whitelist layouts 2018-02-28 04:11:47 +01:00
Adam 79e53bb3eb Merge pull request #693 from Adam-/input
Add support for hooking input
2018-02-27 20:51:17 -05:00
Adam a154d56267 Merge pull request #707 from devLotto/issue-704
opponentinfo: display the name of the target of your target
2018-02-27 20:38:30 -05:00
Adam e35c8928d7 Merge pull request #716 from deathbeam/fix-minimap-error
Fix NPE in minimap plugin
2018-02-27 20:08:01 -05:00
Adam abec047740 Merge pull request #718 from devLotto/examine-fix
examineplugin: only capture menuactions with the option "Examine"
2018-02-27 20:07:06 -05:00
Adam a4b20d40d5 Merge pull request #721 from devLotto/issue-471
notifier: add option to disable notification sounds
2018-02-27 20:05:20 -05:00
Adam 53b025007b Merge pull request #723 from devLotto/add-agility-courses
Add missing agility courses
2018-02-27 19:58:15 -05:00
Adam a999863a80 Add support for intercepting mouse and keyboard input
Also allow translating mouse input for stretched fixed mode.

This is required for moving overlays, and interacting with the instance map.
2018-02-27 19:31:45 -05:00
Lotto 5c7c882ecb hiscoreplugin: show skill details on hover instead of click 2018-02-27 20:50:39 +01:00
Lotto 17f19f9473 agilityplugin: add support for Brimhaven 2018-02-27 16:17:39 +01:00
Lotto 2c0ab96e70 agilityplugin: add support for Dorgesh-Kaan 2018-02-27 16:17:32 +01:00
Tomas Slusny 85003ff5c0 Fix NPE in minimap plugin
Prevent failing on NPE when trying to access originalDotSprites or when
trying to access map dots.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
2018-02-27 14:23:25 +01:00
Lotto 13b03a4710 notifier: add option to disable notification sounds 2018-02-27 14:09:44 +01:00
Lotto 59faa482e3 examineplugin: only capture menuactions with the option "Examine" 2018-02-27 13:43:27 +01:00
l2- cc8e8f7006 Xp orb fixes (#689)
* xp progress arcs now render correctly and are a neat circle at 99.9% progress. Slightly changed position of the xp orbs. also added customization to change the position and strokewidth and more
2018-02-27 12:40:27 +01:00