Playnite Forums
  • Playnite Web
  • Rules
  • Members
  • Team
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Playnite Forums Extension Database Themes - Desktop eMixedNite

eMixedNite
eminaguil
Offline

#21
09-03-2020, 11:36 PM (This post was last modified: 09-03-2020, 11:36 PM by eminaguil.)
(09-03-2020, 03:04 PM)Casfin Wrote:
(09-03-2020, 08:47 AM)catta202000 Wrote: Thank You!
The theme looks nice, but I can't use it: playnite crash every time, even after replacing the file with the ones posted by Lacro59.


Yeah... Same thing here.
(09-03-2020, 08:47 AM)leetompson Wrote: Updated from 0.20 to 0.36 and now Playnite crashes on start.

I do have a large number of extensions installed.

Hi, I had the same problem after updating SuccesStory, and after deleting it, the problem continues. 
What I do, deleted all the plugins, and install all the new versions from Lacro59: SuccesStory, HowLongToBeat, Statistics and GameActivitiy, and its working again, almost, but the integration to the new SuccesStory its not funtioning. 

I will publish a new version integrating the new changes to the plugins soon.
eminaguil
Offline

#22
09-05-2020, 06:07 PM
Hi. Updated for better integration using the new features in the plugins from Lacro59:

* Custom integration to SuccesStory, The totals and the icon it's not showed if the game does not have achievements.
* The list of achivements now it has its own panel after description,
* The achievements timeline shows after game details.
* Custom integration to GameActivity, the las session log show in its own panel before description. If there isn't, it doesn't show.
* Added custom space height to the grid panel view, now its configurable in the detail section.
Lacro59
Offline

#23
09-05-2020, 06:28 PM
(09-05-2020, 06:07 PM)eminaguil Wrote: Hi. Updated for better integration using the new features in the plugins from Lacro59:

* Custom integration to SuccesStory, The totals and the icon it's not showed if the game does not have achievements.
* The list of achivements now it has its own panel after description,
* The achievements timeline shows after game details.
* Custom integration to GameActivity, the las session log show in its own panel before description. If there isn't, it doesn't show.
* Added custom space height to the grid panel view, now its configurable in the detail section.
Yeah!
Destinyblade
Offline

#24
09-07-2020, 09:51 AM
So it doesn't seem to load the descriptions properly for me since it displays in a very small window and the name get's cut out



https://imgur.com/a/7l2BAsG
eminaguil
Offline

#25
09-07-2020, 09:23 PM
(09-07-2020, 09:51 AM)Destinyblade Wrote: So it doesn't seem to load the descriptions properly for me since it displays in a very small window and the name get's cut out



https://imgur.com/a/7l2BAsG

Change the width of the explorer and grid details view in settings.
See this post: https://playnite.link/forum/thread-337-p...ml#pid1618
catta202000
Offline

#26
09-07-2020, 11:18 PM
Thank you, I like this theme!

How can I add more space between the different items? on mine it looks diffrent than your screenshots


[Image: hA4jGMz.png]
MCC321
Offline

#27
09-08-2020, 11:50 AM (This post was last modified: 09-08-2020, 11:52 AM by MCC321.)
Nice Theme! The only thing is Playnite was crashing when using the plugin IsThereAnyDeal from Lacro59 and I couldn't understand why. Finally I found out it was fine when I turned off the 2 notification option in the plugin settings. Sometimes there was some crash on startup sometimes not, even with the plugin off. I finally figured that Playnite was crashing each time Lacro59 released a new version of a plugin. So It was because of something related to the notification in the theme, and I found it! Here it is:

in the file MainPanel.xaml, line 203

