The branch, gotham has been updated
       via  f41ecbccb077e6160ea2eb81454d7fb4b8004f0c (commit)
      from  76e29174675ccd8cec95aee09d7fc00030b78a7e (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=f41ecbccb077e6160ea2eb81454d7fb4b8004f0c

commit f41ecbccb077e6160ea2eb81454d7fb4b8004f0c
Author: Martijn Kaijser <[email protected]>
Date:   Tue Aug 26 21:36:49 2014 +0200

    [script.keymap] 0.9.7

diff --git a/script.keymap/actions.py b/script.keymap/actions.py
index e3fbb21..e89c5bb 100644
--- a/script.keymap/actions.py
+++ b/script.keymap/actions.py
@@ -1,17 +1,20 @@
-'''
-    This program is free software, you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    [at your option) any later version.
+# -*- coding: utf-8 -*-
+#
+# Copyright (C) 2014 Thomas Amland
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program.  If not, see <http,//www.gnu.org/licenses/>.
-'''
 _actions = [
   ["Navigation", [
     "left"              , "Move Left",
@@ -167,6 +170,10 @@ _actions = [
   ]],
 
   ["Other", [
+    "updatelibrary(video)", "Update Video Library",
+    "updatelibrary(music)", "Update Music Library",
+    "cleanlibrary(video)",  "Clean Video Library",
+    "cleanlibrary(music)", "Clean Music Library",
     "codecinfo"         , "Show codec info",
     "screenshot"        , "Take screenshot",
     "reloadkeymaps"     , "Reload keymaps",
@@ -327,6 +334,8 @@ _activate_window = [
 
 _windows = [
   "global"                   , "Global",
+  "fullscreenvideo"          , "Fullscreen Video",
+  "fullscreenlivetv"         , "Fullscreen Live TV",
   "home"                     , "Home",
   "programs"                 , "Programs",
   "videos"                   , "Videos",
@@ -341,8 +350,6 @@ _windows = [
   "musicosd"                 , "Music OSD",
   "osdvideosettings"         , "Video OSD Settings",
   "osdaudiosettings"         , "Audio OSD Settings",
-  "fullscreenvideo"          , "Fullscreen Video",
-  "fullscreenlivetv"         , "Fullscreen Live TV",
   "visualisation"            , "Visualisation",
   "slideshow"                , "Slideshow"
 ]
diff --git a/script.keymap/addon.xml b/script.keymap/addon.xml
index a61f053..4f61289 100644
--- a/script.keymap/addon.xml
+++ b/script.keymap/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.keymap"
        name="Keymap Editor"
-       version="0.9.6"
+       version="0.9.7"
        provider-name="takoi">
     <requires>
         <import addon="xbmc.python" version="2.14.0"/>
diff --git a/script.keymap/changelog.txt b/script.keymap/changelog.txt
index 5a23fe8..4f95b3d 100644
--- a/script.keymap/changelog.txt
+++ b/script.keymap/changelog.txt
@@ -1,3 +1,6 @@
+[B]v0.9.7[/B]
+- Added UpdateLibrary and CleanLibrary actions
+
 [B]v0.9.6[/B]
 - Added more actions new in Gotham
 - Fixed: permission error during save on android
diff --git a/script.keymap/editor.py b/script.keymap/editor.py
index e6da48f..90631b4 100644
--- a/script.keymap/editor.py
+++ b/script.keymap/editor.py
@@ -1,17 +1,20 @@
-'''
-    This program is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
+# -*- coding: utf-8 -*-
+#
+# Copyright (C) 2014 Thomas Amland
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-'''
 from threading import Timer
 from collections_backport import OrderedDict
 from xbmcgui import Dialog, WindowXMLDialog
diff --git a/script.keymap/main.py b/script.keymap/main.py
index 19cd75b..ec467ec 100644
--- a/script.keymap/main.py
+++ b/script.keymap/main.py
@@ -1,17 +1,20 @@
-'''
-    This program is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
+# -*- coding: utf-8 -*-
+#
+# Copyright (C) 2014 Thomas Amland
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-'''
 import os
 import sys
 import shutil
diff --git a/script.keymap/utils.py b/script.keymap/utils.py
index 6e5a788..505d4e9 100644
--- a/script.keymap/utils.py
+++ b/script.keymap/utils.py
@@ -1,17 +1,20 @@
-'''
-    This program is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
+# -*- coding: utf-8 -*-
+#
+# Copyright (C) 2014 Thomas Amland
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-'''
 import xml.etree.ElementTree as ET
 import json
 import xbmc

-----------------------------------------------------------------------

Summary of changes:
 script.keymap/actions.py    |   37 ++++++++++++++++++++++---------------
 script.keymap/addon.xml     |    2 +-
 script.keymap/changelog.txt |    3 +++
 script.keymap/editor.py     |   29 ++++++++++++++++-------------
 script.keymap/main.py       |   29 ++++++++++++++++-------------
 script.keymap/utils.py      |   29 ++++++++++++++++-------------
 6 files changed, 74 insertions(+), 55 deletions(-)


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to