Jump to content
LaunchBox Community Forums

Grila

Members
  • Posts

    590
  • Joined

  • Last visited

  • Days Won

    29

Everything posted by Grila

  1. Love this theme @viking, excellent work. The bright white was melting my retinas at night so I made my own dark version Out of respect to you and your hard work, I will keep it for my own personal use.
  2. Ahahaha @neil9000, my biggest fan!
  3. Don't worry, I won't get rid of this version. I would put it out as a separate theme. I'll also try to find some time to add some different color schemes. No one has ever asked for that but I think it's a good idea. Glad you're enjoying the theme @bundangdon ?
  4. @mywee I may update it to the new look, but my life is pretty hectic right now and don't have the free time I used to. Also, @neil9000 is correct with his statement about the home page.
  5. https://github.com/G-rila/PlaytimeTracker/blob/master/PlaytimeTracker/PlaytimeTracker.cs There are a few other plugins in my repositories as well that you can look through. After a quick look, it appears your problem is you are getting all your values instead of setting them.
  6. That's quite the collection you have there @neil9000! And a super sexy LaunchBox theme if I do say so
  7. New Version 1.3 Added a visual playtime setter/editor
  8. The Steam bug is a problem with the LaunchBox Plugin API, not my plugin. The problem would have to be fixed in the API by the LaunchBox devs.
  9. I'm actually working on this now and should have an update in a few days or so. It will allow you to manually enter playtime for any game from the right-click menu.
  10. @TheNewClassics I caught the error and uploaded a new version. I encourage everyone to update as well because the error would sometimes stop the playtime from actually being recorded.
  11. I know it works with pcsx2 so it might be because you're on beta, I'm on 10.6 stable. I'll update to beta and test.
  12. What version of LB are you on? What platform are you testing with? The games have to be run once before anything will show. Also, because of the way LB works, after you run a game you have to select another game, then select the previous game to see the updated playtime.
  13. New version that fixes a major bug, please update! Added the ability to reset playtime within LB via the selected game's right click menu Fixed a string format error that would prevent playtime from going over 23 hours
  14. I won't say no, but it's a little out of the scope of this project. I'll keep it in mind though. It is possible. Under the LaunchBox\Plugins\PlaytimeTracker folder there will be a bunch of plain .txt files that store the actual timespan. The problem is, is that they are named by the game's id from your LaunchBox\Data\Platforms xml file. So in the plugin's current state, you'd have to find the id from the data xml from the corresponding platform, then edit the text file from the plugin directory with the same id with the same format as in the text file (hours:minutes:seconds, example 00:00:05.8454237) I do have an update that I'll push soon that will make this easier, but it's not entirely ready yet.
  15. Ahh gotcha. I can add the ability to reset this weekend.
  16. The whole point of it is to track your playtime...why would you want to reset it?
  17. Playtime Tracker View File New Version 1.4 Removed "Reset Playtime" function from BigBox as requested by @klepp0906 and @Blazer New Version 1.3 Added a visual playtime setter/editor New Version 1.2 Fixed another string error that would sometimes cause the playtime to not record. Thanks @TheNewClassics. Everything should work now but please don't hesitate to let me know if any other problems arise. New Version 1.1 Please update to the new version. I caught a string error that would prevent any playtime from going over 23 hours. The new version will keep all your game's previous playtime intact. Also, you can now reset a game's playtime in LB from the selected games right click menu (@Krakerman). Drop the .dll in your LaunchBox\Plugins directory and start tracking how long you play your games. The playtime is recorded as a custom field so it is visible in LaunchBox on the game details bar and in BigBox in the game details. See the screenshots for reference. Known Issues: Per the plugin API (http://pluginapi.launchbox-app.com/html/a40a286d-83c6-e179-940c-7e4166d567fe.htm) this may not function correctly with all platforms (ie. Steam) but I have tested it with RetroArch, Dolphin, and PCSX2 without problems. Submitter Grila Submitted 11/13/2019 Category Third-party Apps and Plugins  
  18. Version 1.4

    1,057 downloads

    New Version 1.4 Removed "Reset Playtime" function from BigBox as requested by @klepp0906 and @Blazer New Version 1.3 Added a visual playtime setter/editor New Version 1.2 Fixed another string error that would sometimes cause the playtime to not record. Thanks @TheNewClassics. Everything should work now but please don't hesitate to let me know if any other problems arise. New Version 1.1 Please update to the new version. I caught a string error that would prevent any playtime from going over 23 hours. The new version will keep all your game's previous playtime intact. Also, you can now reset a game's playtime in LB from the selected games right click menu (@Krakerman). Drop the .dll in your LaunchBox\Plugins directory and start tracking how long you play your games. The playtime is recorded as a custom field so it is visible in LaunchBox on the game details bar and in BigBox in the game details. See the screenshots for reference. Known Issues: Per the plugin API (http://pluginapi.launchbox-app.com/html/a40a286d-83c6-e179-940c-7e4166d567fe.htm) this may not function correctly with all platforms (ie. Steam) but I have tested it with RetroArch, Dolphin, and PCSX2 without problems.
  19. Look at my GPDWin theme in the WheelGamesView. I did something similar but with a gradient so it may help you with what you need.
  20. Grila

    ComixBox Theme

    Sounds like a codec issue to me...try switching BigBox to use VLC instead of WMP or vice versa. You're the first to have this issue so I don't think it's theme related.
  21. It doesn't matter how we look at it, it matters how WPF looks at it.
  22. Site of Origin Pack URIs The pack URI for a site of origin file uses the following authority and path: Authority: siteoforigin:///. Path: The name of the site of origin file, including its path relative to the location from which the executable assembly was launched. The following example shows the pack URI for a XAML site of origin file, stored in the location from which the executable assembly is launched. pack://siteoforigin:,,,/SiteOfOriginFile.xaml The following example shows the pack URI for a XAML site of origin file, stored in subfolder that is relative to the location from which the application's executable assembly is launched. pack://siteoforigin:,,,/Subfolder/SiteOfOriginFile.xaml
  23. It's not an absolute path, it's relative to where Launchbox is installed. Say you have two installs: C:\Launchbox Z:\Foo\Bar\Launchbox Therefore the code you're having trouble understanding (<Image Source="pack://siteoforigin:,,,/Themes/CleanHardware/img/white-corner.png" RenderOptions.BitmapScalingMode="HighQuality" />) translates to this on each install and the theme works as intended: C:\Launchbox\Themes\CleanHardware\img\white-corner.png Z:\Foo\Bar\Launchbox\Themes\CleanHardware\img\white-corner.png An absolute path would be the following (and would only work for the first install location, the second would fail to load the image): <Image Source="C:\Launchbox\Themes\CleanHardware\img\white-corner.png" RenderOptions.BitmapScalingMode="HighQuality" /> It's just the way you have to do it with WPF. WPF has many quirks and nuances that don't make much sense, but must be followed.
×
×
  • Create New...