1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/vaultwarden_ynh.git synced 2024-09-03 18:26:31 +02:00

Merge pull request #90 from YunoHost-Apps/testing

Upgrade to 1.16.1~ynh1
This commit is contained in:
yalh76 2020-08-06 05:05:49 +02:00 committed by GitHub
commit 5572d0420c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 18 additions and 10 deletions

View file

@ -12,7 +12,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to
Bitwarden is a open source password manager.
**Shipped version:** 1.15.1
**Shipped version:** 1.16.1
## Important points to read before installing
@ -58,7 +58,7 @@ How to configure this app: by an admin panel at https://bitwarden.domain.tld/adm
Developers info
----------------
Please do your pull request to the [testing branch]https://github.com/YunoHost-Apps/bitwarden_ynh/tree/testing).
Please do your pull request to the [testing branch](https://github.com/YunoHost-Apps/bitwarden_ynh/tree/testing).
To try the testing branch, please proceed like that.
```

View file

@ -12,7 +12,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
Bitwarden est un gestionnaire de mots de passe open source.
**Version incluse :** 1.15.1
**Version incluse :** 1.16.1
## Points importants à lire avant l'installation

View file

@ -21,6 +21,8 @@
upgrade=1 from_commit=501bf18eafcda987ac255d12ca213d15e63c5eef
# 1.14.2~ynh2
upgrade=1 from_commit=2a7b9d6b6705be6e3a7217309a77b9def226eaa6
# 1.15.1~ynh2
upgrade=1 from_commit=bb9dac9cc50e11d8ef60033a543f9e21b42d0d8e
backup_restore=1
multi_instance=1
# This test is no longer necessary since the version 2.7 (PR: https://github.com/YunoHost/yunohost/pull/304), you can still do it if your app could be installed with this version.
@ -38,4 +40,5 @@ Notification=all
name=1.9.1~ynh3
; commit=2a7b9d6b6705be6e3a7217309a77b9def226eaa6
name=1.14.2~ynh2
; commit=bb9dac9cc50e11d8ef60033a543f9e21b42d0d8e
name=1.15.1~ynh2

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/dani-garcia/bitwarden_rs/archive/1.15.1.tar.gz
SOURCE_SUM=34e7d7078dbcb6ae81d39d81db9bbfe8231b2fad54472c58f7d407387c3651c6554ff467daf17ebe88abfbaffc587fd0ab666cf3420ee544b7871c3712b1b871
SOURCE_URL=https://github.com/dani-garcia/bitwarden_rs/archive/1.16.1.tar.gz
SOURCE_SUM=cea0a378e2fc864c2a180d702f3afa97d92b19d1f46259d4c9d9097abb2cd0a5bd84b8734d49152b9b8b5113cd5a3ff87dc9a390118a8832950a7aa6c7b63962
SOURCE_SUM_PRG=sha512sum
SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true

View file

@ -44,6 +44,10 @@ WEBSOCKET_PORT=__WEBSOCKET_PORT__
## Enable extended logging, which shows timestamps and targets in the logs
# EXTENDED_LOGGING=true
## Timestamp format used in extended logging.
## Format specifiers: https://docs.rs/chrono/latest/chrono/format/strftime
# LOG_TIMESTAMP_FORMAT="%Y-%m-%d %H:%M:%S.%3f"
## Logging to file
## It's recommended to also set 'ROCKET_CLI_COLORS=off'
LOG_FILE=/var/log/__APP__/__APP__.log
@ -187,6 +191,7 @@ SMTP_FROM=bitwarden-rs@__DOMAIN__
SMTP_FROM_NAME=Bitwarden_RS
SMTP_PORT=25
SMTP_SSL=false
# SMTP_EXPLICIT_TLS=true # N.B. This variable configures Implicit TLS. It's currently mislabelled (see bug #851)
# SMTP_USERNAME=username
# SMTP_PASSWORD=password
# SMTP_AUTH_MECHANISM="Plain"

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/dani-garcia/bw_web_builds/releases/download/v2.14.0/bw_web_v2.14.0.tar.gz
SOURCE_SUM=4f8eb3fbb809d90fda6bb62bfba80076a53e546c03c1dd2d1725e457193ff1b25500749fd307d8ae03d28e0f5b65bd2005712823119aaed2b77bab483d22c8bf
SOURCE_URL=https://github.com/dani-garcia/bw_web_builds/releases/download/v2.15.1/bw_web_v2.15.1.tar.gz
SOURCE_SUM=81f051ecb8f899de317550b3d6118602232cfafe306e8a049415a152df979cf03d18e6d42600ba083a25395f885b07c83981fef8b6f8196f58f010abe0553170
SOURCE_SUM_PRG=sha512sum
SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Manage passwords and other sensitive informations",
"fr": "Géres les mots de passe et autres informations sensibles"
},
"version": "1.15.1~ynh2",
"version": "1.16.1~ynh1",
"url": "https://github.com/dani-garcia/bitwarden_rs",
"license": "GPL-3.0-or-later",
"maintainer": {

View file

@ -33,7 +33,7 @@ is_public=$YNH_APP_ARG_IS_PUBLIC
app=$YNH_APP_INSTANCE_NAME
admin_mail=$(ynh_user_get_info "$admin" 'mail')
admin_mail=$(ynh_user_get_info --username=$admin --key=mail)
admin_token=$(ynh_string_random --length=48 | base64)
#=================================================