Kodi Community Forum
Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - 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: Other Skins (https://forum.kodi.tv/forumdisplay.php?fid=272)
+---- Thread: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) (/showthread.php?tid=355993)

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 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - awesomebuilder - 2023-02-06

(2023-02-06, 20:36)matke Wrote:
(2023-02-06, 20:20)HisAirness23 Wrote:
(2023-02-06, 19:32)matke Wrote: That's how translation works. You have to change language in kodi settings. Then you will be able to use the translation in the skin as well.

The translation file doesn't work for me somehow although the language is set to german in the kodi settings. I had to change the 'msgids' in the en_gb strings file directly in order for it to work.
skin.titan.bingie.mod/language/resource.language.de_de/string.po
Replace line
Code:
msgctxt "#31622"
msgid "Similar"
msgstr "Ähnlich"
with
Code:
msgctxt "#31622"
msgid "More Like This"
msgstr "Mehr wie das"
Also add this two

Code:
msgctxt "#320002"
msgid "Choose Art"
msgstr "Wählen Sie Kunst"

msgctxt "#320067"
msgid "Credits & More Info"
msgstr "Credits & weitere Informationen"

Sorry, maybe not the correct translation, I used it google translate.

Results:
Image

Translations are not sorted. My advice to you and others is to be patient as it is a big job. I should actually transfer everything from the code to a string so that later whoever wants to translate string for their own language. I started this in the previous update, and I will try to fix it a little more in the next one, so that it is quite usable.

That's why you should move to GitHub so everyone could have help pushing PR's and help with things like this Smile


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - matke - 2023-02-06

(2023-02-06, 20:42)awesomebuilder Wrote:
(2023-02-06, 20:36)matke Wrote:
(2023-02-06, 20:20)HisAirness23 Wrote: The translation file doesn't work for me somehow although the language is set to german in the kodi settings. I had to change the 'msgids' in the en_gb strings file directly in order for it to work.
skin.titan.bingie.mod/language/resource.language.de_de/string.po
Replace line
Code:
msgctxt "#31622"
msgid "Similar"
msgstr "Ähnlich"
with
Code:
msgctxt "#31622"
msgid "More Like This"
msgstr "Mehr wie das"
Also add this two

Code:
msgctxt "#320002"
msgid "Choose Art"
msgstr "Wählen Sie Kunst"

msgctxt "#320067"
msgid "Credits & More Info"
msgstr "Credits & weitere Informationen"

Sorry, maybe not the correct translation, I used it google translate.

Results:
Image

Translations are not sorted. My advice to you and others is to be patient as it is a big job. I should actually transfer everything from the code to a string so that later whoever wants to translate string for their own language. I started this in the previous update, and I will try to fix it a little more in the next one, so that it is quite usable.

That's why you should move to GitHub so everyone could have help pushing PR's and help with things like this Smile
The current version is available on github. It will be the same with the next one.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - HisAirness23 - 2023-02-06

(2023-02-06, 20:36)matke Wrote: Sorry, maybe not the correct translation, I used it google translate.

Translations are not sorted. My advice to you and others is to be patient as it is a big job. I should actually transfer everything from the code to a string so that later whoever wants to translate string for their own language. I started this in the previous update, and I will try to fix it a little more in the next one, so that it is quite usable.

Thanks for your help, much appreciated! And no worries, I completely understand. You are doing a fantastic job for everyone else, so thanks again.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - ExplodingCore - 2023-02-06

(2023-02-01, 23:21)ExplodingCore Wrote: One issue I found, maybe this has been brought up before but idk: when selecting "Play from beginning" in Bingie Info dialog Kodi doesn't seem to know which library item it is playing. It's playing the Movie/Episode but when hitting pause or info it doesn't show anything. No plot, no logo or art, no title, nothing. When using Yatse as remote, in there it doesn't show the name of what's playing either. Instead it's showing that Kodi is playing some number which is most likely the library item id.
This is also causing issues with playback states and resume points.

Also when in TV Show Bingie Info and selecting "Play Season X: Episode Y" it's the same thing but instead of an id it shows the actual filename of the video.

I'm not sure if this is a general problem or if it might be related to PlexKodiConnect which I'm using. I've never seen it before with other skins though.
bump
(2023-02-06, 20:46)matke Wrote: The current version is available on github. It will be the same with the next one.

https://github.com/AchillesPunks/repository.titan.bingie.mod
this is the correct one? I'd like to help with German localization in the future. In some parts it's not only a bit off but straight up misleading e.g. some settings are translated the wrong way around (activate is translated to deactivate).


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - matke - 2023-02-06

