diff --git a/CHANGELOG.md b/CHANGELOG.md index 2152468..6fb4980 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog + +## 0.0.93 + +- Feature: Verification checkmark for friends +- Fix: Added contacts in contact sharing where not click able +- Fix: Restore flames as a plus user +- Fix: Route not found when sharing image +- Fix: Increase recent limit in emoji keyboard +- Fix: Increase show time of the focus indication +- Fix: Quoted text message not shown properly + ## 0.0.92 - Adds the option to share contacts diff --git a/analysis_options.yaml b/analysis_options.yaml index fc69522..4328836 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -11,6 +11,7 @@ analyzer: avoid_positional_boolean_parameters: ignore inference_failure_on_collection_literal: ignore matching_super_parameters: ignore + parameter_assignments: ignore exclude: - "lib/src/model/protobuf/**" - "lib/src/model/protobuf/api/websocket/**" diff --git a/lib/src/services/api/messages.dart b/lib/src/services/api/messages.dart index dd83859..b4452eb 100644 --- a/lib/src/services/api/messages.dart +++ b/lib/src/services/api/messages.dart @@ -69,12 +69,14 @@ Future<(Uint8List, Uint8List?)?> tryToSendCompleteMessage({ try { if (receiptId == null && receipt == null) return null; if (receipt == null) { + // ignore: parameter_assignments receipt = await twonlyDB.receiptsDao.getReceiptById(receiptId!); if (receipt == null) { Log.warn('Receipt not found.'); return null; } } + // ignore: parameter_assignments receiptId = receipt.receiptId; final contact = diff --git a/lib/src/views/chats/media_viewer.view.dart b/lib/src/views/chats/media_viewer.view.dart index 43642af..0d6f132 100644 --- a/lib/src/views/chats/media_viewer.view.dart +++ b/lib/src/views/chats/media_viewer.view.dart @@ -131,7 +131,6 @@ class _MediaViewerViewState extends State { } setState(() {}); if (firstRun) { - // ignore: parameter_assignments firstRun = false; await loadCurrentMediaFile(); } diff --git a/lib/src/views/chats/start_new_chat.view.dart b/lib/src/views/chats/start_new_chat.view.dart index 09926fc..65d36b7 100644 --- a/lib/src/views/chats/start_new_chat.view.dart +++ b/lib/src/views/chats/start_new_chat.view.dart @@ -1,3 +1,5 @@ +// ignore_for_file: parameter_assignments + import 'dart:async'; import 'package:drift/drift.dart' hide Column; import 'package:flutter/material.dart'; diff --git a/lib/src/views/groups/group_create_select_members.view.dart b/lib/src/views/groups/group_create_select_members.view.dart index 4d1947e..b4d1912 100644 --- a/lib/src/views/groups/group_create_select_members.view.dart +++ b/lib/src/views/groups/group_create_select_members.view.dart @@ -1,3 +1,5 @@ +// ignore_for_file: parameter_assignments + import 'dart:async'; import 'dart:collection'; import 'package:flutter/material.dart'; diff --git a/lib/src/views/memories/memories.view.dart b/lib/src/views/memories/memories.view.dart index 19357c9..3a43fd0 100644 --- a/lib/src/views/memories/memories.view.dart +++ b/lib/src/views/memories/memories.view.dart @@ -1,3 +1,5 @@ +// ignore_for_file: parameter_assignments + import 'dart:async'; import 'package:clock/clock.dart'; import 'package:flutter/material.dart'; diff --git a/lib/src/views/settings/backup/backup_server.view.dart b/lib/src/views/settings/backup/backup_server.view.dart index 871ed6e..de78081 100644 --- a/lib/src/views/settings/backup/backup_server.view.dart +++ b/lib/src/views/settings/backup/backup_server.view.dart @@ -1,4 +1,4 @@ -// ignore_for_file: avoid_dynamic_calls +// ignore_for_file: parameter_assignments, avoid_dynamic_calls import 'dart:async'; import 'dart:convert'; diff --git a/lib/src/views/settings/subscription/select_additional_users.view.dart b/lib/src/views/settings/subscription/select_additional_users.view.dart index 2a6d6f1..f949513 100644 --- a/lib/src/views/settings/subscription/select_additional_users.view.dart +++ b/lib/src/views/settings/subscription/select_additional_users.view.dart @@ -1,3 +1,5 @@ +// ignore_for_file: parameter_assignments + import 'dart:async'; import 'dart:collection'; import 'package:flutter/material.dart'; diff --git a/lib/src/views/shared/select_contacts.view.dart b/lib/src/views/shared/select_contacts.view.dart index 6b5a989..c013a6c 100644 --- a/lib/src/views/shared/select_contacts.view.dart +++ b/lib/src/views/shared/select_contacts.view.dart @@ -1,3 +1,5 @@ +// ignore_for_file: parameter_assignments + import 'dart:async'; import 'dart:collection'; import 'package:flutter/material.dart';