Playnite Forums
  • Playnite Web
  • Rules
  • Members
  • Team
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Playnite Forums Extension Database Themes - Desktop eMixedNiteMC - A tweaked version of eMixedNite

eMixedNiteMC - A tweaked version of eMixedNite
eskypi
Offline

#21
11-09-2021, 02:19 PM (This post was last modified: 11-09-2021, 11:06 PM by eskypi.)
Perfect, thank you very much! Thank you for your work.

Edit: Is there a way to disable the dimming of the covers? Except for the selected game, the other games are quite obscured.
MCC321
Offline

#22
11-10-2021, 01:37 PM (This post was last modified: 11-10-2021, 01:58 PM by MCC321.)
(11-09-2021, 02:19 PM)eskypi Wrote: Perfect, thank you very much! Thank you for your work.

Edit: Is there a way to disable the dimming of the covers? Except for the selected game, the other games are quite obscured.

Check in the constant section of theme modifer and change "Grid list darkened effect for grid view items" in the "Game List Items Settings"
Only thing is theres a bug when trying to change color in constant menu. Im still not sure if the problem come from ThemeModifier or this theme. until a solution is found, you can change it manually in the Constants.yml file in the theme installation folder.

To remove the Darken effect, change this line in the Constants.yml file, Line 47.
<SolidColorBrush x:Key="GameGridItemtBrush" Color="#36000000" />

With this one.
<SolidColorBrush x:Key="GameGridItemtBrush" Color="Transparent" />

If you just want to attenuate the effect, you could divise it by 2 using this line.
<SolidColorBrush x:Key="GameGridItemtBrush" Color="#18000000" />
eskypi
Offline

#23
11-10-2021, 10:04 PM (This post was last modified: 11-10-2021, 10:17 PM by eskypi.)
Thank you, you have been a great help to me. I have a couple more queries:



1. Is it possible to remove "grid list button on the cover"? That appears every time I select a game or cover (that is, I want the option to "install" and "game details" disappear every time I pass the cursor for the covers).



2. Is it possible to remove the icon for "Gried View Quick Settings Wheel (upper right)" and "Quick Settings Wheel (lower left)" from the theme?



3. I have a problem with the "Source" icon, nothing appears. For what is this?


https://imgur.com/iY8TRn2
MCC321
Offline

#24
11-11-2021, 11:38 AM
New update!
Link: eMixedNiteMC_2.1
Link: Playnite Settings.rar

Changelog:
    - Added support for plugin News Viewer
        - New "Game News" title in expander
        - New "Latest News" element in expander
MCC321
Offline

#25
11-11-2021, 01:32 PM (This post was last modified: 11-11-2021, 01:47 PM by MCC321.)
(11-10-2021, 10:04 PM)eskypi Wrote: Thank you, you have been a great help to me. I have a couple more queries:



1. Is it possible to remove "grid list button on the cover"? That appears every time I select a game or cover (that is, I want the option to "install" and "game details" disappear every time I pass the cursor for the covers).



2. Is it possible to remove the icon for "Gried View Quick Settings Wheel (upper right)" and "Quick Settings Wheel (lower left)" from the theme?



3. I have a problem with the "Source" icon, nothing appears. For what is this?


https://imgur.com/iY8TRn2

Yes sure thing! Theres is no option for it though so heres what you need to do.

For the grid list button in the cover: (If you want to keep DuplicateHider icon)
Replace these lines, in DerivedStyle/GridViewItemTemplate.xaml
Line 205:
<Border Background="{DynamicResource WindowBackgourndBrush}"
Line 209:
<StackPanel Orientation="Horizontal">
With These lines:
Line 205:
<Border Background="Transparent"
Line 209:
<StackPanel Orientation="Horizontal" Visibility="Collapsed">

Or for the grid list button in the cover: (If dont want to keep DuplicateHider icon)
Replace this line, in DerivedStyle/GridViewItemTemplate.xaml
Line 204:
<Grid>
With this one
Line 204:
<Grid Visibility="Collapsed">

