-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update flipping-copilot to v1.6.0 #7184
base: master
Are you sure you want to change the base?
Conversation
You've done a good job of wrapping things in ClientThread#invokeLater where needed, but you need to be more cognizant of getting back off the client thread as soon as possible. You're doing a whole bunch of I/O and Swing things on the client thread in a lot of places. Use SwingUtilities#invokeLater and a parallel executor instead. Tip btw: you can use |
Thank you for the feedback, we've made the following changes to address it:
We've also added a few other changes with the latest commits:
|
This is actually borrowed from in the GrandExchangePlugin code https://github.com/runelite/runelite/blob/0c0c41d5b7d6b1314d2257ffb9c10cf82b2ec7b9/runelite-client/src/main/java/net/runelite/client/plugins/grandexchange/GrandExchangePlugin.java#L938-L981. We thought that it could be useful in certain cases for ensuring transaction consistency and debugging user reported issues related to transactions. Right now our backend isn't actually doing anything with it. If there are any concerns relating to user privacy/security we can remove it. |
If you aren't using it now I would prefer if you could remove it, yes. |
MachineID has been removed now, as requested |
Major refactor and improve transaction inference