Changeset 5287 for lliurex-store/trunk/fuentes
- Timestamp:
- Jun 22, 2017, 9:19:09 AM (4 years ago)
- Location:
- lliurex-store/trunk/fuentes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-store/trunk/fuentes/debian/changelog
r5041 r5287 1 lliurex-store (0.2.10.lliurex7) xenial; urgency=medium 2 3 * Removed deprecated locale 4 5 -- Juanma Navarro Mañez <juanma1980@gmail.com> Thu, 22 Jun 2017 09:18:56 +0200 6 1 7 lliurex-store (0.2.10.lliurex6) xenial; urgency=medium 2 8 -
lliurex-store/trunk/fuentes/llx-resources/lliurex-store/metainfo/lliurex-store.appdata.xml
r4675 r5287 1 <?xml version= "1.0" encoding="UTF-8"?>1 <?xml version='1.0' encoding='utf-8'?> 2 2 <component type="desktop-application"> 3 3 <id>lliurex-store</id> … … 5 5 <name>LliureX Store</name> 6 6 <name xml:lang="es">LliureX Store</name> 7 <name xml:lang="qcv">LliureX Store </name>8 7 <name xml:lang="ca_ES@valencia">LliureX Store </name> 9 8 <name xml:lang="ca_ES.UTF-8@valencia">LliureX Store</name> 10 9 <summary>LliureX software store</summary> 11 10 <summary xml:lang="es">LliureX software store</summary> 12 <summary xml:lang="ca_ES@valencia">LliureX software store</summary> 13 <summary xml:lang="ca_ES.UTF-8@valencia">LliureX software store</summary> 11 <summary xml:lang="ca_ES.UTF-8@valencia">Botiga de programari del LliureX</summary> 12 <summary xml:lang="ca_ES@valencia">Botiga de programari del LliureX</summary> 13 <summary xml:lang="ca">Botiga de programari del LliureX</summary> 14 14 <description> 15 15 <p>LliureX software store</p> 16 16 <p xml:lang="es">LliureX software store</p> 17 <p xml:lang="ca_ES@valencia">LliureX software store</p> 18 <p xml:lang="ca_ES.UTF-8@valencia">LliureX software store</p> 17 <p xml:lang="ca_ES.UTF-8@valencia">Botiga de programari del LliureX</p> 18 <p xml:lang="ca_ES@valencia">Botiga de programari del LliureX</p> 19 <p xml:lang="ca">Botiga de programari del LliureX</p> 19 20 </description> 20 21 <categories> -
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/storeManager.py
r5230 r5287 521 521 #Check if package is installed if we want to remove it or vice versa 522 522 for appInfo in applistInfo: 523 # Deactivated as appstream don't get the right status in all cases. Also it only returns two values: Installed and Unknown. Perhaps in some newer versions....523 #Appstream doesn't get the right status in all cases so we rely on the mechanisms given by the different plugins. 524 524 if (action=='install' and appInfo['state']=='installed') or (action=='remove' and appInfo['state']=='available'): 525 525 if (action=='remove' and appInfo['state']=='available'): … … 571 571 self._debug("App state changed to available") 572 572 return_msg=True 573 # self._debug("Regenerating the cache...")574 # self._load_Store()575 573 self._log("Result "+action +": "+str(self.result[action])) 576 574 return(return_msg)
Note: See TracChangeset
for help on using the changeset viewer.