Skip to content

Commit

Permalink
[mob][photos] Prepare for release v0.9.5 (#2381)
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnukvmd authored Jul 6, 2024
2 parents 86584e7 + a279c44 commit d24c116
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 27 deletions.
2 changes: 1 addition & 1 deletion mobile/lib/services/update_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
21 changes: 6 additions & 15 deletions mobile/lib/ui/notification/update/change_log_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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!',
),
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.",
"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(
"Passkeys",
"Now secure your Ente account with passkeys or hardware keys. You can add your keys within Settings > Security > Passkeys.",
"Select All ✨",
"Selecting all files from gallery made easy with just one click! Select any item from gallery to see the option.",
),
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 [email protected], or let us know on Discord! 🙏",
),
]);

Expand Down
17 changes: 7 additions & 10 deletions mobile/lib/ui/viewer/actions/file_selection_overlay_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion mobile/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d24c116

Please sign in to comment.