For removing both Quick Settings Wheel icon: (This will keep the icon but only when you hover it with your cursor)
Replace this line, in Views/DetailsViewGameOverview.xaml
Line 155:
Foreground="{DynamicResource ButtonBackgroundBrush}" Name="MainCheckIcon"
With this one
Line 155:
Foreground="Transparent" Name="MainCheckIcon"
Replace this line, in Views/GridViewGameOverview.xaml
Line 185:
Foreground="{DynamicResource ButtonBackgroundBrush}" Name="MainCheckIcon"
With this one
Line 185:
Foreground="Transparent" Name="MainCheckIcon"
Replace these lines, in Views/LibraryDetailsView.xaml
Line 81:
Foreground="{DynamicResource ButtonBackgroundBrush}" Name="MainCheckIcon"
Line 85:
Foreground="{DynamicResource TextBrushDark}" Name="CheckedIcon"/>
With these lines
Line 81:
Foreground="Transparent" Name="MainCheckIcon"
Line 85:
Foreground="Transparent" Name="CheckedIcon"/>
Finally replace these lines, in Views/LibraryGridView.xaml
Line 73:
Foreground="{DynamicResource ButtonBackgroundBrush}" Name="MainCheckIcon"
Line 77:
Foreground="{DynamicResource TextBrushDark}" Name="CheckedIcon"/>
With these lines
Line 73:
Foreground="Transparent" Name="MainCheckIcon"
Line 77:
Foreground="Transparent" Name="CheckedIcon"/>

For the Source Icon, you must check the checkbox "Source" in Playnite Settings --> Appearance --> Details View  
for the Source title to be shown.

I like having it there as you can set it like you want, and library like Steam automatically set it. So if you have game 
in the Viveport launcher, or Kartridge or any others launcher that playnite does not support at the moment you can set
your Source to the right launcher. You can also use it to show wich emulator is used like Retroarch, RPCS3, PCSX2 etc..
So be sure to have something in the Source field of each game. I use "Others" for all my manually imported games that
dont have a launcher like Guild Wars 2 or Elder Scrolls Online, or my physical owned game.
(You can filter and then mass edit using ctrl+a to select all currently filtered game)
flow
Offline

#26
11-11-2021, 03:11 PM
Thanks for all the updates! I just started using square covers and I was wondering if it's possible to have a toggle to remove the banner on the details pane or a way to remove it. Some of the banners seem to stretch out when using square covers. Also, I would be able to have it on when using details view but off when using grid view. Thanks again!


Thumbnail(s)
   
eskypi
Offline

#27
11-11-2021, 08:36 PM (This post was last modified: 11-13-2021, 02:12 PM by eskypi.)
You are a true genius, I have never met someone so brilliant. Thank you very much for all my friend Big Grin

PS: Sorry, I won't be heavier. But I would appreciate if you could also tell me how to hide or remove these buttons.

https://imgur.com/p2h3u5S

And is it possible to reduce the thickness of the square quite a bit when selecting a game?

https://imgur.com/dAkqvCB

Sorry for giving you so much work.
MCC321
Offline

#28
11-12-2021, 12:14 PM (This post was last modified: 11-12-2021, 01:07 PM by MCC321.)
(11-11-2021, 03:11 PM)flow Wrote: Thanks for all the updates! I just started using square covers and I was wondering if it's possible to have a toggle to remove the banner on the details pane or a way to remove it. Some of the banners seem to stretch out when using square covers. Also, I would be able to have it on when using details view but off when using grid view. Thanks again!

There is already options for all of this. You can try them out with either both quick settings wheel. When using a slider settings, you can use the arrow to decrease/increase value 1 by 1 to get the desired result, and when you have the value you need (Hover the slider cursor with your mouse to get the actual value) go in the constant menu of ThemeModifier to enter them. The one you need should be in the "Banner/Cover Settings".

[Image: zfiSIG5.png]
ThemeModifier Constant menu can be access with this button(in red)
Need to be activated in ThemeModifier appearance settings in Add-ons menu(F9)

[Image: M6kZJtL.png]
[Image: sitPw0h.png]
[Image: EzE7uNY.png]
These are the Quick settings wheel and when you click on it you will have access to all banners settings and more to configure the theme like you want. Each view can be set differently, but all settings changed in the Quick Settings wheel will be reset to the values in the constant file on restart of Playnite. Thats why you then need to enter them in the Constant menu when you have the desired settings values.

New update!
Link: eMixedNiteMC_2.11

Changelog:   
    - Fix for News Viewer title visibility and blank expander
        - The expander now auto-select first tab when you open it (Thank to eminaguil)
        - News Viewer title will now be visible only when there is news available.
        - Changed title from "Games News" to "LOC_NewsViewer_NewsViewerControl_NewsLabel"
sgtsars
Offline

#29
11-12-2021, 10:34 PM (This post was last modified: 11-13-2021, 05:01 PM by sgtsars.)
Really enjoying this version of the theme, but was wondering if it's possible to increase the height of the logos beyond the default max of 115? Some of the more narrow logos end up looking rather small and I wouldn't mind an increase.

Could there also be a chance of implementing an option for the max logo width as well?
flow
Offline