<CheckBox x:Name="PART_ToggleNotifications"

                                      WindowChrome.IsHitTestVisibleInChrome="True"
                                      DockPanel.Dock="Right" Margin="8,12,0,0">
                                <CheckBox.Style>
                                    <Style TargetType="ToggleButton">
                                        <Setter Property="Foreground" Value="{DynamicResource GlyphBrush}" />
                                        <Setter Property="Template">
                                            <Setter.Value>
                                                <ControlTemplate>
                                                    <Border Background="Transparent">
                                                        <Grid>
                                          <TextBlock Text="&#xeea3;" FontFamily="{StaticResource FontIcoFont}" FontSize="21"
                                                                      Foreground="{TemplateBinding Foreground}"
                                                                      HorizontalAlignment="Center"/>
                                                            <Border CornerRadius="3" Width="15" Height="15"
                                                                    Margin="20,0,0,0"
                                                                    HorizontalAlignment="Right"
                                                                    VerticalAlignment="Bottom"
Line 203 ---------------------------------------------------------> Background="{DinamicResource HighlightGlyphBrush}">
                                                                <TextBlock Text="{Api Notifications.Count}" FontSize="12"                                                             
                                                                     Foreground="{DynamicResource TextBrush}"
                                                                 HorizontalAlignment="Center" VerticalAlignment="Center"/>
                                                            </Border>
                                                        </Grid>
                                                    </Border>
                                                </ControlTemplate>
                                            </Setter.Value>
                                        </Setter>
                                        <Style.Triggers>
                                            <DataTrigger Binding="{Api Notifications.Count}" Value="0">
                                                <Setter Property="Visibility" Value="Collapsed"/>
                                            </DataTrigger>
                                            <Trigger Property="IsMouseOver" Value="True">
                                                <Setter Property="Foreground" Value="{DynamicResource TextBrush}" />
                                            </Trigger>
                                        </Style.Triggers>
                                    </Style>
                                </CheckBox.Style>
                            </CheckBox>

Theres a fault in DinamicResource it should be DynamicResource


Everythings worked fine after


Heres some pictures
I Tweaked it a little  Angel


[Image: giphy.gif]
eminaguil
Offline

#28
09-08-2020, 06:14 PM (This post was last modified: 09-08-2020, 06:17 PM by eminaguil.)
(09-07-2020, 11:18 PM)catta202000 Wrote: Thank you, I like this theme!

How can I add more space between the different items? on mine it looks diffrent than your screenshots

If you refer to the vertical space fro the image to the details, the go to settings --> Appearance --> Details View --> Vertical spacing to game details --> check /uncheck, change the value to your preference. All theses settings apply to both views, detail and grid.

(09-08-2020, 11:50 AM)MCC321 Wrote: Nice Theme! The only thing is Playnite was crashing when using the plugin IsThereAnyDeal from Lacro59 and I couldn't understand why. Finally I found out it was fine when I turned off the 2 notification option in the plugin settings. Sometimes there was some crash on startup sometimes not, even with the plugin off. I finally figured that Playnite was crashing each time Lacro59 released a new version of a plugin. So It was because of something related to the notification in the theme, and I found it! Here it is:

in the file MainPanel.xaml, line 203

Thanks for the info, fixed and uploaded a new version. 
Nice recoloring, if update, save the constants file to keep the colors, then overwrite.
Lacro59
Offline

#29
09-08-2020, 07:41 PM (This post was last modified: 09-08-2020, 07:43 PM by Lacro59.)
(09-08-2020, 06:14 PM)eminaguil Wrote: Nice recoloring, if update, save the constants file to keep the colors, then overwrite.
With my ThemeModifier plugin, it's possible to change easily the theme color.
   

(09-08-2020, 11:50 AM)MCC321 Wrote: Nice Theme! The only thing is Playnite was crashing when using the plugin IsThereAnyDeal from Lacro59 and I couldn't understand why. Finally I found out it was fine when I turned off the 2 notification option in the plugin settings. Sometimes there was some crash on startup sometimes not, even with the plugin off. I finally figured that Playnite was crashing each time Lacro59 released a new version of a plugin. So It was because of something related to the notification in the theme, and I found it! Here it is:
With the latest version of my plugins, I changed more elements for the custom theme.
Sorry for the inconvenience.
catta202000
Offline

