Add change log entry

This commit is contained in:
Neeraj Gupta 2023-05-07 09:27:26 +05:30
parent 02ce6387df
commit 1552f39865
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1
2 changed files with 16 additions and 15 deletions

View file

@ -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 = 8;
static const currentChangeLogVersion = 9;
LatestVersionInfo? _latestVersion;
final _logger = Logger("UpdateService");

View file

@ -105,27 +105,28 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
items.add(
ChangeLogEntry(
"Security Audit",
"It gives us immense joy to announce that ente's source code has been"
" successfully audited by Cure53, in collaboration with Symbolic "
"Software.\n\nTogether they have certified that ente's "
"architecture is sound and that our implementation across all "
"clients is cryptographically accurate.\n\nYou can find more "
"details at ente.io/blog.",
"Motion photos",
"ente Mobile App now supports playing Motion photos. Long-press on "
"your Motion Photo to play the video.",
),
);
items.add(
ChangeLogEntry(
"Location tags",
"This release includes a fresh, beautiful, privacy-friendly way to "
"search through your photos by location!\n\nTag a photo with a "
"location, define a radius, and ente will automatically cluster "
"all photos clicked within that area.\n\nOpen a photo, and click on"
" the Info button to get started!",
"Language",
"ente Photos app now support changing language, starting with French,"
" Dutch, and Simplified Chinese.\n\nTo change language, go to "
"Settings -> General -> Languages",
),
);
//You can now specify a custom radius while creating Location tags.
items.add(
ChangeLogEntry(
"Custom radius for Location tags",
"You can now specify a custom radius while creating Location tags.",
isFeature: false,
),
);
return Container(
padding: const EdgeInsets.only(left: 16),
child: Scrollbar(