#30
11-13-2021, 05:58 AM
(11-12-2021, 12:14 PM)MCC321 Wrote: There is already options for all of this. You can try them out with either both quick settings wheel. When using a slider settings, you can use the arrow to decrease/increase value 1 by 1 to get the desired result, and when you have the value you need (Hover the slider cursor with your mouse to get the actual value) go in the constant menu of ThemeModifier to enter them. The one you need should be in the "Banner/Cover Settings".

[Image: zfiSIG5.png]
ThemeModifier Constant menu can be access with this button(in red)
Need to be activated in ThemeModifier appearance settings in Add-ons menu(F9)

[Image: M6kZJtL.png]
[Image: sitPw0h.png]
[Image: EzE7uNY.png]
These are the Quick settings wheel and when you click on it you will have access to all banners settings and more to configure the theme like you want. Each view can be set differently, but all settings changed in the Quick Settings wheel will be reset to the values in the constant file on restart of Playnite. Thats why you then need to enter them in the Constant menu when you have the desired settings values.

New update!
Link: eMixedNiteMC_2.11

Changelog:   
    - Fix for News Viewer title visibility and blank expander
        - The expander now auto-select first tab when you open it (Thank to eminaguil)
        - News Viewer title will now be visible only when there is news available.
        - Changed title from "Games News" to "LOC_NewsViewer_NewsViewerControl_NewsLabel"
Thank you very much!
MCC321
Offline

#31
11-14-2021, 09:11 AM (This post was last modified: 11-14-2021, 11:31 AM by MCC321.)
(11-11-2021, 08:36 PM)eskypi Wrote: You are a true genius, I have never met someone so brilliant. Thank you very much for all my friend Big Grin

PS: Sorry, I won't be heavier. But I would appreciate if you could also tell me how to hide or remove these buttons.

https://imgur.com/p2h3u5S

And is it possible to reduce the thickness of the square quite a bit when selecting a game?

https://imgur.com/dAkqvCB

Sorry for giving you so much work.

Yeah ok here is what you need to do:

To remove the Video Toggle Button, copy this file to DefaultControls folder inside the theme installation folder and overwrite existing file.
ToggleButton.xaml

And to reduce thickness of Selected Game Cover Outline, change this line in DerivedStyles/GridViewItemStyle.xaml
Line 22:
<Border x:Name="SelectionBorder" BorderThickness="5" Margin="-5"
With this line
Line 22:
<Border x:Name="SelectionBorder" BorderThickness="3" Margin="-3"
Change both 3 and -3 values to your desired thickness. I used 5 for default.
(both number need to be the same but the second must be negative)
Leviathan93
Offline

Banned
#32
11-14-2021, 10:02 AM
[Image: tSgHTOz.png]


Great job! Can you help me remove this "x" so that I can see the wallpapers better?
MCC321
Offline

#33
11-14-2021, 10:46 AM (This post was last modified: 11-14-2021, 11:27 AM by MCC321.)
(11-12-2021, 10:34 PM)sgtsars Wrote: Really enjoying this version of the theme, but was wondering if it's possible to increase the height of the logos beyond the default max of 115? Some of the more narrow logos end up looking rather small and I wouldn't mind an increase.

Could there also be a chance of implementing an option for the max logo width as well?

Yes you can, but be aware that it can push the top panel down if the logo is too big.
Here's what you need to do:

Change these lines in thememodifier.yaml
Line 5:
  - DetailViewLogoMaxHeight(25,115): Details view logo max height
Line 10:
  - GridViewLogoMaxHeight(25,115): Grid view logo max height
With these lines
Line 5:
  - DetailViewLogoMaxHeight(25,230): Details view logo max height
Line 10:
  - GridViewLogoMaxHeight(25,230): Grid view logo max height
You can change the number 230 to your desired maximum value if not enough

And for adding an option for the logo's width, I fear it would mess up too much with the aspect ratio. Ill check it out though!
MCC321
Offline

#34
11-14-2021, 12:04 PM
(11-14-2021, 10:02 AM)Leviathan93 Wrote: [Image: tSgHTOz.png]


Great job! Can you help me remove this "x" so that I can see the wallpapers better?

Yes sure, Here's what you need to do:

Change this line in Views/GridViewGameOverview.xaml (This will give opacity to the button)
Line 354:
Command="{MainViewModel CloseGameSideBarCommand}"
With this line
Line 354:
Command="{MainViewModel CloseGameSideBarCommand}" Opacity="{DynamicResource GridFeatureTopPanelOpacity}"
Like this you can control Opacity with the option "Grid view features panel opacity when on top part" in the Constant Menu under "General Panels Settings". You can also use a number instead of "{DynamicResource GridFeatureTopPanelOpacity}" 0 is invisible and 9 is no opacity. With this method, you can "remove it" by setting it to "0" but still use it cause its still there. Bare in mind that setting to "0" will keep the margin between Features Panel and Scrollbar. I think "2" or "3" would be best. 