#30
09-10-2020, 05:25 PM (This post was last modified: 09-10-2020, 11:45 PM by catta202000.)
(09-08-2020, 06:14 PM)eminaguil Wrote:
(09-07-2020, 11:18 PM)catta202000 Wrote: Thank you, I like this theme!

How can I add more space between the different items? on mine it looks diffrent than your screenshots

If you refer to the vertical space fro the image to the details, the go to settings --> Appearance --> Details View --> Vertical spacing to game details --> check /uncheck, change the value to your preference. All theses settings apply to both views, detail and grid.

No, I refer to the space between the texts. For example between "last played" and the date below, or between "library" and "platform".
Is there a way to change that? I tried changin the font size, but the space between texts is the same.

EDIT: another question, is it possible to change the "download", "play action" and "game details" icons in grid view? I don't like them

EDIT2: last question, is it possible to have the game image as background in the grid view?

Sorry for bothering so much.
eminaguil
Offline

#31
09-11-2020, 12:07 AM
(09-10-2020, 05:25 PM)catta202000 Wrote:
(09-08-2020, 06:14 PM)eminaguil Wrote:
(09-07-2020, 11:18 PM)catta202000 Wrote: Thank you, I like this theme!

How can I add more space between the different items? on mine it looks diffrent than your screenshots

If you refer to the vertical space fro the image to the details, the go to settings --> Appearance --> Details View --> Vertical spacing to game details --> check /uncheck, change the value to your preference. All theses settings apply to both views, detail and grid.

No, I refer to the space between the texts. For example between "last played" and the date below, or between "library" and "platform".
Is there a way to change that? I tried changin the font size, but the space between texts is the same.

EDIT: another question, is it possible to change the "download", "play action" and "game details" icons in grid view? I don't like them
Hi,
For both questions, it can't be changed through config option, you have to change the code.
  1. The spacing and font its fixed by element for now, but I working in using text size constants and maybe one custom variable for spacing
  2. The icons, can't be changed without modifying the theme code file
If you want to change the code.
  1. Locate the theme, it's in %appdata%\Playnite\Themes\Desktop inside you found a folder named eMixedNite with a number random text at the end, open that folder
  2. The spacing it's in two fiiles Views\GridViewGameOverview.xaml and Views\DetailsViewGameOverview.xaml in your case it will be GridView
  3. The file to change the icons in grid view are in the file DerivedStyles\GridViewItemTemplate.xaml lines 31,47 and 55. The icons where copied through charmap. And the icon font don't remember where I found it, I belive it's in playnite.   But, I've attached it.



.zip   icofont.zip (Size: 617.23 KB / Downloads: 195)
RabidLime
Offline

#32
09-12-2020, 09:25 PM
hey, ran into a few problems i can't seem to get past. i really love this theme but haven't got it working with all the extensions properly. on that note, here's what i'm using and they're all cleanly installed and up to date (as of writing)

  • Game Activity
  • HowLongToBeat
  • IsThereAnyDeal
  • Success Story
  • Theme Modifier
  • Statistics
