Kodi Community Forum
Arctic: Zephyr - Reloaded - 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: Arctic: Zephyr - Reloaded (https://forum.kodi.tv/forumdisplay.php?fid=221)
+---- Thread: Arctic: Zephyr - Reloaded (/showthread.php?tid=337862)

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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418


RE: Arctic Zephyr: Leia-MOD - aceqott - 2019-08-31

(2019-07-29, 11:14)beatmasterrs Wrote:
(2019-07-28, 19:43)marpemim Wrote: Hello again, i want erase or replace the fanart background in pvr channel list, it is possible?

Please open Includes_PVR.xml and look at the following code blocks:

line 119 - 123, shadow texture
xml:
<control type="image">
   <width>100%</width>
   <height>100%</height>
   <texture border="10">common/nofocus-shadow10.png</texture>
</Control>
line 142 - 151, Background texture
xml:
<control type="image">
   <left>10</left>
   <top>10</top>
   <right>10</right>
   <bottom>10</bottom>
   <aspectratio align="center" aligny="center" scalediffuse="false">scale</aspectratio>
   <texture diffuse="diffuse/pvrinfo.png" background="true">pvr/background.jpg</texture>
   <visible>!Player.HasVideo</visible>
   <fadetime>150</fadetime>
</Control>
line 173 - 179, lines around background
xml:
<control type="image">
   <left>10</left>
   <top>9</top>
   <right>10</right>
   <bottom>9</bottom>                  
   <texture border="10" colordiffuse="Box2">common/box18.png</texture>      
</Control>
Example, if you want to replace the background image with a grey background:
xml:
<control type="image">
     <left>10</left>
     <top>10</top>
     <right>10</right>
     <bottom>10</bottom>
     <aspectratio align="center" aligny="center" scalediffuse="false">scale</aspectratio>
     <texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">common/white.png</texture>
     <visible>!Player.HasVideo</visible>
     <fadetime>150</fadetime>
 </Control>
Change the "colordiffuse" value to your needs.

when you have made your changes, save everything, restart or reload your skin to make the changes take effect Smile 
Hi.

What if I wanted to change the background to black? How would it be?

Example:
<texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">ff000000</texture>


RE: Arctic Zephyr: Leia-MOD - loznic89 - 2019-08-31

(2019-08-31, 09:06)aceqott Wrote:
(2019-07-29, 11:14)beatmasterrs Wrote:
(2019-07-28, 19:43)marpemim Wrote: Hello again, i want erase or replace the fanart background in pvr channel list, it is possible?

Please open Includes_PVR.xml and look at the following code blocks:

line 119 - 123, shadow texture
xml:
<control type="image">
   <width>100%</width>
   <height>100%</height>
   <texture border="10">common/nofocus-shadow10.png</texture>
</Control>
line 142 - 151, Background texture
xml:
<control type="image">
   <left>10</left>
   <top>10</top>
   <right>10</right>
   <bottom>10</bottom>
   <aspectratio align="center" aligny="center" scalediffuse="false">scale</aspectratio>
   <texture diffuse="diffuse/pvrinfo.png" background="true">pvr/background.jpg</texture>
   <visible>!Player.HasVideo</visible>
   <fadetime>150</fadetime>
</Control>
line 173 - 179, lines around background
xml:
<control type="image">
   <left>10</left>
   <top>9</top>
   <right>10</right>
   <bottom>9</bottom>                  
   <texture border="10" colordiffuse="Box2">common/box18.png</texture>      
</Control>
Example, if you want to replace the background image with a grey background:
xml:
<control type="image">
     <left>10</left>
     <top>10</top>
     <right>10</right>
     <bottom>10</bottom>
     <aspectratio align="center" aligny="center" scalediffuse="false">scale</aspectratio>
     <texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">common/white.png</texture>
     <visible>!Player.HasVideo</visible>
     <fadetime>150</fadetime>
 </Control>
Change the "colordiffuse" value to your needs.

when you have made your changes, save everything, restart or reload your skin to make the changes take effect Smile  
Hi.

What if I wanted to change the background to black? How would it be?

Example:
<texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">ff000000</texture>

<texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">common/white.png</texture>

ff4f4f4f4       grey color

only replace for your favourite color bro hahahaha 



RE: Arctic Zephyr: Leia-MOD - loznic89 - 2019-08-31

(2019-08-30, 21:13)loznic89 Wrote:
(2019-08-30, 10:47)beatmasterrs Wrote:
(2019-08-29, 23:55)loznic89 Wrote:  
PVR section in az-leia mod has no stars. It's already on my todo list, I haven't forgotten. will be added a s soon as possible Smile

ok, thank you 

https://drive.google.com/file/d/1dWqgWgdiAtHUjhvdxI_OAExzVhIwvrQ0/view?usp=sharing

With this font appear starrating in pvr, Can you implement the stars in the default skin font?

and, I can't find the xml to modify shutdown menu and I can't find how to modify it from the skin.

thanks again nice skin and good support



RE: Arctic Zephyr: Leia-MOD - loznic89 - 2019-08-31

(2019-08-30, 21:13)loznic89 Wrote:
(2019-08-30, 10:47)beatmasterrs Wrote:
(2019-08-29, 23:55)loznic89 Wrote:  
PVR section in az-leia mod has no stars. It's already on my todo list, I haven't forgotten. will be added a s soon as possible Smile

ok, thank you 

using other arial font appear starrating in pvr, Can you implement the stars in the default skin font?

and, I can't find the xml to modify shutdown menu and I can't find how to modify it from the skin.

thanks again nice skin and good support



RE: Arctic Zephyr: Leia-MOD - loznic89 - 2019-08-31

(2019-08-30, 21:13)loznic89 Wrote:
(2019-08-30, 10:47)beatmasterrs Wrote:
(2019-08-29, 23:55)loznic89 Wrote:  
PVR section in az-leia mod has no stars. It's already on my todo list, I haven't forgotten. will be added a s soon as possible Smile

ok, thank you 

using other arial font appear starrating in pvr, Can you implement the stars in the default skin font?

and, I can't find the xml to modify shutdown menu and I can't find how to modify it from the skin.

thanks again nice skin and good support



RE: Arctic Zephyr: Leia-MOD - aceqott - 2019-08-31

(2019-08-31, 14:09)loznic89 Wrote:
(2019-08-31, 09:06)aceqott Wrote:
(2019-07-29, 11:14)beatmasterrs Wrote: Please open Includes_PVR.xml and look at the following code blocks:

line 119 - 123, shadow texture
xml:
<control type="image">
   <width>100%</width>
   <height>100%</height>
   <texture border="10">common/nofocus-shadow10.png</texture>
</Control>
line 142 - 151, Background texture
xml:
<control type="image">
   <left>10</left>
   <top>10</top>
   <right>10</right>
   <bottom>10</bottom>
   <aspectratio align="center" aligny="center" scalediffuse="false">scale</aspectratio>
   <texture diffuse="diffuse/pvrinfo.png" background="true">pvr/background.jpg</texture>
   <visible>!Player.HasVideo</visible>
   <fadetime>150</fadetime>
</Control>
line 173 - 179, lines around background
xml:
<control type="image">
   <left>10</left>
   <top>9</top>
   <right>10</right>
   <bottom>9</bottom>                  
   <texture border="10" colordiffuse="Box2">common/box18.png</texture>      
</Control>
Example, if you want to replace the background image with a grey background:
xml:
<control type="image">
     <left>10</left>
     <top>10</top>
     <right>10</right>
     <bottom>10</bottom>
     <aspectratio align="center" aligny="center" scalediffuse="false">scale</aspectratio>
     <texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">common/white.png</texture>
     <visible>!Player.HasVideo</visible>
     <fadetime>150</fadetime>
 </Control>
Change the "colordiffuse" value to your needs.

when you have made your changes, save everything, restart or reload your skin to make the changes take effect Smile  
Hi.

What if I wanted to change the background to black? How would it be?

Example:
<texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">ff000000</texture>

<texture colordiffuse="ff4f4f4f4" diffuse="diffuse/pvrinfo.png" background="true">common/white.png</texture>

ff4f4f4f4       grey color

only replace for your favourite color bro hahahaha 

The solution was in front of my nose and I didn't realize it. Nathan Hahahaha 

Thans bro.

"beatmasterrs" Sorry @beatmasterrs


Arctic Zephyr: Leia-MOD - sniktaw - 2019-09-01

Love this skin!

What info should appear where it says: night verfügbar?Image


Arctic Zephyr: Leia-MOD - sniktaw - 2019-09-01

Sorry, nicht verfügbar

Not sure how to edit post ;o)


