Fix in open files

This commit is contained in:
Mauricio Baeza 2021-01-06 22:21:56 -06:00
parent 0c0ec54b25
commit 844f9e971e
5 changed files with 3 additions and 4 deletions

View File

@ -1 +1 @@
0.6.0
0.7.0

View File

@ -29,7 +29,7 @@ TYPE_EXTENSION = 1
NAME = 'ZAZFavorites'
# ~ https://semver.org/
VERSION = '0.6.0'
VERSION = '0.7.0'
# ~ Should be unique, used URL inverse

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<description xmlns="http://openoffice.org/extensions/description/2006" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:d="http://openoffice.org/extensions/description/2006">
<identifier value="net.elmau.zaz.Favorites"/>
<version value="0.6.0"/>
<version value="0.7.0"/>
<display-name>
<name lang="en">Favorites files</name>
<name lang="es">Archivos favoritos</name>

View File

@ -45,7 +45,6 @@ class Controllers(object):
name = self.d.grid[0, i]
path = self.d.grid[2, i]
label = f'{i+1}. {name}'
path = app.paths.join(path, name)
url = app.paths.to_url(path)
sm = {'Label': label, 'CommandURL': base.format(url)}
submenus.append(sm)