mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-11 18:39:45 +00:00
Bump version
This commit is contained in:
parent
3c3cb376e2
commit
bf03f61668
|
@ -83,7 +83,7 @@ class _RecoveryKeyContentState extends State<RecoveryKeyContent> {
|
||||||
if (_isConfigurationVisible || !keyStatus.exists)
|
if (_isConfigurationVisible || !keyStatus.exists)
|
||||||
const RecoveryKeyConfiguration(),
|
const RecoveryKeyConfiguration(),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
if (!_isConfigurationVisible && keyStatus.isValid)
|
if (!_isConfigurationVisible && keyStatus.isValid && keyStatus.exists)
|
||||||
BrandButton.text(
|
BrandButton.text(
|
||||||
title: 'recovery_key.key_replace_button'.tr(),
|
title: 'recovery_key.key_replace_button'.tr(),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
|
@ -92,7 +92,7 @@ class _RecoveryKeyContentState extends State<RecoveryKeyContent> {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
if (!_isConfigurationVisible && !keyStatus.isValid)
|
if (!_isConfigurationVisible && !keyStatus.isValid && keyStatus.exists)
|
||||||
FilledButton(
|
FilledButton(
|
||||||
title: 'recovery_key.key_replace_button'.tr(),
|
title: 'recovery_key.key_replace_button'.tr(),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: selfprivacy
|
name: selfprivacy
|
||||||
description: selfprivacy.org
|
description: selfprivacy.org
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
version: 0.5.3+14
|
version: 0.6.0+15
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.17.0 <3.0.0'
|
sdk: '>=2.17.0 <3.0.0'
|
||||||
|
|
Loading…
Reference in a new issue