RE: Arctic Zephyr: Leia-MOD - beatmasterrs - 2019-09-01

(2019-09-01, 20:11)sniktaw Wrote: Sorry, nicht verfügbar

Not sure how to edit post ;o)

Will be fixed with next update. "not available" that should be Smile


RE: Arctic Zephyr: Leia-MOD - sniktaw - 2019-09-02

(2019-09-01, 23:26)beatmasterrs Wrote:
(2019-09-01, 20:11)sniktaw Wrote: Sorry, nicht verfügbar

Not sure how to edit post ;o)

Will be fixed with next update. "not available" that should be Smile
After fix will it be removed or will it say: not available? If the latter, what information is 'not available' so I can populate it? Thanks ;o)


RE: Arctic Zephyr: Leia-MOD - MARAND_BR20 - 2019-09-04

Image


RE: Arctic Zephyr: Leia-MOD - MARAND_BR20 - 2019-09-04

Please would it be possible further that the next version?


RE: Arctic Zephyr: Leia-MOD - beatmasterrs - 2019-09-04

(2019-09-04, 02:31)MARAND_BR20 Wrote: Image

the Option with showing the banner looks really good Smile i will think about it and see, what I can do Smile


RE: Arctic Zephyr: Leia-MOD - narenh - 2019-09-05

Just out of curiosity, is it possible to re-order/hide media flags? Currently, the flags shown for me are:
RESOLUTION | STAR RATING | VIDEO CODEC | ASPECT RATIO | AUDIO CODEC | AUDIO CHANNELS | [HDR, if applicable] | MPAA RATING | SOURCE | [IMDB TOP 250, if applicable]

I's really love to condense this a bit to make it more readable for others, ideally to this:
[HDR] | RESOLUTION | AUDIO CODEC | AUDIO CHANNELS (*unless Atmos/DTS:X, then this should hide) | MPAA RATING | VIDEO CODEC

Is there a way to customize these on the user side? Or are they hardcoded into the skin?


RE: Arctic Zephyr: Leia-MOD - sniktaw - 2019-09-06

(2019-09-02, 08:14)sniktaw Wrote:
(2019-09-01, 23:26)beatmasterrs Wrote:
(2019-09-01, 20:11)sniktaw Wrote: Sorry, nicht verfügbar

Not sure how to edit post ;o)

Will be fixed with next update. "not available" that should be Smile 
After fix will it be removed or will it say: not available? If the latter, what information is 'not available' so I can populate it? Thanks ;o) 

@beatmasterrs ?