Deprecated Arctic Fuse - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12) +---- Forum: WIP Skins (https://forum.kodi.tv/forumdisplay.php?fid=160) +---- Thread: Deprecated Arctic Fuse (/showthread.php?tid=373859) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
RE: Arctic Fuse - Matthius7 - 2024-04-16 Not sure what's been accomplished in last few updates because I dont believe there is a changelog for each build but can see your plan is coming together @jurial. Widget refresh is almost instantaneous and skin seems to load faster than it ever has. Loving Kodi because of this skin my friend. Thank you RE: Arctic Fuse - AngryBird - 2024-04-16 (2024-04-16, 15:13)Matthius7 Wrote: Not sure what's been accomplished in last few updates because I dont believe there is a changelog for each build but can see your plan is coming together @jurial. Widget refresh is almost instantaneous and skin seems to load faster than it ever has. Loving Kodi because of this skin my friend. Thank you The changelog is on GitHub for every release that doesn't get pulled for problems and then they are rolled up into the next release. https://github.com/jurialmunkey/skin.arctic.fuse/releases RE: Arctic Fuse - Pantera950 - 2024-04-16 Hello, Could someone tell me what tmdbhelper info tagger does and do i actually need it ? I keep seeing it updating lots and lots movies and tv series. If's not mandatory maybe i could disable it ? Mostly i use Trakt and only selected shows in my watchlist and it takes about 20-50sec to launch Kodi with few widgets and i thought maybe this info tagger slow does my startup and usage. RE: Arctic Fuse - CouchGuy - 2024-04-17 This circle widget style is beautiful! Love it! How do I make Add-ons Hub widget style to circle? RE: Arctic Fuse - Suenabien84 - 2024-04-17 hi guys, Iām trying to customise the hubs so when I click on "Movies", the hub 1101 will open and there will be some categories like "genres" or "providers" that will then show the selected sub-category as widgets, all that in the "complex" mode. Not sure if Iām being clear enough, sorry. My question is: how can I get rid of the Spotlight? Choosing "noop" won't work. By the way, I loved the titles inside the landscape, don't know why @jurialmunkey removed it on last update. Anyway, the skin is beautiful, thanks! RE: Arctic Fuse - CouchGuy - 2024-04-17 (2024-04-17, 00:48)Suenabien84 Wrote: hi guys, Your hub should be in classic mode to remove the spotlight. Just click on 'Complex' to do that. RE: Arctic Fuse - jurialmunkey - 2024-04-17 (2024-04-16, 18:40)Pantera950 Wrote: Hello, The tagger runs if you have integrated TMDbHelper into your library and have selected Trakt lists to auto-update the library with TMDbHelper Settings > Library > Auto-update library from Trakt lists If you are *not* using TMDbHelper to create .strm files in the library from Trakt lists then you should disable the setting in TMDbHelper to add lists to your library by removing all the lists that you have selected in the above setting (there are no lists selected by default so you have added these yourself). If you *are* using TMDbHelper to create .strm files in the library from Trakt lists, then the tagger is an essential part of that process. It runs after a library update. RE: Arctic Fuse - jurialmunkey - 2024-04-17 (2024-04-17, 00:07)CouchGuy Wrote: How do I make Add-ons Hub widget style to circle? It's selectable as a widget style in 6.20 If you're talking about the pre-made Add-ons hub. No, you can't change the widget style there. You would need to recreate the hub with a custom one. RE: Arctic Fuse - CouchGuy - 2024-04-17 (2024-04-17, 03:29)jurialmunkey Wrote:(2024-04-17, 00:07)CouchGuy Wrote: How do I make Add-ons Hub widget style to circle? Alright. Thank you so much. RE: Arctic Fuse - User 485131 - 2024-04-17 (2024-04-13, 00:43)CyberRooke Wrote: @jurialmunkey When using skin variables to merge paths, I added exclude key "playcount" and set it to greater than 0... But this only removes watched items for Trakt whereas the regular "mark as watched" doesn't work... Is there a custom exclude key I can add for it? ššš @jurialmunkey any ideas on what I can do here? Wondering what code the hide watched in library uses and if that can be applied to a widget path in skin variables RE: Arctic Fuse - Suenabien84 - 2024-04-17 (2024-04-17, 02:20)CouchGuy Wrote: Your hub should be in classic mode to remove the spotlight. Just click on 'Complex' to do that. I know that using classic mode removes the spotlight but what I want is in the complex mode. In other versions, selecting "noop" for spotlight used to remove it so I could have categories used as widgets. RE: Arctic Fuse - jurialmunkey - 2024-04-17 (2024-04-17, 04:13)CyberRooke Wrote:(2024-04-13, 00:43)CyberRooke Wrote: @jurialmunkey When using skin variables to merge paths, I added exclude key "playcount" and set it to greater than 0... But this only removes watched items for Trakt whereas the regular "mark as watched" doesn't work... Is there a custom exclude key I can add for it? ššš What you're wanting is time-travel. Once you see the items on screen, the plugin has already finished its code and is no longer running (this is how all plugins work), which means it is impossible to filter out additional items based on *new* information that only exists after the items were created. Basically: 1. Kodi tells plugin it wants items from path plugin://xyz 2. Plugin XYZ runs some code, gives Kodi a directory of items with metadata attached. 3. Once the plugin finishes, Kodi displays the directory. Filtering can only happen in Step 2, not before or after. The filter simply stops items which don't match from being added to the directory given to Kodi. For other items to be filtered out afterwards, you would need to refresh the widget container so that Kodi will re-run the plugin and then the plugin can create new items with the new information to then filter them out from the new directory of items it creates. EDIT: Think of it like ordering food in a drive through. You go up to the window and make your order. Then the restaurant makes it and gives it to you. You then drive away to eat it. If you want to change your order or get more food, you need to go through the drive through again. RE: Arctic Fuse - jollyhiggler - 2024-04-17 (2024-04-08, 21:19)CyberRooke Wrote: @jurialmunkey I'm able to completely replace Autowidgets with Skin variables... it has all the functionalities. I was able to add parameter "no_label_dupes": "true" to remove duplicate files. Hello. I'd be grateful for your guidance on the removal of duplicates. As an exercise I've just created a dynamic node merging paths to the 'Trending' movie lists from Trakt, IMDb and TMDb. Naturally that results in substantial duplication of titles. What would be the specific steps to implement the parameter above? RE: Arctic Fuse - User 485131 - 2024-04-17 (2024-04-17, 15:45)jollyhiggler Wrote:(2024-04-08, 21:19)CyberRooke Wrote: @jurialmunkey I'm able to completely replace Autowidgets with Skin variables... it has all the functionalities. I was able to add parameter "no_label_dupes": "true" to remove duplicate files. You need a file manager that can edit text files... File manager+ or Xplore can do this. In Xplore click on USB drive Then click on Android Go to data Go to org.xbmc.kodi Click on files The .kodi folder should be present.. If it's not, navigate to the menu scroll down to find "show hidden button" then click on it, that'll bring up the .kodi folder... Click on it Go to userdata Go to addon_data Find Script.skinvariables then click on it Go to Nodes Go to dynamic Here you'll find all the nodes you made, click on the one you want to remove duplicate from... Some options on what you want to open it as will come up.. click on text.. Then click on Xplore text editor.... At the bottom, you'll find all the filters that are already added... just add comma to the end of the last one then paste in that code... so if it's "sort_by": "title", "sort_how": "asc" Just add comma to the end of "asc" then allign your cursor directly underneath it and type in the code... so it'll be "sort_by": "title", "sort_how": "asc", "no_label_dupes": "true" Would be easier to use phone linked to your storage... For this use Filemanger+, it's possible on Xplore but I prefer Filemanager+... Make sure phone and streaming device are connected to same network... Click on Access from network... download the filemanager+ app on phone... Click start service on the streaming device... it'll pop up in the phone app under the same "access from network" area... type in the password on your screen... then you can control your device storage from your phone... then follow the instructions above RE: Arctic Fuse - jollyhiggler - 2024-04-17 (2024-04-17, 19:09)CyberRooke Wrote:Done - Thanks(2024-04-17, 15:45)jollyhiggler Wrote:(2024-04-08, 21:19)CyberRooke Wrote: @jurialmunkey I'm able to completely replace Autowidgets with Skin variables... it has all the functionalities. I was able to add parameter "no_label_dupes": "true" to remove duplicate files. |