-
Posts
5,119 -
Joined
-
Last visited
-
Days Won
18
Content Type
Profiles
Forums
Articles
Downloads
Gallery
Blogs
Everything posted by C-Beats
-
Confirmed your report. I will get this corrected for next beta release.
-
Can already add manuals to a game. PDF is supported already. CBR/CBZ is not (assume that what you meant, I've not heard of CBV before. You can also add additional documents to additional application section of a game. You can also scrape manuals via EmuMovies and a few of the third party storefronts.
-
You can already make Recently Played playlists with Auto-Populated playlists
-
Could be a resolution/scaling setting. Could also be your options are set slightly different as I believe this theme uses the font size options in Tools > Options > Visuals > Main Window Theme > Fonts
-
You have way more columns displayed than can reasonably fit, right click the upper letters (the column headers) and uncheck items until you get to a number of columns that you can actually read/use
-
Manuals & extras on Launchbox
C-Beats replied to Adelyan's topic in LaunchBox for Windows Custom Themes
You add this to your GameDetailsView.xaml file where you want them to show up and then add any other style/format changes you want to match your theme <ItemsControl Margin="3,3,3,0" ItemsSource="{Binding Documents}"> <ItemsControl.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <Image VerticalAlignment="Center" Stretch="Uniform" StretchDirection="Both" Source="{Binding Icon}"/> <TextBlock Margin="3,0,0,3"> <Hyperlink Command="{Binding ClickCommand}"> <Hyperlink.Style> <Style TargetType="{x:Type Hyperlink}"> <Setter Property="TextBlock.TextDecorations" Value="{x:Null}" /> <Setter Property="TextBlock.Foreground" Value="#A6FFFFFF"/> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="TextBlock.TextDecorations" Value="Underline" /> <Setter Property="TextBlock.Foreground" Value="White"/> </Trigger> </Style.Triggers> </Style> </Hyperlink.Style> <TextBlock Text="{Binding Title}" TextTrimming="CharacterEllipsis" /> </Hyperlink> </TextBlock> </StackPanel> </DataTemplate> </ItemsControl.ItemTemplate> <ItemsControl.ItemContainerStyle> <Style> <Setter Property="Control.Margin" Value="0,0,0,3"/> </Style> </ItemsControl.ItemContainerStyle> </ItemsControl> -
You're using a cover factory instead of a FlowTemplate. Try something like this: <coverFlow:FlowControl x:Name="FlowControl" Grid.Row="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Rows="3" ItemSpacing="0.05,0" SelectedScale="1.5,1.5"> <coverFlow:FlowControl.Camera> <OrthographicCamera Position="0,0,5" LookDirection="0,0,-1" NearPlaneDistance=".01" FarPlaneDistance="1000" Width="15"/> </coverFlow:FlowControl.Camera> <coverFlow:FlowControl.FlowTemplate> <DataTemplate> <coverFlow:FlowContext> <Border BorderThickness="30"> <Border.Style> <Style TargetType="Border"> <Setter Property="BorderBrush" Value="Transparent"/> <Setter Property="Opacity" Value=".2"/> <Style.Triggers> <DataTrigger Binding="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type coverFlow:FlowContext}}, Path=IsItemSelected}" Value="True"> <Setter Property="BorderBrush" Value="White"/> </DataTrigger> <DataTrigger Binding="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type coverFlow:FlowContext}}, Path=IsRowSelected}" Value="True"> <Setter Property="Opacity" Value="1"/> </DataTrigger> </Style.Triggers> </Style> </Border.Style> <coverFlow:FlowImage ImageType="Clear Logo"/> </Border> </coverFlow:FlowContext> </DataTemplate> </coverFlow:FlowControl.FlowTemplate> </coverFlow:FlowControl>
- 14 replies
-
- 1
-
-
- wall view
- theme design
-
(and 1 more)
Tagged with:
-
BigBox PlatformCategoryPlaylist Selector
C-Beats commented on Benuno's file in Third-party Apps and Plugins
-
I don't believe in the currently public version of CTC you can do this but it can be done with the theming engine by setting the Rows property of the FlowControl to 3 and not setting the Columns property.
- 14 replies
-
- wall view
- theme design
-
(and 1 more)
Tagged with:
-
Manuals & extras on Launchbox
C-Beats replied to Adelyan's topic in LaunchBox for Windows Custom Themes
He put them under by creating a theme that does it. You can DL his theme or Steam to see how it's done. This will require premium license to do however. -
I'd take a look and make sure your version showing as an app has a value in the version field of the Edit page. To check go to the game, and edit game and go to Additional Applications page, then go to that app and select it and press Edit Application. In that window on the second page should be a version text box. Make sure it has Japan (or SOMETHING) in there. It should then push it appropriately to the right section of the menu.
-
What version of LaunchBox are you running? Over the past few versions downloads code has been heavily modified to help improve speed and stability so if you aren't on 12.11 I'd recommend upgrading before trying to download large amounts of media.
-
Welcome to the forums/community. I'm glad you're enjoying the product.
-
ah nice. Was going to say been pumping them out past few days. Solid work as always, just was curious how you were suddenly putting out like 5x the images lol
-
Find a new process that works better for ya? Really been ramping up the number of items you're doing last few days.
-
Would make sense videos are considerable larger than images. Do you have the same speed issues downloading media from our database of one of the storefronts (ie Steam, GOG, etc)?
-
Took a look and found the cause of the issue reported ( @Gaulent @Merovingio) and it should be corrected in the next beta release. You SHOULD be able to change the decimal point to a comma in the numerals used in Related Games star rating criteria and have it work in the meantime though.
-
First I've heard having this issue. Are you using an old image queue or were these downloads something you've scraped after upgrading? If the former you may need to cancel any existing processes and requeue so they get the new URLs.
-
As of right now no there isn't since the possible filter values could drastically change when moving from one platform to another. What you could potentially do is go to the "All" filter (if turned on in options) and then use the filter itself to swap between platforms and then do what you are hoping to do.
-
Man some one was busy this weekend!
-
Your ticket was closed as what you are describing is already functionality built into LaunchBox and has been for a long while. The ticket explains the easiest way of utilizing this feature. https://retroachievements.org/download.php - Here is their list of supported emulators
-
This one is corrected with the code changes we have in place as well. We've improved matching for about 10 different systems (I don't have a list handy to list each one unfortunately...)
-
Something is locking the setup executable or stopping it from being allowed to run. I'd go to \\LaunchBox\Updates and find the latest installer in there and right click and go to properties and make sure the app isn't locked. Also worth checking if you have a virus detection app incorrectly labeling it a virus stopping you from running it.
-
Yeah, you may need to make a BAT file or small program to do it effectively
- 20 replies
-
We have code change internally to help with this for next release. I've discovered in writing that though my initial work around wasn't entirely correctly. You need the platform to be named "Atari 8 bit" for it to find it. You also don't need to re-import. Can just bulk edit the games and change their platform to the new value