2022-07-07, 16:09
2022-07-07, 16:19
Try using one of the modded versions of Estuary being discussed in this sub-forum. I'm sure one of them will be able to do what you are looking for.
2022-07-07, 16:35
Thanks for your answer, the problem is that I would like to use the Estuary skin, not a modded one since I already did some skinning on the original estuary skin.
2022-07-07, 16:42
(2022-07-07, 16:35)Bungee_G Wrote: Thanks for your answer, the problem is that I would like to use the Estuary skin, not a modded one since I already did some skinning on the original estuary skin.
Do you mean you have already forked and modded the original Estuary skin? Is this what you mean by "did some skinning on the original estuary"?
It is never recommended to alter the main skin directly, always use a copy.
2022-07-07, 16:45
Once you have added them as a source , download “ library node editor”from kodi repo and then create a node for each one . Then you can find them in “ user data-library-video. Once you have that done post again and I will give you the next step.
2022-07-07, 16:48
(2022-07-07, 16:45)ontap Wrote: Once you have added them as a source , download “ library node editor”from kodi repo and then create a node for each one . Then you can find them in “ user data-library-video. Once you have that done post again and I will give you the next step.Okay thanks, do you mean a node or a parent node ? Is it from here :
Also, there is already a node for Movies and TV Shows so I have to create only 2 ?
2022-07-07, 17:16
Scrap above , easiest way is he following
go into , settings-media-videos. then right clik or long press on OK on one of your sources and save it to favs.
Then in home.xml in default estuary around about line 926. copy and paste the movies item box as below .
<item>
<label>$LOCALIZE[342]</label>
<onclick condition="Library.HasContent(movies) + Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/,return)</onclick>
<onclick condition="Library.HasContent(movies) + !Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/titles/,return)</onclick>
<onclick condition="!Library.HasContent(movies)">ActivateWindow(Videos,sources://video/,return)</onclick>
<property name="menu_id">$NUMBER[5000]</property>
<thumb>icons/sidemenu/movies.png</thumb>
<property name="id">movies</property>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton)</visible>
</item>
Go back into userdata -favourites and copy ActivateWindow. etc , between ><
then back to home.xml
then replace ActivateWindow(Videos,sources://video/,return). with the copied line and replace $LOCALIZE[342] between <label></label> with your choice of name.
Before doing any of this I would go into the addon.xml and change the version number version="3.0.5" , add a couple of zeros "300.0.5" , so that any future update to the skin is blocked then you won't lose your changes.
go into , settings-media-videos. then right clik or long press on OK on one of your sources and save it to favs.
Then in home.xml in default estuary around about line 926. copy and paste the movies item box as below .
<item>
<label>$LOCALIZE[342]</label>
<onclick condition="Library.HasContent(movies) + Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/,return)</onclick>
<onclick condition="Library.HasContent(movies) + !Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/titles/,return)</onclick>
<onclick condition="!Library.HasContent(movies)">ActivateWindow(Videos,sources://video/,return)</onclick>
<property name="menu_id">$NUMBER[5000]</property>
<thumb>icons/sidemenu/movies.png</thumb>
<property name="id">movies</property>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton)</visible>
</item>
Go back into userdata -favourites and copy ActivateWindow. etc , between ><
then back to home.xml
then replace ActivateWindow(Videos,sources://video/,return). with the copied line and replace $LOCALIZE[342] between <label></label> with your choice of name.
Before doing any of this I would go into the addon.xml and change the version number version="3.0.5" , add a couple of zeros "300.0.5" , so that any future update to the skin is blocked then you won't lose your changes.
2022-07-07, 17:35
(2022-07-07, 17:16)ontap Wrote: Scrap above , easiest way is he followingOkay thanks, I will try this, but do I have to create new nodes ?
go into , settings-media-videos. then right clik or long press on OK on one of your sources and save it to favs.
Then in home.xml in default estuary around about line 926. copy and paste the movies item box as below .
<item>
<label>$LOCALIZE[342]</label>
<onclick condition="Library.HasContent(movies) + Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/,return)</onclick>
<onclick condition="Library.HasContent(movies) + !Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/titles/,return)</onclick>
<onclick condition="!Library.HasContent(movies)">ActivateWindow(Videos,sources://video/,return)</onclick>
<property name="menu_id">$NUMBER[5000]</property>
<thumb>icons/sidemenu/movies.png</thumb>
<property name="id">movies</property>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton)</visible>
</item>
Go back into userdata -favourites and copy ActivateWindow. etc , between ><
then back to home.xml
then replace ActivateWindow(Videos,sources://video/,return). with the copied line and replace $LOCALIZE[342] between <label></label> with your choice of name.
Before doing any of this I would go into the addon.xml and change the version number version="3.0.5" , add a couple of zeros "300.0.5" , so that any future update to the skin is blocked then you won't lose your changes.
Edit : so this is what I did (I didn't create nodes by the way), I added in Home.xml :
<item>
<label>ANIME</label>
<onclick condition="Library.HasContent(movies) + Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/,return)</onclick>
<onclick condition="Library.HasContent(movies) + !Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/titles/,return)</onclick>
<onclick condition="!Library.HasContent(movies)">ActivateWindow(10025,"C:\\Users\\younm\\Downloads\\Nouveau dossier (2)\\",return)</onclick>
<property name="menu_id">$NUMBER[5000]</property>
<thumb>icons/sidemenu/movies.png</thumb>
<property name="id">movies</property>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton)</visible>
</item>
Now the ANIME menu appear on the home menu but when I click on ANIME, it shows the same thing as when i click on movies
And it is written Movies not ANIME:
2022-07-07, 20:08
Sorry had to pop out , OK , to fix it , change as below.
<item>
<label>ANIME</label>
<onclick condition="Library.HasContent(movies) + Skin.HasSetting(home_no_categories_widget)">ActivateWindow(10025,"C:\\Users\\younm\\Downloads\\Nouveau dossier (2)\\",return)</onclick>
<onclick condition="Library.HasContent(movies) + !Skin.HasSetting(home_no_categories_widget)">ActivateWindow(10025,"C:\\Users\\younm\\Downloads\\Nouveau dossier (2)\\",return)</onclick>
<onclick condition="!Library.HasContent(movies)">ActivateWindow(10025,"C:\\Users\\younm\\Downloads\\Nouveau dossier (2)\\",return)</onclick>
<property name="menu_id">$NUMBER[5000]</property>
<thumb>icons/sidemenu/movies.png</thumb>
<property name="id">movies</property>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton)</visible>
</item>
<item>
<label>ANIME</label>
<onclick condition="Library.HasContent(movies) + Skin.HasSetting(home_no_categories_widget)">ActivateWindow(10025,"C:\\Users\\younm\\Downloads\\Nouveau dossier (2)\\",return)</onclick>
<onclick condition="Library.HasContent(movies) + !Skin.HasSetting(home_no_categories_widget)">ActivateWindow(10025,"C:\\Users\\younm\\Downloads\\Nouveau dossier (2)\\",return)</onclick>
<onclick condition="!Library.HasContent(movies)">ActivateWindow(10025,"C:\\Users\\younm\\Downloads\\Nouveau dossier (2)\\",return)</onclick>
<property name="menu_id">$NUMBER[5000]</property>
<thumb>icons/sidemenu/movies.png</thumb>
<property name="id">movies</property>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton)</visible>
</item>
2022-07-07, 21:33
Thanks, now when I click on "ANIME" from the home menu, it displays only the animes from that directory. So just as a test, I only put under "ANIME" the anime named "a silent voice" and as you can see under "ANIME" it appears :
but even if there is only one anime, on the homescreen it displays all the movies and not only "a silent voice" :
Also, the anime "a silent voice" is still in "Movies" even if it's under "ANIME" :
but even if there is only one anime, on the homescreen it displays all the movies and not only "a silent voice" :
Also, the anime "a silent voice" is still in "Movies" even if it's under "ANIME" :
2022-07-07, 21:48
"when I click on "ANIME" from the home menu, it displays only the animes from that directory." surely this is the correct action for "Animes" on home menu ?
When you added "Anime" as a source , you will have scanned it into lbrary so it will be in "Movies" because that category "titles" is the entire movie library.
When you added "Anime" as a source , you will have scanned it into lbrary so it will be in "Movies" because that category "titles" is the entire movie library.
2022-07-07, 22:51
Yes it is the correct action.
So in "Movies", there will always be the content from "Movies" and the content from "ANIME"
Is it possible to make only the animes from "ANIME" appear on the homescreen ? As you can see, there is not only "a silent voice" which is the only anime under "ANIME" but also the movies from "Movies"
So in "Movies", there will always be the content from "Movies" and the content from "ANIME"
Is it possible to make only the animes from "ANIME" appear on the homescreen ? As you can see, there is not only "a silent voice" which is the only anime under "ANIME" but also the movies from "Movies"
2022-07-07, 23:15
Under Movies , you would need to point the action to a source/selection other than titles. What would you like to see when you click on Movies ?
Do you want to remove the Movies item completely ?
Do you want to remove the Movies item completely ?
2022-07-07, 23:25
Couldn't you edit the Movies menu item to point to a new smart playlist that includes movies, but not anime?
special://skin/playlists/movies_no_anime.xsp