(2023-02-06, 23:35)ExplodingCore Wrote:
(2023-02-01, 23:21)ExplodingCore Wrote: One issue I found, maybe this has been brought up before but idk: when selecting "Play from beginning" in Bingie Info dialog Kodi doesn't seem to know which library item it is playing. It's playing the Movie/Episode but when hitting pause or info it doesn't show anything. No plot, no logo or art, no title, nothing. When using Yatse as remote, in there it doesn't show the name of what's playing either. Instead it's showing that Kodi is playing some number which is most likely the library item id.
This is also causing issues with playback states and resume points.

Also when in TV Show Bingie Info and selecting "Play Season X: Episode Y" it's the same thing but instead of an id it shows the actual filename of the video.

I'm not sure if this is a general problem or if it might be related to PlexKodiConnect which I'm using. I've never seen it before with other skins though.
bump
(2023-02-06, 20:46)matke Wrote: The current version is available on github. It will be the same with the next one.

https://github.com/AchillesPunks/repository.titan.bingie.mod
this is the correct one? I'd like to help with German localization in the future. In some parts it's not only a bit off but straight up misleading e.g. some settings are translated the wrong way around (activate is translated to deactivate).
English must be sorted out first. All labels from core code must be converted into a string, the redundant translations must be deleted, and only then can work be done for other languages. There will be a notification on the forum when it happens. There are still some things to be sorted out in the skin, so then I will deal with the English string. So wait until the next update.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - shaktoo - 2023-02-07

Solution for anyone on android having crashes esp with TBM 
Maven from kodinerds has an updated  Kodi 21 nightly build which has resolved all crashes ( at least for me ) especially using TBM. try from here
This unfortunately installs as another kodi side by side 
There is another fix which I have not tried yet :  here
Laugh


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - matke - 2023-02-07

(2023-02-07, 03:40)shaktoo Wrote: Solution for anyone on android having crashes esp with TBM 
Maven from kodinerds has an updated  Kodi 21 nightly build which has resolved all crashes ( at least for me ) especially using TBM. try from here
This unfortunately installs as another kodi side by side 
There is another fix which I have not tried yet :  here
Laugh
It's not a little early for kodi 21? Smile I think there is also a version 20 with a fix.
Kodi crashing problem should be resolved with the next Kodi update, so there will be no need for an alternative. At least I hope so.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - awesomebuilder - 2023-02-07

Rather stick to Nexus builds from the same author

https://repo.kodinerds.net/index.php?action=list&scope=all&version=nexus/


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - User 477355 - 2023-02-07

Hi there,

is it possible to create a smart playlist and use it as a category in the categories widget?

I initially thought this is what the "Enable Library List" does but it seams I am wrong.

The ultimate goal is the create my own categories.

Thanks in advance,
Dragoo


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - shaktoo - 2023-02-07

(2023-02-07, 10:25)awesomebuilder Wrote: Rather stick to Nexus builds from the same author

https://repo.kodinerds.net/index.php?action=list&scope=all&version=nexus/
Its this same changes that will be incorporated in the K20 update.
But yeah by all means just use the Nexus Build ..  Smile


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - shaktoo - 2023-02-08

Well I tried the Maven's Nexus build but that unfortunately is still crashing. 
So I guess its the K21 Nightly which runs stable ATM with TBM ( and everything else )


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - Paggnr - 2023-02-08

Does this work with Kodi 20 on Android


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - cscott1 - 2023-02-08

(2023-02-08, 10:20)Paggnr Wrote: Does this work with Kodi 20 on Android
Read back a few pages on this thread many skins are having issues with intermittent crashes on android on Kodi 20. It is a known issue and they are working on a fix for kodi 20.1 Stick to 19.5 until it is remedied unless you like reporting bugs and helping fix the issues.


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - HisAirness23 - 2023-02-10

Does anyone know how to get the "local library" filter setting to work in "Dialog video info lists filter"? I have collections enabled and I can access them through movies > collections but they are not showing up in the video info dialog. Only the filter options "streaming services" or "none" are showing the entries at the bottom of the info dialog, but they are showing stuff I don't have in my library. Also, I cannot activate "advanced video info dialog" if that has sth. to do with this issue...? Thanks again


RE: Titan BINGIE MOD v1 (UPDATED - 07/24/2020) - matke - 2023-02-10

(2023-02-10, 19:53)HisAirness23 Wrote: Does anyone know how to get the "local library" filter setting to work in "Dialog video info lists filter"? I have collections enabled and I can access them through movies > collections but they are not showing up in the video info dialog. Only the filter options "streaming services" or "none" are showing the entries at the bottom of the info dialog, but they are showing stuff I don't have in my library. Also, I cannot activate "advanced video info dialog" if that has sth. to do with this issue...? Thanks again
For better integration with the local library, it is necessary to turn on option in the tmdb helper:
"Get additional details from the local kodi library database".
What is "advanced video info dialog"?