-
Posts
13,723 -
Joined
-
Last visited
-
Days Won
388
Content Type
Profiles
Forums
Articles
Downloads
Gallery
Blogs
Everything posted by Jason Carr
-
Hey all, we're nearing release time again, so it's time for another round of translations! I'm looking to put out the official 9.6 release early next week (probably on Monday or Tuesday). As always, thank you all very, very much. @Opak @dukeemu @cyanjiang @Bardock @MajKSA @gamehacker @Cauptain @Kondorito @Nyny77 @alexposad
-
Creating a Startup Theme with Video Support
Jason Carr replied to Jason Carr's topic in Custom Theme Tutorials
@Retro808 I just put out beta 8, which should fix the video hitching issues with the startup themes. We should be all good now with the above solution. -
Beta 8 is out now with the following: Fix for videos not always playing properly in custom startup themes Game controller performance improvements
-
Okay, I'll add it to my list to try and replicate.
-
Including Custom Fonts without Custom DLLs
Jason Carr replied to Jason Carr's topic in Custom Theme Tutorials
Unfortunately I can't tinker with it for the moment; I just have too much stuff going on. If anyone's willing to help out wallmachine with a XAML styling issue, please speak up. -
Including Custom Fonts without Custom DLLs
Jason Carr replied to Jason Carr's topic in Custom Theme Tutorials
Thank you keltoi! I'm also excited to get all your themes up in the themes manager. The uploader is now available as well. -
Unfortunately you can't use the built-in transitions system, but you can add your own animations/transitions. There are some good examples in the Unified and Unified Redux themes. You can take a look at the animations that move the boxes and CDs in the wheel views.
-
@CoinJunkie Thanks for hitting me up here. I can help out to see if there would be any kind of a way to automate this; LaunchBox and Big Box do not handle bezels themselves (and I don't plan to implement that any time soon), so they would still need to be handled by Retroarch or MAME. But maybe there's a way that we can help to automate the installation process to Retroarch and MAME? I admit that I'm a noob to bezels almost completely, so I'm pretty much in the dark. What are the biggest painpoints right now for installing these bezels in a LaunchBox/MAME/Retroarch Windows environment?
-
Interesting. I run both Asus Aura and AI Suite III without issues (I always run Asus motherboards), so that's puzzling to me. But I'm glad you got it all squared away.
-
FYI all, @faeran helped me identify an issue with the theme forms where submitting a version with two decimal points (2.4.5 for example) was causing a server-side error and not submitting the theme. The version number is stored as a normal decimal number, so version numbers cannot have multiple decimal points in them. However, I've put up a new version of the web form that simply removes any extra decimal points so as to not trip people up in the future. Let me know if anyone runs into any additional issues with the theme submission process. Thanks!
-
Including Custom Fonts without Custom DLLs
Jason Carr replied to Jason Carr's topic in Custom Theme Tutorials
Just to clarify here for everyone in this thread, the new font solution above is working properly everywhere. @wallmachine's issue is an unrelated thing. @wallmachine After looking at your code, I'm guessing you'll probably need to set the all caps thing inside the ListBoxItemStyle instead of the ListBoxStyle, and you might need to put it deeper down into the template as well. -
Including Custom Fonts without Custom DLLs
Jason Carr replied to Jason Carr's topic in Custom Theme Tutorials
I see. So the uppercase thing is a separate issue than the font not loading. I was under the impression that the fonts were not loading as expected. At least we can cross that issue off the list. I'll do some quick research to see what might be going on with the uppercase thing. -
Per @jayjay's post above, BackgroundReloadSave is generally a good idea to use; the primary reason to use it is so that there are no conflicts with a third-party syncing app like Dropbox or Google Drive. Basically, it reloads any changed data from disk before saving the new values, just in case Dropbox or Google Drive happened to update a data file since the last time it was loaded. Regardless, though, either @jayjay's solution above or just PluginHelper.DataManager.Save() should both be working to save data that has been changed in games.
-
@jayjay I'll add those OSK requests to my list. Focus is a funny thing in Big Box; generally I don't rely on focus at all, because all inputs happen globally to the app and Big Box just knows where to send them. My recommendation would be to use the OnEnter, OnEscape, OnUp, OnDown, OnLeft, OnRight, OnPageDown, and OnPageUp methods of the IBigBoxThemeElementPlugin interface to detect when inputs occur, and then use that info to change the selection without forcing focus on the control.
-
Yes, it certainly could. My guess at this point is that it's considering something you're putting in as a security issue (it gets scared because of stuff like SQL injection attacks). You can always edit the description fields after the fact, so perhaps you can try putting in only something simple and then doing edits. That will also make it much easier to identify the problem field-by-field. So sorry for all the trouble here, but thanks for helping me troubleshoot this.
-
@gogoplata Unfortunately I've tested with your data and I'm not seeing any performance issues on my machines, so I'm guessing it's somehow system specific, or it's some kind of weird conflict with a running app. The next thing I would try is killing any and all processes that are running in the background via Task Manager, to see if there's a particular process that happens to be causing the issue. In the past, performance issues like this have often been the result of poorly written anti-virus software or similar.
-
Including Custom Fonts without Custom DLLs
Jason Carr replied to Jason Carr's topic in Custom Theme Tutorials
@y2guru It depends on whether you're creating a Startup Theme or a Big Box Theme. The different types of themes go into different folders. -
Including Custom Fonts without Custom DLLs
Jason Carr replied to Jason Carr's topic in Custom Theme Tutorials
I'm confused here as to what's wrong. First I tested putting the new font solution in a copy of the default theme, in the TextListView.xaml, and it shows up just fine with that font. Then I loaded up your theme and it appears to be working properly with the font and the new solution. What am I missing? As far as I can tell, everything is working properly.