Search results

  1. holatuwol

    Feature Ctrl+K search pop-up

    One idea is to merge the scripts menu, the bookmarks menu, and the gcli toolbar functionality together into the single Bookmarks menu, and then let the quick access take care of any potential usability issues with a large set of bookmarks buried in a menu, and then let the reordering serve the...
  2. holatuwol

    Feature Ctrl+K search pop-up

    Right now, it recursively checks the scripts menu (just like every other menu) and adds everything there. To make it more usable, I applied an update that uses the full script path rather than just the file name, so that two different scripts with the same file name actually show up separately...
  3. holatuwol

    Feature Ctrl+K search pop-up

    After coming back to try the game again after getting a very friendly and nostalgic email from Veracity, I noticed that I didn't know where anything was in the UI, so I added something to make it easier to find menu items. https://github.com/holatuwol/kolmafia/commits/feature I bound it to...
  4. holatuwol

    Mafia SVN for Scripts?

    Seems like a side-effect of this would be to declare script dependencies and have those dependencies auto-download.
  5. holatuwol

    Mafia SVN for Scripts?

    I created the lib folder so I could differentiate between source code that I was modifying from some other library and source code that originated in KoLmafia. Also avoids the problem where JARs are built using a later version of Java, making it not useful when you're trying to get things to...
  6. holatuwol

    The future of Java and impacts on KoLmafia

    As far as legacy Mac operating systems go, OS X 10.3 is Panther (supports up to Java 4), OS X 10.4 is Tiger (supports up to Java 5), OS X 10.5 is Leopard (supports up to Java 5), OS X 10.6 is Snow Leopard (supports up to Java 6). The two vetoes to the update beyond Java 5 were jasonharper and I...
  7. holatuwol

    Problems with the diff link in latest SVN update posts.

    Just as I was about to push the button, I saw: "Note that the URLs used to access your code repositories will change, and an email will be sent to all project developers with the new URLs after the upgrade is complete." So, I'll hold off until 2013.
  8. holatuwol

    Problems with the diff link in latest SVN update posts.

    I recently got an email from Sourceforge that they were going to change something in the near future, so they may be deprecating it early. I haven't pushed the button to upgrade yet since I have no idea what would happen to the existing tools that people have built out related to KoLmafia's SVN...
  9. holatuwol

    Feature - Implemented Allow user input more advanced than "yes or no" in ash scripts

    Well, it wouldn't make the alt-tab problem go away, but at least the UI will be responsive after some time. If the current developers are comfortable with that, then the original concern is unnecessary. :)
  10. holatuwol

    Feature - Implemented Allow user input more advanced than "yes or no" in ash scripts

    In case it's relevant, we avoided it in the past because if you alt-tab away from KoLmafia and a script prompts you for something, when you click back (as opposed to alt-tab back), you will never be able to find the prompt (it will never be given focus) and KoLmafia will not respond to input...
  11. holatuwol

    Bug - Fixed Linux relay browser launching broken

    Awesome, looks like switching the order on xdg-open and sensible-browser made things work the way you expected them to, or the original logic which used to return false for the AWT browser and forcing the fallback logic is now magically working and returning true. Either way, I'll mark this as...
  12. holatuwol

    Feature - Implemented Bare Bones Browser Launch

    No, I actually checked the key itself in regedit. There is no key there for Chrome and no key there for Firefox. I'll try adding quotes around the browser if it detects a space or % signs. Update: Preliminary testing with setting the value to %programfiles%\Mozilla Firefox\firefox.exe looks...
  13. holatuwol

    Bug - Fixed Linux relay browser launching broken

    I'll go ahead and go with the recommendation to rollback 11598, but I'm not convinced that everything won't just quietly fail again. That being said, to see what's going on with loading the default browser via fallback methods, can you go ahead and enter the following commands into your...
  14. holatuwol

    Feature - Implemented Bare Bones Browser Launch

    How long does it take to run dir /b /s %LocalAppData% chrome.exe? Edit: I'm avoiding the registry because I'm not sure reg will actually work when people are running as non-administrators on a wonky group policy. If your testing reveals that adding a filename doesn't help the search time at...
  15. holatuwol

    Feature - Implemented Bare Bones Browser Launch

    I'm not a huge fan of parsing through registry data, but using environment variables makes sense over iterating over all folders on a computer. As such, I'm going to try committing something that uses dir /s against the appropriate environment variables (which should allow Theraze to use iexplore).
  16. holatuwol

    Bug - Fixed Linux relay browser launching broken

    I phrased that poorly then. It's either doing nothing and returning true or it's throwing an exception which results in it returning false, which results the fallback code running and doing nothing. However, I'll go ahead and add debug tracing in case it captures anything when trying to run...
  17. holatuwol

    Bug - Fixed Linux relay browser launching broken

    Well, only thing I can think of is if the java.awt.Desktop.browse(java.net.URI) strategy does nothing on Kubuntu 12.10 with Java 7 or something, since I'm not seeing like that on Xubuntu 11.10. Try r11598, I've swapped out the code so that it always uses the fallback.
  18. holatuwol

    Feature - Implemented Bare Bones Browser Launch

    Try 11596? The code in 11593 forced the default browser always.
  19. holatuwol

    Feature - Implemented Bare Bones Browser Launch

    Just the "use a different web browser for KoLmafia" feature. I've ripped out ejalbert's old code completely and based the new code on BareBonesBrowserLaunch while still retaining the "use a different web browser for KoLmafia" feature. So basically, the new code drops Windows 9x support as well...
Top