Kodi Community Forum

Full Version: Open addon settings dialog from within PVR addon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
Is there any way to open the addon settings dialog from within PVR addon? I want to let the user to enter the user name and password on first run.
I thought it is possible by returning the ADDON_STATUS_NEED_SETTINGS status from ADDON_Create(), but it seems doesn't work.
Any help will be greatly appreciated.

Thank you.
i'm not very familiar with the addon api, so i talked to some of our team member which let me know that if you do not define a default value this should work in combination with ADDON_STATUS_NEED_SETTINGS. do you have specified a default for the auth info?
(2014-05-04, 13:09)xhaggi Wrote: [ -> ]currently it is not possible because ADDON_STATUS_NEED_SETTINGS only indicates that your addon use settings.
Actually CAddonStatusHandler:Tonguerocess() method has code that opens settings dialog in response to the ADDON_STATUS_NEED_SETTINGS status:
Code:
/* Some required settings are missing/invalid */
  else if ((m_status == ADDON_STATUS_NEED_SETTINGS) || (m_status == ADDON_STATUS_NEED_SAVEDSETTINGS))
  {
    CGUIDialogYesNo* pDialogYesNo = (CGUIDialogYesNo*)g_windowManager.GetWindow(WINDOW_DIALOG_YES_NO);
    if (!pDialogYesNo) return;

    pDialogYesNo->SetHeading(heading);
    pDialogYesNo->SetLine(1, 24070);
    pDialogYesNo->SetLine(2, 24072);
    pDialogYesNo->SetLine(3, m_message);

    //send message and wait for user input
    ThreadMessage tMsg = {TMSG_DIALOG_DOMODAL, WINDOW_DIALOG_YES_NO, (unsigned int)g_windowManager.GetActiveWindow()};
    CApplicationMessenger::Get().SendMessage(tMsg, true);

    if (!pDialogYesNo->IsConfirmed()) return;

    if (!m_addon->HasSettings())
      return;

    if (CGUIDialogAddonSettings::ShowAndGetInput(m_addon))
    {
      //todo doesn't dialogaddonsettings save these automatically? should do
      m_addon->SaveSettings();
      CAddonMgr::Get().GetCallbackForType(m_addon->Type())->RequestRestart(m_addon, true);
    }
  }
