mirror of
https://github.com/nextcloud/passman.git
synced 2025-10-04 10:44:26 +08:00
Passman 2.1.4
Release passman 2.1.4 Small little problems appeared during the release of 2.1.3. Had to resign and re-release it. - Fix font awesome not found. (Fixes #286) - Export urls of credentials - Check if variable exists before comparing. Fixes #316 - Remove password generator from change vault key. Solves #313 - Add padlock importer - Remove log message on cron run Signed-off-by: brantje <brantje@gmail.com> Signed-off-by: Passman Bot <info@passman.cc>
This commit is contained in:
parent
bd7b066f1c
commit
7cb651154b
1 changed files with 12 additions and 11 deletions
|
@ -1,5 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<info>
|
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
||||||
<id>passman</id>
|
<id>passman</id>
|
||||||
<name>Passman</name>
|
<name>Passman</name>
|
||||||
<summary>Passman is a full featured password manager.</summary>
|
<summary>Passman is a full featured password manager.</summary>
|
||||||
|
@ -16,9 +17,8 @@ Features:
|
||||||
- Import from various password managers (KeePass, LastPass, DashLane, ZOHO, Clipperz.is )
|
- Import from various password managers (KeePass, LastPass, DashLane, ZOHO, Clipperz.is )
|
||||||
For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
|
For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
|
||||||
]]></description>
|
]]></description>
|
||||||
|
<version>2.1.4</version>
|
||||||
<licence>AGPL</licence>
|
<licence>agpl</licence>
|
||||||
<version>2.1.3</version>
|
|
||||||
<author homepage="https://github.com/brantje">Sander Brand</author>
|
<author homepage="https://github.com/brantje">Sander Brand</author>
|
||||||
<author homepage="https://github.com/animalillo">Marcos Zuriaga</author>
|
<author homepage="https://github.com/animalillo">Marcos Zuriaga</author>
|
||||||
<namespace>Passman</namespace>
|
<namespace>Passman</namespace>
|
||||||
|
@ -36,21 +36,22 @@ For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
|
||||||
<screenshot small-thumbnail="https://img.passman.cc/thumbs/password_audit.png">https://img.passman.cc/password_audit.png</screenshot>
|
<screenshot small-thumbnail="https://img.passman.cc/thumbs/password_audit.png">https://img.passman.cc/password_audit.png</screenshot>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<php min-version="5.6"/>
|
<php min-version="5.6"/>
|
||||||
|
<database>sqlite</database>
|
||||||
|
<database>pgsql</database>
|
||||||
|
<database min-version="5.5">mysql</database>
|
||||||
|
<lib>openssl</lib>
|
||||||
<owncloud min-version="9" max-version="11" />
|
<owncloud min-version="9" max-version="11" />
|
||||||
<nextcloud min-version="9" max-version="13" />
|
<nextcloud min-version="9" max-version="13" />
|
||||||
<database>sqlite</database>
|
|
||||||
<database min-version="5.5">mysql</database>
|
|
||||||
<database>pgsql</database>
|
|
||||||
<lib>openssl</lib>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
<background-jobs>
|
||||||
|
<job>OCA\Passman\BackgroundJob\ExpireCredentials</job>
|
||||||
|
</background-jobs>
|
||||||
|
|
||||||
<repair-steps>
|
<repair-steps>
|
||||||
<post-migration>
|
<post-migration>
|
||||||
<step>OCA\Passman\Migration\ServerSideEncryption</step>
|
<step>OCA\Passman\Migration\ServerSideEncryption</step>
|
||||||
</post-migration>
|
</post-migration>
|
||||||
</repair-steps>
|
</repair-steps>
|
||||||
|
|
||||||
<background-jobs>
|
|
||||||
<job>OCA\Passman\BackgroundJob\ExpireCredentials</job>
|
|
||||||
</background-jobs>
|
|
||||||
</info>
|
</info>
|
||||||
|
|
Loading…
Add table
Reference in a new issue