Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Confluence (https://forum.kodi.tv/forumdisplay.php?fid=125) +---- Thread: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) (/showthread.php?tid=346302) 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
|
RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - Karellen - 2022-04-14 (2022-04-14, 06:14)stonedaze Wrote: where are all the png files mentioned in the xml files such as osddialogdisplay.png or osdpause.pngIn \addons\skin.xonfluence\media\ and it is the textures.xbt file that contains all the flags and icons.You need to unpack it using Texture Tool... https://kodi.wiki/view/TextureTool Can't help you with the other part of your post. RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - udangaribaldi - 2022-04-14 @stonedaze (edited) have a gander in the IncludesOnScreenDisplay.xml - will need more info to pin point the control RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - stonedaze - 2022-04-15 Thanks for the replies. After finding references to the pause icon and minimum popup seekbar in half a dozen xml files, I realized this is far beyond my comprehension level and I can live with it as is. lol RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - udangaribaldi - 2022-04-15 dont give up so easily, you nearly there it might seem like you've hit a wall but, keep at it, even if you do put it on the back-boiler for now. here is a tip:- there is a way to show/display the name of the xml and the name of the control whilst you're in kodi should help pinpoint exactly what&where in the xmls RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - DiMag - 2022-04-16 (2022-04-15, 14:49)udangaribaldi Wrote: there is a way to show/display the name of the xml and the name of the control whilst you're in kodiI remember it was present in a much older version of Xonfluence (or was it a different Confluence MOD?). It is also present in at least one of the many flavors of Confluence Extended ---the one distributed by GUIDO'S SKINBASE--- where it is a skin settings option and called Debug (Log) View or something similar. I have tried to achieve the effect by tweaking Xonfluence's debug level settings and came to naughter. (One thing I did with success was to activate debug logging without having it pollute the screen with useless info like MEM usage etc. Of course that is something entirely different.) How did you expose the active xmls? RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - udangaribaldi - 2022-04-16 there is an infolabel Window.Property(xmlfile) Displays the name of the xml file currently shown RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - jdig4240 - 2022-04-16 (2022-04-16, 15:53)DiMag Wrote:(2022-04-15, 14:49)udangaribaldi Wrote: there is a way to show/display the name of the xml and the name of the control whilst you're in kodiI remember it was present in a much older version of Xonfluence (or was it a different Confluence MOD?). It is also present in at least one of the many flavors of Confluence Extended ---the one distributed by GUIDO'S SKINBASE--- where it is a skin settings option and called Debug (Log) View or something similar. In the addon.xml of the skin folder you can change debugging to true. Make sure Kodi is closed first. Looks like this... <extension point="xbmc.gui.skin" defaultthemename="Textures.xbt" debugging="false" effectslowdown=".5"> RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - DiMag - 2022-04-17 @udangaribaldi, @jdig4240 In Re: HOWTO expose active window/control in debug view (SOLVED) Thank you both for your instant help in this request so important for skin tweaking. I implemented @jdig4240 's solution as it seemed more straightforward and faster to code. And yes, it bore success. Instantly. As always, success in solving one issue precipitates some follow-up questions:
Again sincerely thanks to both of you.
RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - udangaribaldi - 2022-04-17 use @jdig4240 's solution - is best shows xml and either the label or id (which you search the xml for) once you get your head around it - it easy enough to understand what it all means. in notepad++, view tab, and click on the function list - a sidepanel will appear with useful info about whats in the xml RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - VonMagnum - 2022-04-18 @bsoriano - I've noticed the disable hardware acceleration option for avi and other broken Android acceleration video formats now appears to function. However, it only turns it off. It doesn't turn it back on after the video has played for other formats that can use acceleration (like mkv or m4a). I then have to go to settings and turn it back on manually again. It'd be nice if it could check if it's on and turn off for those files and then restore to back on again until it encounters another AVI file. Thanks again for your hard efforts. RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - DiMag - 2022-04-18 (2022-04-17, 17:41)udangaribaldi Wrote: use @jdig4240 's solution - is bestNot until somebody tells me how to toggle debug view on/off with a shortcut... The bloody info overlays even the video player screen! RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - jdig4240 - 2022-04-19 (2022-04-18, 20:44)DiMag Wrote:Lol, the point is just to use it for testing. Why would you want it on all the time anyways? You can make a simple custom command as a submenu shortcut to do this. The command is Skin.ToggleDebug(2022-04-17, 17:41)udangaribaldi Wrote: use @jdig4240 's solution - is bestNot until somebody tells me how to toggle debug view on/off with a shortcut... RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - DiMag - 2022-04-19 Skin.ToggleDebug toggles DEBUG on/off, not DEBUG INFO. It sounds weird, but try it yourself and you shall see. (BTW you don't need make a shortcut for Skin.ToggleDebug. It is already built-in as keyboard shortcut CTRL+SHIFT+D.) In fact it is not so much weird as an omission to state clearly that the debug view we are talking about here ---expose or not expose active windows/lists/buttons--- has nothing to do with taking or not taking system debug logs ---the ones to be posted in order to help troubleshooting. Before posting, I fired up CTRL+SHIFT+D. The screen, already polluted by debug info, got further and even more unbearably polluted by senseless info about amount of memory in use, fps, and what-have-you. Pus the indication where all this gets saved to. So before that no debug log was taken. Debug view isn't debug logging, and my request for a switch to toggle it on/off persists. RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - DiMag - 2022-04-19 (2022-04-19, 05:23)jdig4240 Wrote:(2022-04-18, 20:44)DiMag Wrote: Lol, the point is just to use it for testing. Why would you want it on all the time anyways? Try to tell that to somebody like @udangaribaldi who seems to be tinkering as much as merely using. And don't tell me to switch to an admin profile --- the whole profiles thing in Kodi is useless (and costly in storage space) to somebody who just needs to temporarily switch to su (Administrator) then go on being normal user. It makes sense to separate content in use by dad, mom and kids, but only that. RE: Xonfluence (Leia v18.x & Matrix v19.x) (Krypton 17 = deprecated) - Klojum - 2022-04-19 (2022-04-19, 09:37)DiMag Wrote: the whole profiles thing in Kodi is useless (and costly in storage space) Well, it's certainly not useless, even I am using profiles as a single user for testing/using different setups. But they can take up storage space depending on the selected video sources. In some cases, pathsubtitution for thumbnails can reduce the storage load quite a bit. |