mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-07-18 01:14:07 +00:00
bump version
Some checks failed
Flutter analyze & test / flutter_analyze_and_test (push) Has been cancelled
Some checks failed
Flutter analyze & test / flutter_analyze_and_test (push) Has been cancelled
This commit is contained in:
parent
722466cc34
commit
9a579e818c
4 changed files with 25 additions and 18 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.3.7
|
||||||
|
|
||||||
|
- Fix: Multiple UI issues
|
||||||
|
|
||||||
## 0.3.6
|
## 0.3.6
|
||||||
|
|
||||||
- Improve: Visibility of the verification badge
|
- Improve: Visibility of the verification badge
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:typed_data';
|
|
||||||
|
|
||||||
import 'package:collection/collection.dart';
|
import 'package:collection/collection.dart';
|
||||||
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_sharing_intent/flutter_sharing_intent.dart';
|
import 'package:flutter_sharing_intent/flutter_sharing_intent.dart';
|
||||||
import 'package:flutter_sharing_intent/model/sharing_file.dart';
|
import 'package:flutter_sharing_intent/model/sharing_file.dart';
|
||||||
|
|
@ -32,7 +32,8 @@ Future<bool> handleIntentUrl(BuildContext context, Uri uri) async {
|
||||||
// Check if this is the QR code link which was
|
// Check if this is the QR code link which was
|
||||||
// therefore scanned with the system camera
|
// therefore scanned with the system camera
|
||||||
|
|
||||||
if (uri.toString().startsWith(PasswordlessRecoveryService.linkPrefix)) {
|
if (kDebugMode &&
|
||||||
|
uri.toString().startsWith(PasswordlessRecoveryService.linkPrefix)) {
|
||||||
await PasswordlessRecoveryService.handleRecoveryLink(uri.toString());
|
await PasswordlessRecoveryService.handleRecoveryLink(uri.toString());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
|
|
@ -167,6 +168,7 @@ class _BackupRecoveryViewState extends State<BackupRecoveryView> {
|
||||||
: Text(context.lang.twonlySafeRecoverBtn),
|
: Text(context.lang.twonlySafeRecoverBtn),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
|
if (kDebugMode)
|
||||||
MyButton(
|
MyButton(
|
||||||
variant: MyButtonVariant.secondary,
|
variant: MyButtonVariant.secondary,
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ description: "twonly, a privacy-friendly way to connect with friends through sec
|
||||||
|
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 0.3.6+152
|
version: 0.3.7+153
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.11.0
|
sdk: ^3.11.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue