Changeset 7433 for lliurex-store
- Timestamp:
- Jun 13, 2018, 2:06:55 PM (3 years ago)
- Location:
- lliurex-store/trunk/fuentes
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-store/trunk/fuentes/debian/changelog
r7432 r7433 1 lliurex-store (0.5.5) xenial; urgency=medium 2 3 * disable debug 4 5 -- Juanma Navarro Mañez <juanma1980@gmail.com> Wed, 13 Jun 2018 14:06:36 +0200 6 1 7 lliurex-store (0.5.4.6) xenial; urgency=medium 2 8 -
lliurex-store/trunk/fuentes/lliurex-store-gui/usr/share/lliurex-store/lliurex-store-gui/DetailsBox.py
r7432 r7433 13 13 import time 14 14 import threading 15 from subprocess import Popen 15 16 import os 16 17 import html2text … … 518 519 snap=self.core.main_window.current_pkg["name"].replace('.snap','') 519 520 if os.path.exists("/snap/bin/%s"%snap): 520 os.system("/snap/bin/%s"%snap)521 Popen(["/snap/bin/%s"%snap]) 521 522 elif self.core.main_window.current_pkg["name"].endswith('.appimage'): 522 523 appimg=self.core.main_window.current_pkg["name"].lower() 523 524 if os.path.exists(os.getenv("HOME")+"/.local/bin/%s"%appimg): 524 os.system(os.getenv("HOME")+"/.local/bin/%s"%appimg) 525 Popen([os.getenv("HOME")+"/.local/bin/%s"%appimg]) 526 # os.system(os.getenv("HOME")+"/.local/bin/%s"%appimg) 525 527 elif 'Zomando' in self.core.main_window.current_pkg["categories"]: 526 528 zmd=self.core.main_window.current_pkg["id"]+".zmd" 527 529 if os.path.exists("/usr/share/zero-center/zmds/%s"%zmd): 528 os.system("pe /usr/share/zero-center/zmds/%s"%zmd)530 Popen(["pe", "/usr/share/zero-center/zmds/%s"%zmd]) 529 531 else: 530 532 desktop=self.core.main_window.current_pkg["id"] -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/appImageManager.py
r7432 r7433 21 21 class appimagemanager: 22 22 def __init__(self): 23 self.dbg= True23 self.dbg=False 24 24 self.progress=0 25 25 self.partial_progress=0 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/debManager.py
r7432 r7433 6 6 def __init__(self): 7 7 self.installer='' 8 self.dbg= True8 self.dbg=False 9 9 self.result=[] 10 10 self.progress=0 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/infoManager.py
r7432 r7433 3 3 class infomanager: 4 4 def __init__(self): 5 self.dbg= True5 self.dbg=False 6 6 self.plugin_actions={'get_info':'*'} 7 7 self.result={} -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/searchManager.py
r7432 r7433 7 7 def __init__(self): 8 8 self.locale=locale.getlocale()[0] 9 self.dbg= True9 self.dbg=False 10 10 self.store='' 11 11 self.plugin_actions={'search':'*','list':'*','list_sections':'*','info':'*'} -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/snapManager.py
r7432 r7433 16 16 17 17 def __init__(self): 18 self.dbg= True18 self.dbg=False 19 19 self.progress=0 20 20 self.partial_progress=0 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/storeManager.py
r7432 r7433 19 19 if 'dbg' in kwargs.keys(): 20 20 self.dbg=kwargs['dbg'] 21 self.dbg=True22 21 self._propagate_dbg=False 23 22 self.store=None
Note: See TracChangeset
for help on using the changeset viewer.