Changeset 7080
- Timestamp:
- Mar 20, 2018, 1:41:02 PM (3 years ago)
- Location:
- lliurex-store/trunk/fuentes
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-store/trunk/fuentes/debian/changelog
r7076 r7080 1 lliurex-store (0.5.4.1) xenial; urgency=medium 2 3 * Add file for external appimages 4 5 -- Juanma Navarro Mañez <juanma1980@gmail.com> Tue, 20 Mar 2018 13:38:30 +0100 6 1 7 lliurex-store (0.5.4) xenial; urgency=medium 2 8 … … 4 10 * Add icon cache for snaps 5 11 * Snap plugin enabled by default in lliurex-store-gui 12 6 13 -- Juanma Navarro Mañez <juanma1980@gmail.com> Tue, 20 Mar 2018 12:17:56 +0100 7 14 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/appImageManager.py
r7079 r7080 19 19 class appimagemanager: 20 20 def __init__(self): 21 self.dbg= True21 self.dbg=False 22 22 self.progress=0 23 23 self.partial_progress=0 … … 319 319 th.start() 320 320 # os.system('setterm -cursor off') 321 while threading.active_count()>2: #Discard both main and own threads322 for i in range(len(progress_bar),int(self.progress)):323 progress_bar='#'+progress_bar321 # while threading.active_count()>2: #Discard both main and own threads 322 # for i in range(len(progress_bar),int(self.progress)): 323 # progress_bar='#'+progress_bar 324 324 # print (CURSOR_UP) 325 325 # print (("Fetching %s catalogue: "+progress_bar)%repo_type,end="\r") -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/debManager.py
r6693 r7080 24 24 def _debug(self,msg=''): 25 25 if self.dbg: 26 print ('DEBUG Deb: '+str(msg))26 print ('DEBUG Deb: %s'%msg) 27 27 #def debug 28 28 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/infoManager.py
r7075 r7080 20 20 def _debug(self,msg=''): 21 21 if self.dbg: 22 print ('DEBUG Info: '+str(msg))22 print ('DEBUG Info: %s'%msg) 23 23 #def _debug 24 24 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/loadStore.py
r6693 r7080 35 35 def _debug(self,msg=''): 36 36 if self.dbg: 37 print ('DEBUG Load: '+str(msg))37 print ('DEBUG Load: %s'%msg) 38 38 #def _debug 39 39 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/searchManager.py
r6693 r7080 28 28 def _debug(self,msg=''): 29 29 if self.dbg: 30 print ('DEBUG Search: '+msg)30 print ('DEBUG Search: %s'%msg) 31 31 #def _debug 32 32 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/shManager.py
r6693 r7080 28 28 def _debug(self,msg=''): 29 29 if self.dbg: 30 print ('DEBUG Sh: '+msg)30 print ('DEBUG Sh: %s'%msg) 31 31 #def debug 32 32 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/snapManager.py
r7076 r7080 50 50 def _debug(self,msg=''): 51 51 if self.dbg: 52 print ('DEBUG snap: '+msg)52 print ('DEBUG snap: %s'%msg) 53 53 #def debug 54 54 -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/plugins/zmdManager.py
r6693 r7080 37 37 def _debug(self,msg=''): 38 38 if self.dbg: 39 print ('DEBUG Zmd: '+str(msg))39 print ('DEBUG Zmd: %s'%msg) 40 40 #def _debug 41 41
Note: See TracChangeset
for help on using the changeset viewer.