Jump to content
LaunchBox Community Forums

faeran

Administrators
  • Posts

    2,517
  • Joined

  • Last visited

  • Days Won

    134

Everything posted by faeran

  1. Thanks. Pretty sure the Commodore Amiga platform encompasses all models of the Amiga, so you can import your games to that platform.
  2. Thanks, the video helps explain a bit of what's going on, so we should be able to track it down and fix it for a future deploy.
  3. Thanks guys. The database should be back online.
  4. Can you be more specific about the games you've tried? I'm guessing this is more game specific than anything.
  5. I do believe it's because you are using an old version of LaunchBox. You may need to update to a later version to solve this.
  6. As you found it is recommended that a LaunchBox install be within at least 1 folder to not run into the issue you are seeing (ala C:\LaunchBox\). We have it marked on a long list of items to take a look at, but it's fairly low priority due to the easy way to circumvent this problem.
  7. We just tested this internally have haven't seen any issues with logging into Microsoft/Xbox. The problem listed in this post was resolved, but if you are still experiencing a different issue with the login, open up a new thread with more detailed steps of what you are doing and the error you are receiving.
  8. Couple ways you could try (create a backup of your data files before trying any of these, just in case): The offline method: Use the ROM Import wizard to import all your new files Edit the PlayStation platform and make sure the Games folder is correct, under the Folders tab Run the Removed ROMs tool under Tools > Scan > For Removed ROMs for Sony PlayStation The online method: Sign into (or register for) the Games DB in LaunchBox (if you haven't already) under Tools > Cloud Once you are logged in, make sure Game Statistics Syncing is enabled (This will sync all of your game stats for games that are linked to a LB Games ID) At this point, it doesn't matter if you delete the entire platform and re-import, your game statistics will get downloaded from the cloud and re-associated with your games
  9. Before, the platforms were using Sort Title by default. Have you used the platform sort menu to switch back to Sort Title and see if that fixes your issue?
  10. Beta 4 is out with the following fixes: Fixed: The auto-import feature unintentionally being used for games that fall under one of the Arcade platforms Fixed: Epic Games Store login will now work with SSO services like Google Thanks for all the help with beta testing this release. Unless something major gets uncovered, we are looking at a tentative release later this week, or early next week.
  11. Based on what I've gathered, it looks like Dolphin for Handheld is essentially just MMJR2 repackaged. Maybe similar to this one: https://github.com/Medard22/Dolphin-MMJR2-VBI/ We'll look into it and see if we can add it as a separate emulator entry for a future update.
  12. I've never seen that error unfortunately. It's something to do with the Emblem - Launch theme, but what it's referencing doesn't make too much sense. Does the same error happen when you launch other platforms? What version of LaunchBox for Android are you running? I assume you don't get this error if you switch to another Launch view from a different theme?
  13. Please update to the latest beta and see if that solves the issue for you.
  14. The LaunchBox for Android 1.13 beta thread has been opened, and can be followed here:
  15. Hi Everyone, This post is reserved for anyone willing to help us with LaunchBox for Android 1.13 beta releases. You can opt into the beta releases in the app by going into Options and enabling the Update to Beta Releases option. Then restart the app and follow the steps. Full Changelog: https://www.launchbox-app.com/android-about/change-log Beta 1 contains the following changes: You can now quickly sort your platforms by a number of different options Max Players is now available from the Filter's menu Search has been revamped to deliver more precise results. By default, it will now search by title (and alternate title), with advanced options to filter through more metadata (available filter switches: All, Dev/Developer, Genre, Plat/Platform, Pub/Publisher, Source, Status, Title) The follow emulator is now fully supported: Saturn.emu Fixed the hamburger menu and back button not working on some pages while using a controller Fixed the File Extension feature not working in some situations Users are now warned when the application tries to save a file on a device with not enough space The Background Fade progress bar under View Settings is once again visible Fixed 13 potential crashes throughout the app Beta 2: Added navigation sounds, which supports startup, move, select, and back actions. Each action can play multiple sound files randomly or sequentially. Custom sound packs are supported, including full compatibility with Big Box sound packs. Place sound packs in the LaunchBox\Sounds folder. Configure options in the Options menu You can now set a global view for all sections (Root Filter, Secondary Filter, Game views) from the Manage Theme menu (top-right corner). Global views override section-specific views without affecting individual section configurations Improved controller navigation throughout the app Beta 3: Videos can now be streamed directly from YouTube using the video URL metadata point found under a game's Edit Metadata page. These streamed videos will appear in the same places as local videos would normally be displayed. You can enable this feature via the options menu An option to download and save streamed videos directly from a game's Edit Media page has been added You can now track your Play Time and Play Count on a game's Edit Metadata page, with the option to reset those counts for a fresh start Thanks to all who are willing to help us test our betas.
  16. We looked into this and found that it's a security feature of IIS. We are still looking into the best way this could potentially be handled.
  17. You downloaded a game theme video for Super Mario Bros. 3 and it fell back to that video.
  18. In LaunchBox, go to Tools > Download > Platform/Playlist/Category Theme Videos...
  19. Potentially means you may need to recache the page. CTRL+F5 might work.
  20. If you are referring to the ROM auto-import feature, the Windows platform is currently excluded from this feature for now. We may provide some limited support for the Windows platform in future updates, but it's not in scope for this one.
  21. There's a fix in the latest beta for this. You can opt into the beta by going to Tools > Options > General > Updates, or you can wait for the next official release.
  22. When I switched to the Razer Kishi, I never looked back. There's a version 2 out now that's supposed to be a bit better, depending on how you like your buttons to feel. I used to use an ipega and had similar issues as you, but once I switched to the Kishi it was noticeably better in every way. However, it's not wireless (it connects to your USB-C slot), and it doesn't light up (which was something I specifically look for in a controller, as I play in the dark a lot).
  23. You wouldn't be able to utilize that file yourself. What you would have to do is open the following file in your custom theme: \Views\MenuItemView.xaml Then, replace the TextBlock that you see in there with the following: <TextBlock x:Name="MenuText" TextTrimming="CharacterEllipsis" TextWrapping="NoWrap" HorizontalAlignment="Stretch" VerticalAlignment="Center"> <TextBlock.Style> <Style TargetType="TextBlock"> <Setter Property="FontSize" Value="{Binding Converter={StaticResource ScaleConverter}, ConverterParameter='27'}" /> <Setter Property="Text" Value="{Binding Text}" /> <Setter Property="Padding" Value="0" /> <Style.Triggers> <DataTrigger Binding="{Binding Text}" Value="Play"> <Setter Property="FontSize" Value="{Binding Converter={StaticResource ScaleConverter}, ConverterParameter='45'}" /> <Setter Property="Padding" Value="{Binding Converter={StaticResource ScaleConverter}, ConverterParameter='0,10'}" /> </DataTrigger> <DataTrigger Binding="{Binding Text}" Value="Aplicaciones/Versiones adicionales"> <Setter Property="Text" Value="Otras versiones / CDs" /> </DataTrigger> </Style.Triggers> </Style> </TextBlock.Style> </TextBlock> It essentially just adds a datatrigger that looks for the menu text Aplicaciones/Versiones adicionales, and then replaces it with Otras versiones / CDs
  24. Beta 3 is out with the following: Improvement: Added logic to improve the ability to import SNES MSU-1 ROMs Improvement: A limited file extension blacklist was added to the auto-scan process to help with some common file types Improvement: The auto-scan ROM import notification now includes an action button that directly opens a window displaying the list of imported ROMs. Additionally, imported ROMs are saved within your log files (if enabled). Fixed: Potential issue with adding new platforms to LaunchBox using the ROM auto-import feature Fixed: Problem where Image Types weren't downloaded when removed from all Image Groups while the Media Limit option was enabled Fixed: RAHasher 1.7 has been replaced with its x86 counterpart to remove debug dependencies that the x64 version incorrectly included Fixed: Javascript error that some users encountered during the Epic Games login process This update fixes a number of issues people were reporting with the auto-scan feature, as well as ones we caught internally. If you were previously having an issue with the auto-scan feature, now would be a good time to see if this update solves it for you.
  25. This is true. There's also other use cases where people are importing these types of files into LaunchBox. Either way, we should have a solution that hopefully will work for you. It should be out very soon.
×
×
  • Create New...