Adam
4db42e77ab
Merge pull request #320 from UniquePassive/devtools-lag
...
Fix the UI freezing when refreshing widgets in the Dev Tools
2018-01-04 19:26:50 -05:00
UniquePassive
de66481965
Fix the UI freezing when refreshing widgets in the Dev Tools
2018-01-04 20:37:32 +01:00
Adam
61e9a12b30
runelite-client: always render tooltips on top
...
Add dedicated overlay position for tooltips to make them on top of all other overlays
2018-01-03 16:08:56 -05:00
Devin French
729b4be816
Combine BOTTOM_RIGHT and ABOVE_CHATBOX_RIGHT overlays for fixed mode
2018-01-02 21:30:05 -05:00
Alexander
73134b73d3
ExaminePlugin: Make sure widget children array index is valid
2018-01-02 21:29:38 -05:00
Alexander
d4623674c7
Fall back to default font for glyphs not in the custom font
2018-01-02 21:28:19 -05:00
Adam
e61035cea3
runelite-client: move infoboxes back to top left
...
They are over top of split chat at botom left
2018-01-02 21:24:34 -05:00
Adam
e20a248bed
Merge pull request #313 from UniquePassive/grounditems-toggle
...
Fix ground items not being toggleable
2018-01-02 21:07:12 -05:00
UniquePassive
b93927f4e6
Fix ground items not being toggleable
2018-01-03 01:05:52 +01:00
Adam
13d656221c
Merge pull request #310 from UniquePassive/issue-295
...
Fix previous result not being cleared in hiscore plugin
2018-01-02 18:03:32 -05:00
UniquePassive
2bdaf09b6b
Fix previous result not being cleared in hiscore plugin
2018-01-02 19:37:25 +01:00
Adam
e1d6d8f2f0
Merge pull request #302 from Noremac201/fixStyle
...
Changed attack style plugin to render over right side of chatbox
2018-01-02 08:50:18 -05:00
Adam
9519cf6902
Merge pull request #307 from UniquePassive/lookup-popup
...
Expand the hiscore panel when looking up players
2018-01-02 08:39:30 -05:00
Adam
6069348957
Merge pull request #305 from UniquePassive/overlay-improvements
...
Fix BackgroundComponent's background overflow
2018-01-02 08:39:01 -05:00
noremac201
5db8e71318
Change attack style plugin to use overlay position ABOVE_CHATBOX_RIGHT
2018-01-02 08:38:33 -05:00
noremac201
bf23c47916
Add new overlay position for above right side of chatbox
2018-01-02 08:37:53 -05:00
UniquePassive
945cdb1116
Fix BackgroundComponent's background overflow
2018-01-02 08:29:03 -05:00
UniquePassive
e4487362a5
Expand the hiscore panel when looking up players
2018-01-02 08:28:09 -05:00
Adam
a407af8672
cache: also disable map dumper test
2018-01-02 08:16:00 -05:00
Adam
ee3f4add78
cache: disable map image dumper test
2018-01-01 21:15:42 -05:00
Adam
ce1de258e9
Merge pull request #303 from Noremac201/addMissingSKills
...
Added and reordered missing skilling skills from boosts overlay.
2017-12-31 20:14:17 -05:00
Adam
ffb6debb22
Merge pull request #304 from AvonGenesis/crafting-spinning-animation-id
...
Add craft spinning animation ID and idle notification
2017-12-31 20:11:31 -05:00
Julian Tith
6d3110f0a1
Add craft spinning animation ID and idle notification
2017-12-31 12:10:14 -08:00
noremac201
537a76fcc6
Added missing skilling skills from boosts overlay. Reordered from left to right and up to down.
2017-12-30 18:56:18 -06:00
Adam
9cafb62b3f
Merge pull request #300 from deathbeam/account-config-load
...
Show account and config plugins when outdated
2017-12-29 18:10:48 -05:00
Adam
4ac2696130
runelite-proxy: subtree split into separate repository
2017-12-29 18:06:10 -05:00
Tomas Slusny
389a2be7ae
Show account and config plugins when outdated
...
Add property to load when outdated to both account and config plugins to
make them visible even when native client is loaded.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-30 00:02:45 +01:00
Adam
3d463a7c9d
Merge pull request #270 from deathbeam/runelite-cleanup
...
Decouple RuneLite class
2017-12-29 17:57:21 -05:00
Tomas Slusny
0d8870e7da
Remove unnecessary null checks for game client
...
Remove unnecessary null checks for game client from plugins, as now
client is always not null in all of them, since in the case of it being
null the plugins are not even started.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-29 18:17:17 +01:00
Tomas Slusny
6c2e827d4a
Move creation of UI to ClientUI class
...
- Move setting of UI-related variables to ClientUI class (create new
"create" static method to set them before creating the UI window)
- Clean up ClientUI class
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-29 18:17:16 +01:00
Tomas Slusny
6bf63a447f
Cleanup RuneLite class fields
...
- Remove runelite variable
- Use setters for options and injector (to use them outside of tests)
- Remove getter for gui and make it package-private
- Use package-private gui field when providing ClientUI from
RuneliteModule
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-29 18:17:16 +01:00
Tomas Slusny
b4eba39f6b
Move creation of tray icon to ClientUI
...
Move creation of tray icon from RuneLite to ClientUI.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-29 18:17:15 +01:00
Tomas Slusny
06836b3e1d
Move setTitle to ClientUI
...
Move setTitle method from RuneLite to ClientUI.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-29 18:17:15 +01:00
Tomas Slusny
bd521acbb0
Move creation of client to RuneLite
...
Instead of using setters and getters to move around reference to Client
and creating the client in the client panel, move creation of the Client
to RuneLite and add new field to PluginDescriptor if the plugin should
be loaded when client is outdated.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-29 18:17:09 +01:00
Tomas Slusny
69b88fe3e3
Extract runQuery to QueryRunner service
...
Extract runQuery method from runelite to separate Guice service.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-29 16:41:09 +01:00
Tomas Slusny
984ebb63dd
Extract session-related logic to SessionManager
...
- Extract runelite session related logic from RuneLite to SessionManager
class and expose this as Guice service
- Move WSClient to account package
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-29 16:41:09 +01:00
Tomas Slusny
82ee4a0036
Change Notifier to be injectable service
...
Move notify methods to Notifier and change it to be injectable Guice
service.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com >
2017-12-29 16:41:09 +01:00
Adam
82d277a8a5
cache: split cache client and server into their own projects
...
Split handshake and update protocol also into their own projects
2017-12-28 21:15:01 -05:00
Adam
c4bee1127c
cache: add map and location definition, convert Region loading to use it
2017-12-28 21:15:00 -05:00
Adam
162efc9bfc
cache: add savers
2017-12-28 21:14:59 -05:00
Adam
a27d3686c2
cache: add a few more write* to outputstream
2017-12-28 21:14:59 -05:00
Adam
0cebc5ebe8
cache: lombok definitions
2017-12-28 21:14:58 -05:00
Adam
e9e7e2a180
cache: rename some fields of object and interface
2017-12-28 21:03:02 -05:00
Adam
a718d00699
cache: fix readString to not sign extend negative values
2017-12-28 21:00:36 -05:00
Adam
e685ac2491
cache: fix readBigSmart
2017-12-28 21:00:06 -05:00
Adam
54c61857c1
cache: fix writeBigSmart
2017-12-28 20:59:17 -05:00
Adam
1ec375f1d2
runelite-api: add equipment inventory slot id, inventory id, logout widget and chat message type 7
2017-12-28 20:58:45 -05:00
Adam
1f153ddc48
cache: default index data to protocol 6
2017-12-28 20:57:55 -05:00
Adam
9b3231671a
Merge pull request #293 from UniquePassive/playermixin-npe
...
RSPlayerMixin: Don't NPE when Player name is null
2017-12-27 17:44:22 -05:00
UniquePassive
8f9c74aa91
Don't NPE when Player name is null
2017-12-27 20:31:50 +01:00