Or Change this line in Views/GridViewGameOverview.xaml: (If you just want to remove it and never use this close button again)  
Line 354:
Command="{MainViewModel CloseGameSideBarCommand}"
With this line
Line 354:
Command="{MainViewModel CloseGameSideBarCommand}" Visibility="Collapsed"
This method will also remove margin between Features Panel and Scrollbar.
Leviathan93
Offline

Banned
#35
11-15-2021, 08:21 PM
(11-14-2021, 12:04 PM)MCC321 Wrote:
(11-14-2021, 10:02 AM)Leviathan93 Wrote: [Image: tSgHTOz.png]


Great job! Can you help me remove this "x" so that I can see the wallpapers better?

Yes sure, Here's what you need to do:

Change this line in Views/GridViewGameOverview.xaml (This will give opacity to the button)
Line 354:
Command="{MainViewModel CloseGameSideBarCommand}"
With this line
Line 354:
Command="{MainViewModel CloseGameSideBarCommand}" Opacity="{DynamicResource GridFeatureTopPanelOpacity}"
Like this you can control Opacity with the option "Grid view features panel opacity when on top part" in the Constant Menu under "General Panels Settings". You can also use a number instead of "{DynamicResource GridFeatureTopPanelOpacity}" 0 is invisible and 9 is no opacity. With this method, you can "remove it" by setting it to "0" but still use it cause its still there. Bare in mind that setting to "0" will keep the margin between Features Panel and Scrollbar. I think "2" or "3" would be best. 

Or Change this line in Views/GridViewGameOverview.xaml: (If you just want to remove it and never use this close button again)  
Line 354:
Command="{MainViewModel CloseGameSideBarCommand}"
With this line
Line 354:
Command="{MainViewModel CloseGameSideBarCommand}" Visibility="Collapsed"
This method will also remove margin between Features Panel and Scrollbar.

Thanks!

I was wondering if it is also possible to change the orange Playnite icon (top left) for the black and white version that is more minimalist.
MCC321
Offline

#36
11-17-2021, 02:46 AM
(11-15-2021, 08:21 PM)Leviathan93 Wrote: Thanks!

I was wondering if it is also possible to change the orange Playnite icon (top left) for the black and white version that is more minimalist.

To do this you can simply put one of these (applogo.png) in the Images folder inside the theme installation folder.
[Image: wATDiJI.png]
Link: applogo.png
[Image: Gg8Ao3x.png]
Link: applogo.png
[Image: MbbIkSO.png]
Link: applogo.png

These are the default one, but you can use any logo there. Just name it applogo.png and copy the image directly in the images folder of the theme.
(Must be .png file)
anime
Offline

#37
11-17-2021, 04:52 AM (This post was last modified: 11-17-2021, 04:52 AM by anime.)
Is it possible to integrate the BackgroundChanger extension with the theme?
Beelzabi
Offline

#38
11-20-2021, 08:13 PM
Hello!

Thanks for this theme, I love it!!

I just have one question, I have some weird thing with covers, what can I do with that??

Here's an example.

https://imgur.com/gallery/ATtAbyt
Banjoei
Offline

#39
11-22-2021, 06:05 PM
Could it be possible to change source banners, like Steam and Epic Games, and add custom ones like Oculus?
MCC321
Offline

#40
11-23-2021, 07:19 AM (This post was last modified: 11-23-2021, 07:57 AM by MCC321.)
(11-17-2021, 04:52 AM)anime Wrote: Is it possible to integrate the BackgroundChanger extension with the theme?
 
It sure would be a nice feature to add! Ill check it out but Im not confirming that it will be added.

(11-20-2021, 08:13 PM)Beelzabi Wrote: Hello!

Thanks for this theme, I love it!!

I just have one question, I have some weird thing with covers, what can I do with that??

Here's an example.

https://imgur.com/gallery/ATtAbyt

Thanks!
The only thing I can see that can affect covers like this would be the following option in Playnite settings: 
Settings(F4) ---> Appearance ---> Grid View
[Image: PhHfyzz.png]
Set the "Strech mode" setting to "Uniform to fill".
Im guessing it was not set to that option right? Cause if it was set to the right option, It means I need to investigate more.

I also suggest you use my settings if you want same result as in the screenshot in first post.
There is also a custom title font installer to have title font like in the screenshots and information to set your banners.
Check Step 2, Step 3 and Final Step in first post for more info.
« Next Oldest | Next Newest »
Pages (4): « Previous 1 2 3 4 Next »



  • View a Printable Version
  • Subscribe to this thread

© Designed by D&D - Powered by MyBB

Linear Mode
Threaded Mode