Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpassman-bot <info@passman.cc>2021-08-22 20:35:26 +0300
committerpassman-bot <info@passman.cc>2021-08-22 20:35:26 +0300
commit6d0ea196e33f8322e4174a7883de18398ba0cd79 (patch)
tree8f3a95431d15e44caa3fa977d20591bfca0e17a1
parent16573033db2c5ff910e42a2bc0c80722bcebd514 (diff)
Passman 2.3.102.3.10dist
Bump release again beacause broken release script Signed-off-by: passman-bot <info@passman.cc>
-rw-r--r--appinfo/database.xml593
-rw-r--r--appinfo/info.xml2
2 files changed, 1 insertions, 594 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
deleted file mode 100644
index c4c18fb5..00000000
--- a/appinfo/database.xml
+++ /dev/null
@@ -1,593 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<database xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/nextcloud/appstore/master/nextcloudappstore/api/v1/release/database.xsd">
- <name>*dbname*</name>
- <create>true</create>
- <overwrite>false</overwrite>
- <charset>utf8</charset>
- <table>
- <name>*dbprefix*passman_vaults</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- <primary>true</primary>
- </field>
- <field>
- <name>guid</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- <default>0</default>
- </field>
- <field>
- <name>user_id</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- <default>0</default>
- </field>
- <field>
- <name>name</name>
- <type>text</type>
- <length>100</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>vault_settings</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>created</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>last_access</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>public_sharing_key</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>private_sharing_key</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>sharing_keys_generated</name>
- <type>integer</type>
- <length>8</length>
- </field>
- <index>
- <name>passman_vault_last_access_index</name>
- <field>
- <name>last_access</name>
- </field>
- </index>
-
- <index>
- <name>passman_vault_guid_index</name>
- <field>
- <name>guid</name>
- </field>
- </index>
-
- <index>
- <name>npassman_vault_id_index</name>
- <field>
- <name>id</name>
- </field>
- </index>
-
- <index>
- <name>passman_vault_uid_id_index</name>
- <field>
- <name>user_id</name>
- </field>
- </index>
- </declaration>
- </table>
- <table>
- <name>*dbprefix*passman_credentials</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- <primary>true</primary>
- </field>
- <field>
- <name>guid</name>
- <type>text</type>
- <length>64</length>
- <notnull>false</notnull>
- </field>
-
- <field>
- <name>user_id</name>
- <type>text</type>
- <length>64</length>
- <notnull>false</notnull>
- </field>
- <field>
- <name>vault_id</name>
- <type>integer</type>
- <length>8</length>
- <notnull>true</notnull>
- </field>
-
- <field>
- <name>label</name>
- <type>clob</type>
- <notnull>true</notnull>
- </field>
-
- <field>
- <name>description</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>created</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>changed</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>tags</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>email</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>username</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>password</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>url</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>renew_interval</name>
- <type>bigint</type>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>expire_time</name>
- <type>bigint</type>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>delete_time</name>
- <type>bigint</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>files</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
-
- <field>
- <name>custom_fields</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>otp</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>hidden</name>
- <type>boolean</type>
- <default>false</default>
- </field>
- <field>
- <name>compromised</name>
- <type>clob</type>
- </field>
- <field>
- <name>shared_key</name>
- <type>clob</type>
- </field>
- <field>
- <name>icon</name>
- <type>clob</type>
- </field>
- <index>
- <name>passman_credential_id_index</name>
- <field>
- <name>id</name>
- </field>
- </index>
- <index>
- <name>passman_credential_vault_id_index</name>
- <field>
- <name>vault_id</name>
- </field>
- </index>
- <index>
- <name>passman_credential_user_id_index</name>
- <field>
- <name>user_id</name>
- </field>
- </index>
- </declaration>
- </table>
- <table>
- <name>*dbprefix*passman_files</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- <primary>true</primary>
- </field>
- <field>
- <name>guid</name>
- <type>text</type>
- <length>64</length>
- <notnull>false</notnull>
- </field>
-
- <field>
- <name>user_id</name>
- <type>text</type>
- <length>64</length>
- <notnull>false</notnull>
- </field>
- <field>
- <name>mimetype</name>
- <type>text</type>
- <length>255</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>filename</name>
- <type>clob</type>
- <notnull>true</notnull>
- </field>
- <field>
- <name>size</name>
- <type>bigint</type>
- <notnull>true</notnull>
- </field>
- <field>
- <name>created</name>
- <type>bigint</type>
- <notnull>true</notnull>
- </field>
-
- <field>
- <name>file_data</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <index>
- <name>passman_file_id_index</name>
- <field>
- <name>id</name>
- </field>
- </index>
- <index>
- <name>passman_file_user_id_index</name>
- <field>
- <name>user_id</name>
- </field>
- </index>
- </declaration>
- </table>
- <table>
- <name>*dbprefix*passman_revisions</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- <primary>true</primary>
- </field>
- <field>
- <name>guid</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>credential_id</name>
- <type>integer</type>
- <length>8</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>user_id</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>created</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>credential_data</name>
- <type>clob</type>
- <notnull>true</notnull>
- </field>
- <field>
- <name>edited_by</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- </field>
- <index>
- <name>passman_revision_id_index</name>
- <field>
- <name>id</name>
- </field>
- </index>
- <index>
- <name>passman_revision_user_id_index</name>
- <field>
- <name>user_id</name>
- </field>
- </index>
- <index>
- <name>passman_revision_credential_id_index</name>
- <field>
- <name>credential_id</name>
- </field>
- </index>
- </declaration>
- </table>
- <table>
- <name>*dbprefix*passman_sharing_acl</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- <primary>true</primary>
- </field>
- <field>
- <name>item_id</name>
- <type>integer</type>
- <length>8</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>item_guid</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>vault_id</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- </field>
- <field>
- <name>vault_guid</name>
- <type>text</type>
- <length>64</length>
- <notnull>false</notnull>
- </field>
- <field>
- <name>user_id</name>
- <type>text</type>
- <length>64</length>
- <notnull>false</notnull>
- </field>
- <field>
- <name>created</name>
- <type>integer</type>
- <length>64</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>expire</name>
- <type>integer</type>
- <length>64</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>expire_views</name>
- <type>integer</type>
- <length>64</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- <field>
- <name>permissions</name>
- <type>integer</type>
- <length>3</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- <default>0</default>
- </field>
- <field>
- <name>shared_key</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- </declaration>
- </table>
- <table>
- <name>*dbprefix*passman_share_request</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- <primary>true</primary>
- </field>
- <field>
- <name>item_id</name>
- <type>integer</type>
- <length>8</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>item_guid</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>target_user_id</name>
- <type>text</type>
- <length>64</length>
- <notnull>false</notnull>
- </field>
- <field>
- <name>from_user_id</name>
- <type>text</type>
- <length>64</length>
- <notnull>false</notnull>
- </field>
- <field>
- <name>target_vault_id</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- </field>
- <field>
- <name>target_vault_guid</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>shared_key</name>
- <type>clob</type>
- <notnull>true</notnull>
- </field>
- <field>
- <name>permissions</name>
- <type>integer</type>
- <length>3</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- <default>0</default>
- </field>
- <field>
- <name>created</name>
- <type>integer</type>
- <length>64</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- </declaration>
- </table>
- <table>
- <name>*dbprefix*passman_delete_vault_request</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <length>8</length>
- <unsigned>true</unsigned>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- <primary>true</primary>
- </field>
- <field>
- <name>vault_guid</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>reason</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>requested_by</name>
- <type>text</type>
- <length>64</length>
- <notnull>false</notnull>
- </field>
- <field>
- <name>created</name>
- <type>integer</type>
- <length>64</length>
- <unsigned>true</unsigned>
- <notnull>false</notnull>
- <default>0</default>
- </field>
- </declaration>
- </table>
-</database>
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 186201b9..e16c647e 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -19,7 +19,7 @@ Features:
- 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)
]]></description>
- <version>2.3.9</version>
+ <version>2.3.10</version>
<licence>agpl</licence>
<author homepage="https://github.com/brantje">Sander Brand</author>
<author homepage="https://github.com/animalillo">Marcos Zuriaga</author>