Ubuntu Pastebin Paste from kodi at Tue, 20 Sep 2016 23:15:33 +0000 Download as text 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 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 01:10:16 T:1105196928 NOTICE: special://profile/ is mapped to: special://masterprofile/ 01:10:16 T:1105196928 NOTICE: ----------------------------------------------------------------------- 01:10:16 T:1105196928 NOTICE: Starting Kodi (17.0-BETA2 Git:20160917-aa5d1e5). Platform: Android ARM 32-bit 01:10:16 T:1105196928 NOTICE: Using Release Kodi x32 build 01:10:16 T:1105196928 NOTICE: Kodi compiled Sep 17 2016 by GCC 4.8.0 for Android ARM 32-bit API level 17 (API level 17) 01:10:16 T:1105196928 NOTICE: Running on Amazon AFTM with Android 5.1.1 API level 22, kernel: Linux ARM 32-bit version 3.0.31+ 01:10:16 T:1105196928 NOTICE: FFmpeg statically linked, version: 3.1.3-kodi-3.1.3-Krypton-Beta3 01:10:16 T:1105196928 NOTICE: Host CPU: ARMv7 Processor rev 0 (v7l), 2 cores available 01:10:16 T:1105196928 NOTICE: Product: montoya, Device: montoya, Board: capri - Manufacturer: Amazon, Brand: Amazon, Model: AFTM, Hardware: montoya 01:10:16 T:1105196928 NOTICE: External storage path = /storage/emulated/0; status = ok 01:10:16 T:1105196928 NOTICE: ARM Features: Neon enabled 01:10:16 T:1105196928 NOTICE: special://xbmc/ is mapped to: /data/data/org.xbmc.kodi/cache/apk/assets 01:10:16 T:1105196928 NOTICE: special://xbmcbin/ is mapped to: /data/data/org.xbmc.kodi/cache/apk/assets 01:10:16 T:1105196928 NOTICE: special://xbmcbinaddons/ is mapped to: /data/app/org.xbmc.kodi-1/lib/arm 01:10:16 T:1105196928 NOTICE: special://masterprofile/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata 01:10:16 T:1105196928 NOTICE: special://envhome/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files 01:10:16 T:1105196928 NOTICE: special://home/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi 01:10:16 T:1105196928 NOTICE: special://temp/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp 01:10:16 T:1105196928 NOTICE: special://logpath/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp 01:10:16 T:1105196928 NOTICE: The executable running is: 01:10:16 T:1105196928 NOTICE: Local hostname: localhost 01:10:16 T:1105196928 NOTICE: Log File is located: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp//kodi.log 01:10:16 T:1105196928 NOTICE: ----------------------------------------------------------------------- 01:10:16 T:1105196928 NOTICE: load settings... 01:10:16 T:1105196928 DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/settings.xml 01:10:16 T:1105196928 WARNING: CSettingInt: unknown options filler "audiocdactions" of "audiocds.autoaction" 01:10:16 T:1105196928 DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/android.xml 01:10:16 T:1105196928 DEBUG: AESinkAUDIOTRACK - 32000 supported 01:10:16 T:1105196928 DEBUG: AESinkAUDIOTRACK - 44100 supported 01:10:16 T:1105196928 DEBUG: AESinkAUDIOTRACK - 48000 supported 01:10:16 T:1105196928 DEBUG: AESinkAUDIOTRACK - 96000 supported 01:10:16 T:1105196928 NOTICE: Found 1 Lists of Devices 01:10:16 T:1105196928 NOTICE: Enumerated AUDIOTRACK devices: 01:10:16 T:1105196928 NOTICE: Device 1 01:10:16 T:1105196928 NOTICE: m_deviceName : AudioTrack 01:10:16 T:1105196928 NOTICE: m_displayName : android 01:10:16 T:1105196928 NOTICE: m_displayNameExtra: audiotrack 01:10:16 T:1105196928 NOTICE: m_deviceType : AE_DEVTYPE_HDMI 01:10:16 T:1105196928 NOTICE: m_channels : FL,FR,FC,LFE,BL,BR,SL,SR 01:10:16 T:1105196928 NOTICE: m_sampleRates : 32000,44100,48000,96000 01:10:16 T:1105196928 NOTICE: m_dataFormats : AE_FMT_S16LE,AE_FMT_RAW 01:10:16 T:1105196928 NOTICE: m_streamTypes : STREAM_TYPE_AC3,STREAM_TYPE_EAC3 01:10:16 T:1105196928 DEBUG: CSkinSettings: no tag found 01:10:16 T:1105196928 NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml) 01:10:16 T:1105196928 NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml) 01:10:16 T:1105196928 NOTICE: Default Video Player: VideoPlayer 01:10:16 T:1105196928 NOTICE: Default Audio Player: paplayer 01:10:16 T:1105196928 NOTICE: Enabled debug logging due to GUI setting (2) 01:10:16 T:1105196928 NOTICE: Log level changed to "LOG_LEVEL_DEBUG_FREEMEM" 01:10:16 T:1105196928 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml. 01:10:16 T:1105196928 DEBUG: CPlayerCoreConfig::: created player VideoPlayer 01:10:16 T:1105196928 DEBUG: CPlayerCoreConfig::: created player PAPlayer 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: system rules 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mms/udp 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: lastfm/shout 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtmp 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtsp 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: streams 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: aacp/sdp 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mp2 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvd 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvdimage 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: sdp/asf 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: nsv 01:10:16 T:1105196928 DEBUG: CPlayerSelectionRule::Initialize: creating rule: radio 01:10:16 T:1105196928 NOTICE: Loaded playercorefactory configuration 01:10:16 T:1105196928 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml. 01:10:16 T:1105196928 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping. 01:10:16 T:1105196928 NOTICE: void CWakeOnAccess::LoadFromXML() - unable to load:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/wakeonlan.xml 01:10:16 T:1105196928 INFO: creating subdirectories 01:10:16 T:1105196928 INFO: userdata folder: special://masterprofile/ 01:10:16 T:1105196928 INFO: recording folder: 01:10:16 T:1105196928 INFO: screenshots folder: 01:10:16 T:1105196928 NOTICE: Running database version Addons26 01:10:16 T:1105196928 DEBUG: SECTION:LoadDLL(libcpluff-arm.so) 01:10:16 T:1105196928 DEBUG: Loading: /data/app/org.xbmc.kodi-1/lib/arm/libcpluff-arm.so 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.json has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.fanart.tv has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in resource.images.weathericons.default has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in repository.tva.common has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.audioencoder has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in webinterface.default has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in kodi.audiodecoder has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in repository.xbmc.org has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in kodi.guilib has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.black has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in kodi.peripheral has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.xbmc.builtin.wma has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in kodi.adsp has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in game.controller.default has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in script.module.simplejson has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.dim has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in kodi.game has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.themoviedb.org has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.metadata has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in service.xbmc.versioncheck has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in script.module.myconnpy has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in script.module.addon.common has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in plugin.program.advancedsettings has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in repository.xstream has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in kodi.resource has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in script.module.pil has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.gui has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.core has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in skin.estouchy has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in kodi.inputstream has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.pvr has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in script.module.urlresolver has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.xbmc.builtin.aac has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.album.universal has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.htbackdrops.com has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in resource.language.en_gb has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.allmusic.com has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.tvdb.com has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.xstream has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.musicbrainz.org has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.local has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.webinterface has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in resource.uisounds.confluence has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in script.module.mechanize has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.themoviedb.org has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in resource.language.de_de has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.theaudiodb.com has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.artists.universal has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.python has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.imdb.com has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.addon has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in xbmc.codec has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in skin.estuary has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Plug-in script.module.metahandler has been installed.' 01:10:16 T:1105196928 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.' 01:10:16 T:1105407336 DEBUG: Thread JobWorker start, auto delete: true 01:10:16 T:1105196928 NOTICE: ADDONS: Using repository repository.xbmc.org 01:10:16 T:1105196928 NOTICE: ADDONS: Using repository repository.xstream 01:10:16 T:1105196928 NOTICE: ADDONS: Using repository repository.tva.common 01:10:16 T:1106056440 DEBUG: Thread ActiveAE start, auto delete: false 01:10:16 T:1105375584 DEBUG: Thread AESink start, auto delete: false 01:10:16 T:1105375584 INFO: CActiveAESink::OpenSink - initialize sink 01:10:16 T:1105375584 DEBUG: CActiveAESink::OpenSink - trying to open device AUDIOTRACK:AudioTrack 01:10:16 T:1105375584 DEBUG: CAESinkAUDIOTRACK::Initialize requested: sampleRate 44100; format: AE_FMT_FLOAT; channels: 2 01:10:16 T:1105375584 DEBUG: Minimum size we need for stream: 21168 01:10:16 T:1105375584 DEBUG: Created Audiotrackbuffer with playing time of 120.000000 ms min buffer size: 42336 bytes 01:10:16 T:1105375584 DEBUG: CAESinkAUDIOTRACK::Initialize returned: m_sampleRate 44100; format:AE_FMT_FLOAT; min_buffer_size 42336; m_frames 2646; m_frameSize 8; channels: 2 01:10:16 T:1105375584 DEBUG: CActiveAESink::OpenSink - AUDIOTRACK Initialized: 01:10:16 T:1105375584 DEBUG: Output Device : android 01:10:16 T:1105375584 DEBUG: Sample Rate : 44100 01:10:16 T:1105375584 DEBUG: Sample Format : AE_FMT_FLOAT 01:10:16 T:1105375584 DEBUG: Channel Count : 2 01:10:16 T:1105375584 DEBUG: Channel Layout: FL,FR 01:10:16 T:1105375584 DEBUG: Frames : 2646 01:10:16 T:1105375584 DEBUG: Frame Size : 8 01:10:16 T:1105196928 INFO: CKeyboardLayoutManager: loading keyboard layouts from special://xbmc/system/keyboardlayouts... 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian ЙЦУКЕН" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian АБВ" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BasePY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BaiduPY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian ЙЦУКЕН" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian АБВ" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "English QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "English AZERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "English ABC" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Danish QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Swedish QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Portuguese (Portugal) QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "French AZERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Norwegian QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Polish QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Romanian QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Spanish QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Korean ㄱㄴㄷ" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "German QWERTZ" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Arabic QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Turkish QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew ABC" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Czech QWERTZ" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian AZERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Greek QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Silesian QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Hungarian QWERTZ" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian ЯВЕРТЪ" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian АБВ" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTZ" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTY" successfully loaded 01:10:16 T:1105196928 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak ABC" successfully loaded 01:10:16 T:1105196928 NOTICE: virtual bool CWinSystemEGL::InitWindowSystem(): Using EGL Implementation: android 01:10:16 T:1105196928 NOTICE: CEGLNativeTypeAndroid: Switching to resolution: 01:10:16 T:1105196928 DEBUG: CEGLNativeTypeAndroid: Current display refresh rate: 59.999996 01:10:16 T:1105196928 DEBUG: bool CWinSystemEGL::CreateWindow(RESOLUTION_INFO&): Created surface of size 1920x1080 01:10:16 T:1105196928 DEBUG: CEGLNativeTypeAndroid: Current display refresh rate: 59.999996 01:10:16 T:1105196928 NOTICE: Current resolution: 1920x1080 @ 60.00 - Full Screen 01:10:16 T:1105196928 DEBUG: CEGLNativeTypeAndroid: Current display refresh rate: 59.999996 01:10:16 T:1105196928 NOTICE: Current resolution: 1920x1080 @ 60.00 - Full Screen 01:10:16 T:1105196928 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 59.999996 Hz 01:10:16 T:1105196928 NOTICE: Found (1920x1080@59.999996) at 16, setting to RES_DESKTOP at 16 01:10:16 T:1105196928 NOTICE: Checking resolution 16 01:10:16 T:1105196928 DEBUG: CEGLNativeTypeAndroid: Current display refresh rate: 59.999996 01:10:16 T:1105196928 NOTICE: Current resolution: 1920x1080 @ 60.00 - Full Screen 01:10:16 T:1105375584 DEBUG: Draining Audio 01:10:16 T:1105196928 NOTICE: CEGLNativeTypeAndroid: Switching to resolution: 1920x1080 @ 60.00 - Full Screen 01:10:16 T:1105196928 DEBUG: CEGLNativeTypeAndroid: Current display refresh rate: 59.999996 01:10:16 T:1105196928 DEBUG: bool CWinSystemEGL::CreateWindow(RESOLUTION_INFO&): Created surface of size 1920x1080 01:10:16 T:1105196928 NOTICE: GL_VENDOR = Broadcom 01:10:16 T:1105196928 NOTICE: GL_RENDERER = VideoCore IV HW 01:10:16 T:1105196928 NOTICE: GL_VERSION = OpenGL ES 2.0 01:10:16 T:1105196928 NOTICE: GL_SHADING_LANGUAGE_VERSION = OpenGL ES GLSL ES 1.00 01:10:16 T:1105196928 DEBUG: GLES: Extension Support Test - GL_NVX_gpu_memory_info NO 01:10:16 T:1105196928 NOTICE: GL_EXTENSIONS = GL_OES_compressed_ETC1_RGB8_texture GL_OES_compressed_paletted_texture GL_OES_texture_npot GL_OES_depth24 GL_OES_vertex_half_float GL_OES_EGL_image GL_OES_EGL_image_external GL_EXT_discard_framebuffer GL_OES_rgb8_rgba8 GL_OES_depth32 GL_OES_packed_depth_stencil GL_EXT_texture_format_BGRA8888 GL_EXT_debug_marker 01:10:16 T:1105196928 DEBUG: GLES: Extension Support Test - GL_EXT_texture_format_BGRA8888 YES 01:10:16 T:1105196928 DEBUG: GLES: Extension Support Test - GL_IMG_texture_format_BGRA8888 NO 01:10:16 T:1105196928 DEBUG: GLES: Extension Support Test - GL_APPLE_texture_format_BGRA8888 NO 01:10:16 T:1106056440 DEBUG: CActiveAE - display reset event 01:10:16 T:1105375584 INFO: CActiveAESink::OpenSink - initialize sink 01:10:16 T:1105375584 DEBUG: CActiveAESink::OpenSink - trying to open device AUDIOTRACK:AudioTrack 01:10:16 T:1105375584 DEBUG: CAESinkAUDIOTRACK::Initialize requested: sampleRate 44100; format: AE_FMT_FLOAT; channels: 2 01:10:16 T:1105375584 DEBUG: Minimum size we need for stream: 21168 01:10:16 T:1105375584 DEBUG: Created Audiotrackbuffer with playing time of 120.000000 ms min buffer size: 42336 bytes 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:16 T:1105375584 DEBUG: CAESinkAUDIOTRACK::Initialize returned: m_sampleRate 44100; format:AE_FMT_FLOAT; min_buffer_size 42336; m_frames 2646; m_frameSize 8; channels: 2 01:10:16 T:1105375584 DEBUG: CActiveAESink::OpenSink - AUDIOTRACK Initialized: 01:10:16 T:1105375584 DEBUG: Output Device : android 01:10:16 T:1105375584 DEBUG: Sample Rate : 44100 01:10:16 T:1105375584 DEBUG: Sample Format : AE_FMT_FLOAT 01:10:16 T:1105375584 DEBUG: Channel Count : 2 01:10:16 T:1105375584 DEBUG: Channel Layout: FL,FR 01:10:16 T:1105375584 DEBUG: Frames : 2646 01:10:16 T:1105375584 DEBUG: Frame Size : 8 01:10:16 T:1106056440 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted 01:10:16 T:1105196928 DEBUG: GUI Shader [guishader_frag_default.glsl]- Initialise successful : 0x4203c9a8 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GUI Shader [guishader_frag_texture.glsl]- Initialise successful : 0x42038ad0 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GUI Shader [guishader_frag_multi.glsl]- Initialise successful : 0x42033a78 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GUI Shader [guishader_frag_fonts.glsl]- Initialise successful : 0x41e7e058 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GUI Shader [guishader_frag_texture_noblend.glsl]- Initialise successful : 0x41e7e698 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GUI Shader [guishader_frag_multi_blendcolor.glsl]- Initialise successful : 0x42035050 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GUI Shader [guishader_frag_rgba.glsl]- Initialise successful : 0x41e86e38 01:10:16 T:1105196928 DEBUG: GLES: Extension Support Test - GL_OES_EGL_image_external YES 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:16 T:1105196928 DEBUG: Compiled 01:10:16 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:16 T:1105196928 DEBUG: GUI Shader [guishader_frag_rgba_oes.glsl]- Initialise successful : 0x41f52d20 01:10:17 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:17 T:1105196928 DEBUG: Compiled 01:10:17 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:17 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:17 T:1105196928 DEBUG: Compiled 01:10:17 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:17 T:1105196928 DEBUG: GUI Shader [guishader_frag_rgba_blendcolor.glsl]- Initialise successful : 0x41f37c30 01:10:17 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:17 T:1105196928 DEBUG: Compiled 01:10:17 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:17 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:17 T:1105196928 DEBUG: Compiled 01:10:17 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:17 T:1105196928 DEBUG: GUI Shader [guishader_frag_rgba_bob.glsl]- Initialise successful : 0x42001258 01:10:17 T:1105196928 DEBUG: GLES: Extension Support Test - GL_OES_EGL_image_external YES 01:10:17 T:1105196928 DEBUG: GL: Vertex Shader compilation log: 01:10:17 T:1105196928 DEBUG: Compiled 01:10:17 T:1105196928 DEBUG: GL: Vertex Shader compiled successfully 01:10:17 T:1105196928 DEBUG: GL: Pixel Shader compilation log: 01:10:17 T:1105196928 DEBUG: Compiled 01:10:17 T:1105196928 DEBUG: GL: Fragment Shader compiled successfully 01:10:17 T:1105196928 DEBUG: GUI Shader [guishader_frag_rgba_bob_oes.glsl]- Initialise successful : 0x420042d0 01:10:17 T:1105196928 DEBUG: CEGLNativeTypeAndroid: Current display refresh rate: 59.999996 01:10:17 T:1105196928 NOTICE: Current resolution: 1920x1080 @ 60.00 - Full Screen 01:10:17 T:1105196928 DEBUG: CWinSystemEGL::CreateNewWindow: No need to create a new window 01:10:17 T:1105196928 INFO: GLES: Maximum texture width: 2048 01:10:17 T:1105196928 INFO: GLES: Enabling VSYNC 01:10:17 T:1105196928 INFO: GLES: Selected vsync mode 10 01:10:17 T:1105196928 INFO: load keymapping 01:10:17 T:1105196928 INFO: Loading special://xbmc/system/keymaps/appcommand.xml 01:10:17 T:1105196928 INFO: Loading special://xbmc/system/keymaps/customcontroller.AppleRemote.xml 01:10:17 T:1105196928 INFO: Loading special://xbmc/system/keymaps/customcontroller.Harmony.xml 01:10:17 T:1105196928 INFO: Loading special://xbmc/system/keymaps/gamepad.xml 01:10:17 T:1105196928 INFO: Loading special://xbmc/system/keymaps/joystick.xml 01:10:17 T:1105196928 INFO: Loading special://xbmc/system/keymaps/keyboard.xml 01:10:17 T:1105196928 INFO: Loading special://xbmc/system/keymaps/mouse.xml 01:10:17 T:1105196928 INFO: Loading special://xbmc/system/keymaps/remote.xml 01:10:17 T:1105196928 INFO: Loading special://xbmc/system/keymaps/touchscreen.xml 01:10:17 T:1105196928 INFO: GUI format 1920x1080, Display 1920x1080 @ 60.00 - Full Screen 01:10:17 T:1105196928 DEBUG: guilib: Fill viewport on change for solving rendering passes 01:10:17 T:1105196928 INFO: CLangInfo: loading resource.language.de_de language information... 01:10:17 T:1105196928 DEBUG: trying to set locale to de_BE.UTF-8 01:10:17 T:1105196928 INFO: global locale set to C 01:10:17 T:1105196928 INFO: CLangInfo: loading resource.language.de_de language strings... 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 3693 strings from file resource://resource.language.de_de/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 61 strings from file resource://resource.language.en_gb/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 1 strings from file /data/data/org.xbmc.kodi/cache/apk/assets/addons/audioencoder.xbmc.builtin.aac/resources/language/English/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 1 strings from file /data/data/org.xbmc.kodi/cache/apk/assets/addons/audioencoder.xbmc.builtin.wma/resources/language/English/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 18 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/game.controller.default/resources/language/resource.language.en_gb/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 11 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.album.universal/resources/language/German/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 2 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.album.universal/resources/language/English/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 23 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.artists.universal/resources/language/German/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 3 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.artists.universal/resources/language/English/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 7 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.themoviedb.org/resources/language/German/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 0 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.themoviedb.org/resources/language/English/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 5 strings from file /data/data/org.xbmc.kodi/cache/apk/assets/addons/metadata.tvdb.com/resources/language/German/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 2 strings from file /data/data/org.xbmc.kodi/cache/apk/assets/addons/metadata.tvdb.com/resources/language/English/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 1 strings from file /data/data/org.xbmc.kodi/cache/apk/assets/addons/screensaver.xbmc.builtin.dim/resources/language/resource.language.de_de/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 0 strings from file /data/data/org.xbmc.kodi/cache/apk/assets/addons/screensaver.xbmc.builtin.dim/resources/language/resource.language.en_gb/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 21 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/language/German/strings.po 01:10:17 T:1105196928 DEBUG: LocalizeStrings: loaded 0 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/language/English/strings.po 01:10:18 T:1105196928 DEBUG: LocalizeStrings: loaded 39 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.xstream/resources/language/German/strings.xml 01:10:18 T:1105196928 DEBUG: LocalizeStrings: loaded 0 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.xstream/resources/language/English/strings.xml 01:10:18 T:1105196928 DEBUG: LocalizeStrings: loaded 1 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/resources/language/English/strings.xml 01:10:18 T:1105196928 DEBUG: bool PERIPHERALS::CPeripherals::LoadMappings() - loaded node "Motorola Nyxboard Hybrid" 01:10:18 T:1105196928 DEBUG: bool PERIPHERALS::CPeripherals::LoadMappings() - loaded node "CEC Adapter" 01:10:18 T:1105196928 DEBUG: bool PERIPHERALS::CPeripherals::LoadMappings() - loaded node "Pulse-Eight CEC Adapter" 01:10:18 T:1105196928 DEBUG: bool PERIPHERALS::CPeripherals::LoadMappings() - loaded node "iMON HID device" 01:10:18 T:1105196928 DEBUG: bool PERIPHERALS::CPeripherals::LoadMappings() - loaded node "WETEK Play remote" 01:10:18 T:1105196928 DEBUG: bool PERIPHERALS::CPeripherals::LoadMappings() - loaded node "" 01:10:18 T:1105196928 DEBUG: PERIPHERALS::CPeripheralBusUSB::CPeripheralBusUSB(PERIPHERALS::CPeripherals*) - using libusb peripheral scanning 01:10:18 T:1105196928 DEBUG: SECTION:LoadDLL(libcec.so) 01:10:18 T:1105196928 DEBUG: Loading: /system/lib/libcec.so 01:10:18 T:1105196928 WARNING: Unable to resolve: /libcec.so CECInitialise, reason: undefined symbol: CECInitialise 01:10:18 T:1105196928 ERROR: Unable to resolve exports from dll libcec.so 01:10:18 T:1105196928 INFO: CPeripheralBusAndroid: scanning for input devices... 01:10:18 T:1105196928 DEBUG: CPeripheralBusAndroid: ignoring virtual input device "Virtual" with ID -1 01:10:18 T:1105196928 DEBUG: CPeripheralBusAndroid: ignoring unknown input device "amazon_touch" with ID 1 01:10:18 T:1105196928 DEBUG: CPeripheralBusAndroid: ignoring unknown input device "amazon-cec" with ID 2 01:10:18 T:1105196928 DEBUG: CPeripheralBusAndroid: ignoring unknown input device "kcmouse" with ID 3 01:10:18 T:1105196928 DEBUG: CPeripheralBusAndroid: ignoring unknown input device "Amazon Fire TV Remote" with ID 5 01:10:18 T:1171258288 DEBUG: Thread PeripBusUSB start, auto delete: false 01:10:18 T:1171466424 DEBUG: Thread PeripBusCEC start, auto delete: false 01:10:18 T:1171466424 DEBUG: Thread PeripBusCEC 1171466424 terminating 01:10:18 T:1171218992 DEBUG: Thread PeripBusAddon start, auto delete: false 01:10:18 T:1105196928 DEBUG: SECTION:LoadDLL(libcurl.so) 01:10:18 T:1171219576 DEBUG: Thread PeripEventScanner start, auto delete: false 01:10:18 T:1105196928 DEBUG: Loading: /data/app/org.xbmc.kodi-1/lib/arm/libcurl.so 01:10:18 T:1105196928 NOTICE: Running database version Addons26 01:10:18 T:1105196928 DEBUG: void CDatabaseManager::Initialize(bool), updating databases... 01:10:18 T:1105196928 NOTICE: Running database version ViewModes6 01:10:18 T:1105196928 NOTICE: Running database version Textures13 01:10:18 T:1105196928 NOTICE: Running database version MyMusic60 01:10:18 T:1105196928 NOTICE: Running database version MyVideos107 01:10:18 T:1105196928 NOTICE: Running database version TV29 01:10:18 T:1105196928 NOTICE: Running database version Epg11 01:10:18 T:1105196928 DEBUG: void CDatabaseManager::Initialize(bool), updating databases... DONE 01:10:18 T:1105196928 INFO: DPMS: not supported on this platform 01:10:18 T:1105206256 DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc 01:10:18 T:1105206256 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear 01:10:18 T:1105196928 DEBUG: Activating window ID: 12997 01:10:18 T:1105196928 DEBUG: ------ Window Init () ------ 01:10:18 T:1105196928 INFO: load splash image: /data/data/org.xbmc.kodi/cache/apk/assets/media/Splash.png 01:10:18 T:1105196928 INFO: Unloading old skin ... 01:10:18 T:1105196928 INFO: load skin from: /data/data/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary (version: 0.8.5) 01:10:18 T:1105196928 INFO: load fonts for skin... 01:10:18 T:1105196928 INFO: Loading fonts from /data/data/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/1080i/Font.xml 01:10:18 T:1105196928 DEBUG: LocalizeStrings: loaded 135 strings from file /data/data/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/language/resource.language.de_de/strings.po 01:10:18 T:1105196928 DEBUG: POParser: id:31018 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 01:10:18 T:1105196928 DEBUG: LocalizeStrings: loaded 11 strings from file /data/data/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/language/resource.language.en_gb/strings.po 01:10:18 T:1105196928 INFO: Loading skin includes from /data/data/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/1080i/Includes.xml 01:10:18 T:1105196928 INFO: load new skin... 01:10:18 T:1105196928 INFO: Loading user windows, path /data/data/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/1080i 01:10:18 T:1105196928 DEBUG: Load Skin XML: 47.42ms 01:10:18 T:1105196928 INFO: initialize new skin... 01:10:18 T:1105196928 DEBUG: guilib: Fill viewport on change for solving rendering passes 01:10:18 T:1105196928 INFO: Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT 01:10:18 T:1105196928 DEBUG: bool CTextureBundleXBT::OpenBundle() - Opened bundle /data/data/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/media/Textures.xbt 01:10:18 T:1105196928 INFO: Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT 01:10:18 T:1105196928 INFO: Loading skin file: DialogNotification.xml, load type: LOAD_ON_GUI_INIT 01:10:18 T:1105196928 INFO: Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT 01:10:18 T:1105196928 INFO: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT 01:10:18 T:1105196928 INFO: Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT 01:10:18 T:1105196928 INFO: Loading resource://resource.uisounds.confluence/sounds.xml 01:10:18 T:1105196928 INFO: skin loaded... 01:10:19 T:1105196928 DEBUG: JSONRPC: JSON schema type definition references an unknown type Setting.Details.Setting 01:10:19 T:1105196928 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList" 01:10:19 T:1105196928 INFO: JSONRPC: Adding type "Setting.Details.SettingList" to list of incomplete definitions (waiting for "Setting.Details.Setting") 01:10:19 T:1105196928 INFO: JSONRPC: Resolving incomplete types/methods referencing Setting.Details.Setting 01:10:19 T:1105196928 ERROR: JSONRPC: Unable to parse JSON Schema definition for "" 01:10:19 T:1105196928 ERROR: JSONRPC: Invalid JSON Schema definition for method "" 01:10:19 T:1105196928 INFO: JSONRPC v7.21.0: Successfully initialized 01:10:19 T:1105196928 DEBUG: ADDON: Starting service addons. 01:10:19 T:1105196928 DEBUG: Activating window ID: 12999 01:10:19 T:1390103376 DEBUG: Thread LanguageInvoker start, auto delete: false 01:10:19 T:1105196928 DEBUG: ------ Window Init (Startup.xml) ------ 01:10:19 T:1105196928 INFO: Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME 01:10:19 T:1390103376 INFO: initializing python engine. 01:10:19 T:1105196928 DEBUG: Activating window ID: 10000 01:10:19 T:1105196928 DEBUG: ------ Window Deinit (Startup.xml) ------ 01:10:19 T:1105196928 DEBUG: ------ Window Init (Home.xml) ------ 01:10:19 T:1105196928 INFO: Loading skin file: Home.xml, load type: KEEP_IN_MEMORY 01:10:19 T:1390103376 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): start processing 01:10:19 T:1390103376 DEBUG: -->Python Interpreter Initialized<-- 01:10:19 T:1390103376 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py" 01:10:19 T:1390103376 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:10:19 T:1390103376 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck 01:10:19 T:1390103376 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): instantiating addon using automatically obtained id of "service.xbmc.versioncheck" dependent on version 2.1.0 of the xbmc.python api 01:10:19 T:1390103376 DEBUG: Version Check: Version 0.3.19 started 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[special://skin/playlists/inprogress_movies.xsp]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[videodb://recentlyaddedmovies/]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_movies.xsp]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[special://skin/playlists/random_movies.xsp]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[videodb://inprogresstvshows]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[videodb://recentlyaddedepisodes/]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_tvshows.xsp]: refreshing.. 01:10:19 T:1391842640 DEBUG: Thread JobWorker start, auto delete: true 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[musicdb://recentlyplayedalbums]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[musicdb://recentlyaddedalbums/]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[special://skin/playlists/random_albums.xsp]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[special://skin/playlists/random_artists.xsp]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[special://skin/playlists/unplayed_albums.xsp]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[special://skin/playlists/mostplayed_albums.xsp]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[androidapp://sources/apps/]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[sources://video/]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[special://videoplaylists/]: refreshing.. 01:10:19 T:1392164920 DEBUG: Thread JobWorker start, auto delete: true 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[pvr://channels/tv/*?view=lastplayed]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[pvr://recordings/tv/active?view=flat]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[pvr://channels/radio/*?view=lastplayed]: refreshing.. 01:10:19 T:1105196928 DEBUG: CDirectoryProvider[pvr://recordings/radio/active?view=flat]: refreshing.. 01:10:19 T:1391842640 DEBUG: int CVideoDatabase::RunQuery(const string&) took 8 ms for 0 items query: select * from movie_view ORDER BY dateAdded desc, idMovie desc LIMIT 25 01:10:19 T:1105407336 DEBUG: int CVideoDatabase::RunQuery(const string&) took 12 ms for 0 items query: select * from movie_view WHERE (movie_view.idFile IN (SELECT DISTINCT idFile FROM bookmark WHERE type = 1)) 01:10:19 T:1105407336 DEBUG: int CVideoDatabase::RunQuery(const string&) took 9 ms for 0 items query: SELECT * FROM tvshow_view WHERE watchedCount != 0 AND totalCount != watchedCount ORDER BY c00 01:10:20 T:1391842640 DEBUG: int CVideoDatabase::RunQuery(const string&) took 11 ms for 0 items query: select * from movie_view 01:10:20 T:1392164920 DEBUG: int CVideoDatabase::RunQuery(const string&) took 8 ms for 0 items query: select * from movie_view WHERE ((movie_view.playCount IS NULL OR movie_view.playCount = 0)) 01:10:20 T:1105407336 DEBUG: int CVideoDatabase::RunQuery(const string&) took 11 ms for 0 items query: select * from episode_view ORDER BY dateAdded desc, idEpisode desc LIMIT 25 01:10:20 T:1391842640 DEBUG: bool CMusicDatabase::GetRecentlyPlayedAlbums(VECALBUMS&) query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM albumview WHERE albumview.lastplayed IS NOT NULL ORDER BY albumview.lastplayed DESC LIMIT 25) as playedalbums JOIN albumview ON albumview.idAlbum = playedalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.lastplayed DESC, albumartistview.iorder 01:10:20 T:1105407336 DEBUG: bool CMusicDatabase::GetRecentlyAddedAlbums(VECALBUMS&, unsigned int) query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM album WHERE strAlbum != '' ORDER BY idAlbum DESC LIMIT 25) AS recentalbums JOIN albumview ON albumview.idAlbum = recentalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.idAlbum desc, albumartistview.iOrder 01:10:20 T:1392164920 DEBUG: int CVideoDatabase::RunQuery(const string&) took 15 ms for 0 items query: SELECT * FROM tvshow_view WHERE ((tvshow_view.watchedcount = 0)) AND ((tvshow_view.totalCount > 0)) 01:10:20 T:1391842640 DEBUG: bool CMusicDatabase::GetAlbumsByWhere(const string&, const CDatabase::Filter&, CFileItemList&, const SortDescription&, bool) query: SELECT albumview.* FROM albumview WHERE albumview.strReleaseType = 'album' 01:10:20 T:1105407336 DEBUG: bool CMusicDatabase::GetArtistsByWhere(const string&, const CDatabase::Filter&, CFileItemList&, const SortDescription&, bool) query: SELECT artistview.* FROM artistview WHERE (artistview.idArtist IN (SELECT album_artist.idArtist FROM album_artist ) OR artistview.idArtist IN (SELECT song_artist.idArtist FROM song_artist WHERE song_artist.idRole = 1)) and artistview.strArtist != '' and artistview.strArtist <> 'Verschiedene Interpreten' 01:10:20 T:1105407336 DEBUG: Time to retrieve artists from dataset = 16 01:10:20 T:1391842640 DEBUG: bool CMusicDatabase::GetAlbumsByWhere(const string&, const CDatabase::Filter&, CFileItemList&, const SortDescription&, bool) - query took 4 ms 01:10:20 T:1392164920 DEBUG: bool CMusicDatabase::GetAlbumsByWhere(const string&, const CDatabase::Filter&, CFileItemList&, const SortDescription&, bool) query: SELECT albumview.* FROM albumview WHERE (albumview.strReleaseType = 'album') AND (((CAST(albumview.iTimesPlayed as DECIMAL(5,1)) = 0))) 01:10:20 T:1392164920 DEBUG: bool CMusicDatabase::GetAlbumsByWhere(const string&, const CDatabase::Filter&, CFileItemList&, const SortDescription&, bool) - query took 1 ms 01:10:20 T:1105407336 DEBUG: bool CMusicDatabase::GetAlbumsByWhere(const string&, const CDatabase::Filter&, CFileItemList&, const SortDescription&, bool) query: SELECT albumview.* FROM albumview WHERE (albumview.strReleaseType = 'album') AND (((CAST(albumview.iTimesPlayed as DECIMAL(5,1)) > 0))) 01:10:20 T:1105407336 DEBUG: bool CMusicDatabase::GetAlbumsByWhere(const string&, const CDatabase::Filter&, CFileItemList&, const SortDescription&, bool) - query took 1 ms 01:10:20 T:1391842640 DEBUG: CAndroidAppDirectory::GetDirectory: apps 01:10:20 T:1105196928 DEBUG: ContextMenuManager: addon menus reloaded. 01:10:20 T:1105196928 INFO: removing tempfiles 01:10:20 T:1105196928 DEBUG: ADDON: Starting service addons. 01:10:20 T:1105407336 DEBUG: CMultiPathDirectory::GetDirectory(multipath://special%3A%2F%2Fprofile%2Fplaylists%2Fvideo/special%3A%2F%2Fprofile%2Fplaylists%2Fmixed/) 01:10:20 T:1105407336 DEBUG: Getting Directory (special://profile/playlists/video) 01:10:20 T:1105407336 DEBUG: Getting Directory (special://profile/playlists/mixed) 01:10:20 T:1105407336 DEBUG: CMultiPathDirectory::MergeItems, items = 0 01:10:20 T:1105407336 DEBUG: CPVRDirectory::GetDirectory(pvr://channels/tv/*?view=lastplayed) 01:10:20 T:1105407336 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting pvr://channels/tv/*?view=lastplayed 01:10:20 T:1105407336 DEBUG: CPVRDirectory::GetDirectory(pvr://recordings/tv/active?view=flat) 01:10:20 T:1105407336 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting pvr://recordings/tv/active?view=flat 01:10:20 T:1105407336 DEBUG: CPVRDirectory::GetDirectory(pvr://channels/radio/*?view=lastplayed) 01:10:20 T:1105407336 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting pvr://channels/radio/*?view=lastplayed 01:10:20 T:1105407336 DEBUG: CPVRDirectory::GetDirectory(pvr://recordings/radio/active?view=flat) 01:10:20 T:1105407336 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting pvr://recordings/radio/active?view=flat 01:10:20 T:1105407336 DEBUG: CRecentlyAddedJob::UpdateMusic() - Running RecentlyAdded home screen update 01:10:20 T:1105407336 DEBUG: GetRecentlyAddedAlbumSongs() query: SELECT songview.*, songartistview.* FROM (SELECT idAlbum FROM album ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN songview ON songview.idAlbum = recentalbums.idAlbum JOIN songartistview ON songview.idSong = songartistview.idSong ORDER BY songview.idAlbum desc, songview.itrack, songartistview.iOrder 01:10:20 T:1105407336 DEBUG: bool CMusicDatabase::GetRecentlyAddedAlbums(VECALBUMS&, unsigned int) query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM album WHERE strAlbum != '' ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN albumview ON albumview.idAlbum = recentalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.idAlbum desc, albumartistview.iOrder 01:10:20 T:1105407336 DEBUG: CRecentlyAddedJob::UpdateVideos() - Running RecentlyAdded home screen update 01:10:20 T:1105407336 DEBUG: int CVideoDatabase::RunQuery(const string&) took 6 ms for 0 items query: select * from movie_view ORDER BY dateAdded desc, idMovie desc LIMIT 10 01:10:20 T:1105407336 DEBUG: int CVideoDatabase::RunQuery(const string&) took 6 ms for 0 items query: select * from episode_view ORDER BY dateAdded desc, idEpisode desc LIMIT 10 01:10:20 T:1105407336 DEBUG: int CVideoDatabase::RunQuery(const string&) took 4 ms for 0 items query: select * from musicvideo_view ORDER BY dateAdded desc, idMVideo desc LIMIT 10 01:10:20 T:1105407336 DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update 01:10:20 T:1105407336 DEBUG: bool CMusicDatabase::GetArtistsByWhere(const string&, const CDatabase::Filter&, CFileItemList&, const SortDescription&, bool) query: SELECT COUNT(DISTINCT artistview.idArtist) FROM artistview WHERE (artistview.idArtist IN (SELECT album_artist.idArtist FROM album_artist ) OR artistview.idArtist IN (SELECT song_artist.idArtist FROM song_artist WHERE song_artist.idRole = 1)) and artistview.strArtist != '' and artistview.strArtist <> 'Verschiedene Interpreten' 01:10:20 T:1105196928 DEBUG: CRepositoryUpdater: previous update at 21.09.2016 01:01:54, next at 22.09.2016 01:01:54 01:10:20 T:1105196928 NOTICE: initialize done 01:10:20 T:1105196928 NOTICE: Running the application... 01:10:20 T:1392418264 DEBUG: Thread Timer start, auto delete: false 01:10:20 T:1105196928 DEBUG: no profile autoexec.py (/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/autoexec.py) found, skipping 01:10:20 T:1105196928 DEBUG: void CNetwork::NetworkMessage(CNetwork::EMESSAGE, int) - Starting network services 01:10:20 T:1105196928 NOTICE: starting upnp client 01:10:20 T:1392755824 DEBUG: Thread EventServer start, auto delete: false 01:10:20 T:1392755824 NOTICE: ES: Starting UDP Event server on port 9777 01:10:20 T:1392755824 NOTICE: UDP: Listening on port 9777 (ipv6 : false) 01:10:20 T:1105196928 INFO: JSONRPC Server: Successfully initialized 01:10:20 T:1393948800 DEBUG: Thread TCPServer start, auto delete: false 01:10:20 T:1105196928 DEBUG: CEGLNativeTypeAndroid: Current display refresh rate: 59.999996 01:10:20 T:1105196928 NOTICE: Current resolution: 1920x1080 @ 60.00 - Full Screen 01:10:20 T:1105196928 DEBUG: CWinSystemEGL::CreateNewWindow: No need to create a new window 01:10:20 T:1105196928 NOTICE: GL_VENDOR = Broadcom 01:10:20 T:1105196928 NOTICE: GL_RENDERER = VideoCore IV HW 01:10:20 T:1105196928 NOTICE: GL_VERSION = OpenGL ES 2.0 01:10:20 T:1105196928 NOTICE: GL_SHADING_LANGUAGE_VERSION = OpenGL ES GLSL ES 1.00 01:10:20 T:1105196928 DEBUG: GLES: Extension Support Test - GL_NVX_gpu_memory_info NO 01:10:20 T:1105196928 NOTICE: GL_EXTENSIONS = GL_OES_compressed_ETC1_RGB8_texture GL_OES_compressed_paletted_texture GL_OES_texture_npot GL_OES_depth24 GL_OES_vertex_half_float GL_OES_EGL_image GL_OES_EGL_image_external GL_EXT_discard_framebuffer GL_OES_rgb8_rgba8 GL_OES_depth32 GL_OES_packed_depth_stencil GL_EXT_texture_format_BGRA8888 GL_EXT_debug_marker 01:10:20 T:1105196928 DEBUG: GLES: Extension Support Test - GL_EXT_texture_format_BGRA8888 YES 01:10:20 T:1105196928 DEBUG: GLES: Extension Support Test - GL_IMG_texture_format_BGRA8888 NO 01:10:20 T:1105196928 DEBUG: GLES: Extension Support Test - GL_APPLE_texture_format_BGRA8888 NO 01:10:20 T:1105196928 DEBUG: GUI Shader - Tried to Initialise again. Was this intentional? 01:10:21 T:1105196928 DEBUG: ------ Window Init () ------ 01:10:21 T:1105196928 INFO: GLES: Enabling VSYNC 01:10:21 T:1105196928 INFO: GLES: Selected vsync mode 10 01:10:24 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:24 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:10:24 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:24 T:1390103376 DEBUG: Version Check: Version installed {u'major': 17, u'tag': u'beta', u'tagversion': u'2', u'minor': 0, u'revision': u'20160917-aa5d1e5'} 01:10:24 T:1390103376 INFO: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): script successfully run 01:10:24 T:1390103376 INFO: Python script stopped 01:10:24 T:1390103376 DEBUG: Thread LanguageInvoker 1390103376 terminating 01:10:25 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:25 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:10:25 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:26 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:26 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:10:26 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:26 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:26 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:10:26 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:26 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:26 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:10:26 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:27 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:27 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:10:27 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:27 T:1390337976 DEBUG: Thread JobWorker start, auto delete: true 01:10:27 T:1105407336 DEBUG: virtual bool CImageLoader::DoWork() - took 101 ms to load special://masterprofile/Thumbnails/f/fa5b4363.png 01:10:27 T:1392164920 DEBUG: virtual bool CImageLoader::DoWork() - took 112 ms to load androidapp://sources/apps/com.amazon.venezia.png 01:10:27 T:1391842640 DEBUG: virtual bool CImageLoader::DoWork() - took 188 ms to load androidapp://sources/apps/com.amazon.vizzini.png 01:10:27 T:1105407336 DEBUG: virtual bool CImageLoader::DoWork() - took 148 ms to load androidapp://sources/apps/com.amazon.bueller.photos.png 01:10:28 T:1390337976 DEBUG: virtual bool CImageLoader::DoWork() - took 318 ms to load androidapp://sources/apps/com.plexapp.android.png 01:10:28 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:28 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:28 T:1105196928 DEBUG: Activating window ID: 11100 01:10:28 T:1105196928 DEBUG: ------ Window Deinit (Home.xml) ------ 01:10:28 T:1105196928 DEBUG: ------ Window Init (Custom_1100_AddonLauncher.xml) ------ 01:10:28 T:1105196928 INFO: Loading skin file: Custom_1100_AddonLauncher.xml, load type: KEEP_IN_MEMORY 01:10:28 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 01:10:28 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 01:10:28 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 01:10:28 T:1105196928 DEBUG: CDirectoryProvider[androidapp://sources/apps/]: refreshing.. 01:10:28 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 01:10:28 T:1105196928 DEBUG: CDirectoryProvider[addons://outdated/]: refreshing.. 01:10:28 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:28 T:1390337976 DEBUG: CAndroidAppDirectory::GetDirectory: apps 01:10:29 T:1391842640 DEBUG: CAddonMgr::GetAvailableUpdates took 190 ms 01:10:29 T:1391842640 DEBUG: CAddonMgr::GetAvailableUpdates took 144 ms 01:10:29 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:29 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:30 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:30 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:30 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:30 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:30 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:30 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:30 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:31 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:31 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:31 T:1105407336 DEBUG: virtual bool CImageLoader::DoWork() - took 130 ms to load androidapp://sources/apps/com.amazon.ssm.png 01:10:31 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:31 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:31 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:31 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:31 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:31 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:31 T:1105196928 DEBUG: Activating window ID: 10040 01:10:32 T:1105196928 DEBUG: ------ Window Deinit (Custom_1100_AddonLauncher.xml) ------ 01:10:32 T:1105196928 DEBUG: ------ Window Init (AddonBrowser.xml) ------ 01:10:32 T:1105196928 INFO: Loading skin file: AddonBrowser.xml, load type: KEEP_IN_MEMORY 01:10:32 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:10:32 T:1105196928 DEBUG: ParentPath = [] 01:10:32 T:1105196928 DEBUG: CAddonMgr::GetAvailableUpdates took 114 ms 01:10:32 T:1399091840 DEBUG: Thread BackgroundLoader start, auto delete: false 01:10:32 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:32 T:1399091840 DEBUG: Thread BackgroundLoader 1399091840 terminating 01:10:33 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:33 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:33 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:33 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:33 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:34 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:34 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:34 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:34 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:34 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:34 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:34 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:34 T:1105196928 INFO: Python, unloading python shared library because no scripts are running anymore 01:10:34 T:1105196928 DEBUG: void XBPython::UnloadExtensionLibs(), clearing python extension libraries 01:10:34 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:35 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:35 T:1105196928 INFO: Loading skin file: FileBrowser.xml, load type: KEEP_IN_MEMORY 01:10:35 T:1105196928 DEBUG: ------ Window Init (FileBrowser.xml) ------ 01:10:36 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:36 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:10:36 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:10:36 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:36 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:37 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:10:37 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:38 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:10:38 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:38 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:39 T:1105196928 DEBUG: Previous line repeats 1 times. 01:10:39 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:10:39 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:10:39 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:39 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:39 T:1105407336 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://WORKGROUP/' unix_err:'16' error : 'Invalid argument' 01:10:39 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:10:39 T:1105196928 INFO: Loading skin file: DialogConfirm.xml, load type: KEEP_IN_MEMORY 01:10:40 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:40 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:40 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:41 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:10:41 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://WORKGROUP/ 01:10:41 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://WORKGROUP/) failed 01:10:41 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:10:41 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:41 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:10:43 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:43 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:43 T:1392164920 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://WORKGROUP/' unix_err:'16' error : 'Invalid argument' 01:10:43 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:10:44 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:44 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:44 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:44 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:10:44 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://WORKGROUP/ 01:10:44 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://WORKGROUP/) failed 01:10:45 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:10:45 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:45 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:10:48 T:1105196928 DEBUG: SECTION:UnloadDelayed(DLL: libcec.so) 01:10:48 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:48 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:48 T:1392164920 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://WORKGROUP/' unix_err:'16' error : 'Invalid argument' 01:10:48 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:10:49 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:49 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:10:49 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:49 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:10:49 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://WORKGROUP/ 01:10:49 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://WORKGROUP/) failed 01:10:50 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:10:50 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:10:50 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:11:02 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:02 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:02 T:1105407336 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://WORKGROUP/' unix_err:'16' error : 'Invalid argument' 01:11:02 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:11:02 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:02 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:02 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:03 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:11:03 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://WORKGROUP/ 01:11:03 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://WORKGROUP/) failed 01:11:03 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:11:03 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:04 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:11:06 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:06 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:06 T:1392164920 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://WORKGROUP/' unix_err:'16' error : 'Invalid argument' 01:11:06 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:11:07 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:07 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:07 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:07 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:11:07 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://WORKGROUP/ 01:11:07 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://WORKGROUP/) failed 01:11:08 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:11:08 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:08 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:11:09 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:11:09 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:11:10 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:11:10 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:10 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:10 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:12 T:1105196928 DEBUG: Previous line repeats 1 times. 01:11:12 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:12 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:11:12 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:12 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:11:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:13 T:1105196928 DEBUG: Previous line repeats 1 times. 01:11:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:13 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:11:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:11:14 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:11:14 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:14 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:15 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:15 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:15 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:15 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:15 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:16 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:11:16 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:16 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:11:17 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:17 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:17 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:17 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:17 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:17 T:1390337976 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://USER:PASSWORD@NASARECHNER/Neubert' unix_err:'16' error : 'Invalid argument' 01:11:17 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:11:18 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:18 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:18 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:19 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:11:19 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://NASARECHNER/Neubert/ 01:11:19 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://NASARECHNER/Neubert/) failed 01:11:19 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:20 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:20 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:21 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:21 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:21 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:21 T:1105407336 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://USER:PASSWORD@NASARECHNER/Users' unix_err:'16' error : 'Invalid argument' 01:11:21 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:11:22 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:22 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:22 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:23 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:11:23 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://NASARECHNER/Users/ 01:11:23 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://NASARECHNER/Users/) failed 01:11:23 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:24 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:11:24 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:11:24 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:11:25 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:25 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:26 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:34 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:34 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:34 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:35 T:1105196928 DEBUG: Previous line repeats 1 times. 01:11:35 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:35 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:36 T:1105196928 DEBUG: Previous line repeats 1 times. 01:11:36 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:36 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:36 T:1105196928 DEBUG: Previous line repeats 1 times. 01:11:36 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:37 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:38 T:1105196928 DEBUG: Previous line repeats 1 times. 01:11:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:38 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:38 T:1105196928 DEBUG: Previous line repeats 1 times. 01:11:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:38 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:45 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:45 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:45 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:45 T:1105196928 DEBUG: ------ Window Deinit (FileBrowser.xml) ------ 01:11:45 T:1105196928 DEBUG: CAddonInstaller: installing from zip 'smb://NASARECHNER/Neubert/repository.lunatixz-1.0.zip' 01:11:45 T:1105196928 DEBUG: CSMBFile::Open - opened smb://NASARECHNER/Neubert/repository.lunatixz-1.0.zip, fd=10000 01:11:45 T:1105196928 DEBUG: CSMBFile::Close closing fd 10000 01:11:45 T:1105196928 DEBUG: CSMBFile::Open - opened smb://NASARECHNER/Neubert/repository.lunatixz-1.0.zip, fd=10000 01:11:45 T:1105196928 DEBUG: CSMBFile::Close closing fd 10000 01:11:45 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:46 T:1105407336 DEBUG: CSMBFile::Open - opened smb://NASARECHNER/Neubert/repository.lunatixz-1.0.zip, fd=10000 01:11:46 T:1105407336 DEBUG: CSMBFile::Close closing fd 10000 01:11:46 T:1105407336 DEBUG: CSMBFile::Open - opened smb://NASARECHNER/Neubert/repository.lunatixz-1.0.zip, fd=10000 01:11:46 T:1105407336 DEBUG: CSMBFile::Close closing fd 10000 01:11:46 T:1105407336 DEBUG: ADDON: cpluff: 'Unknown plug-in repository.lunatixz could not be uninstalled.' 01:11:46 T:1105407336 DEBUG: ADDON: cpluff: 'Plug-in repository.lunatixz has been installed.' 01:11:46 T:1105407336 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.' 01:11:46 T:1105407336 DEBUG: CAddonDatabase: repository.lunatixz has been installed. 01:11:46 T:1392418264 DEBUG: Thread Timer 1392418264 terminating 01:11:46 T:1105407336 DEBUG: CRepositoryUpdater: previous update at 22.04.2009 19:24:48, next at 21.09.2016 01:11:46 01:11:46 T:1403486904 DEBUG: Thread Timer start, auto delete: false 01:11:46 T:1105407336 DEBUG: CAddonMgr: enabled repository.lunatixz 01:11:46 T:1403486904 DEBUG: CRepositoryUpdater: running scheduled update 01:11:46 T:1403486904 DEBUG: Thread Timer 1403486904 terminating 01:11:46 T:1391842640 DEBUG: ContextMenuManager: addon menus reloaded. 01:11:46 T:1391842640 DEBUG: CRepositoryUpdateJob[repository.xbmc.org] checking for updates. 01:11:46 T:1390337976 DEBUG: CRepositoryUpdateJob[repository.xstream] checking for updates. 01:11:46 T:1391842640 DEBUG: CFileCache::Open - opening using cache 01:11:46 T:1391842640 DEBUG: CurlFile::Open(0x530b9060) http://mirrors.kodi.tv/addons/krypton/addons.xml.gz.md5 01:11:46 T:1391842640 INFO: void XCURL::DllLibCurlGlobal::easy_aquire(const char*, const char*, XCURL::CURL_HANDLE**, XCURL::CURLM**) - Created session to http://mirrors.kodi.tv 01:11:46 T:1390337976 DEBUG: CFileCache::Open - opening using cache 01:11:46 T:1390337976 DEBUG: CurlFile::Open(0x532dcc70) http://xstream-addon.square7.ch/repo/addons.xml.md5 01:11:46 T:1390337976 INFO: void XCURL::DllLibCurlGlobal::easy_aquire(const char*, const char*, XCURL::CURL_HANDLE**, XCURL::CURLM**) - Created session to http://xstream-addon.square7.ch 01:11:46 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:11:46 T:1105196928 DEBUG: ParentPath = [addons://] 01:11:46 T:1105407336 DEBUG: CRepositoryUpdater: previous update at 22.04.2009 19:24:48, next at 21.09.2016 01:11:46 01:11:46 T:1394216120 DEBUG: Thread Timer start, auto delete: false 01:11:46 T:1394216120 DEBUG: CRepositoryUpdater: running scheduled update 01:11:46 T:1392164920 DEBUG: CAddonMgr::GetAvailableUpdates took 125 ms 01:11:47 T:1394833656 DEBUG: Thread FileCache start, auto delete: false 01:11:47 T:1394833656 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:11:47 T:1394216120 DEBUG: Thread Timer 1394216120 terminating 01:11:47 T:1394216120 DEBUG: Thread FileCache start, auto delete: false 01:11:47 T:1394216120 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:11:47 T:1394833656 DEBUG: Thread FileCache 1394833656 terminating 01:11:47 T:1390337976 DEBUG: CFileCache::Open - opening using cache 01:11:47 T:1390337976 DEBUG: CurlFile::Open(0x534453b8) http://raw.github.com/Lynx187/xStreamRepo/master/addons.xml.md5 01:11:47 T:1390337976 INFO: void XCURL::DllLibCurlGlobal::easy_aquire(const char*, const char*, XCURL::CURL_HANDLE**, XCURL::CURLM**) - Created session to http://raw.github.com 01:11:47 T:1394216120 DEBUG: Thread FileCache 1394216120 terminating 01:11:47 T:1392164920 DEBUG: CRepositoryUpdateJob[repository.tva.common] checking for updates. 01:11:47 T:1391842640 DEBUG: CRepositoryUpdateJob[repository.xbmc.org] checksum not changed. 01:11:47 T:1391842640 DEBUG: CRepositoryUpdateJob[repository.lunatixz] checking for updates. 01:11:47 T:1391842640 DEBUG: CFileCache::Open - opening using cache 01:11:47 T:1391842640 DEBUG: CurlFile::Open(0x532ed9f8) http://raw.github.com/Lunatixz/XBMC_Addons/master/addons.xml.md5 01:11:47 T:1391842640 INFO: void XCURL::DllLibCurlGlobal::easy_aquire(const char*, const char*, XCURL::CURL_HANDLE**, XCURL::CURLM**) - Created session to http://raw.github.com 01:11:47 T:1394216120 DEBUG: Thread BackgroundLoader start, auto delete: false 01:11:47 T:1394216120 DEBUG: Thread BackgroundLoader 1394216120 terminating 01:11:47 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:11:47 T:1105196928 DEBUG: ParentPath = [addons://] 01:11:47 T:1392164920 DEBUG: CFileCache::Open - opening using cache 01:11:47 T:1392164920 DEBUG: CurlFile::Open(0x530a9570) https://offshoregit.com/tvaresolvers/tva-common-repository/raw/master/addons.xml.md5 01:11:47 T:1392164920 INFO: void XCURL::DllLibCurlGlobal::easy_aquire(const char*, const char*, XCURL::CURL_HANDLE**, XCURL::CURLM**) - Created session to https://offshoregit.com 01:11:47 T:1105407336 DEBUG: CAddonMgr::GetAvailableUpdates took 124 ms 01:11:47 T:1392418264 DEBUG: Thread FileCache start, auto delete: false 01:11:47 T:1392418264 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:11:47 T:1392418264 DEBUG: Thread FileCache 1392418264 terminating 01:11:47 T:1395580000 DEBUG: Thread BackgroundLoader start, auto delete: false 01:11:47 T:1105196928 DEBUG: ------ Window Init (DialogNotification.xml) ------ 01:11:47 T:1395580000 DEBUG: Thread BackgroundLoader 1395580000 terminating 01:11:47 T:1392164920 DEBUG: CRepositoryUpdateJob[repository.tva.common] checksum not changed. 01:11:47 T:1390337976 DEBUG: CCurlFile::Open - effective URL: 01:11:47 T:1395580000 DEBUG: Thread FileCache start, auto delete: false 01:11:47 T:1395580000 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:11:47 T:1391842640 DEBUG: CCurlFile::Open - effective URL: 01:11:47 T:1392906328 DEBUG: Thread FileCache start, auto delete: false 01:11:47 T:1392906328 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:11:47 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:11:47 T:1105196928 DEBUG: ParentPath = [addons://] 01:11:47 T:1395580000 DEBUG: Thread FileCache 1395580000 terminating 01:11:47 T:1392906328 DEBUG: Thread FileCache 1392906328 terminating 01:11:47 T:1391842640 DEBUG: CurlFile::Open(0x5b106930) http://raw.github.com/Lunatixz/XBMC_Addons/master/addons.xml 01:11:47 T:1390337976 DEBUG: CRepositoryUpdateJob[repository.xstream] checksum not changed. 01:11:47 T:1105407336 DEBUG: CAddonMgr::GetAvailableUpdates took 118 ms 01:11:47 T:1396222280 DEBUG: Thread BackgroundLoader start, auto delete: false 01:11:47 T:1396222280 DEBUG: Thread BackgroundLoader 1396222280 terminating 01:11:48 T:1391842640 DEBUG: CCurlFile::Open - effective URL: 01:11:48 T:1391842640 DEBUG: CRepository: invalidating cached art for 'plugin.video.playonbrowser' 01:11:48 T:1391842640 DEBUG: CRepository: invalidating cached art for 'script.module.pyfscache' 01:11:48 T:1391842640 DEBUG: CRepositoryUpdater: done. 01:11:48 T:1391842640 DEBUG: CAddonMgr::GetAvailableUpdates took 143 ms 01:11:48 T:1391842640 DEBUG: CRepositoryUpdater: previous update at 21.09.2016 01:11:47, next at 22.09.2016 01:11:47 01:11:48 T:1392884752 DEBUG: Thread Timer start, auto delete: false 01:11:48 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:11:48 T:1105196928 DEBUG: ParentPath = [addons://] 01:11:48 T:1105407336 DEBUG: CAddonMgr::GetAvailableUpdates took 127 ms 01:11:48 T:1395452736 DEBUG: Thread BackgroundLoader start, auto delete: false 01:11:49 T:1395452736 DEBUG: Thread BackgroundLoader 1395452736 terminating 01:11:50 T:1392164920 DEBUG: ADDON: cpluff: 'Plug-in script.module.urlresolver has been uninstalled.' 01:11:50 T:1392164920 DEBUG: ADDON: cpluff: 'Plug-in script.module.urlresolver has been installed.' 01:11:50 T:1392164920 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.' 01:11:51 T:1105407336 DEBUG: ContextMenuManager: addon menus reloaded. 01:11:51 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:11:51 T:1105196928 DEBUG: ParentPath = [addons://] 01:11:51 T:1391842640 DEBUG: CAddonMgr::GetAvailableUpdates took 118 ms 01:11:51 T:1396216928 DEBUG: Thread BackgroundLoader start, auto delete: false 01:11:51 T:1396216928 DEBUG: Thread BackgroundLoader 1396216928 terminating 01:11:51 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:11:51 T:1105196928 DEBUG: ParentPath = [addons://] 01:11:51 T:1391842640 DEBUG: CAddonMgr::GetAvailableUpdates took 117 ms 01:11:51 T:1396216928 DEBUG: Thread BackgroundLoader start, auto delete: false 01:11:51 T:1396216928 DEBUG: Thread BackgroundLoader 1396216928 terminating 01:11:54 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:54 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:54 T:1105196928 INFO: Loading skin file: FileBrowser.xml, load type: KEEP_IN_MEMORY 01:11:54 T:1105196928 DEBUG: ------ Window Init (FileBrowser.xml) ------ 01:11:55 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:11:55 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:11:55 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:11:55 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:56 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:56 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:11:56 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:56 T:1105196928 DEBUG: ------ Window Deinit (DialogNotification.xml) ------ 01:11:56 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:11:57 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:57 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:57 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:58 T:1105196928 DEBUG: Previous line repeats 1 times. 01:11:58 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:58 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:58 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:58 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:11:58 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:11:59 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:11:59 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:11:59 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:01 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:01 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:01 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:02 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:02 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:12:02 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:03 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:03 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:03 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:04 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:04 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:04 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:05 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:05 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:05 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:06 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:06 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:06 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:06 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:06 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:06 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:06 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:06 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:07 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:07 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:07 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:07 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:13 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:13 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:14 T:1105196928 DEBUG: ------ Window Deinit (FileBrowser.xml) ------ 01:12:14 T:1105196928 DEBUG: CAddonInstaller: installing from zip 'smb://NASARECHNER/Neubert/repository.xbmchub-1.0.6.zip' 01:12:14 T:1105196928 DEBUG: CSMBFile::Open - opened smb://NASARECHNER/Neubert/repository.xbmchub-1.0.6.zip, fd=10000 01:12:14 T:1105196928 DEBUG: CSMBFile::Close closing fd 10000 01:12:14 T:1105196928 DEBUG: CSMBFile::Open - opened smb://NASARECHNER/Neubert/repository.xbmchub-1.0.6.zip, fd=10000 01:12:14 T:1105196928 DEBUG: CSMBFile::Close closing fd 10000 01:12:14 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:14 T:1391842640 DEBUG: CSMBFile::Open - opened smb://NASARECHNER/Neubert/repository.xbmchub-1.0.6.zip, fd=10000 01:12:14 T:1391842640 DEBUG: CSMBFile::Close closing fd 10000 01:12:14 T:1391842640 DEBUG: CSMBFile::Open - opened smb://NASARECHNER/Neubert/repository.xbmchub-1.0.6.zip, fd=10000 01:12:14 T:1391842640 DEBUG: CSMBFile::Close closing fd 10000 01:12:14 T:1391842640 DEBUG: CSMBFile::Open - opened smb://NASARECHNER/Neubert/repository.xbmchub-1.0.6.zip, fd=10000 01:12:14 T:1391842640 DEBUG: CSMBFile::Close closing fd 10000 01:12:14 T:1391842640 DEBUG: ADDON: cpluff: 'Unknown plug-in repository.xbmchub could not be uninstalled.' 01:12:14 T:1391842640 DEBUG: ADDON: cpluff: 'Plug-in repository.xbmchub has been installed.' 01:12:14 T:1391842640 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.' 01:12:14 T:1391842640 DEBUG: CAddonDatabase: repository.xbmchub has been installed. 01:12:14 T:1392884752 DEBUG: Thread Timer 1392884752 terminating 01:12:14 T:1391842640 DEBUG: CRepositoryUpdater: previous update at 22.04.2009 19:24:48, next at 21.09.2016 01:12:14 01:12:14 T:1396214840 DEBUG: Thread Timer start, auto delete: false 01:12:14 T:1391842640 DEBUG: CAddonMgr: enabled repository.xbmchub 01:12:14 T:1396214840 DEBUG: CRepositoryUpdater: running scheduled update 01:12:14 T:1392164920 DEBUG: ContextMenuManager: addon menus reloaded. 01:12:15 T:1390337976 DEBUG: CRepositoryUpdateJob[repository.xbmc.org] checking for updates. 01:12:15 T:1392164920 DEBUG: CRepositoryUpdateJob[repository.xstream] checking for updates. 01:12:15 T:1396214840 DEBUG: Thread Timer 1396214840 terminating 01:12:15 T:1390337976 DEBUG: CFileCache::Open - opening using cache 01:12:15 T:1390337976 DEBUG: CurlFile::Open(0x534541d0) http://mirrors.kodi.tv/addons/krypton/addons.xml.gz.md5 01:12:15 T:1392164920 DEBUG: CFileCache::Open - opening using cache 01:12:15 T:1392164920 DEBUG: CurlFile::Open(0x53dbf898) http://xstream-addon.square7.ch/repo/addons.xml.md5 01:12:15 T:1391842640 DEBUG: CRepositoryUpdater: previous update at 22.04.2009 19:24:48, next at 21.09.2016 01:12:15 01:12:15 T:1393992008 DEBUG: Thread Timer start, auto delete: false 01:12:15 T:1393992008 DEBUG: CRepositoryUpdater: running scheduled update 01:12:15 T:1396214840 DEBUG: Thread FileCache start, auto delete: false 01:12:15 T:1396214840 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:12:15 T:1391842640 DEBUG: CRepositoryUpdateJob[repository.tva.common] checking for updates. 01:12:15 T:1396214840 DEBUG: Thread FileCache 1396214840 terminating 01:12:15 T:1390337976 DEBUG: CRepositoryUpdateJob[repository.xbmc.org] checksum not changed. 01:12:15 T:1390337976 DEBUG: CRepositoryUpdateJob[repository.lunatixz] checking for updates. 01:12:15 T:1390337976 DEBUG: CFileCache::Open - opening using cache 01:12:15 T:1390337976 DEBUG: CurlFile::Open(0x532fc8f0) http://raw.github.com/Lunatixz/XBMC_Addons/master/addons.xml.md5 01:12:15 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:12:15 T:1105196928 DEBUG: ParentPath = [addons://] 01:12:15 T:1391842640 DEBUG: CFileCache::Open - opening using cache 01:12:15 T:1391842640 DEBUG: CurlFile::Open(0x53372900) https://offshoregit.com/tvaresolvers/tva-common-repository/raw/master/addons.xml.md5 01:12:15 T:1390337976 DEBUG: CCurlFile::Open - effective URL: 01:12:15 T:1396214840 DEBUG: Thread FileCache start, auto delete: false 01:12:15 T:1396214840 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:12:15 T:1393992008 DEBUG: Thread Timer 1393992008 terminating 01:12:15 T:1393992008 DEBUG: Thread FileCache start, auto delete: false 01:12:15 T:1393992008 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:12:15 T:1396214840 DEBUG: Thread FileCache 1396214840 terminating 01:12:15 T:1393992008 DEBUG: Thread FileCache 1393992008 terminating 01:12:15 T:1390337976 DEBUG: CRepositoryUpdateJob[repository.lunatixz] checksum not changed. 01:12:15 T:1391842640 DEBUG: CRepositoryUpdateJob[repository.tva.common] checksum not changed. 01:12:15 T:1391842640 DEBUG: CRepositoryUpdateJob[repository.xbmchub] checking for updates. 01:12:15 T:1391842640 DEBUG: CFileCache::Open - opening using cache 01:12:15 T:1391842640 DEBUG: CurlFile::Open(0x52df5bf0) https://offshoregit.com/tvaresolvers/tva-common-repository/raw/master/addons.xml.md5 01:12:15 T:1393992008 DEBUG: Thread FileCache start, auto delete: false 01:12:15 T:1393992008 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:12:15 T:1393992008 DEBUG: Thread FileCache 1393992008 terminating 01:12:15 T:1391842640 DEBUG: CFileCache::Open - opening using cache 01:12:15 T:1391842640 DEBUG: CurlFile::Open(0x52df5bf0) https://offshoregit.com/xbmchub/xbmc-hub-repo/raw/master/addons.xml.md5 01:12:15 T:1396214840 DEBUG: Thread FileCache start, auto delete: false 01:12:15 T:1396214840 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:12:15 T:1105407336 DEBUG: CAddonMgr::GetAvailableUpdates took 434 ms 01:12:15 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:12:15 T:1396214840 DEBUG: Thread FileCache 1396214840 terminating 01:12:15 T:1391842640 DEBUG: CurlFile::Open(0x5b106930) https://offshoregit.com/tvaresolvers/tva-common-repository/raw/master/addons.xml 01:12:15 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:12:15 T:1105196928 DEBUG: ParentPath = [addons://] 01:12:15 T:1391842640 DEBUG: CurlFile::Open(0x5b106930) https://offshoregit.com/xbmchub/xbmc-hub-repo/raw/master/addons.xml 01:12:16 T:1390337976 DEBUG: CAddonMgr::GetAvailableUpdates took 126 ms 01:12:16 T:1390337976 DEBUG: CRepositoryUpdateJob[repository.xbmc.org] checking for updates. 01:12:16 T:1393992008 DEBUG: Thread BackgroundLoader start, auto delete: false 01:12:16 T:1393992008 DEBUG: Thread BackgroundLoader 1393992008 terminating 01:12:16 T:1390337976 DEBUG: CFileCache::Open - opening using cache 01:12:16 T:1390337976 DEBUG: CurlFile::Open(0x532fc8f0) http://mirrors.kodi.tv/addons/krypton/addons.xml.gz.md5 01:12:16 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:12:16 T:1105196928 DEBUG: ParentPath = [addons://] 01:12:16 T:1408916208 DEBUG: Thread FileCache start, auto delete: false 01:12:16 T:1408916208 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:12:16 T:1408916208 DEBUG: Thread FileCache 1408916208 terminating 01:12:16 T:1390337976 DEBUG: CRepositoryUpdateJob[repository.xbmc.org] checksum not changed. 01:12:16 T:1105407336 DEBUG: CAddonMgr::GetAvailableUpdates took 312 ms 01:12:16 T:1408932344 DEBUG: Thread BackgroundLoader start, auto delete: false 01:12:16 T:1105196928 DEBUG: ------ Window Init (DialogNotification.xml) ------ 01:12:16 T:1408932344 DEBUG: Thread BackgroundLoader 1408932344 terminating 01:12:16 T:1394021480 DEBUG: Thread BackgroundLoader start, auto delete: false 01:12:16 T:1394021480 DEBUG: Thread BackgroundLoader 1394021480 terminating 01:12:17 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:12:17 T:1105196928 INFO: void XCURL::DllLibCurlGlobal::CheckIdle() - Closing session to http://raw.github.com (easy=0x543f0a18, multi=0x532e3f50) 01:12:18 T:1394921768 DEBUG: Thread FileCache start, auto delete: false 01:12:18 T:1394921768 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:12:18 T:1394921768 DEBUG: Thread FileCache 1394921768 terminating 01:12:18 T:1392164920 DEBUG: CFileCache::Open - opening using cache 01:12:18 T:1392164920 DEBUG: CurlFile::Open(0x53dbf898) http://raw.github.com/Lynx187/xStreamRepo/master/addons.xml.md5 01:12:18 T:1392164920 DEBUG: CCurlFile::Open - effective URL: 01:12:18 T:1390854648 DEBUG: Thread FileCache start, auto delete: false 01:12:18 T:1390854648 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:12:18 T:1390854648 DEBUG: Thread FileCache 1390854648 terminating 01:12:18 T:1392164920 DEBUG: CRepositoryUpdateJob[repository.xstream] checksum not changed. 01:12:18 T:1392164920 DEBUG: CRepositoryUpdater: done. 01:12:18 T:1392164920 DEBUG: CAddonMgr::GetAvailableUpdates took 147 ms 01:12:18 T:1392164920 DEBUG: CRepositoryUpdater: previous update at 21.09.2016 01:12:15, next at 22.09.2016 01:12:15 01:12:18 T:1396309264 DEBUG: Thread Timer start, auto delete: false 01:12:18 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:12:18 T:1105196928 DEBUG: ParentPath = [addons://] 01:12:18 T:1391842640 DEBUG: CAddonMgr::GetAvailableUpdates took 138 ms 01:12:18 T:1393992008 DEBUG: Thread BackgroundLoader start, auto delete: false 01:12:18 T:1393992008 DEBUG: Thread BackgroundLoader 1393992008 terminating 01:12:21 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:21 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:21 T:1105196928 INFO: Loading skin file: FileBrowser.xml, load type: KEEP_IN_MEMORY 01:12:21 T:1105196928 DEBUG: ------ Window Init (FileBrowser.xml) ------ 01:12:22 T:1105196928 DEBUG: ------ Window Deinit (DialogNotification.xml) ------ 01:12:22 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:22 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:23 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:23 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:23 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:23 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:12:24 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:24 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:12:24 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:24 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:25 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:25 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:25 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:25 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:26 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:26 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:12:26 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:26 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:26 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:26 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:27 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:27 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:12:27 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:28 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:28 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:28 T:1391842640 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://USER:PASSWORD@NASARECHNER/Neubert' unix_err:'16' error : 'Invalid argument' 01:12:28 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:12:30 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:30 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:30 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:30 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:12:30 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://NASARECHNER/Neubert/ 01:12:30 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://NASARECHNER/Neubert/) failed 01:12:30 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:32 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:32 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:12:32 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:33 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:33 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:33 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:34 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:34 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:34 T:1390337976 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://USER:PASSWORD@NASARECHNER/Neubert' unix_err:'16' error : 'Invalid argument' 01:12:34 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:12:35 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:35 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:35 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:35 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:12:35 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://NASARECHNER/Neubert/ 01:12:35 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://NASARECHNER/Neubert/) failed 01:12:35 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:36 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:36 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:12:36 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:37 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:37 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:37 T:1390337976 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://USER:PASSWORD@NASARECHNER/Users' unix_err:'16' error : 'Invalid argument' 01:12:37 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:12:38 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:38 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:38 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:12:38 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://NASARECHNER/Users/ 01:12:38 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://NASARECHNER/Users/) failed 01:12:38 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:38 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:39 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:39 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:39 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:39 T:1392164920 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://USER:PASSWORD@NASARECHNER/Neubert' unix_err:'16' error : 'Invalid argument' 01:12:39 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:12:40 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:40 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:40 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:40 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:12:40 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://NASARECHNER/Neubert/ 01:12:40 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://NASARECHNER/Neubert/) failed 01:12:40 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:41 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:41 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:41 T:1392164920 ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://USER:PASSWORD@NASARECHNER/Neubert' unix_err:'16' error : 'Invalid argument' 01:12:41 T:1105196928 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 01:12:41 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:42 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:42 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:42 T:1105196928 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 01:12:42 T:1105196928 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting smb://NASARECHNER/Neubert/ 01:12:42 T:1105196928 ERROR: CGUIDialogFileBrowser::GetDirectory(smb://NASARECHNER/Neubert/) failed 01:12:42 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:43 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:12:43 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): right (0xf083) pressed, action is Right 01:12:43 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:12:43 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:43 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:43 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:44 T:1105196928 DEBUG: ------ Window Deinit (FileBrowser.xml) ------ 01:12:44 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:45 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:12:45 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:12:45 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Deactivate 01:12:45 T:1105196928 DEBUG: ------ Window Deinit (AddonBrowser.xml) ------ 01:12:45 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Activate new 01:12:45 T:1105196928 DEBUG: ------ Window Init (Custom_1100_AddonLauncher.xml) ------ 01:12:45 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 01:12:45 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 01:12:45 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 01:12:45 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 01:12:45 T:1105196928 DEBUG: CDirectoryProvider[addons://outdated/]: refreshing.. 01:12:45 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:12:46 T:1390337976 DEBUG: CAddonMgr::GetAvailableUpdates took 141 ms 01:12:46 T:1390337976 DEBUG: CAddonMgr::GetAvailableUpdates took 111 ms 01:12:46 T:1105196928 INFO: void XCURL::DllLibCurlGlobal::CheckIdle() - Closing session to https://offshoregit.com (easy=0x54464158, multi=0x530ff738) 01:12:46 T:1105196928 INFO: void XCURL::DllLibCurlGlobal::CheckIdle() - Closing session to http://mirrors.kodi.tv (easy=0x542ee008, multi=0x53009e80) 01:12:47 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:47 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:47 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:47 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:47 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:47 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:47 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:47 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:47 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:48 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:48 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:48 T:1105196928 DEBUG: Activating window ID: 10001 01:12:48 T:1105196928 DEBUG: ------ Window Deinit (Custom_1100_AddonLauncher.xml) ------ 01:12:48 T:1105196928 DEBUG: ------ Window Init (MyPrograms.xml) ------ 01:12:48 T:1105196928 INFO: Loading skin file: MyPrograms.xml, load type: KEEP_IN_MEMORY 01:12:48 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://sources/executable/) 01:12:48 T:1105196928 DEBUG: ParentPath = [addons://sources/executable/] 01:12:48 T:1394021480 DEBUG: Thread BackgroundLoader start, auto delete: false 01:12:48 T:1394021480 DEBUG: Thread BackgroundLoader 1394021480 terminating 01:12:49 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:49 T:1105196928 INFO: void XCURL::DllLibCurlGlobal::CheckIdle() - Closing session to http://xstream-addon.square7.ch (easy=0x54364008, multi=0x533cc358) 01:12:49 T:1105196928 INFO: void XCURL::DllLibCurlGlobal::CheckIdle() - Closing session to http://raw.github.com (easy=0x54413008, multi=0x5326d210) 01:12:49 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:12:49 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): right (0xf083) pressed, action is Right 01:12:49 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:12:50 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:50 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:12:50 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:50 T:1391842640 DEBUG: Caching image '/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/fanart.jpg' to '4/426c9fef.jpg': 01:12:50 T:1391842640 DEBUG: cached image 'special://masterprofile/Thumbnails/4/426c9fef.jpg' size 1280x720 01:12:50 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:50 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:12:50 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.program.advancedsettings/?content_type=executable) 01:12:50 T:1105196928 DEBUG: ParentPath = [addons://sources/executable/] 01:12:50 T:1390337976 DEBUG: CAddonDatabase::SetLastUsed[plugin.program.advancedsettings] took 22 ms 01:12:50 T:1105407336 DEBUG: bool XFILE::CPluginDirectory::StartScript(const string&, bool) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','1','?content_type=executable') 01:12:50 T:1409305216 DEBUG: Thread LanguageInvoker start, auto delete: false 01:12:50 T:1409305216 INFO: initializing python engine. 01:12:50 T:1409305216 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:12:51 T:1409305216 DEBUG: -->Python Interpreter Initialized<-- 01:12:51 T:1409305216 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:12:51 T:1409305216 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:12:51 T:1409305216 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:12:51 T:1409305216 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:12:51 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:12:51 T:1409305216 INFO: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): script successfully run 01:12:51 T:1393992008 DEBUG: Thread BackgroundLoader start, auto delete: false 01:12:51 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:12:51 T:1409305216 INFO: Python script stopped 01:12:51 T:1409305216 DEBUG: Thread LanguageInvoker 1409305216 terminating 01:12:51 T:1393992008 DEBUG: Thread BackgroundLoader 1393992008 terminating 01:12:52 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:12:52 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:52 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:12:52 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:55 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:55 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:12:55 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:56 T:1105196928 DEBUG: Previous line repeats 1 times. 01:12:56 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:12:56 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:12:57 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:57 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:12:57 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:12:59 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:00 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:13:00 T:1105196928 DEBUG: static bool XFILE::CPluginDirectory::RunScriptWithParams(const string&) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','-1','?url=url&mode=500&name=Write+XML+File&iconimage=%2Fstorage%2Femulated%2F0%2FAndroid%2Fdata%2Forg.xbmc.kodi%2Ffiles%2F.kodi%2Faddons%2Fplugin.program.advancedsettings%2Ficon.png&description=Feeling brave? Write your advanced settings directly to your userdata directory. You may need to reboot for settings to take effect&list=/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/advancedsettings.xml&options=') 01:13:00 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:00 T:1403152216 DEBUG: Thread LanguageInvoker start, auto delete: false 01:13:00 T:1403152216 INFO: initializing python engine. 01:13:00 T:1403152216 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:13:00 T:1403152216 DEBUG: -->Python Interpreter Initialized<-- 01:13:00 T:1403152216 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:13:00 T:1403152216 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:13:00 T:1403152216 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:13:00 T:1403152216 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:13:00 T:1403152216 DEBUG: Could not read from /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.program.advancedsettings/settings.xml 01:13:00 T:1403152216 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS! Error Type: Error Contents: expected string or buffer Traceback (most recent call last): File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1478, in write_xml(name,list) File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 846, in write_xml settings = regex_get_all(readsettings, '') File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1192, in regex_get_all r = re.findall("(?i)" + start_with + "([\S\s]+?)" + end_with, text) File "/home/jenkins/workspace/Android-ARM/tools/depends/xbmc-depends/arm-linux-androideabi-android-17/lib/python2.7/re.py", line 181, in findall TypeError: expected string or buffer -->End of Python script error report<-- 01:13:00 T:1105196928 DEBUG: ------ Window Init (DialogNotification.xml) ------ 01:13:00 T:1403152216 INFO: Python script stopped 01:13:00 T:1403152216 DEBUG: Thread LanguageInvoker 1403152216 terminating 01:13:02 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:02 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:13:02 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:02 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:02 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:13:02 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.program.advancedsettings/?description=Build%20your%20advanced%20settings%20file&iconimage=%2Fstorage%2Femulated%2F0%2FAndroid%2Fdata%2Forg.xbmc.kodi%2Ffiles%2F.kodi%2Faddons%2Fplugin.program.advancedsettings%2Ficon.png&list=blank&mode=499&name=Edit%20Settings&url=url) 01:13:02 T:1105196928 DEBUG: ParentPath = [plugin://plugin.program.advancedsettings/?content_type=executable] 01:13:02 T:1390337976 DEBUG: CAddonDatabase::SetLastUsed[plugin.program.advancedsettings] took 22 ms 01:13:02 T:1391842640 DEBUG: bool XFILE::CPluginDirectory::StartScript(const string&, bool) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','2','?description=Build%20your%20advanced%20settings%20file&iconimage=%2Fstorage%2Femulated%2F0%2FAndroid%2Fdata%2Forg.xbmc.kodi%2Ffiles%2F.kodi%2Faddons%2Fplugin.program.advancedsettings%2Ficon.png&list=blank&mode=499&name=Edit%20Settings&url=url') 01:13:02 T:1404285432 DEBUG: Thread LanguageInvoker start, auto delete: false 01:13:02 T:1404285432 INFO: initializing python engine. 01:13:02 T:1404285432 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:13:02 T:1404285432 DEBUG: -->Python Interpreter Initialized<-- 01:13:02 T:1404285432 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:13:02 T:1404285432 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:13:02 T:1404285432 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:13:02 T:1404285432 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:13:03 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:13:03 T:1404285432 INFO: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): script successfully run 01:13:03 T:1393982856 DEBUG: Thread BackgroundLoader start, auto delete: false 01:13:03 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:03 T:1404285432 INFO: Python script stopped 01:13:03 T:1404285432 DEBUG: Thread LanguageInvoker 1404285432 terminating 01:13:03 T:1393982856 DEBUG: Thread BackgroundLoader 1393982856 terminating 01:13:03 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:13:05 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:05 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:13:05 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:06 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:06 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:13:06 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:06 T:1105196928 DEBUG: ------ Window Deinit (DialogNotification.xml) ------ 01:13:06 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:06 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:13:06 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:07 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:07 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:13:07 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.program.advancedsettings/?description=Define%20your%20video%20settings&iconimage&list=blank&mode=10&name=Troubleshooting%20settings%20&url=url) 01:13:07 T:1105196928 DEBUG: ParentPath = [plugin://plugin.program.advancedsettings/?description=Build%20your%20advanced%20settings%20file&iconimage=%2Fstorage%2Femulated%2F0%2FAndroid%2Fdata%2Forg.xbmc.kodi%2Ffiles%2F.kodi%2Faddons%2Fplugin.program.advancedsettings%2Ficon.png&list=blank&mode=499&name=Edit%20Settings&url=url] 01:13:07 T:1105407336 DEBUG: CAddonDatabase::SetLastUsed[plugin.program.advancedsettings] took 20 ms 01:13:07 T:1390337976 DEBUG: bool XFILE::CPluginDirectory::StartScript(const string&, bool) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','3','?description=Define%20your%20video%20settings&iconimage&list=blank&mode=10&name=Troubleshooting%20settings%20&url=url') 01:13:07 T:1404257048 DEBUG: Thread LanguageInvoker start, auto delete: false 01:13:07 T:1404257048 INFO: initializing python engine. 01:13:07 T:1404257048 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:13:07 T:1404257048 DEBUG: -->Python Interpreter Initialized<-- 01:13:07 T:1404257048 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:13:07 T:1404257048 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:13:07 T:1404257048 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:13:07 T:1404257048 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:13:07 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:13:07 T:1404257048 INFO: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): script successfully run 01:13:07 T:1404257048 INFO: Python script stopped 01:13:07 T:1404257048 DEBUG: Thread LanguageInvoker 1404257048 terminating 01:13:07 T:1394021480 DEBUG: Thread BackgroundLoader start, auto delete: false 01:13:07 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:07 T:1394021480 DEBUG: Thread BackgroundLoader 1394021480 terminating 01:13:08 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:13:08 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:13:08 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:13:08 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.program.advancedsettings/?description=Build%20your%20advanced%20settings%20file&iconimage=%2Fstorage%2Femulated%2F0%2FAndroid%2Fdata%2Forg.xbmc.kodi%2Ffiles%2F.kodi%2Faddons%2Fplugin.program.advancedsettings%2Ficon.png&list=blank&mode=499&name=Edit%20Settings&url=url) 01:13:08 T:1105196928 DEBUG: ParentPath = [plugin://plugin.program.advancedsettings/?content_type=executable] 01:13:08 T:1392164920 DEBUG: CAddonDatabase::SetLastUsed[plugin.program.advancedsettings] took 21 ms 01:13:08 T:1391842640 DEBUG: bool XFILE::CPluginDirectory::StartScript(const string&, bool) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','4','?description=Build%20your%20advanced%20settings%20file&iconimage=%2Fstorage%2Femulated%2F0%2FAndroid%2Fdata%2Forg.xbmc.kodi%2Ffiles%2F.kodi%2Faddons%2Fplugin.program.advancedsettings%2Ficon.png&list=blank&mode=499&name=Edit%20Settings&url=url') 01:13:08 T:1393441704 DEBUG: Thread LanguageInvoker start, auto delete: false 01:13:08 T:1393441704 INFO: initializing python engine. 01:13:08 T:1393441704 DEBUG: CPythonInvoker(5, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:13:08 T:1393441704 DEBUG: -->Python Interpreter Initialized<-- 01:13:08 T:1393441704 DEBUG: CPythonInvoker(5, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:13:08 T:1393441704 DEBUG: CPythonInvoker(5, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:13:08 T:1393441704 DEBUG: CPythonInvoker(5, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:13:08 T:1393441704 DEBUG: CPythonInvoker(5, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:13:09 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:13:09 T:1393441704 INFO: CPythonInvoker(5, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): script successfully run 01:13:09 T:1393992008 DEBUG: Thread BackgroundLoader start, auto delete: false 01:13:09 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:13:09 T:1393441704 INFO: Python script stopped 01:13:09 T:1393441704 DEBUG: Thread LanguageInvoker 1393441704 terminating 01:13:09 T:1393992008 DEBUG: Thread BackgroundLoader 1393992008 terminating 01:13:09 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:13:11 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:13:11 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:13:11 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.program.advancedsettings/?content_type=executable) 01:13:11 T:1105196928 DEBUG: ParentPath = [addons://sources/executable/] 01:13:11 T:1390337976 DEBUG: CAddonDatabase::SetLastUsed[plugin.program.advancedsettings] took 29 ms 01:13:11 T:1392164920 DEBUG: bool XFILE::CPluginDirectory::StartScript(const string&, bool) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','5','?content_type=executable') 01:13:11 T:1393441704 DEBUG: Thread LanguageInvoker start, auto delete: false 01:13:11 T:1393441704 INFO: initializing python engine. 01:13:11 T:1393441704 DEBUG: CPythonInvoker(6, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:13:11 T:1393441704 DEBUG: -->Python Interpreter Initialized<-- 01:13:11 T:1393441704 DEBUG: CPythonInvoker(6, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:13:11 T:1393441704 DEBUG: CPythonInvoker(6, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:13:11 T:1393441704 DEBUG: CPythonInvoker(6, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:13:11 T:1393441704 DEBUG: CPythonInvoker(6, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:13:12 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:13:12 T:1393441704 INFO: CPythonInvoker(6, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): script successfully run 01:13:12 T:1390407496 DEBUG: Thread BackgroundLoader start, auto delete: false 01:13:12 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:13:12 T:1390407496 DEBUG: Thread BackgroundLoader 1390407496 terminating 01:13:12 T:1393441704 INFO: Python script stopped 01:13:12 T:1393441704 DEBUG: Thread LanguageInvoker 1393441704 terminating 01:13:12 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:13:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:13:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:15 T:1105196928 DEBUG: Previous line repeats 1 times. 01:13:15 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:13:15 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:18 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:18 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:13:18 T:1105196928 DEBUG: static bool XFILE::CPluginDirectory::RunScriptWithParams(const string&) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','-1','?url=url&mode=500&name=Write+XML+File+to+temporary+location&iconimage=&description=Play it safe. Write your advanced settings to userdata/plugin.program.advancedsettings/XML_FILES/ directory&list=/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.program.advancedsettings/XML_FILES/advancedsettings.xml&options=') 01:13:18 T:1395548920 DEBUG: Thread LanguageInvoker start, auto delete: false 01:13:18 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:18 T:1395548920 INFO: initializing python engine. 01:13:18 T:1395548920 DEBUG: CPythonInvoker(7, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:13:18 T:1395548920 DEBUG: -->Python Interpreter Initialized<-- 01:13:18 T:1395548920 DEBUG: CPythonInvoker(7, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:13:18 T:1395548920 DEBUG: CPythonInvoker(7, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:13:18 T:1395548920 DEBUG: CPythonInvoker(7, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:13:18 T:1395548920 DEBUG: CPythonInvoker(7, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:13:18 T:1395548920 DEBUG: Could not read from /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.program.advancedsettings/settings.xml 01:13:18 T:1395548920 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS! Error Type: Error Contents: expected string or buffer Traceback (most recent call last): File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1478, in write_xml(name,list) File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 846, in write_xml settings = regex_get_all(readsettings, '') File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1192, in regex_get_all r = re.findall("(?i)" + start_with + "([\S\s]+?)" + end_with, text) File "/home/jenkins/workspace/Android-ARM/tools/depends/xbmc-depends/arm-linux-androideabi-android-17/lib/python2.7/re.py", line 181, in findall TypeError: expected string or buffer -->End of Python script error report<-- 01:13:18 T:1105196928 DEBUG: ------ Window Init (DialogNotification.xml) ------ 01:13:18 T:1395548920 INFO: Python script stopped 01:13:18 T:1395548920 DEBUG: Thread LanguageInvoker 1395548920 terminating 01:13:20 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:20 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:13:20 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:20 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:20 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:13:20 T:1105196928 DEBUG: static bool XFILE::CPluginDirectory::RunScriptWithParams(const string&) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','-1','?url=url&mode=500&name=Write+XML+File&iconimage=%2Fstorage%2Femulated%2F0%2FAndroid%2Fdata%2Forg.xbmc.kodi%2Ffiles%2F.kodi%2Faddons%2Fplugin.program.advancedsettings%2Ficon.png&description=Feeling brave? Write your advanced settings directly to your userdata directory. You may need to reboot for settings to take effect&list=/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/advancedsettings.xml&options=') 01:13:20 T:1406729624 DEBUG: Thread LanguageInvoker start, auto delete: false 01:13:20 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:20 T:1406729624 INFO: initializing python engine. 01:13:20 T:1406729624 DEBUG: CPythonInvoker(8, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:13:20 T:1406729624 DEBUG: -->Python Interpreter Initialized<-- 01:13:20 T:1406729624 DEBUG: CPythonInvoker(8, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:13:20 T:1406729624 DEBUG: CPythonInvoker(8, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:13:20 T:1406729624 DEBUG: CPythonInvoker(8, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:13:20 T:1406729624 DEBUG: CPythonInvoker(8, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:13:21 T:1406729624 DEBUG: Could not read from /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.program.advancedsettings/settings.xml 01:13:21 T:1406729624 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS! Error Type: Error Contents: expected string or buffer Traceback (most recent call last): File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1478, in write_xml(name,list) File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 846, in write_xml settings = regex_get_all(readsettings, '') File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1192, in regex_get_all r = re.findall("(?i)" + start_with + "([\S\s]+?)" + end_with, text) File "/home/jenkins/workspace/Android-ARM/tools/depends/xbmc-depends/arm-linux-androideabi-android-17/lib/python2.7/re.py", line 181, in findall TypeError: expected string or buffer -->End of Python script error report<-- 01:13:21 T:1406729624 INFO: Python script stopped 01:13:21 T:1406729624 DEBUG: Thread LanguageInvoker 1406729624 terminating 01:13:26 T:1105196928 DEBUG: ------ Window Deinit (DialogNotification.xml) ------ 01:13:28 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:28 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:13:28 T:1105196928 DEBUG: static bool XFILE::CPluginDirectory::RunScriptWithParams(const string&) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','-1','?url=url&mode=500&name=Write+XML+File&iconimage=%2Fstorage%2Femulated%2F0%2FAndroid%2Fdata%2Forg.xbmc.kodi%2Ffiles%2F.kodi%2Faddons%2Fplugin.program.advancedsettings%2Ficon.png&description=Feeling brave? Write your advanced settings directly to your userdata directory. You may need to reboot for settings to take effect&list=/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/advancedsettings.xml&options=') 01:13:28 T:1408104080 DEBUG: Thread LanguageInvoker start, auto delete: false 01:13:28 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:28 T:1408104080 INFO: initializing python engine. 01:13:28 T:1408104080 DEBUG: CPythonInvoker(9, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:13:28 T:1408104080 DEBUG: -->Python Interpreter Initialized<-- 01:13:28 T:1408104080 DEBUG: CPythonInvoker(9, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:13:28 T:1408104080 DEBUG: CPythonInvoker(9, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:13:28 T:1408104080 DEBUG: CPythonInvoker(9, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:13:28 T:1408104080 DEBUG: CPythonInvoker(9, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:13:29 T:1408104080 DEBUG: Could not read from /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.program.advancedsettings/settings.xml 01:13:29 T:1408104080 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS! Error Type: Error Contents: expected string or buffer Traceback (most recent call last): File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1478, in write_xml(name,list) File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 846, in write_xml settings = regex_get_all(readsettings, '') File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1192, in regex_get_all r = re.findall("(?i)" + start_with + "([\S\s]+?)" + end_with, text) File "/home/jenkins/workspace/Android-ARM/tools/depends/xbmc-depends/arm-linux-androideabi-android-17/lib/python2.7/re.py", line 181, in findall TypeError: expected string or buffer -->End of Python script error report<-- 01:13:29 T:1105196928 DEBUG: ------ Window Init (DialogNotification.xml) ------ 01:13:29 T:1408104080 INFO: Python script stopped 01:13:29 T:1408104080 DEBUG: Thread LanguageInvoker 1408104080 terminating 01:13:32 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:32 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:13:32 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:34 T:1105196928 DEBUG: ------ Window Deinit (DialogNotification.xml) ------ 01:13:35 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:35 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:13:35 T:1105196928 DEBUG: static bool XFILE::CPluginDirectory::RunScriptWithParams(const string&) - calling plugin Easy Advanced Settings('plugin://plugin.program.advancedsettings/','-1','?url=url&mode=500&name=Write+XML+File+to+temporary+location&iconimage=&description=Play it safe. Write your advanced settings to userdata/plugin.program.advancedsettings/XML_FILES/ directory&list=/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.program.advancedsettings/XML_FILES/advancedsettings.xml&options=') 01:13:35 T:1400425560 DEBUG: Thread LanguageInvoker start, auto delete: false 01:13:35 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:13:35 T:1400425560 INFO: initializing python engine. 01:13:35 T:1400425560 DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): start processing 01:13:35 T:1400425560 DEBUG: -->Python Interpreter Initialized<-- 01:13:35 T:1400425560 DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py" 01:13:35 T:1400425560 DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:13:35 T:1400425560 DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings 01:13:35 T:1400425560 DEBUG: CPythonInvoker(10, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py): instantiating addon using automatically obtained id of "plugin.program.advancedsettings" dependent on version 2.1.0 of the xbmc.python api 01:13:35 T:1400425560 DEBUG: Could not read from /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.program.advancedsettings/settings.xml 01:13:35 T:1400425560 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS! Error Type: Error Contents: expected string or buffer Traceback (most recent call last): File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1478, in write_xml(name,list) File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 846, in write_xml settings = regex_get_all(readsettings, '') File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.program.advancedsettings/default.py", line 1192, in regex_get_all r = re.findall("(?i)" + start_with + "([\S\s]+?)" + end_with, text) File "/home/jenkins/workspace/Android-ARM/tools/depends/xbmc-depends/arm-linux-androideabi-android-17/lib/python2.7/re.py", line 181, in findall TypeError: expected string or buffer -->End of Python script error report<-- 01:13:35 T:1105196928 DEBUG: ------ Window Init (DialogNotification.xml) ------ 01:13:35 T:1400425560 INFO: Python script stopped 01:13:35 T:1400425560 DEBUG: Thread LanguageInvoker 1400425560 terminating 01:13:37 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:37 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:13:37 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:37 T:1105196928 DEBUG: Previous line repeats 1 times. 01:13:37 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:13:37 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:13:40 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:40 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:13:40 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:40 T:1105196928 DEBUG: Previous line repeats 1 times. 01:13:40 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:13:40 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:40 T:1105196928 DEBUG: Previous line repeats 1 times. 01:13:40 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:13:40 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:13:41 T:1105196928 DEBUG: ------ Window Deinit (DialogNotification.xml) ------ 01:13:41 T:1390337976 DEBUG: Thread JobWorker 1390337976 terminating (autodelete) 01:13:41 T:1391842640 DEBUG: Thread JobWorker 1391842640 terminating (autodelete) 01:13:41 T:1105407336 DEBUG: Thread JobWorker 1105407336 terminating (autodelete) 01:13:42 T:1392164920 DEBUG: Thread JobWorker 1392164920 terminating (autodelete) 01:13:45 T:1105196928 INFO: Python, unloading python shared library because no scripts are running anymore 01:13:45 T:1105196928 DEBUG: void XBPython::UnloadExtensionLibs(), clearing python extension libraries 01:14:07 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:07 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:07 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://sources/executable/) 01:14:07 T:1105196928 DEBUG: ParentPath = [] 01:14:07 T:1105407336 DEBUG: Thread JobWorker start, auto delete: true 01:14:07 T:1394021480 DEBUG: Thread BackgroundLoader start, auto delete: false 01:14:07 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:07 T:1394021480 DEBUG: Thread BackgroundLoader 1394021480 terminating 01:14:07 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:07 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:07 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Deactivate 01:14:08 T:1105196928 DEBUG: ------ Window Deinit (MyPrograms.xml) ------ 01:14:08 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Activate new 01:14:08 T:1105196928 DEBUG: ------ Window Init (Custom_1100_AddonLauncher.xml) ------ 01:14:08 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 01:14:08 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 01:14:08 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 01:14:08 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 01:14:08 T:1105196928 DEBUG: CDirectoryProvider[addons://outdated/]: refreshing.. 01:14:08 T:1391842640 DEBUG: Thread JobWorker start, auto delete: true 01:14:08 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:08 T:1105407336 DEBUG: CAddonMgr::GetAvailableUpdates took 134 ms 01:14:08 T:1105407336 DEBUG: CAddonMgr::GetAvailableUpdates took 127 ms 01:14:09 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:09 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:09 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Deactivate 01:14:09 T:1105196928 DEBUG: ------ Window Deinit (Custom_1100_AddonLauncher.xml) ------ 01:14:09 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Activate new 01:14:09 T:1105196928 DEBUG: ------ Window Init (Home.xml) ------ 01:14:09 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 01:14:09 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 01:14:09 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 01:14:09 T:1105196928 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 01:14:09 T:1399123976 DEBUG: Thread JobWorker start, auto delete: true 01:14:09 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:14 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:14 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:14 T:1105196928 DEBUG: ffmpeg[41DFF780]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 01:14:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:15 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:14:15 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): right (0xf083) pressed, action is Right 01:14:15 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:14:16 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:16 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:16 T:1105196928 DEBUG: Activating window ID: 10004 01:14:16 T:1105196928 DEBUG: ------ Window Deinit (Home.xml) ------ 01:14:16 T:1105196928 DEBUG: ------ Window Init (Settings.xml) ------ 01:14:16 T:1105196928 INFO: Loading skin file: Settings.xml, load type: KEEP_IN_MEMORY 01:14:16 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:18 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:18 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:18 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Deactivate 01:14:18 T:1105196928 DEBUG: ------ Window Deinit (Settings.xml) ------ 01:14:18 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Activate new 01:14:18 T:1105196928 DEBUG: ------ Window Init (Home.xml) ------ 01:14:18 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:18 T:1105196928 NOTICE: Samba is idle. Closing the remaining connections 01:14:19 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:14:19 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): right (0xf083) pressed, action is Right 01:14:19 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:14:19 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:19 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): right (0xf083) pressed, action is Right 01:14:19 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:14:19 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:19 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:19 T:1105196928 DEBUG: Activating window ID: 10003 01:14:20 T:1105196928 DEBUG: ------ Window Deinit (Home.xml) ------ 01:14:20 T:1105196928 INFO: Attempting to default to: 01:14:20 T:1105196928 DEBUG: ------ Window Init (FileManager.xml) ------ 01:14:20 T:1105196928 INFO: Loading skin file: FileManager.xml, load type: KEEP_IN_MEMORY 01:14:20 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:22 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:14:22 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): right (0xf083) pressed, action is Right 01:14:23 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:14:23 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:23 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:23 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:23 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:23 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:23 T:1105196928 INFO: Loading skin file: DialogMediaSource.xml, load type: KEEP_IN_MEMORY 01:14:23 T:1105196928 DEBUG: ------ Window Init (DialogMediaSource.xml) ------ 01:14:24 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:14:24 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): right (0xf083) pressed, action is Right 01:14:25 T:1105196928 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 01:14:25 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:25 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:25 T:1105196928 INFO: Loading skin file: FileBrowser.xml, load type: KEEP_IN_MEMORY 01:14:25 T:1105196928 DEBUG: ------ Window Init (FileBrowser.xml) ------ 01:14:26 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:26 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:26 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:27 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:27 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:27 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:27 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:27 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:27 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:27 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:28 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:28 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:30 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:30 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:14:30 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:31 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:31 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:14:31 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:31 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:31 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:14:32 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:32 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:32 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:14:32 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:32 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:32 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:14:32 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:32 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:32 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:32 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:33 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:33 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:33 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:34 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:34 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:34 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:35 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:35 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:35 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:35 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:35 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:35 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:35 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:35 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:35 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:36 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:36 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:36 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:36 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:36 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:36 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:36 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:36 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:36 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:37 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:37 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:37 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:37 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:37 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:37 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:38 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:38 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:38 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:38 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:38 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:38 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:38 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:38 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:38 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:38 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:39 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:39 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:39 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:39 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:42 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:42 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:42 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:42 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:42 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:42 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:43 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:43 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:43 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:44 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:44 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:44 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:44 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:44 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:44 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:46 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:46 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:46 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:47 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:47 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:47 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:48 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:48 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:48 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:48 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:48 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:48 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:49 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:49 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:49 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:50 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:50 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:50 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:50 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:50 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:50 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:51 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:51 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:51 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:51 T:1105196928 DEBUG: ------ Window Deinit (FileBrowser.xml) ------ 01:14:51 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:52 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:52 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:52 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:52 T:1105196928 DEBUG: ------ Window Deinit (DialogMediaSource.xml) ------ 01:14:52 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:53 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:53 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): backspace (0xf008) pressed, action is Back 01:14:53 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Deactivate 01:14:53 T:1105196928 DEBUG: ------ Window Deinit (FileManager.xml) ------ 01:14:53 T:1105196928 DEBUG: CGUIWindowManager::PreviousWindow: Activate new 01:14:53 T:1105196928 DEBUG: ------ Window Init (Home.xml) ------ 01:14:53 T:1105196928 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 01:14:53 T:1105196928 DEBUG: ffmpeg[41DFF780]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 01:14:55 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:55 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:14:56 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:56 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:56 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:14:56 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:56 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:56 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:14:56 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:56 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:56 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:14:56 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:14:56 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:56 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:56 T:1105196928 DEBUG: Activating window ID: 11100 01:14:57 T:1105196928 DEBUG: ------ Window Deinit (Home.xml) ------ 01:14:57 T:1105196928 DEBUG: ------ Window Init (Custom_1100_AddonLauncher.xml) ------ 01:14:57 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:57 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:57 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:58 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:58 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:58 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:58 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:58 T:1105196928 DEBUG: Previous line repeats 1 times. 01:14:58 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:14:58 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:14:58 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:58 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:14:58 T:1105196928 DEBUG: Activating window ID: 10040 01:14:58 T:1105196928 DEBUG: ------ Window Deinit (Custom_1100_AddonLauncher.xml) ------ 01:14:59 T:1105196928 DEBUG: ------ Window Init (AddonBrowser.xml) ------ 01:14:59 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://) 01:14:59 T:1105196928 DEBUG: ParentPath = [] 01:14:59 T:1105196928 DEBUG: CAddonMgr::GetAvailableUpdates took 117 ms 01:14:59 T:1399205656 DEBUG: Thread BackgroundLoader start, auto delete: false 01:14:59 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:14:59 T:1399205656 DEBUG: Thread BackgroundLoader 1399205656 terminating 01:15:00 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:00 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:00 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:00 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:00 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:00 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:01 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:01 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:01 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:02 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:02 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:15:02 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://repos/) 01:15:02 T:1105196928 DEBUG: ParentPath = [addons://] 01:15:02 T:1400020240 DEBUG: Thread BackgroundLoader start, auto delete: false 01:15:02 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:02 T:1400020240 DEBUG: Thread BackgroundLoader 1400020240 terminating 01:15:02 T:1105407336 DEBUG: Caching image '/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/repository.lunatixz/icon.png' to 'a/ad8fa817.png': 01:15:02 T:1105407336 DEBUG: cached image 'special://masterprofile/Thumbnails/a/ad8fa817.png' size 408x402 01:15:02 T:1105407336 DEBUG: Caching image '/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/repository.xbmchub/icon.png' to '0/06505d73.jpg': 01:15:02 T:1105407336 DEBUG: cached image 'special://masterprofile/Thumbnails/0/06505d73.jpg' size 255x255 01:15:04 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:04 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:04 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:05 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:05 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:05 T:1399123976 DEBUG: ffmpeg[5364F008]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 01:15:05 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:05 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:05 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:15:05 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://repository.xbmc.org/) 01:15:05 T:1105196928 DEBUG: ParentPath = [addons://repos/] 01:15:05 T:1391842640 DEBUG: CAddonDatabase: SELECT repo.id FROM repo .. took 4 ms 01:15:05 T:1391842640 DEBUG: CAddonDatabase: query SELECT * FROM addons JOIN addonlinkrepo ON addons.id=addonlinkrepo.idAddon WHERE addonlinkrepo.idRepo IN (1) ORDER BY addons.addonID returned 927 rows in 40 ms 01:15:06 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:15:06 T:1391842640 DEBUG: CAddonDatabase::GetAddons took 656 ms 01:15:06 T:1400020240 DEBUG: Thread BackgroundLoader start, auto delete: false 01:15:06 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:06 T:1400020240 DEBUG: Thread BackgroundLoader 1400020240 terminating 01:15:06 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:15:07 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:07 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:07 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:08 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:08 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:08 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:08 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:08 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:08 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:09 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:09 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:09 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:09 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:09 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:09 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:10 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:10 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:10 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:10 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:10 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:10 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:10 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:10 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:10 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:10 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:10 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:15:10 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://repository.xbmc.org/xbmc.addon.executable) 01:15:10 T:1105196928 DEBUG: ParentPath = [addons://repository.xbmc.org/] 01:15:10 T:1399123976 DEBUG: CAddonDatabase: SELECT repo.id FROM repo .. took 3 ms 01:15:10 T:1399123976 DEBUG: CAddonDatabase: query SELECT * FROM addons JOIN addonlinkrepo ON addons.id=addonlinkrepo.idAddon WHERE addonlinkrepo.idRepo IN (1) ORDER BY addons.addonID returned 927 rows in 39 ms 01:15:11 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:15:11 T:1399123976 DEBUG: CAddonDatabase::GetAddons took 641 ms 01:15:11 T:1399123976 DEBUG: CAddonMgr::GetAvailableUpdates took 147 ms 01:15:11 T:1400865408 DEBUG: Thread BackgroundLoader start, auto delete: false 01:15:11 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:11 T:1391842640 INFO: void XCURL::DllLibCurlGlobal::easy_aquire(const char*, const char*, XCURL::CURL_HANDLE**, XCURL::CURLM**) - Created session to http://mirrors.kodi.tv 01:15:11 T:1400865408 DEBUG: Thread BackgroundLoader 1400865408 terminating 01:15:12 T:1391842640 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.ace.extrapack/icon.png -> image/png 01:15:12 T:1391842640 DEBUG: CurlFile::Open(0x532f1f78) http://mirrors.kodi.tv/addons/krypton/script.ace.extrapack/icon.png 01:15:12 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:15:12 T:1391842640 DEBUG: CCurlFile::Open - effective URL: 01:15:12 T:1391842640 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.ace.extrapack/icon.png' to 'b/bcfa1099.png': 01:15:12 T:1391842640 DEBUG: cached image 'special://masterprofile/Thumbnails/b/bcfa1099.png' size 256x256 01:15:12 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:12 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:12 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:12 T:1391842640 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.advanced.wol/icon.png -> image/png 01:15:12 T:1391842640 DEBUG: CurlFile::Open(0x537214f8) http://mirrors.kodi.tv/addons/krypton/script.advanced.wol/icon.png 01:15:12 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:12 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:12 T:1391842640 DEBUG: CCurlFile::Open - effective URL: 01:15:12 T:1391842640 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.advanced.wol/icon.png' to '1/1e00b002.jpg': 01:15:12 T:1391842640 DEBUG: cached image 'special://masterprofile/Thumbnails/1/1e00b002.jpg' size 256x256 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:13 T:1391842640 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.aeonmq5.extrapack/icon.png -> image/png 01:15:13 T:1391842640 DEBUG: CurlFile::Open(0x532f1f78) http://mirrors.kodi.tv/addons/krypton/script.aeonmq5.extrapack/icon.png 01:15:13 T:1391842640 DEBUG: CCurlFile::Open - effective URL: 01:15:13 T:1391842640 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.aeonmq5.extrapack/icon.png' to 'e/e4d5fa4e.png': 01:15:13 T:1391842640 DEBUG: cached image 'special://masterprofile/Thumbnails/e/e4d5fa4e.png' size 256x256 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:13 T:1399123976 INFO: void XCURL::DllLibCurlGlobal::easy_aquire(const char*, const char*, XCURL::CURL_HANDLE**, XCURL::CURLM**) - Created session to http://mirrors.kodi.tv 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:13 T:1391842640 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.aeonmq6.extrapack/icon.png -> image/png 01:15:13 T:1391842640 DEBUG: CurlFile::Open(0x537d3010) http://mirrors.kodi.tv/addons/krypton/script.aeonmq6.extrapack/icon.png 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:13 T:1401507904 DEBUG: Thread JobWorker start, auto delete: true 01:15:13 T:1401507904 INFO: void XCURL::DllLibCurlGlobal::easy_aquire(const char*, const char*, XCURL::CURL_HANDLE**, XCURL::CURLM**) - Created session to http://mirrors.kodi.tv 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:13 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.artistslideshow/icon.png -> image/png 01:15:13 T:1399123976 DEBUG: CurlFile::Open(0x52e4f458) http://mirrors.kodi.tv/addons/krypton/script.artistslideshow/icon.png 01:15:13 T:1391842640 DEBUG: CCurlFile::Open - effective URL: 01:15:13 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:13 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.artistslideshow-helper/icon.png -> image/png 01:15:14 T:1401507904 DEBUG: CurlFile::Open(0x532f4e28) http://mirrors.kodi.tv/addons/krypton/script.artistslideshow-helper/icon.png 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1391842640 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.aeonmq6.extrapack/icon.png' to 'b/b8d26a34.png': 01:15:14 T:1391842640 DEBUG: cached image 'special://masterprofile/Thumbnails/b/b8d26a34.png' size 256x256 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:14 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.artistslideshow/icon.png' to 'c/c98d8b98.png': 01:15:14 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/c/c98d8b98.png' size 256x256 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.artistslideshow-helper/icon.png' to '6/6f806935.jpg': 01:15:14 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/6/6f806935.jpg' size 256x256 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1401507904 INFO: void XCURL::DllLibCurlGlobal::easy_aquire(const char*, const char*, XCURL::CURL_HANDLE**, XCURL::CURLM**) - Created session to http://mirrors.kodi.tv 01:15:14 T:1391842640 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.cdartmanager/fanart.jpg -> image/jpeg 01:15:14 T:1105407336 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.cdartmanager/icon.png -> image/png 01:15:14 T:1391842640 DEBUG: CurlFile::Open(0x53630cf8) http://mirrors.kodi.tv/addons/krypton/script.cdartmanager/fanart.jpg 01:15:14 T:1105407336 DEBUG: CurlFile::Open(0x53756258) http://mirrors.kodi.tv/addons/krypton/script.cdartmanager/icon.png 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1391842640 DEBUG: CCurlFile::Open - effective URL: 01:15:14 T:1105407336 DEBUG: CCurlFile::Open - effective URL: 01:15:14 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.cinder/icon.png -> image/png 01:15:14 T:1399123976 DEBUG: CurlFile::Open(0x53cafa78) http://mirrors.kodi.tv/addons/krypton/script.cinder/icon.png 01:15:14 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.cinder/fanart.jpg -> image/jpeg 01:15:14 T:1401507904 DEBUG: CurlFile::Open(0x53a27c28) http://mirrors.kodi.tv/addons/krypton/script.cinder/fanart.jpg 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105407336 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.cdartmanager/icon.png' to '7/77ba644e.jpg': 01:15:14 T:1105407336 DEBUG: cached image 'special://masterprofile/Thumbnails/7/77ba644e.jpg' size 250x250 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:14 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:14 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:15 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:15 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:15 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:15 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.cinder/icon.png' to '8/86d16eae.png': 01:15:15 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/8/86d16eae.png' size 256x256 01:15:15 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:15 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:15 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:15 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:15 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:15 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): long-down (0x100f081) pressed, action is Down 01:15:15 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:15 T:1401507904 DEBUG: ffmpeg[53895040]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 01:15:15 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.cinder/fanart.jpg' to '4/4c4851c4.jpg': 01:15:15 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/4/4c4851c4.jpg' size 1280x720 01:15:15 T:1105407336 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/plugin.video.couchpotato_manager/icon.png -> image/png 01:15:15 T:1105407336 DEBUG: CurlFile::Open(0x53a27c28) http://mirrors.kodi.tv/addons/krypton/plugin.video.couchpotato_manager/icon.png 01:15:15 T:1105407336 DEBUG: CCurlFile::Open - effective URL: 01:15:15 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.facebook.media/fanart.jpg -> image/jpeg 01:15:15 T:1399123976 DEBUG: CurlFile::Open(0x53c89f80) http://mirrors.kodi.tv/addons/krypton/script.facebook.media/fanart.jpg 01:15:15 T:1105407336 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/plugin.video.couchpotato_manager/icon.png' to 'b/bb50236a.png': 01:15:15 T:1105407336 DEBUG: cached image 'special://masterprofile/Thumbnails/b/bb50236a.png' size 256x256 01:15:15 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:15 T:1399123976 DEBUG: ffmpeg[5364F008]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 01:15:16 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:16 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:16 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.facebook.media/fanart.jpg' to '7/730734c6.jpg': 01:15:16 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/7/730734c6.jpg' size 1280x720 01:15:16 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:16 T:1105407336 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.facebook.media/icon.png -> image/png 01:15:16 T:1105407336 DEBUG: CurlFile::Open(0x537f16f0) http://mirrors.kodi.tv/addons/krypton/script.facebook.media/icon.png 01:15:16 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:16 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:16 T:1105407336 DEBUG: CCurlFile::Open - effective URL: 01:15:16 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.forum.browser/fanart.jpg -> image/jpeg 01:15:16 T:1401507904 DEBUG: CurlFile::Open(0x53c89f80) http://mirrors.kodi.tv/addons/krypton/script.forum.browser/fanart.jpg 01:15:16 T:1105407336 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.facebook.media/icon.png' to '1/16a32a0a.jpg': 01:15:16 T:1105407336 DEBUG: cached image 'special://masterprofile/Thumbnails/1/16a32a0a.jpg' size 256x256 01:15:16 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:16 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:16 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:16 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:16 T:1391842640 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.cdartmanager/fanart.jpg' to 'e/e067840f.jpg': 01:15:16 T:1391842640 DEBUG: cached image 'special://masterprofile/Thumbnails/e/e067840f.jpg' size 1920x1080 01:15:16 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:16 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:16 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:16 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:16 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:16 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:16 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:16 T:1105407336 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/plugin.program.isybrowse/icon.png -> image/png 01:15:16 T:1105407336 DEBUG: CurlFile::Open(0x5419f2d8) http://mirrors.kodi.tv/addons/krypton/plugin.program.isybrowse/icon.png 01:15:16 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:16 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:17 T:1401507904 DEBUG: ffmpeg[53895040]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 01:15:17 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.forum.browser/fanart.jpg' to 'b/bb08dc98.jpg': 01:15:17 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/b/bb08dc98.jpg' size 1280x720 01:15:17 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/plugin.program.jdownloader/icon.png -> image/png 01:15:17 T:1399123976 DEBUG: CurlFile::Open(0x53c89f80) http://mirrors.kodi.tv/addons/krypton/plugin.program.jdownloader/icon.png 01:15:17 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:17 T:1105407336 DEBUG: CCurlFile::Open - effective URL: 01:15:17 T:1105407336 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/plugin.program.isybrowse/icon.png' to '7/70a11b1e.png': 01:15:17 T:1105407336 DEBUG: cached image 'special://masterprofile/Thumbnails/7/70a11b1e.png' size 256x256 01:15:17 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:17 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:17 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:17 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:17 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:17 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:17 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/plugin.program.jdownloader/icon.png' to '1/118eee13.jpg': 01:15:17 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/1/118eee13.jpg' size 256x256 01:15:17 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:17 T:1105407336 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.tv.show.last.episode/fanart.jpg -> image/jpeg 01:15:17 T:1105407336 DEBUG: CurlFile::Open(0x537911a0) http://mirrors.kodi.tv/addons/krypton/script.tv.show.last.episode/fanart.jpg 01:15:17 T:1105407336 DEBUG: CCurlFile::Open - effective URL: 01:15:17 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:17 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:17 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:18 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:18 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:18 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.tv.show.last.episode/icon.png -> image/png 01:15:18 T:1399123976 DEBUG: CurlFile::Open(0x53a1a7d8) http://mirrors.kodi.tv/addons/krypton/script.tv.show.last.episode/icon.png 01:15:18 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:18 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:18 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): down (0xf081) pressed, action is Down 01:15:18 T:1105196928 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 01:15:18 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:18 T:1391842640 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.lazytv/fanart.jpg -> image/jpeg 01:15:18 T:1391842640 DEBUG: CurlFile::Open(0x53b47368) http://mirrors.kodi.tv/addons/krypton/script.lazytv/fanart.jpg 01:15:18 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/plugin.library.node.editor/icon.png -> image/png 01:15:18 T:1401507904 DEBUG: CurlFile::Open(0x534363b8) http://mirrors.kodi.tv/addons/krypton/plugin.library.node.editor/icon.png 01:15:18 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.tv.show.last.episode/icon.png' to '2/2e8f3957.png': 01:15:18 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/2/2e8f3957.png' size 256x256 01:15:18 T:1391842640 DEBUG: CCurlFile::Open - effective URL: 01:15:18 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:18 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/plugin.library.node.editor/icon.png' to '8/8e899e2c.png': 01:15:18 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/8/8e899e2c.png' size 256x256 01:15:18 T:1105407336 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.tv.show.last.episode/fanart.jpg' to '7/77cff725.jpg': 01:15:18 T:1105407336 DEBUG: cached image 'special://masterprofile/Thumbnails/7/77cff725.jpg' size 1280x720 01:15:18 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.logviewer/icon.png -> image/png 01:15:18 T:1399123976 DEBUG: CurlFile::Open(0x53eee1a8) http://mirrors.kodi.tv/addons/krypton/script.logviewer/icon.png 01:15:18 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:19 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.logviewer/icon.png' to '5/5af2e294.png': 01:15:19 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/5/5af2e294.png' size 256x256 01:15:19 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:19 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:19 T:1391842640 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.lazytv/fanart.jpg' to '3/33c2bea5.jpg': 01:15:19 T:1391842640 DEBUG: cached image 'special://masterprofile/Thumbnails/3/33c2bea5.jpg' size 1280x720 01:15:19 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:19 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:19 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:19 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:19 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:19 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:19 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:19 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.lazytv/icon.png -> image/png 01:15:19 T:1401507904 DEBUG: CurlFile::Open(0x537911a0) http://mirrors.kodi.tv/addons/krypton/script.lazytv/icon.png 01:15:19 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:19 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): up (0xf080) pressed, action is Up 01:15:19 T:1105407336 DEBUG: ffmpeg[41E32D68]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 01:15:19 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:19 T:1105196928 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 01:15:19 T:1105407336 DEBUG: virtual bool CImageLoader::DoWork() - took 217 ms to load special://masterprofile/Thumbnails/7/77cff725.jpg 01:15:19 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.lazytv/icon.png' to '4/49bfff42.png': 01:15:19 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/4/49bfff42.png' size 256x256 01:15:19 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:19 T:1105407336 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.kodi.loguploader/icon.png -> image/png 01:15:19 T:1105407336 DEBUG: CurlFile::Open(0x53793f48) http://mirrors.kodi.tv/addons/krypton/script.kodi.loguploader/icon.png 01:15:19 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:15:19 T:1105196928 DEBUG: ------ Window Init (DialogAddonInfo.xml) ------ 01:15:19 T:1105196928 INFO: Loading skin file: DialogAddonInfo.xml, load type: KEEP_IN_MEMORY 01:15:20 T:1105407336 DEBUG: CCurlFile::Open - effective URL: 01:15:20 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.artwork.downloader/icon.png -> image/png 01:15:20 T:1401507904 DEBUG: CurlFile::Open(0x532cf6b8) http://mirrors.kodi.tv/addons/krypton/script.artwork.downloader/icon.png 01:15:20 T:1105407336 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.kodi.loguploader/icon.png' to 'd/d6b1839b.png': 01:15:20 T:1105407336 DEBUG: cached image 'special://masterprofile/Thumbnails/d/d6b1839b.png' size 256x256 01:15:20 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:20 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.artwork.downloader/icon.png' to '8/8000409b.jpg': 01:15:20 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/8/8000409b.jpg' size 256x256 01:15:20 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.artworkorganizer/icon.png -> image/png 01:15:20 T:1401507904 DEBUG: CurlFile::Open(0x535a89d8) http://mirrors.kodi.tv/addons/krypton/script.artworkorganizer/icon.png 01:15:20 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:20 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.artworkorganizer/icon.png' to '6/6b0acd4d.png': 01:15:20 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/6/6b0acd4d.png' size 256x256 01:15:21 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.audio.profiles/icon.png -> image/png 01:15:21 T:1401507904 DEBUG: CurlFile::Open(0x52f87cc0) http://mirrors.kodi.tv/addons/krypton/script.audio.profiles/icon.png 01:15:21 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:21 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:21 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.audio.profiles/icon.png' to 'a/a6f4a0fb.png': 01:15:21 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/a/a6f4a0fb.png' size 256x256 01:15:21 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:15:21 T:1105196928 DEBUG: CAddonInstaller: installing 'script.kodi.loguploader' version '0.0.1' from repository 'repository.xbmc.org' 01:15:21 T:1105196928 DEBUG: CFileCache::Open - opening using cache 01:15:21 T:1105196928 DEBUG: CurlFile::Open(0x53a28ce0) http://mirrors.kodi.tv/addons/krypton/script.kodi.loguploader/script.kodi.loguploader-0.0.1.zip.md5 01:15:21 T:1403823376 DEBUG: Thread FileCache start, auto delete: false 01:15:21 T:1403823376 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?) 01:15:21 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.xbmcbackup/icon.png -> image/png 01:15:21 T:1401507904 DEBUG: CurlFile::Open(0x536c84c8) http://mirrors.kodi.tv/addons/krypton/script.xbmcbackup/icon.png 01:15:21 T:1403823376 DEBUG: Thread FileCache 1403823376 terminating 01:15:21 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:21 T:1399123976 DEBUG: CurlFile::Open(0x53ce9978) http://mirrors.kodi.tv/addons/krypton/script.kodi.loguploader/script.kodi.loguploader-0.0.1.zip 01:15:21 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:21 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.xbmcbackup/icon.png' to '8/8aa52066.jpg': 01:15:21 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/8/8aa52066.jpg' size 256x256 01:15:21 T:1105196928 DEBUG: ------ Window Deinit (DialogAddonInfo.xml) ------ 01:15:21 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:21 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:21 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.cinema.experience/icon.png -> image/png 01:15:21 T:1401507904 DEBUG: CurlFile::Open(0x530de8d0) http://mirrors.kodi.tv/addons/krypton/script.cinema.experience/icon.png 01:15:22 T:1399123976 DEBUG: ADDON: cpluff: 'Unknown plug-in script.kodi.loguploader could not be uninstalled.' 01:15:22 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:22 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.cinema.experience/icon.png' to '2/29b384a3.jpg': 01:15:22 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/2/29b384a3.jpg' size 256x256 01:15:22 T:1399123976 DEBUG: ADDON: cpluff: 'Plug-in script.kodi.loguploader has been installed.' 01:15:22 T:1399123976 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.' 01:15:22 T:1399123976 DEBUG: CAddonDatabase: script.kodi.loguploader has been installed. 01:15:22 T:1399123976 DEBUG: CAddonMgr: enabled script.kodi.loguploader 01:15:22 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.cinemavision/icon.png -> image/png 01:15:22 T:1401507904 DEBUG: CurlFile::Open(0x53acb368) http://mirrors.kodi.tv/addons/krypton/script.cinemavision/icon.png 01:15:22 T:1391842640 DEBUG: ContextMenuManager: addon menus reloaded. 01:15:22 T:1399123976 DEBUG: LocalizeStrings: loaded 17 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/resources/language/resource.language.en_gb/strings.po 01:15:22 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://repository.xbmc.org/xbmc.addon.executable) 01:15:22 T:1105196928 DEBUG: ParentPath = [addons://repository.xbmc.org/xbmc.addon.executable] 01:15:22 T:1105407336 DEBUG: CAddonDatabase: SELECT repo.id FROM repo .. took 4 ms 01:15:22 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:22 T:1105407336 DEBUG: CAddonDatabase: query SELECT * FROM addons JOIN addonlinkrepo ON addons.id=addonlinkrepo.idAddon WHERE addonlinkrepo.idRepo IN (1) ORDER BY addons.addonID returned 927 rows in 40 ms 01:15:22 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.cinemavision/icon.png' to '8/8e416b97.png': 01:15:22 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/8/8e416b97.png' size 256x256 01:15:23 T:1105196928 DEBUG: ------ Window Init (DialogBusy.xml) ------ 01:15:23 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.colorbox/icon.png -> image/png 01:15:23 T:1401507904 DEBUG: CurlFile::Open(0x53bf9120) http://mirrors.kodi.tv/addons/krypton/script.colorbox/icon.png 01:15:23 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://repository.xbmc.org/xbmc.addon.executable) 01:15:23 T:1105196928 DEBUG: ParentPath = [addons://repository.xbmc.org/xbmc.addon.executable] 01:15:23 T:1399123976 DEBUG: CAddonDatabase: SELECT repo.id FROM repo .. took 3 ms 01:15:23 T:1399123976 DEBUG: CAddonDatabase: query SELECT * FROM addons JOIN addonlinkrepo ON addons.id=addonlinkrepo.idAddon WHERE addonlinkrepo.idRepo IN (1) ORDER BY addons.addonID returned 927 rows in 57 ms 01:15:23 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:23 T:1105407336 DEBUG: CAddonDatabase::GetAddons took 731 ms 01:15:23 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.colorbox/icon.png' to 'f/f623889a.png': 01:15:23 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/f/f623889a.png' size 256x256 01:15:23 T:1105407336 DEBUG: CAddonMgr::GetAvailableUpdates took 213 ms 01:15:23 T:1105196928 DEBUG: CGUIMediaWindow::GetDirectory (addons://repository.xbmc.org/xbmc.addon.executable) 01:15:23 T:1105196928 DEBUG: ParentPath = [addons://repository.xbmc.org/xbmc.addon.executable] 01:15:23 T:1391842640 DEBUG: CAddonDatabase: SELECT repo.id FROM repo .. took 3 ms 01:15:23 T:1391842640 DEBUG: CAddonDatabase: query SELECT * FROM addons JOIN addonlinkrepo ON addons.id=addonlinkrepo.idAddon WHERE addonlinkrepo.idRepo IN (1) ORDER BY addons.addonID returned 927 rows in 45 ms 01:15:23 T:1401507904 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.commands/icon.png -> image/png 01:15:23 T:1401507904 DEBUG: CurlFile::Open(0x53bb5bf8) http://mirrors.kodi.tv/addons/krypton/script.commands/icon.png 01:15:24 T:1401507904 DEBUG: CCurlFile::Open - effective URL: 01:15:24 T:1401507904 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.commands/icon.png' to '4/40af35aa.jpg': 01:15:24 T:1401507904 DEBUG: cached image 'special://masterprofile/Thumbnails/4/40af35aa.jpg' size 256x256 01:15:24 T:1399123976 DEBUG: CAddonDatabase::GetAddons took 992 ms 01:15:24 T:1105196928 DEBUG: ------ Window Init (DialogNotification.xml) ------ 01:15:24 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:24 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:15:24 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:24 T:1399123976 DEBUG: CAddonMgr::GetAvailableUpdates took 167 ms 01:15:24 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/plugin.dbmc/icon.png -> image/png 01:15:24 T:1399123976 DEBUG: CurlFile::Open(0x5415dbf0) http://mirrors.kodi.tv/addons/krypton/plugin.dbmc/icon.png 01:15:24 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:24 T:1391842640 DEBUG: CAddonDatabase::GetAddons took 965 ms 01:15:24 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/plugin.dbmc/icon.png' to '8/8812f468.png': 01:15:24 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/8/8812f468.png' size 256x256 01:15:24 T:1391842640 DEBUG: CAddonMgr::GetAvailableUpdates took 177 ms 01:15:25 T:1172558464 DEBUG: Thread BackgroundLoader start, auto delete: false 01:15:25 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/plugin.video.digistorageplayer/icon.png -> image/png 01:15:25 T:1399123976 DEBUG: CurlFile::Open(0x538597d8) http://mirrors.kodi.tv/addons/krypton/plugin.video.digistorageplayer/icon.png 01:15:25 T:1172558464 DEBUG: Thread BackgroundLoader 1172558464 terminating 01:15:25 T:1400202624 DEBUG: Thread BackgroundLoader start, auto delete: false 01:15:25 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:25 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/plugin.video.digistorageplayer/icon.png' to 'a/ae6564e9.png': 01:15:25 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/a/ae6564e9.png' size 256x256 01:15:25 T:1400202624 DEBUG: Thread BackgroundLoader 1400202624 terminating 01:15:25 T:1405144392 DEBUG: Thread BackgroundLoader start, auto delete: false 01:15:25 T:1105196928 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 01:15:25 T:1405144392 DEBUG: Thread BackgroundLoader 1405144392 terminating 01:15:25 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.extendedinfo/icon.png -> image/png 01:15:25 T:1399123976 DEBUG: CurlFile::Open(0x53895860) http://mirrors.kodi.tv/addons/krypton/script.extendedinfo/icon.png 01:15:25 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:25 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.extendedinfo/icon.png' to '4/42be1603.png': 01:15:25 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/4/42be1603.png' size 512x512 01:15:26 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.forum.browser/icon.png -> image/png 01:15:26 T:1399123976 DEBUG: CurlFile::Open(0x53895860) http://mirrors.kodi.tv/addons/krypton/script.forum.browser/icon.png 01:15:26 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:26 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.forum.browser/icon.png' to 'e/e7ff8ebf.jpg': 01:15:26 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/e/e7ff8ebf.jpg' size 256x256 01:15:26 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:26 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:15:26 T:1105196928 DEBUG: ------ Window Init (DialogAddonInfo.xml) ------ 01:15:26 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.globalsearch/icon.png -> image/png 01:15:26 T:1399123976 DEBUG: CurlFile::Open(0x54067d78) http://mirrors.kodi.tv/addons/krypton/script.globalsearch/icon.png 01:15:26 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:26 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.globalsearch/icon.png' to '6/6d614986.png': 01:15:26 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/6/6d614986.png' size 256x256 01:15:27 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.ircchat/icon.png -> image/png 01:15:27 T:1399123976 DEBUG: CurlFile::Open(0x54067d78) http://mirrors.kodi.tv/addons/krypton/script.ircchat/icon.png 01:15:27 T:1105196928 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 01:15:27 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): left (0xf082) pressed, action is Left 01:15:27 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:27 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.ircchat/icon.png' to '1/1427b68b.png': 01:15:27 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/1/1427b68b.png' size 256x256 01:15:27 T:1105196928 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 01:15:27 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:27 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): left (0xf082) pressed, action is Left 01:15:27 T:1105196928 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 01:15:27 T:1105196928 DEBUG: Previous line repeats 1 times. 01:15:27 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): left (0xf082) pressed, action is Left 01:15:27 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.keymap/icon.png -> image/png 01:15:27 T:1399123976 DEBUG: CurlFile::Open(0x53634900) http://mirrors.kodi.tv/addons/krypton/script.keymap/icon.png 01:15:27 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:27 T:1105196928 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 01:15:27 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.keymap/icon.png' to 'a/ab6e8558.png': 01:15:27 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/a/ab6e8558.png' size 256x256 01:15:27 T:1105196928 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 01:15:27 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): left (0xf082) pressed, action is Left 01:15:28 T:1105196928 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 01:15:28 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/plugin.programm.xbmcmail/icon.png -> image/png 01:15:28 T:1399123976 DEBUG: CurlFile::Open(0x53634900) http://mirrors.kodi.tv/addons/krypton/plugin.programm.xbmcmail/icon.png 01:15:28 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:28 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/plugin.programm.xbmcmail/icon.png' to 'b/bed99b17.png': 01:15:28 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/b/bed99b17.png' size 256x256 01:15:28 T:1105196928 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 01:15:28 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): left (0xf082) pressed, action is Left 01:15:28 T:1105196928 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 01:15:28 T:1399123976 DEBUG: CCurlFile::GetMimeType - http://mirrors.kodi.tv/addons/krypton/script.maps.browser/icon.png -> image/png 01:15:28 T:1399123976 DEBUG: CurlFile::Open(0x53634900) http://mirrors.kodi.tv/addons/krypton/script.maps.browser/icon.png 01:15:28 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:28 T:1399123976 DEBUG: CCurlFile::Open - effective URL: 01:15:28 T:1105196928 DEBUG: bool CInputManager::OnKey(const CKey&): return (0xf00d) pressed, action is Select 01:15:28 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:28 T:1406265760 DEBUG: Thread LanguageInvoker start, auto delete: false 01:15:28 T:1406265760 INFO: initializing python engine. 01:15:29 T:1406265760 DEBUG: CPythonInvoker(11, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): start processing 01:15:29 T:1406265760 DEBUG: -->Python Interpreter Initialized<-- 01:15:29 T:1406265760 DEBUG: CPythonInvoker(11, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py" 01:15:29 T:1399123976 DEBUG: Caching image 'http://mirrors.kodi.tv/addons/krypton/script.maps.browser/icon.png' to 'c/cfa66bf6.jpg': 01:15:29 T:1399123976 DEBUG: cached image 'special://masterprofile/Thumbnails/c/cfa66bf6.jpg' size 500x500 01:15:29 T:1406265760 DEBUG: CPythonInvoker(11, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader:/:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-1/base.apk/assets/python2.7/lib/python2.7/lib-dynload 01:15:29 T:1406265760 DEBUG: CPythonInvoker(11, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader 01:15:29 T:1406265760 DEBUG: CPythonInvoker(11, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): instantiating addon using automatically obtained id of "script.kodi.loguploader" dependent on version 2.24.0 of the xbmc.python api 01:15:29 T:1105196928 DEBUG: ------ Window Deinit (DialogAddonInfo.xml) ------ 01:15:29 T:1105196928 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 01:15:29 T:1406265760 DEBUG: script.kodi.loguploader: script version 0.0.1 started Download as text