But the above code doesn't get called when I return ADDON_STATUS_NEED_SETTINGS status from ADDON_Create() of a PVR addon.
(2014-05-04, 13:09)xhaggi Wrote: [ -> ]In case an addon requires some settings like authentication information, this makes sense to me to open the settings dialog right after the first run if no info exist.
Python addons can use openSettings() method to do exactly that, but how do I do the same from within native PVR addon?
(2014-05-04, 13:26)xhaggi Wrote: [ -> ]i'm not very familiar with the addon api, so i talked to some of our team member which let me know that if you do not define a default value this should work in combination with ADDON_STATUS_NEED_SETTINGS. do you have specified a default for the auth info?
Regardless of whether I have default values for user name and password settings or not, returning ADDON_STATUS_NEED_SETTINGS from ADDON_Create() doesn't open-up the settings dialog.
Code:
<setting id="userName" type="text" label="30011" />
<setting id="password" type="text" label="30012" option="hidden" />
could you please add a debug log?
(2014-05-04, 17:43)xhaggi Wrote: [ -> ]could you please add a debug log?
Here's a debug log. ADDON_Create() always returns ADDON_STATUS_NEED_SETTINGS. Addon name is FullIPTV.
Code:
19:16:31 T:1296  NOTICE: special://profile/ is mapped to: special://masterprofile/
19:16:31 T:1296  NOTICE: -----------------------------------------------------------------------
19:16:31 T:1296  NOTICE: Starting XBMC (13.0-BETA4 Git:20140418-482ccd3). Platform: x86 Win32 32-bit
19:16:31 T:1296  NOTICE: Using Release XBMC x32 build, compiled Apr 19 2014 by MSVC 160040219 for x86 Win32 32-bit version 0x06000000
19:16:31 T:1296  NOTICE: Running on Windows 7 SP1 64-bit, build 7601
19:16:31 T:1296  NOTICE: Host CPU: AMD Athlon(tm) II X4 635 Processor, 4 cores available
19:16:31 T:1296  NOTICE: Desktop Resolution: 1920x1200 32Bit at 60Hz
19:16:31 T:1296  NOTICE: Running with restricted rights
19:16:31 T:1296  NOTICE: Aero is enabled
19:16:31 T:1296  NOTICE: special://xbmc/ is mapped to: C:\Program Files (x86)\XBMC
19:16:31 T:1296  NOTICE: special://xbmcbin/ is mapped to: C:\Program Files (x86)\XBMC
19:16:31 T:1296  NOTICE: special://masterprofile/ is mapped to: C:\Users\Alex\AppData\Roaming\XBMC\userdata
19:16:31 T:1296  NOTICE: special://home/ is mapped to: C:\Users\Alex\AppData\Roaming\XBMC\
19:16:31 T:1296  NOTICE: special://temp/ is mapped to: C:\Users\Alex\AppData\Roaming\XBMC\cache
19:16:31 T:1296  NOTICE: The executable running is: C:\Program Files (x86)\XBMC\XBMC.exe
19:16:31 T:1296  NOTICE: Local hostname: Alex-PC
19:16:31 T:1296  NOTICE: Log File is located: C:\Users\Alex\AppData\Roaming\XBMC\xbmc.log
19:16:31 T:1296  NOTICE: -----------------------------------------------------------------------
19:16:31 T:1296  NOTICE: load settings...
19:16:31 T:1296  NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
19:16:31 T:1296  NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml)
19:16:31 T:1296  NOTICE: Default DVD Player: dvdplayer
19:16:31 T:1296  NOTICE: Default Video Player: dvdplayer
19:16:31 T:1296  NOTICE: Default Audio Player: paplayer
19:16:31 T:1296  NOTICE: Enabled debug logging due to GUI setting (2)
19:16:31 T:1296  NOTICE: Log level changed to 2
19:16:31 T:1296  NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
19:16:31 T:1296  NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
19:16:31 T:1296   DEBUG: CPlayerCoreConfig::<ctor>: created player DVDPlayer for core 1
19:16:31 T:1296   DEBUG: CPlayerCoreConfig::<ctor>: created player oldmplayercore for core 1
19:16:31 T:1296   DEBUG: CPlayerCoreConfig::<ctor>: created player PAPlayer for core 3
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: system rules
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtv
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: hdhomerun/myth/mms/udp
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: lastfm/shout
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtmp
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtsp
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: streams
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: aacp/sdp
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: mp2
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvd
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvdimage
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: sdp/asf
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: nsv
19:16:31 T:1296   DEBUG: CPlayerSelectionRule::Initialize: creating rule: radio
19:16:31 T:1296  NOTICE: Loaded playercorefactory configuration
19:16:31 T:1296  NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
19:16:31 T:1296  NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
19:16:31 T:1296    INFO: creating subdirectories
19:16:31 T:1296    INFO: userdata folder: special://masterprofile/
19:16:31 T:1296    INFO: recording folder:
19:16:31 T:1296    INFO: screenshots folder:
19:16:31 T:1296    INFO: load language info file: special://xbmc/language/English (US)/langinfo.xml
19:16:31 T:1296   DEBUG: trying to set locale to eng_deu
19:16:31 T:1296    INFO: global locale set to English_Germany.1252
19:16:31 T:1296    INFO: load English (US) language file, from path: special://xbmc/language/
19:16:31 T:1296   DEBUG: POParser: PO file has Win Style Line Endings. Converted in memory to Linux LF for file: C:\Program Files (x86)\XBMC\language\English (US)\strings.po
19:16:32 T:1296   DEBUG: POParser: loaded 3162 strings from file C:\Program Files (x86)\XBMC\language\English (US)\strings.po
19:16:32 T:1296   DEBUG: POParser: PO file has Win Style Line Endings. Converted in memory to Linux LF for file: C:\Program Files (x86)\XBMC\language\English\strings.po
19:16:32 T:1296   DEBUG: POParser: loaded 0 strings from file C:\Program Files (x86)\XBMC\language\English\strings.po
19:16:32 T:1296   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/players/dvdplayer/avutil-52.dll)
19:16:32 T:1296   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/players/dvdplayer/avcodec-54.dll)
19:16:32 T:1296   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/players/dvdplayer/avformat-54.dll)
19:16:32 T:1296    INFO:   msg: p11-kit: couldn't open config file: /home/nmav/cvs/gnutls/win32/win32/etc/pkcs11/pkcs11.conf: No error
19:16:32 T:2368  NOTICE: Thread ActiveAE start, auto delete: false
19:16:32 T:2568  NOTICE: Thread AESink start, auto delete: false
19:16:32 T:2368  NOTICE: CAESinkWASAPI::EnumerateDevicesEx: data format "AE_FMT_DTSHD" on device "Realtek HDMI Output (Realtek High Definition Audio)" seems to be not supported.
19:16:32 T:2368  NOTICE: CAESinkWASAPI::EnumerateDevicesEx: data format "AE_FMT_TRUEHD" on device "Realtek HDMI Output (Realtek High Definition Audio)" seems to be not supported.
19:16:32 T:2368  NOTICE: CAESinkWASAPI::EnumerateDevicesEx: data format "AE_FMT_EAC3" on device "Realtek HDMI Output (Realtek High Definition Audio)" seems to be not supported.
19:16:32 T:2368  NOTICE: CAESinkWASAPI::EnumerateDevicesEx: data format "AE_FMT_DTS" on device "Realtek HDMI Output (Realtek High Definition Audio)" seems to be not supported.
19:16:32 T:2368  NOTICE: CAESinkWASAPI::EnumerateDevicesEx: data format "AE_FMT_AC3" on device "Realtek HDMI Output (Realtek High Definition Audio)" seems to be not supported.
19:16:32 T:2368  NOTICE: CAESinkWASAPI::EnumerateDevicesEx: data format "AE_FMT_AAC" on device "Realtek HDMI Output (Realtek High Definition Audio)" seems to be not supported.
19:16:32 T:2368  NOTICE: CAESinkWASAPI::EnumerateDevicesEx: data format "AE_FMT_LPCM" on device "Realtek HDMI Output (Realtek High Definition Audio)" seems to be not supported.
19:16:32 T:2368  NOTICE: Found 2 Lists of Devices
19:16:32 T:2368  NOTICE: Enumerated DIRECTSOUND devices:
19:16:32 T:2368  NOTICE:     Device 1
19:16:32 T:2368  NOTICE:         m_deviceName      : {29E0F3B2-D63C-4C56-ADC9-89B345C5D944}
19:16:32 T:2368  NOTICE:         m_displayName     : HDMI - Realtek HDMI Output (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_displayNameExtra: DIRECTSOUND: Realtek HDMI Output (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_deviceType      : AE_DEVTYPE_HDMI
19:16:32 T:2368  NOTICE:         m_channels        : FL,FR
19:16:32 T:2368  NOTICE:         m_sampleRates     : 48000
19:16:32 T:2368  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_AC3,AE_FMT_DTS
19:16:32 T:2368  NOTICE:     Device 2
19:16:32 T:2368  NOTICE:         m_deviceName      : {2BF29832-8B04-4377-AA71-A0F2AC2DA9EE}
19:16:32 T:2368  NOTICE:         m_displayName     : SPDIF - Realtek Digital Output(RCA) (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_displayNameExtra: DIRECTSOUND: Realtek Digital Output(RCA) (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_deviceType      : AE_DEVTYPE_IEC958
19:16:32 T:2368  NOTICE:         m_channels        : FL,FR
19:16:32 T:2368  NOTICE:         m_sampleRates     : 48000
19:16:32 T:2368  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_AC3,AE_FMT_DTS
19:16:32 T:2368  NOTICE:     Device 3
19:16:32 T:2368  NOTICE:         m_deviceName      : {E2F6B861-CFC5-4F5F-B13C-FA09EC525089}
19:16:32 T:2368  NOTICE:         m_displayName     : Speakers - Speakers (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_displayNameExtra: DIRECTSOUND: Speakers (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
19:16:32 T:2368  NOTICE:         m_channels        : FL,FR
19:16:32 T:2368  NOTICE:         m_sampleRates     : 48000
19:16:32 T:2368  NOTICE:         m_dataFormats     : AE_FMT_FLOAT
19:16:32 T:2368  NOTICE:     Device 4
19:16:32 T:2368  NOTICE:         m_deviceName      : default
19:16:32 T:2368  NOTICE:         m_displayName     : default
19:16:32 T:2368  NOTICE:         m_displayNameExtra:
19:16:32 T:2368  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
19:16:32 T:2368  NOTICE:         m_channels        : FL,FR
19:16:32 T:2368  NOTICE:         m_sampleRates     : 48000
19:16:32 T:2368  NOTICE:         m_dataFormats     : AE_FMT_FLOAT
19:16:32 T:2368  NOTICE: Enumerated WASAPI devices:
19:16:32 T:2368  NOTICE:     Device 1
19:16:32 T:2368  NOTICE:         m_deviceName      : {29E0F3B2-D63C-4C56-ADC9-89B345C5D944}
19:16:32 T:2368  NOTICE:         m_displayName     : HDMI - Realtek HDMI Output (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_displayNameExtra: WASAPI: Realtek HDMI Output (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_deviceType      : AE_DEVTYPE_HDMI
19:16:32 T:2368  NOTICE:         m_channels        : FL,FR
19:16:32 T:2368  NOTICE:         m_sampleRates     : 192000,96000,48000,44100
19:16:32 T:2368  NOTICE:         m_dataFormats     : AE_FMT_DTSHD,AE_FMT_TRUEHD,AE_FMT_EAC3,AE_FMT_DTS,AE_FMT_AC3,AE_FMT_AAC,AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM
19:16:32 T:2368  NOTICE:     Device 2
19:16:32 T:2368  NOTICE:         m_deviceName      : {2BF29832-8B04-4377-AA71-A0F2AC2DA9EE}
19:16:32 T:2368  NOTICE:         m_displayName     : SPDIF - Realtek Digital Output(RCA) (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_displayNameExtra: WASAPI: Realtek Digital Output(RCA) (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_deviceType      : AE_DEVTYPE_IEC958
19:16:32 T:2368  NOTICE:         m_channels        : FL,FR
19:16:32 T:2368  NOTICE:         m_sampleRates     : 192000,96000,48000,44100
19:16:32 T:2368  NOTICE:         m_dataFormats     : AE_FMT_DTS,AE_FMT_AC3,AE_FMT_AAC,AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE
19:16:32 T:2368  NOTICE:     Device 3
19:16:32 T:2368  NOTICE:         m_deviceName      : {E2F6B861-CFC5-4F5F-B13C-FA09EC525089}
19:16:32 T:2368  NOTICE:         m_displayName     : Speakers - Speakers (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_displayNameExtra: WASAPI: Speakers (Realtek High Definition Audio)
19:16:32 T:2368  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
19:16:32 T:2368  NOTICE:         m_channels        : FL,FR,FC,LFE,SL,SR,BL,BR
19:16:32 T:2368  NOTICE:         m_sampleRates     : 192000,96000,48000,44100
19:16:32 T:2368  NOTICE:         m_dataFormats     : AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM
19:16:32 T:2368  NOTICE:     Device 4
19:16:32 T:2368  NOTICE:         m_deviceName      : default
19:16:32 T:2368  NOTICE:         m_displayName     : default
19:16:32 T:2368  NOTICE:         m_displayNameExtra:
19:16:32 T:2368  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
19:16:32 T:2368  NOTICE:         m_channels        : FL,FR,FC,LFE,SL,SR,BL,BR
19:16:32 T:2368  NOTICE:         m_sampleRates     : 192000,96000,48000,44100
19:16:32 T:2368  NOTICE:         m_dataFormats     : AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM
19:16:32 T:2568    INFO: CActiveAESink::OpenSink - initialize sink
19:16:32 T:2568   DEBUG: CActiveAESink::OpenSink - trying to open device DIRECTSOUND:{E2F6B861-CFC5-4F5F-B13C-FA09EC525089}
19:16:32 T:2568   DEBUG: CAESinkDirectSound::Initialize: Using Window handle: 65552
19:16:32 T:2568   DEBUG: CAESinkDirectSound::Initialize: secondary buffer created
19:16:32 T:2568   DEBUG: CAESinkDirectSound::Initialize: Initializing DirectSound with the following parameters:
19:16:32 T:2568   DEBUG:   Audio Device    : Speakers (Realtek High Definition Audio)
19:16:32 T:2568   DEBUG:   Sample Rate     : 44100
19:16:32 T:2568   DEBUG:   Sample Format   : AE_FMT_FLOAT
19:16:32 T:2568   DEBUG:   Bits Per Sample : 32
19:16:32 T:2568   DEBUG:   Valid Bits/Samp : 32
19:16:32 T:2568   DEBUG:   Channel Count   : 2
19:16:32 T:2568   DEBUG:   Block Align     : 8
19:16:32 T:2568   DEBUG:   Avg. Bytes Sec  : 352800
19:16:32 T:2568   DEBUG:   Samples/Block   : 32
19:16:32 T:2568   DEBUG:   Format cBSize   : 22
19:16:32 T:2568   DEBUG:   Channel Layout  : FL,FR
19:16:32 T:2568   DEBUG:   Channel Mask    : 3
19:16:32 T:2568   DEBUG:   Frames          : 661
19:16:32 T:2568   DEBUG:   Frame Samples   : 1322
19:16:32 T:2568   DEBUG:   Frame Size      : 8
19:16:32 T:2568   DEBUG: CActiveAESink::OpenSink - DIRECTSOUND Initialized:
19:16:32 T:2568   DEBUG:   Output Device : Speakers - Speakers (Realtek High Definition Audio)
19:16:32 T:2568   DEBUG:   Sample Rate   : 44100
19:16:32 T:2568   DEBUG:   Sample Format : AE_FMT_FLOAT
19:16:32 T:2568   DEBUG:   Channel Count : 2
19:16:32 T:2568   DEBUG:   Channel Layout: FL,FR
19:16:32 T:2568   DEBUG:   Frames        : 661
19:16:32 T:2568   DEBUG:   Frame Samples : 1322
19:16:32 T:2568   DEBUG:   Frame Size    : 8
19:16:32 T:2568   DEBUG: CAESinkDirectSound::CheckPlayStatus: Resuming Playback
19:16:32 T:1296  NOTICE: Running database version Addons16
19:16:32 T:1296   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/cpluff.dll)
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.json has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.fanart.tv has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in webinterface.default has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in repository.xbmc.org has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in visualization.vortex has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.black has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.vdr.vnsi has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.argustv has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.mediaportal.tvserver has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in weather.wunderground has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.simplejson has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.dim has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in skin.xperience1080 has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.themoviedb.org has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.metadata has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in service.xbmc.versioncheck has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.wmc-wingl windx-x86 has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.dvblink has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in skin.confluence has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.gui has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in visualization.milkdrop has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.pil has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.common.plugin.cache has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.amazon.de has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in visualization.dxspectrum has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.vuplus has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.simple.downloader has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.musicvideos.theaudiodb.com has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.core has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in plugin.video.youtube has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.demo has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.artistslideshow has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.fulliptv has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in skin.touched has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.iptvsimple has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.pvr has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.njoy has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.nextpvr has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.album.universal has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.htbackdrops.com has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in repository.pvr-win32.xbmc.org has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.dvbviewer has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.mythtv.cmyth has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.tvdb.com has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.musicbrainz.org has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.allmusic.com has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.local has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.last.fm has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.themoviedb.org has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.debug has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.parsedom has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.theaudiodb.com has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.artists.universal has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.python has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.imdb.com has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.requests2 has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.addon has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in visualization.waveform has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.hts has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.codec has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.hdtrailers.net has been installed.'
19:16:32 T:1296   DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.'
19:16:32 T:1296  NOTICE: ADDONS: Using repository repository.xbmc.org
19:16:32 T:1296  NOTICE: ADDONS: Using repository repository.pvr-win32.xbmc.org
19:16:32 T:6732  NOTICE: Thread RemoteControl start, auto delete: false
19:16:32 T:6732   DEBUG: CRemoteControl::Connect - connecting to: ::1:24000 ...
19:16:32 T:1296   DEBUG: PERIPHERALS::CPeripherals::LoadMappings - loaded node "Motorola Nyxboard Hybrid"
19:16:32 T:1296   DEBUG: PERIPHERALS::CPeripherals::LoadMappings - loaded node "CEC Adapter"
19:16:32 T:1296   DEBUG: PERIPHERALS::CPeripherals::LoadMappings - loaded node "Pulse-Eight CEC Adapter"
19:16:32 T:1296   DEBUG: PERIPHERALS::CPeripherals::LoadMappings - loaded node "iMON HID device"
19:16:33 T:1296   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libcec.dll)
19:16:33 T:3424  NOTICE: Thread PeripBusCEC start, auto delete: false
19:16:33 T:1392  NOTICE: Thread PeripBusUSB start, auto delete: false
19:16:33 T:1296   DEBUG: CWIN32Util::GetDriveStatus: Requesting status for drive \\.\F:.
19:16:33 T:1296   DEBUG: CWIN32Util::GetDriveStatus: Requesting media status for drive \\.\F:.
19:16:33 T:1296   DEBUG: CWIN32Util::GetDriveStatus: Requesting status for drive \\.\L:.
19:16:33 T:1296   DEBUG: CWIN32Util::GetDriveStatus: Requesting media status for drive \\.\L:.
19:16:33 T:1296  NOTICE: Found screen: Acer X243W on AMD Radeon HD 5570, adapter 0.
19:16:33 T:1296  NOTICE: Primary mode: 1920x1200@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 640x480@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 640x480@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 720x480@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 720x480@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 720x576@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 720x576@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 800x600@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 800x600@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1024x768@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1024x768@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1280x720@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1280x720@ 59.94 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1280x720@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1280x768@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1280x768@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1280x800@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1280x800@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1280x960@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1280x960@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1280x1024@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1280x1024@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1360x1024@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1366x768@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1366x768@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1400x1050@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1440x900@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1440x900@ 75.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1600x900@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1600x1200@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1680x1050@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Additional mode: 1920x1080@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Previous line repeats 2 times.
19:16:33 T:1296  NOTICE: Additional mode: 1920x1200@ 60.00 - Full Screen
19:16:33 T:1296  NOTICE: Checking resolution 16
19:16:33 T:1296   DEBUG: CWinEventsWin32::WndProc: window resize event
19:16:33 T:1296   DEBUG: CWinEventsWin32::WndProc: window move event
19:16:33 T:1296   DEBUG: CWinSystemWin32::ResizeInternal - resizing due to size change (0,0,1920,1200 fullscreen)->(0,0,1920,1200 fullscreen)
19:16:33 T:1296   DEBUG: CWinEventsWin32::WndProcWindow is active
19:16:33 T:6732   DEBUG: CRemoteControl::Connect - connecting to: 127.0.0.1:24000 ...
19:16:34 T:1296   DEBUG: CRenderSystemDX::InitRenderSystem - trying D3D9Ex...
19:16:34 T:1296   DEBUG: CRenderSystemDX::InitRenderSystem - using D3D9Ex
19:16:34 T:1296   DEBUG: CRenderSystemDX::CreateDevice on adapter 0
19:16:34 T:1296   DEBUG: CRenderSystemDX::CreateDevice - using hardware vertex processing
19:16:34 T:1296   DEBUG: CRenderSystemDX::CreateDevice - adapter 0: aticfx32.dll, AMD Radeon HD 5570, VendorId 4098, DeviceId 26841
19:16:34 T:1296   DEBUG: CRenderSystemDX::CreateDevice - using D3DCAPS2_DYNAMICTEXTURES
19:16:34 T:1296   DEBUG: CRenderSystemDX::CreateDevice - texture caps: 0x0001EC45
19:16:34 T:1296   DEBUG: CRenderSystemDX::CreateDevice - RENDER_CAPS_DXT
19:16:34 T:1296   DEBUG: CRenderSystemDX::CreateDevice - RENDER_CAPS_NPOT
19:16:34 T:1296   DEBUG: CRenderSystemDX::CreateDevice - RENDER_CAPS_DXT_NPOT
19:16:34 T:1296   DEBUG: CWinSystemWin32::SetFullScreen (windowed fullscreen) on screen 0 with size 1920x1200, refresh 60.000000
19:16:34 T:1296   DEBUG: CRenderManager::UpdateDisplayLatency - Latency set to 0 msec
19:16:34 T:1296    INFO: load default splash image: C:\Program Files (x86)\XBMC\media\Splash.png
19:16:34 T:1296   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/ImageLib.dll)
19:16:34 T:1296    INFO: load keymapping
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/appcommand.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/gamepad.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.Alienware.Dual.Compatible.Controller.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.AppleRemote.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.Harmony.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.Interact.AxisPad.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.Logitech.RumblePad.2.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.Microsoft.Xbox.360.Controller.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.Microsoft.Xbox.Controller.S.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.Nintendo.Wii.U.Pro.Controller.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.PS3.Remote.Keyboard.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.Sony.PLAYSTATION(R)3.Controller.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.WiiRemote.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/joystick.xml
19:16:34 T:1296  NOTICE: No Joystick name specified, loading default map
19:16:34 T:1296  NOTICE: Previous line repeats 35 times.
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/keyboard.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/mouse.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/remote.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/keymaps/touchscreen.xml
19:16:34 T:1296    INFO: Loading special://xbmc/system/IRSSmap.xml
19:16:34 T:1296    INFO: * Adding remote mapping for device 'Microsoft MCE'
19:16:34 T:1296    INFO: * Adding remote mapping for device 'Abstract'
19:16:34 T:1296   DEBUG: CButtonTranslator::Load - no userdata IRSSmap.xml found, skipping
19:16:34 T:1296    INFO: GUI format 1920x1200, Display 1920x1200@ 60.00 - Full Screen
19:16:34 T:1296   DEBUG: guilib: Fill viewport on change for solving rendering passes
19:16:34 T:1296   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libcurl.dll)
19:16:34 T:1296  NOTICE: Running database version Addons16
19:16:34 T:1296   DEBUG: CDatabaseManager::Initialize, updating databases...
19:16:34 T:1296  NOTICE: Running database version ViewModes6
19:16:34 T:1296  NOTICE: Running database version Textures13
19:16:34 T:6732   DEBUG: CRemoteControl::Connect - failed to connect
19:16:34 T:6732    INFO: CRemoteControl::Process - failed to connect to irss, will keep retrying every 5 seconds
19:16:35 T:1296  NOTICE: Running database version MyMusic46
19:16:35 T:1296  NOTICE: Running database version MyVideos78
19:16:35 T:1296  NOTICE: Running database version TV22
19:16:35 T:1296  NOTICE: Running database version Epg7
19:16:35 T:1296   DEBUG: CDatabaseManager::Initialize, updating databases... DONE
19:16:35 T:1296  NOTICE: initializing playlistplayer
19:16:35 T:1296  NOTICE: DONE initializing playlistplayer
19:16:35 T:1296   DEBUG: DPMS: supported power-saving modes: OFF STANDBY
19:16:35 T:1296   DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc
19:16:35 T:1296   DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear
19:16:35 T:1296    INFO: Unloading old skin ...
19:16:35 T:1296    INFO:   load skin from: C:\Program Files (x86)\XBMC\addons\skin.confluence (version: 2.2.14)
19:16:35 T:1296    INFO:   load fonts for skin...
19:16:35 T:1296    INFO: Loading fonts from C:\Program Files (x86)\XBMC\addons\skin.confluence\720p\Font.xml
19:16:35 T:1296   DEBUG: POParser: PO file has Win Style Line Endings. Converted in memory to Linux LF for file: C:\Program Files (x86)\XBMC\addons\skin.confluence\language\English (US)\strings.po
19:16:35 T:1296   DEBUG: POParser: loaded 148 strings from file C:\Program Files (x86)\XBMC\addons\skin.confluence\language\English (US)\strings.po
19:16:35 T:1296   DEBUG: POParser: PO file has Win Style Line Endings. Converted in memory to Linux LF for file: C:\Program Files (x86)\XBMC\addons\skin.confluence\language\English\strings.po
19:16:35 T:1296   DEBUG: POParser: loaded 0 strings from file C:\Program Files (x86)\XBMC\addons\skin.confluence\language\English\strings.po
19:16:35 T:1296    INFO: Loading skin includes from C:\Program Files (x86)\XBMC\addons\skin.confluence\720p\includes.xml
19:16:35 T:1296    INFO:   load new skin...
19:16:35 T:1296    INFO: Loading user windows, path C:\Program Files (x86)\XBMC\addons\skin.confluence\720p
19:16:35 T:1296   DEBUG: Load Skin XML: 67.27ms
19:16:35 T:1296    INFO:   initialize new skin...
19:16:35 T:1296   DEBUG: guilib: Fill viewport on change for solving rendering passes
19:16:35 T:1296    INFO: Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT
19:16:35 T:1296   DEBUG: CTextureBundleXBT::OpenBundle - Opened bundle C:\Program Files (x86)\XBMC\addons\skin.confluence\media\Textures.xbt
19:16:35 T:1296    INFO: Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT
19:16:35 T:1296    INFO: Loading skin file: DialogKaiToast.xml, load type: LOAD_ON_GUI_INIT
19:16:35 T:1296    INFO: Loading skin file: DialogMuteBug.xml, load type: LOAD_ON_GUI_INIT
19:16:35 T:1296    INFO: Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT
19:16:35 T:1296    INFO: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
19:16:36 T:1296    INFO: Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT
19:16:36 T:1296    INFO: Loading C:\Program Files (x86)\XBMC\addons\skin.confluence\sounds\sounds.xml
19:16:36 T:2368   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/players/dvdplayer/swresample-0.dll)
19:16:36 T:1296    INFO:   skin loaded...
19:16:36 T:1296   DEBUG: JSONRPC: JSON schema type stereoscopicmode references an unknown type GUI.Stereoscopy.Mode
19:16:36 T:1296 WARNING: JSONRPC: Could not parse type "GUI.Property.Value"
19:16:36 T:1296    INFO: JSONRPC: Adding type "GUI.Property.Value" to list of incomplete definitions (waiting for "GUI.Stereoscopy.Mode")
19:16:36 T:1296    INFO: JSONRPC: Resolving incomplete types/methods referencing GUI.Stereoscopy.Mode
19:16:36 T:1296   DEBUG: JSONRPC: JSON schema type definition references an unknown type Setting.Details.Setting
19:16:36 T:1296 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList"
19:16:36 T:1296    INFO: JSONRPC: Adding type "Setting.Details.SettingList" to list of incomplete definitions (waiting for "Setting.Details.Setting")
19:16:36 T:1296    INFO: JSONRPC: Resolving incomplete types/methods referencing Setting.Details.Setting
19:16:36 T:1296    INFO: JSONRPC v6.14.3: Successfully initialized
19:16:36 T:1296   DEBUG: ADDON: Starting service addons.
19:16:36 T:1296   DEBUG: Activating window ID: 12999
19:16:36 T:1296   DEBUG: ------ Window Init (Startup.xml) ------
19:16:36 T:1296    INFO: Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME
19:16:36 T:1572  NOTICE: Thread LanguageInvoker start, auto delete: false
19:16:36 T:1572    INFO: initializing python engine.
19:16:36 T:624  NOTICE: Thread LanguageInvoker start, auto delete: false
19:16:36 T:2616  NOTICE: Thread JobWorker start, auto delete: true
19:16:36 T:624    INFO: initializing python engine.
19:16:36 T:1296    INFO: removing tempfiles
19:16:36 T:1296   DEBUG: ADDON: Starting service addons.
19:16:36 T:1296  NOTICE: initialize done
19:16:36 T:2616  NOTICE: PVRManager - starting up
19:16:36 T:6744  NOTICE: Thread LanguageInvoker start, auto delete: false
19:16:36 T:6744    INFO: initializing python engine.
19:16:36 T:4764  NOTICE: Thread PVRManager start, auto delete: false
19:16:36 T:2544  NOTICE: Thread PVRClient start, auto delete: false
19:16:36 T:2544   DEBUG: PVR::CPVRClients::RegisterClient - registering add-on 'PVR FullIPTV Client'
19:16:36 T:2544   DEBUG: PVR - PVR::CPVRClient::Create - creating PVR add-on instance 'PVR FullIPTV Client'
19:16:36 T:2544   DEBUG: ADDON: Dll Initializing - PVR FullIPTV Client
19:16:36 T:2544   DEBUG: SECTION:LoadDLL(C:\Users\Alex\AppData\Roaming\XBMC\addons\pvr.fulliptv\XBMC_FullIPTV.dll)
19:16:36 T:1572   DEBUG: CPythonInvoker(0, C:\Users\Alex\AppData\Roaming\XBMC\addons\service.xbmc.versioncheck\service.py): start processing
19:16:36 T:624   DEBUG: CPythonInvoker(1, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\default.py): start processing
19:16:36 T:6744   DEBUG: CPythonInvoker(2, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\default.py): start processing
19:16:36 T:1572  NOTICE: -->Python Interpreter Initialized<--
19:16:36 T:1572   DEBUG: CPythonInvoker(0, C:\Users\Alex\AppData\Roaming\XBMC\addons\service.xbmc.versioncheck\service.py): the source file to load is C:\Users\Alex\AppData\Roaming\XBMC\addons\service.xbmc.versioncheck\service.py
19:16:36 T:2544   DEBUG: Calling TransferSettings for: PVR FullIPTV Client
19:16:36 T:1572   DEBUG: CPythonInvoker(0, C:\Users\Alex\AppData\Roaming\XBMC\addons\service.xbmc.versioncheck\service.py): setting the Python path to C:\Users\Alex\AppData\Roaming\XBMC\addons\service.xbmc.versioncheck;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simplejson\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\lib;C:\Program Files (x86)\XBMC\addons\xbmc.debug\;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.parsedom\lib;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.requests2\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python27.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages
19:16:36 T:1572   DEBUG: CPythonInvoker(0, C:\Users\Alex\AppData\Roaming\XBMC\addons\service.xbmc.versioncheck\service.py): entering source directory C:\Users\Alex\AppData\Roaming\XBMC\addons\service.xbmc.versioncheck
19:16:36 T:1572   DEBUG: CPythonInvoker(0, C:\Users\Alex\AppData\Roaming\XBMC\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
19:16:36 T:1296   DEBUG: CJoystick::Initialize : No Joystick found
19:16:36 T:1296  NOTICE: Running the application...
19:16:36 T:1296   DEBUG: Activating window ID: 10000
19:16:36 T:4764   DEBUG: PVRManager - PVR::CPVRManager::Load - active clients found. continue to start
19:16:36 T:1296   DEBUG: ------ Window Init () ------
19:16:36 T:1296   DEBUG: ------ Window Init (Pointer.xml) ------
19:16:36 T:624  NOTICE: -->Python Interpreter Initialized<--
19:16:36 T:624   DEBUG: CPythonInvoker(1, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\default.py): the source file to load is C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\default.py
19:16:36 T:6744  NOTICE: -->Python Interpreter Initialized<--
19:16:36 T:6744   DEBUG: CPythonInvoker(2, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\default.py): the source file to load is C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\default.py
19:16:36 T:624   DEBUG: CPythonInvoker(1, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\default.py): setting the Python path to C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simplejson\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\lib;C:\Program Files (x86)\XBMC\addons\xbmc.debug\;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.parsedom\lib;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.requests2\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python27.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages
19:16:36 T:624   DEBUG: CPythonInvoker(1, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\default.py): entering source directory C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader
19:16:36 T:6744   DEBUG: CPythonInvoker(2, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\default.py): setting the Python path to C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simplejson\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\lib;C:\Program Files (x86)\XBMC\addons\xbmc.debug\;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.parsedom\lib;C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.requests2\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python27.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages
19:16:36 T:6744   DEBUG: CPythonInvoker(2, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\default.py): entering source directory C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache
19:16:36 T:1572   DEBUG: XBMC Version Check: Version 0.1.20 started
19:16:36 T:1296   DEBUG: ------ Window Deinit (Startup.xml) ------
19:16:36 T:1296   DEBUG: ------ Window Init (Home.xml) ------
19:16:36 T:1296    INFO: Loading skin file: Home.xml, load type: KEEP_IN_MEMORY
19:16:36 T:2616   DEBUG: CRecentlyAddedJob::UpdateMusic() - Running RecentlyAdded home screen update
19:16:36 T:1296   DEBUG: no profile autoexec.py (C:\Users\Alex\AppData\Roaming\XBMC\userdata\autoexec.py) found, skipping
19:16:36 T:1296   DEBUG: CNetwork::NetworkMessage - Starting network services
19:16:36 T:1572    INFO: CPythonInvoker(0, C:\Users\Alex\AppData\Roaming\XBMC\addons\service.xbmc.versioncheck\service.py): script successfully run
19:16:36 T:1296  NOTICE: ES: Starting event server
19:16:36 T:624   DEBUG: CPythonInvoker(1, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\default.py): instantiating addon using automatically obtained id of "script.module.simple.downloader" dependent on version 2.1.0 of the xbmc.python api
19:16:36 T:1296    INFO: JSONRPC Server: Successfully initialized
19:16:36 T:6956  NOTICE: Thread EventServer start, auto delete: false
19:16:36 T:6956  NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777
19:16:36 T:6956  NOTICE: UDP: Listening on port 9777
19:16:36 T:1136  NOTICE: Thread TCPServer start, auto delete: false
19:16:36 T:1296   DEBUG: ------ Window Init (DialogExtendedProgressBar.xml) ------
19:16:36 T:4764   DEBUG: PVR - PVR::CPVRChannelGroups::Load - loading all radio channel groups
19:16:36 T:1296   DEBUG: started alarm with name: checkatboot
19:16:36 T:1296   DEBUG: started alarm with name: checkwhilerunning
19:16:36 T:4764    INFO: PVRChannelGroupInternal - PVR::CPVRChannelGroupInternal::LoadFromDb - no channels in the database
19:16:36 T:4764   DEBUG: PVRChannelGroup - PVR::CPVRChannelGroup::Load - 0 channels loaded from the database for group 'All radio channels'
19:16:36 T:4764   ERROR: PVR - PVR::CPVRClient::GetChannels - addon 'FullIPTV PVR Add-on:connected' returned an error: server error
19:16:36 T:4764   ERROR: PVR - PVR::CPVRClients::GetChannels - cannot get channels from client '1': server error
19:16:36 T:4764   ERROR: PVRChannelGroup - PVR::CPVRChannelGroup::Load - failed to update channels
19:16:36 T:4764   ERROR: PVRChannelGroupInternal - PVR::CPVRChannelGroupInternal::Load - failed to load channels
19:16:36 T:4764   ERROR: PVR - PVR::CPVRChannelGroups::Load - failed to load channels
19:16:36 T:4764   ERROR: PVRManager - PVR::CPVRManager::Process - failed to load PVR data, retrying
19:16:36 T:2544   DEBUG: Thread PVRClient 2544 terminating
19:16:36 T:640  NOTICE: Thread AlarmClock start, auto delete: false
19:16:36 T:4764   DEBUG: PVR - PVR::CPVRClient::Destroy - destroying PVR add-on 'FullIPTV PVR Add-on:connected'
19:16:36 T:4764    INFO: ADDON: Dll Destroyed - PVR FullIPTV Client
19:16:36 T:6744   DEBUG: CPythonInvoker(2, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\default.py): instantiating addon using automatically obtained id of "script.common.plugin.cache" dependent on version 2.1.0 of the xbmc.python api
19:16:36 T:1572    INFO: Python script stopped
19:16:36 T:1572   DEBUG: Thread LanguageInvoker 1572 terminating
19:16:36 T:2616   DEBUG: GetRecentlyAddedAlbumSongs() query: SELECT songview.* FROM (SELECT idAlbum FROM albumview ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN songview ON songview.idAlbum=recentalbums.idAlbum
19:16:36 T:2616   DEBUG: CMusicDatabase::GetRecentlyAddedAlbums query: select * from albumview where strAlbum != '' order by idAlbum desc limit 10
19:16:36 T:2616   DEBUG: CRecentlyAddedJob::UpdateVideos() - Running RecentlyAdded home screen update
19:16:36 T:6596  NOTICE: Thread RSSReader start, auto delete: false
19:16:36 T:6596   DEBUG: CurlFile::Open(0ADEF968) http://feeds.xbmc.org/xbmc
19:16:36 T:6596    INFO: XCURL::DllLibCurlGlobal::easy_aquire - Created session to http://feeds.xbmc.org
19:16:36 T:1296   DEBUG: ------ Window Deinit (DialogExtendedProgressBar.xml) ------
19:16:36 T:624    INFO: CPythonInvoker(1, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.module.simple.downloader\default.py): script successfully run
19:16:36 T:6744  NOTICE:  StorageServer Module loaded RUN
19:16:36 T:6744  NOTICE: StorageClient-2.5.4 Starting server
19:16:36 T:6744  NOTICE: StorageServer-2.5.4 Storage Server starting C:\Users\Alex\AppData\Roaming\XBMC\cache\commoncache.db
19:16:36 T:624    INFO: Python script stopped
19:16:36 T:624   DEBUG: Thread LanguageInvoker 624 terminating
19:16:37 T:6596   DEBUG: Got rss feed: http://feeds.xbmc.org/xbmc
19:16:37 T:6596   DEBUG: RSS feed encoding: UTF-8
19:16:37 T:6596   DEBUG: Parsed rss feed: http://feeds.xbmc.org/xbmc
19:16:37 T:6596   DEBUG: Thread RSSReader 6596 terminating
19:16:37 T:2616   DEBUG: CVideoDatabase::RunQuery took 25 ms for 10 items query: select * from movieview  ORDER BY dateAdded desc, idMovie desc LIMIT 10
19:16:37 T:2616   DEBUG: CVideoDatabase::RunQuery took 1 ms for 0 items query: select * from episodeview  ORDER BY dateAdded desc, idEpisode desc LIMIT 10
19:16:37 T:2616   DEBUG: CVideoDatabase::RunQuery took 0 ms for 0 items query: select * from musicvideoview  ORDER BY dateAdded desc, idMVideo desc LIMIT 10
19:16:37 T:2616   DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update
19:16:37 T:4764   DEBUG: Thread PVRManager 4764 terminating
19:16:39 T:1296   DEBUG: Keyboard: scancode: 0x50, sym: 0x0112, unicode: 0x0000, modifier: 0x0
19:16:39 T:1296   DEBUG: CApplication::OnKey: down (0xf081) pressed, action is Down
19:16:39 T:1296   DEBUG: ------ Window Deinit (Pointer.xml) ------
19:16:39 T:1296   DEBUG: Keyboard: scancode: 0x50, sym: 0x0112, unicode: 0x0000, modifier: 0x0
19:16:39 T:1296   DEBUG: CApplication::OnKey: down (0xf081) pressed, action is Down
19:16:40 T:1296   DEBUG: Keyboard: scancode: 0x50, sym: 0x0112, unicode: 0x0000, modifier: 0x0
19:16:40 T:1296   DEBUG: CApplication::OnKey: down (0xf081) pressed, action is Down
19:16:40 T:1296   DEBUG: Keyboard: scancode: 0x1c, sym: 0x000d, unicode: 0x000d, modifier: 0x0
19:16:40 T:1296   DEBUG: CApplication::OnKey: return (0xf00d) pressed, action is Select
19:16:40 T:1296   DEBUG: Activating window ID: 10111
19:16:40 T:1296   DEBUG: ------ Window Init (DialogButtonMenu.xml) ------
19:16:40 T:1296    INFO: Loading skin file: DialogButtonMenu.xml, load type: KEEP_IN_MEMORY
19:16:40 T:1296   DEBUG: Keyboard: scancode: 0x1c, sym: 0x000d, unicode: 0x000d, modifier: 0x0
19:16:40 T:1296   DEBUG: CApplication::OnKey: return (0xf00d) pressed, action is Select
19:16:40 T:1296   DEBUG: CAnnouncementManager - Announcement: OnQuit from xbmc
19:16:40 T:1296   DEBUG: GOT ANNOUNCEMENT, type: 8, from xbmc, message OnQuit
19:16:40 T:1296  NOTICE: Storing total System Uptime
19:16:40 T:640   DEBUG: Thread AlarmClock 640 terminating
19:16:40 T:1296  NOTICE: Saving settings
19:16:40 T:1296  NOTICE: stop all
19:16:40 T:1296  NOTICE: stop player
19:16:40 T:1296    INFO: stopping PVRManager
19:16:40 T:2616   DEBUG: Thread JobWorker 2616 terminating (autodelete)
19:16:40 T:1296   DEBUG: CNetwork::NetworkMessage - Signaling network services to stop
19:16:40 T:1296  NOTICE: ES: Stopping event server
19:16:40 T:1296   DEBUG: CNetwork::NetworkMessage - Waiting for network services to stop
19:16:41 T:6956  NOTICE: ES: UDP Event server stopped
19:16:41 T:6956   DEBUG: Thread EventServer 6956 terminating
19:16:41 T:1136   DEBUG: Thread TCPServer 1136 terminating
19:16:41 T:1392   DEBUG: Thread PeripBusUSB 1392 terminating
19:16:41 T:3424   DEBUG: Thread PeripBusCEC 3424 terminating
19:16:41 T:1296  NOTICE: stop sap announcement listener
19:16:41 T:1296  NOTICE: clean cached files!
19:16:41 T:1296  NOTICE: unload skin
19:16:41 T:1296    INFO: Unloading old skin ...
19:16:41 T:1296   DEBUG: ------ Window Deinit () ------
19:16:41 T:1296   DEBUG: ------ Window Deinit (Home.xml) ------
19:16:41 T:1296   DEBUG: CTextureBundleXBT::Cleanup - Closed bundle
19:16:41 T:1296   DEBUG: ADDON: Stopping service addons.
19:16:41 T:6744  NOTICE: StorageServer-2.5.4 Closed down
19:16:41 T:6744    INFO: CPythonInvoker(2, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\default.py): script successfully run
19:16:41 T:1296   DEBUG: CPythonInvoker(2, C:\Users\Alex\AppData\Roaming\XBMC\addons\script.common.plugin.cache\default.py): script termination took 141ms
19:16:41 T:6744    INFO: Python script interrupted by user
19:16:41 T:6744   DEBUG: Thread LanguageInvoker 6744 terminating
19:16:41 T:2368   DEBUG: Thread ActiveAE 2368 terminating
19:16:41 T:1296   DEBUG: CAESinkDirectSound::Deinitialize: Cleaning up
19:16:41 T:2568   DEBUG: Thread AESink 2568 terminating
19:16:42 T:1296  NOTICE: stopped
19:16:42 T:1296  NOTICE: destroy
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.json has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.fanart.tv has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in repository.xbmc.org has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in webinterface.default has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.argustv has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.vdr.vnsi has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.black has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in visualization.vortex has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.mediaportal.tvserver has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.simplejson has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in weather.wunderground has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in skin.xperience1080 has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.dim has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.themoviedb.org has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in service.xbmc.versioncheck has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.metadata has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.dvblink has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.wmc-wingl windx-x86 has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in skin.confluence has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.amazon.de has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.common.plugin.cache has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.pil has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in visualization.milkdrop has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.gui has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in visualization.dxspectrum has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.musicvideos.theaudiodb.com has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.simple.downloader has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.vuplus has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.core has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in plugin.video.youtube has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.fulliptv has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.artistslideshow has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.demo has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in skin.touched has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.iptvsimple has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.pvr has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.njoy has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.nextpvr has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.album.universal has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.htbackdrops.com has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.dvbviewer has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in repository.pvr-win32.xbmc.org has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.allmusic.com has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.musicbrainz.org has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.tvdb.com has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.mythtv.cmyth has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.local has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.last.fm has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.themoviedb.org has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.artists.universal has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.theaudiodb.com has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.parsedom has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.debug has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.imdb.com has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.python has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in script.module.requests2 has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in pvr.hts has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in visualization.waveform has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.addon has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in xbmc.codec has been uninstalled.'
19:16:42 T:1296   DEBUG: ADDON: cpluff: 'Plug-in metadata.common.hdtrailers.net has been uninstalled.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0627F880 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061E5348 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061D8088 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061D7908 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061DDDD0 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061DCA90 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061DB090 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061E5858 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061DF7D8 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061DAC58 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061C1E18 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061D3BA8 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061E9CF0 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061E1430 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061CA630 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296    INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 061C3C30 with reference count 1 when destroying the associated plug-in context. Not releasing the object.'
19:16:42 T:1296  NOTICE: closing down remote control service
19:16:42 T:1296  NOTICE: unload sections
19:16:42 T:6732   DEBUG: Thread RemoteControl 6732 terminating
19:16:42 T:1296   DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc
19:16:42 T:1296   DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear
19:16:42 T:1296   DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc
19:16:42 T:1296   DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear
19:16:42 T:1296  NOTICE: special://profile/ is mapped to: special://masterprofile/
19:16:42 T:1296   DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc
19:16:42 T:1296   DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear
19:16:42 T:1296  NOTICE: destroy
19:16:42 T:1296 WARNING: Attempted to remove window 10013 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10014 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10015 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10016 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10017 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10018 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10019 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10021 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10107 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10115 from the window manager when it didn't exist
19:16:42 T:1296 WARNING: Attempted to remove window 10104 from the window manager when it didn't exist
19:16:42 T:1296  NOTICE: closing down remote control service
19:16:42 T:1296  NOTICE: unload sections
19:16:42 T:1296   DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc
19:16:42 T:1296   DEBUG: Previous line repeats 1 times.
19:16:42 T:1296  NOTICE: application stopped...
19:16:42 T:1296   DEBUG: PVRManager - destroyed
19:16:42 T:1296   DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc
19:16:42 T:1296   DEBUG: Previous line repeats 1 times.
19:16:42 T:1296   DEBUG: SECTION:UnloadDll(special://xbmcbin/system/libcurl.dll)
19:16:42 T:1296   DEBUG: SECTION:UnloadAll(DLL: special://xbmcbin/system/players/dvdplayer/avutil-52.dll)
19:16:42 T:1296   DEBUG: SECTION:UnloadAll(DLL: special://xbmcbin/system/players/dvdplayer/avcodec-54.dll)
19:16:42 T:1296   DEBUG: SECTION:UnloadAll(DLL: special://xbmcbin/system/players/dvdplayer/avformat-54.dll)
19:16:42 T:1296   DEBUG: SECTION:UnloadAll(DLL: special://xbmcbin/system/cpluff.dll)
19:16:42 T:1296   DEBUG: SECTION:UnloadAll(DLL: special://xbmcbin/system/libcec.dll)
19:16:42 T:1296   DEBUG: SECTION:UnloadAll(DLL: special://xbmcbin/system/ImageLib.dll)
19:16:42 T:1296   DEBUG: SECTION:UnloadAll(DLL: special://xbmcbin/system/players/dvdplayer/swresample-0.dll)
19:16:42 T:1296   DEBUG: SECTION:UnloadAll(DLL: C:\Users\Alex\AppData\Roaming\XBMC\addons\pvr.fulliptv\XBMC_FullIPTV.dll)
Though I don't think the log will be of any help.
After a closer look at this, i think you have to return ADDON_STATUS_NEED_SETTINGS in method ADDON_SetSetting(const char *settingName, const void *settingValue) if the specific field is blank/empty too.

I can't do some tests because I don't have a running pvr addon environment.
(2014-05-04, 18:35)xhaggi Wrote: [ -> ]After a closer look at this, i think you have to return ADDON_STATUS_NEED_SETTINGS in method ADDON_SetSetting(const char *settingName, const void *settingValue) if the specific field is blank/empty too.
Yes, now XBMC shows the addon settings dialog. But after closing the dialog CAddonStatusHandler:Tonguerocess() requests a restart of the addon (ADDON_Create() should be called again), but because of a bug in CPVRClients class it doesn't restart.
Code:
CAddonMgr::Get().GetCallbackForType(m_addon->Type())->RequestRestart(m_addon, true);
I will create a pull request that fixes the bug.
thanks and nice find. if your PR gets in, we should add this to all addons which requires specific settings to run properly.
(2014-05-05, 19:41)xhaggi Wrote: [ -> ]thanks and nice find. if your PR gets in, we should add this to all addons which requires specific settings to run properly.
Thank for your help.