[mob][photos] Prepare for release v0.9.5 (#2381)
This commit is contained in:
@@ -16,7 +16,7 @@ class UpdateService {
|
||||
static final UpdateService instance = UpdateService._privateConstructor();
|
||||
static const kUpdateAvailableShownTimeKey = "update_available_shown_time_key";
|
||||
static const changeLogVersionKey = "update_change_log_key";
|
||||
static const currentChangeLogVersion = 20;
|
||||
static const currentChangeLogVersion = 21;
|
||||
|
||||
LatestVersionInfo? _latestVersion;
|
||||
final _logger = Logger("UpdateService");
|
||||
|
||||
@@ -18,11 +18,6 @@ class ChangeLogPage extends StatefulWidget {
|
||||
}
|
||||
|
||||
class _ChangeLogPageState extends State<ChangeLogPage> {
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final enteColorScheme = getEnteColorScheme(context);
|
||||
@@ -119,20 +114,16 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
|
||||
final List<ChangeLogEntry> items = [];
|
||||
items.addAll([
|
||||
ChangeLogEntry(
|
||||
"Send links ✨",
|
||||
'Introducing a beautiful way to share photos in original quality, end-to-end encrypted. Select your photos and click on "Send link" to see the magic!',
|
||||
"Custom App Lock ✨",
|
||||
'Now choose from PIN, password or the default system lock to lock the app. You can set this up in Settings > Security > App lock.',
|
||||
),
|
||||
ChangeLogEntry(
|
||||
"Video editor",
|
||||
"Crop, clip and flip your videos, with Ente's in-built video editor. The editor works fully offline and will help with all your basic editing tasks.",
|
||||
"Select All ✨",
|
||||
"Selecting all files from gallery made easy with just one click! Select any item from gallery to see the option.",
|
||||
),
|
||||
ChangeLogEntry(
|
||||
"Passkeys",
|
||||
"Now secure your Ente account with passkeys or hardware keys. You can add your keys within Settings > Security > Passkeys.",
|
||||
),
|
||||
ChangeLogEntry(
|
||||
"View large files",
|
||||
"Find those items that take up the most amount of storage, and easily declutter your library. Open Settings > Backup > Free up space to learn more.",
|
||||
"Bug Fixes",
|
||||
"Many a bugs were squashed in this release. If you run into any bugs, please write to team@ente.io, or let us know on Discord! 🙏",
|
||||
),
|
||||
]);
|
||||
|
||||
|
||||
@@ -3,7 +3,6 @@ import "package:photos/face/model/person.dart";
|
||||
import 'package:photos/models/collection/collection.dart';
|
||||
import 'package:photos/models/gallery_type.dart';
|
||||
import 'package:photos/models/selected_files.dart';
|
||||
import "package:photos/service_locator.dart";
|
||||
import "package:photos/theme/effects.dart";
|
||||
import "package:photos/theme/ente_theme.dart";
|
||||
import 'package:photos/ui/components/bottom_action_bar/bottom_action_bar_widget.dart';
|
||||
@@ -86,15 +85,13 @@ class _FileSelectionOverlayBarState extends State<FileSelectionOverlayBar> {
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
flagService.internalUser
|
||||
? Padding(
|
||||
padding: const EdgeInsets.only(right: 4),
|
||||
child: SelectAllButton(
|
||||
backgroundColor: widget.backgroundColor,
|
||||
),
|
||||
)
|
||||
: const SizedBox.shrink(),
|
||||
if (flagService.internalUser) const SizedBox(height: 8),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 4),
|
||||
child: SelectAllButton(
|
||||
backgroundColor: widget.backgroundColor,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
boxShadow: shadowFloatFaintLight,
|
||||
|
||||
@@ -12,7 +12,7 @@ description: ente photos application
|
||||
# Read more about iOS versioning at
|
||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
|
||||
version: 0.9.4+904
|
||||
version: 0.9.5+905
|
||||
publish_to: none
|
||||
|
||||
environment:
|
||||
|
||||
Reference in New Issue
Block a user