now the dirty details
  • HowLongToBeat just isn't there. firing the extension separately from the Menu works fine, but it's nowhere on the page. same with Statistics but i'm pretty sure you haven't said anything about integrating that.
  • grid view is missing the Cover Image of each game. i tried switching back and forth between Grid and Details while restarting Playnite each time but it wouldn't fix anything. it's there while in Details View, but not Grid. my width is set to 900 but nothing is getting it to show up (https://imgur.com/lttZovk)
  • with Game Activity enabled, the achievements at the bottom of the description are truncated. it happens in both Grid and Details view (https://imgur.com/D8HSz1X)
  • there's also no bar near the Time Played. i'm actually not sure what that is but isn't there for me. is that part of Game Activity? (in the first image)
  • and this might be me just forgetting where it is in settings, but is there a way to customize the Links at the top of the page? (also in first image) 
  • lastly, the Details and Description boxes don't line up. when there's the Last Session Log they line up fine but otherwise they don't in Grid view, even with Game Activity disabled. it's an OCD nightmare (https://imgur.com/8cjZRe0)
this is such a good theme but there's a few things i'd like to do where i may have to learn more about Blend, but i'll suggest them anyway
  • is there a way to delete the title in Details view? i'd like to just have the Background and them put the game's logo in the center (https://imgur.com/sFsGtoN)
  • is there any way to get rid of the Last Session Log but keep the Time Session? i like knowing how long i've played but don't need to know how my rig is doing (https://imgur.com/Y6sATQX)
  • it'd be awesome to click on the Success Story info at the top of the page and be sent to the bottom to see the details
i know that was a ton of info but i wanted to get everything and not pester you constantly. thanks again for making such a great theme.
eminaguil
Offline

#33
09-13-2020, 04:49 AM (This post was last modified: 09-13-2020, 04:59 AM by eminaguil.)
(09-12-2020, 09:25 PM)RabidLime Wrote: hey, ran into a few problems i can't seem to get past. i really love this theme but haven't got it working with all the extensions properly. on that note, here's what i'm using and they're all cleanly installed and up to date (as of writing)

  • Game Activity
  • HowLongToBeat
  • IsThereAnyDeal
  • Success Story
  • Theme Modifier
  • Statistics
now the dirty details
  • HowLongToBeat just isn't there. firing the extension separately from the Menu works fine, but it's nowhere on the page. same with Statistics but i'm pretty sure you haven't said anything about integrating that.
  • grid view is missing the Cover Image of each game. i tried switching back and forth between Grid and Details while restarting Playnite each time but it wouldn't fix anything. it's there while in Details View, but not Grid. my width is set to 900 but nothing is getting it to show up (https://imgur.com/lttZovk)
  • with Game Activity enabled, the achievements at the bottom of the description are truncated. it happens in both Grid and Details view (https://imgur.com/D8HSz1X)
  • there's also no bar near the Time Played. i'm actually not sure what that is but isn't there for me. is that part of Game Activity? (in the first image)
  • and this might be me just forgetting where it is in settings, but is there a way to customize the Links at the top of the page? (also in first image) 
  • lastly, the Details and Description boxes don't line up. when there's the Last Session Log they line up fine but otherwise they don't in Grid view, even with Game Activity disabled. it's an OCD nightmare (https://imgur.com/8cjZRe0)
this is such a good theme but there's a few things i'd like to do where i may have to learn more about Blend, but i'll suggest them anyway
  • is there a way to delete the title in Details view? i'd like to just have the Background and them put the game's logo in the center (https://imgur.com/sFsGtoN)
  • is there any way to get rid of the Last Session Log but keep the Time Session? i like knowing how long i've played but don't need to know how my rig is doing (https://imgur.com/Y6sATQX)
  • it'd be awesome to click on the Success Story info at the top of the page and be sent to the bottom to see the details
i know that was a ton of info but i wanted to get everything and not pester you constantly. thanks again for making such a great theme.

Thanks again.
Answering some questions:

  1. The achievement list cropped its a bug of version 0.10.2, use 0.10.1 instead. I've already replicated and posted in the SuccesStory forum.
  2. For the problems with the rest of plugins, be sure to be using at least the same versions posted in the first thread.
  3. For the images not showing, that's rare. Try reinstalling the theme
  4. For the links, for now you can change only the colors with Theme Modifier, the Gliph Brush, but it alters other elements
For the suggestions, wait for version 0.6, there will be more customization at least through the constants file.
leethompson
Offline

#34
09-14-2020, 04:55 PM
The theme is misspelling something so instead of "ACHIEVEMENTS" it says "SUCESS STORY" (which is misspelled).
MCC321
Offline

#35
09-16-2020, 12:23 AM
oh man I didnt even noticed! 

in the file DetailsViewGameOverview.xaml, line 154

         <StackPanel Grid.Column="8" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,2,2,0"
             Tag="{DynamicResource Sc_HasData}"
             Visibility="{Binding RelativeSource={RelativeSource Self}, Path=Tag, Converter={StaticResource BooleanToVisibilityConverter}}">
             <Label Grid.Row="1" Width="Auto" Height="27" Foreground="#b4b4b4" FontSize="18" FontFamily="Corbel"
Line 154-------> Typography.Capitals="AllSmallCaps" Content="Sucess Story"></Label>    
             <GridEx
                 GridEx.ColumnCount="4" GridEx.StarColumns="1"  MaxWidth="1600"
                 GridEx.RowCount="1" GridEx.AutoLayoutColumns="4" VerticalAlignment="Center">
                 <Grid.ColumnDefinitions>
                     <ColumnDefinition Width="48"/>
                     <ColumnDefinition Width="12"/>
                     <ColumnDefinition Width="48"/>
                     <ColumnDefinition Width="*"/>
                 </Grid.ColumnDefinitions>

                 <Label Grid.Column="0" Content="{DynamicResource Sc_Unlocked}" Foreground="#FFffff80" Height="20"/>
                 <Label Grid.Column="1" Content=" / " Foreground="#FF909090" Height="20"/>
                 <Label Grid.Column="2" Content="{DynamicResource Sc_Total}" Foreground="#FF808080" Height="20"/>
             </GridEx>    
         </StackPanel>


You can change "Sucess Story" for wathever you want! I just set mine to Achievements and it work great!
eminaguil
Offline

#36
09-16-2020, 03:07 AM
new post


* Fixed achievements title, misspelled
* More custom integration with SuccesStory, integration with compact achievements.
* Better color customization through ThemeModifier,
* The game title can be hide / positioned from the constants file.
leethompson
Offline

#37
09-17-2020, 08:05 PM (This post was last modified: 09-17-2020, 08:10 PM by leethompson.)
The game name overlay is kinda annoying.

The changelog says "The game title can be hide / positioned from the constants file."

But I've yet to find it.   Where in the file? I don't see anything "GameTitle" in Constants.xaml.   Is it somewhere else?


Just for clarity it's the text I've circled in yellow:

[Image: 85yB4sa.jpg]
eminaguil
Offline

#38
09-18-2020, 12:42 AM
(09-17-2020, 08:05 PM)leethompson Wrote: The game name overlay is kinda annoying.

The changelog says "The game title can be hide / positioned from the constants file."

But I've yet to find it.   Where in the file? I don't see anything "GameTitle" in Constants.xaml.   Is it somewhere else?


Just for clarity it's the text I've circled in yellow:

[Image: 85yB4sa.jpg]

Sorry, I omitted the change I will update the description and upload a new one
RezBot
Offline

#39
09-23-2020, 01:38 AM
In grid view all of my games (both installed & uninstalled) seem to be darkened (even though I have "Darken Uninstalled Games" unchecked under Settings/Appearance/Grid View). What ever game the cursor hovers over they show full brightness. Is there a way to set everything to normal brightness. Could you point me in the direction of the code to change this? Much appreciated, by far my favorite theme.
eminaguil
Offline

#40
09-23-2020, 03:16 PM
(09-23-2020, 01:38 AM)RezBot Wrote: In grid view all of my games (both installed & uninstalled) seem to be darkened (even though I have "Darken Uninstalled Games" unchecked under Settings/Appearance/Grid View).  What ever game the cursor hovers over they show full brightness.  Is there a way to set everything to normal brightness.  Could you point me in the direction of the code to change this?  Much appreciated, by far my favorite theme.

Hi,
That's the effect of eMixedNite.

If you want to change it:

  1. Locate the theme, it's in %appdata%\Playnite\Themes\Desktop inside you found a folder named eMixedNite with a random text at the end, open that folder
  2. The darken effect it's in the file DerivedStyles\GridViewItemTemplate.xaml 
  3. In line 21 you will find 
    <Border Background="#58000000" x:Name="TextGameOpaque">Change it for <Border Background="Transparent" x:Name="TextGameOpaque">
« Next Oldest | Next Newest »
Pages (16): « Previous 1 2 3 4 5 … 16 Next »
Jump to page 



  • View a Printable Version
  • Subscribe to this thread

© Designed by D&D - Powered by MyBB

Linear Mode
Threaded Mode