Jump to content
LaunchBox Community Forums

shadowfire

Members
  • Posts

    82
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by shadowfire

  1. Go to "Options -> Visuals -> Boxes -> Spacing" and set "Text Lines to Show" to "2" The game title should be visible below the covers, not on hovering above. Like in the screenshots posted here
  2. If you are comfortable with editing XAML, there's a "Badges" section in Views/Settings.xaml. Uncomment the line that says: <!-- <SolidColorBrush x:key="LD_BadgesBackgroundBrush" Color="#ee444444"></SolidColorBrush> -->
  3. Yes, I'm working on it so hopefully soon...
  4. Lambda beta is supposed to show the game titles below the cover. Have you set "Game Text Lines to Show" to 1 or greater in the "Spacing" section of LaunchBox config?
  5. Sorry, I could not reproduce that issue so I'm unable to help you with that...
  6. I don't have retroachievements myself so it's sort of an unsupported feature (the code is copy/paste from a different theme) but according to the Changelog the latest version of LaunchBox seems to have a fix for that.
  7. Had a similar problem when I tried to update to 11.4 yesterday (2020-08-30) through the menu. Got an error pop-up during install (sorry, I didn't make a screenshot) and after that LaunchBox.exe wouldn't launch at all. Fixed it for the time being by manually reinstalling 11.3. First time in years I got an issue updating LaunchBox. I'm on Windows 7 (x64) with these MVC++ 2015 versions:
  8. Just in case you didn't know: you can turn off most of the info details and FanArt in Lauchbox's Game Details options (no need to hack the code) and the font settings are based on Windows' font settings. So if you increase Windows' font size to couch-distance it should apply to the theme as well.
  9. Interesting 'solution' ? No sorry, I don't know which part of the application handles loading and rendering. But I've noticed a few per game factors that can lag rendering on my system: 4K images, lots of screenshots (and maybe FanArt; the theme uses a workaround to display only one of them) and blur ratio of the main background image. You can rule out drop shadows since this theme doesn't use any.
  10. That's what I originally wanted as well but unfortunately I couldn't find a way to make that work. It's seems that Launchbox restricts image types allowed in the Details panel to FanArt and Screenshots. That's why I decided to use FanArt with the title overlayed as sort of a banner representation of the game.
  11. Yes, that's intended behavior. The background of videos is darkened when there's no FanArt in case someone has "Auto-Play Video" turned off to hint the area where the video player is. (Otherwise it would just show a large play icon which can be confused with meaning "play game" or something.) But if you prefer to have it transparent you can override it by removing the comment tags in line 55 of Lambda beta 1.1/Views/Settings.xaml so it reads like this: <SolidColorBrush x:Key="LD_VideoBackgroundBrush" Color="Transparent"/> (You may have to restart Launchbox for it to take effect.)
  12. I'm sorry, but there are various reasons why this particular style was chosen. In an earlier version I experiment with various box selection style and the reason why the bordered style didn't make it was because it made it difficult to see which box is selected when you have a lot of box art on screen. E.g. when you use a keyboard shortcut to jump ahead in the list or use the "choose random game option". Eventually the current style was the style that was chosen because of it's visibility, simplicity and consistency with other UI elements. (And keeping the other options around made the code complex to maintain.) The only thing you can do without hacking the code (which I wouldn't recommend) is - if you're boxes have the same aspect ratio - minimise the padding and tweak the aspect ratio in Launchbox' Boxes settings.
  13. Not 100% sure if this will also work with WMP (as I mentioned mine is broken so I can only test VLC for now) but you can try adding MaxHeight to your already modified VideoControls line in GameDetails.xaml like this: <controls:VideoControl x:Name="VideoControl" Background="{StaticResource LD_VideoBackgroundBrush}" Visibility="{Binding VideoVisibility}" MaxHeight="500" Margin="0,-10,0,5"/> The value of 500 is just a suggestion, you may want to tweak it depending on your preferred window size. Also this will most likely pillarbox your vertical videos anyway because reducing height also means reducing width. Thanks, appreciated Note that the workaround I'm working on will have a fixed aspect ratio but I'll make it relatively easy to change the default to another one (e.g. 16:9, 4:3 or 3:4 vertical)
  14. ( @tycho1974 ) I would recommend using the MaxHeight property since that would not mess with scaling when you want to to reduce the width of the Details panel. Set it either on the video control or one of it's containers should do the trick. Note that my workaround will apply to both VLC and WMP since the theme is not aware which back-end is used. Btw. can someone provide me with a vertically-oriented video so I can test this? I don't have an EmuMovies account...
  15. I'm kind of interested in feedback on this, particularity if anyone cares about the left/right margin of 4:3 videos (pillarboxing) as a consequence. Also since I've moved code around and I don't have many (4:3) videos (and WMP) maybe someone wants to volunteer as a tester before I do before an update to the release?
  16. @tycho1974 @CriticalCid @Kondorito and others: I have found a workaround for the VLC video aspect issue which enforces a 16:9 video container. So 16:9 letterboxing is removed but instead 4:3 are now pillarboxed. Maybe that's more acceptable? I've also tweaked the metadata in the lower row to be a bit more space efficient. (Needs a Windows 10 test though since I've changed the stars/favorite assets font and size to Segoe MDL2 Assets. I'm still on Windows 7.) P.S. Sorry @CriticalCid, I haven't thought about Custom Fields. I'll mark that down as an issue.
  17. No, I don't think so... The date format is not handled by the theme layer but by Launchbox itself and as far as I know there's currently no option for date localization in Launchbox.
  18. @CriticalCid @tycho1974 does it also work with Auto-Play Videos turned off in the View menu? My WMP is currently broken so I can't test that myself. Unfortunately I can't implement it if it doesn't work with VLC but feel free to modify your own version. (My code is the same btw. as in other LB themes and they all show black bars so maybe it's just a limitation.)
  19. I wish there was but I couldn't figure out how to do it. I'm not even sure if it's possible, it seems the video box has a forced 4:3 aspect ratio. But if someone with more XAML experience than me knows how to make the aspect ratio flexible, I'm open to suggestions... EDIT (for devs): the issue is with determining the initial height of VideoControl before the video starts playing. The black bars can be made transparent but that won't solve the issue since it leaves empty space above and below the video.
  20. Yes I can confirm that the Game Details settings only apply to the details panel and "show subline" controls the info below the thumbnails. If you wish to hide the developer below the thumbnails you could change the Boxes Spacing "text lines to show" to 1 (with subline enabled), that will only show the year and platform in the subline. The only caveat is that there is one line less space available for game titles so long ones get cut off. (I personally don't care much for developer info there but I left it there as padding between title and year/platform info.)
  21. Lambda beta View File This theme attempt to be minimal and modern and maximise screen estate. Note: this is a beta release and features may change in future releases. Installation Unzip into LaunchBox\LBThemes directory In LaunchBox go to: Options -> Visuals -> Theme: Lambda beta Windows 7/8 user: Microsoft's “Segoe MDL2 Assets” font ( SegMDL2.ttf ) is required for the buttons and icons to rendered properly. (If you have it it will work but it’s not included here because of licensing reasons.) Settings guide tl;dr: You may have to tweak your Boxes aspect ratio and spacing. The top Details image is only visible when Fanart is available. Button bar can't be hidden because of the licensing info. Font and colour settings have no effect (font is based on system font). Settings used in screenshots are: Options -> Visuals -> Boxes -> Spacing: Aspect Ratio: 0.6 * Horizontal Spacing: 2 Vertical Spacing: 2 Horizontal Padding: 8 Vertical Padding: 2 Text Spacing: 4 Text Lines to Show: 2 *) For horizontal box art you may need to use a higher value. Options -> Visuals -> Boxes: Align Text Vertically : enabled Align Text Horizontally : enabled Show Subline : enabled (for platform info) Other recommended settings: Options -> Legacy -> General -> Game Details: Show Fanart: enabled other options at your own preference Options -> Legacy -> Images -> Background Priorities : Fanart : enabled other options disabled Options -> Visuals -> Backgrounds: Background Blur Amount : 100 Background Fade Amount : 0 (Imo. the theme looks best when blurred background Fanart and Details Fanart are the same image.) Settings that don't have any effect: Button bar can't be hidden because the license has to stay visible. Colours are hard coded. Font (including size and scaling) is based on your Windows system settings. Thanks to Grila for allowing me to use his LBPlex theme code, Retro808, neil9000, C-Beats and Jason Carr for testing and everyone who supported this release on the forum. Lambda beta theme CC BY-NC-SA 4.0 Shadowfire 2020 Submitter shadowfire Submitted 05/01/2020 Category LaunchBox Custom Themes  
  22. Version 1.1.2

    2,702 downloads

    This theme attempt to be minimal and modern and maximise screen estate. Note: this is a beta release and features may change in future releases. Installation Unzip into LaunchBox\LBThemes directory In LaunchBox go to: Options -> Visuals -> Theme: Lambda beta Windows 7/8 user: Microsoft's “Segoe MDL2 Assets” font ( SegMDL2.ttf ) is required for the buttons and icons to rendered properly. (If you have it it will work but it’s not included here because of licensing reasons.) Settings guide tl;dr: You may have to tweak your Boxes aspect ratio and spacing. The top Details image is only visible when Fanart is available. Button bar can't be hidden because of the licensing info. Font and colour settings have no effect (font is based on system font). Settings used in screenshots are: Options -> Visuals -> Boxes -> Spacing: Aspect Ratio: 0.6 * Horizontal Spacing: 2 Vertical Spacing: 2 Horizontal Padding: 8 Vertical Padding: 2 Text Spacing: 4 Text Lines to Show: 2 *) For horizontal box art you may need to use a higher value. Options -> Visuals -> Boxes: Align Text Vertically : enabled Align Text Horizontally : enabled Show Subline : enabled (for platform info) Other recommended settings: Options -> Legacy -> General -> Game Details: Show Fanart: enabled other options at your own preference Options -> Legacy -> Images -> Background Priorities : Fanart : enabled other options disabled Options -> Visuals -> Backgrounds: Background Blur Amount : 100 Background Fade Amount : 0 (Imo. the theme looks best when blurred background Fanart and Details Fanart are the same image.) Settings that don't have any effect: Button bar can't be hidden because the license has to stay visible. Colours are hard coded. Font (including size and scaling) is based on your Windows system settings. Thanks to Grila for allowing me to use his LBPlex theme code, Retro808, neil9000, C-Beats and Jason Carr for testing and everyone who supported this release on the forum. Lambda beta theme CC BY-NC-SA 4.0 Shadowfire 2020
  23. @Retrofrogg, @Tromzy and others: we've finished testing and I'm finalising things for release. The reason why it's taking so long is because I have to squeeze in hours between other projects and on average I've only got a couple of hours per week to work on this. Sorry it's taking this long. I can't make any promises but since I'm almost there it should be available for download soon...
  24. Thanks, yeah that's what I was going for As for Details, only the centre row (description, screenshots etc.) scrolls. The other rows resize dynamically in vertical direction depending on available horizontal space.
×
×
  • Create New...