mirror of
https://github.com/immich-app/immich.git
synced 2025-09-29 15:31:13 -04:00
chore: remove beta wording and badges (#22040)
* chore: remove beta wordings and badges * chore: remove beta wordings and badges
This commit is contained in:
parent
87a172ab0c
commit
d9ef041b87
@ -387,8 +387,6 @@
|
|||||||
"admin_password": "Admin Password",
|
"admin_password": "Admin Password",
|
||||||
"administration": "Administration",
|
"administration": "Administration",
|
||||||
"advanced": "Advanced",
|
"advanced": "Advanced",
|
||||||
"advanced_settings_beta_timeline_subtitle": "Try the new app experience",
|
|
||||||
"advanced_settings_beta_timeline_title": "Beta Timeline",
|
|
||||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Use this option to filter media during sync based on alternate criteria. Only try this if you have issues with the app detecting all albums.",
|
"advanced_settings_enable_alternate_media_filter_subtitle": "Use this option to filter media during sync based on alternate criteria. Only try this if you have issues with the app detecting all albums.",
|
||||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Use alternate device album sync filter",
|
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Use alternate device album sync filter",
|
||||||
"advanced_settings_log_level_title": "Log level: {level}",
|
"advanced_settings_log_level_title": "Log level: {level}",
|
||||||
@ -1351,6 +1349,7 @@
|
|||||||
"new_person": "New person",
|
"new_person": "New person",
|
||||||
"new_pin_code": "New PIN code",
|
"new_pin_code": "New PIN code",
|
||||||
"new_pin_code_subtitle": "This is your first time accessing the locked folder. Create a PIN code to securely access this page",
|
"new_pin_code_subtitle": "This is your first time accessing the locked folder. Create a PIN code to securely access this page",
|
||||||
|
"new_timeline": "New Timeline",
|
||||||
"new_user_created": "New user created",
|
"new_user_created": "New user created",
|
||||||
"new_version_available": "NEW VERSION AVAILABLE",
|
"new_version_available": "NEW VERSION AVAILABLE",
|
||||||
"newest_first": "Newest first",
|
"newest_first": "Newest first",
|
||||||
|
@ -97,29 +97,11 @@ class _ImmichLogoWithText extends StatelessWidget {
|
|||||||
children: [
|
children: [
|
||||||
Builder(
|
Builder(
|
||||||
builder: (context) {
|
builder: (context) {
|
||||||
return Badge(
|
return Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 4),
|
padding: const EdgeInsets.only(top: 3.0),
|
||||||
backgroundColor: context.primaryColor,
|
child: SvgPicture.asset(
|
||||||
alignment: Alignment.centerRight,
|
context.isDarkTheme ? 'assets/immich-logo-inline-dark.svg' : 'assets/immich-logo-inline-light.svg',
|
||||||
offset: const Offset(16, -8),
|
height: 40,
|
||||||
label: Text(
|
|
||||||
'β',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 11,
|
|
||||||
color: context.colorScheme.onPrimary,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'OverpassMono',
|
|
||||||
height: 1.2,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.only(top: 3.0),
|
|
||||||
child: SvgPicture.asset(
|
|
||||||
context.isDarkTheme
|
|
||||||
? 'assets/immich-logo-inline-dark.svg'
|
|
||||||
: 'assets/immich-logo-inline-light.svg',
|
|
||||||
height: 40,
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
@ -28,10 +28,10 @@ class BetaTimelineListTile extends ConsumerWidget {
|
|||||||
context: context,
|
context: context,
|
||||||
builder: (context) {
|
builder: (context) {
|
||||||
return AlertDialog(
|
return AlertDialog(
|
||||||
title: value ? const Text("Enable Beta Timeline") : const Text("Disable Beta Timeline"),
|
title: value ? const Text("Enable New Timeline") : const Text("Disable New Timeline"),
|
||||||
content: value
|
content: value
|
||||||
? const Text("Are you sure you want to enable the beta timeline?")
|
? const Text("Are you sure you want to enable the new timeline?")
|
||||||
: const Text("Are you sure you want to disable the beta timeline?"),
|
: const Text("Are you sure you want to disable the new timeline?"),
|
||||||
actions: [
|
actions: [
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
@ -58,8 +58,7 @@ class BetaTimelineListTile extends ConsumerWidget {
|
|||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.only(left: 4.0),
|
padding: const EdgeInsets.only(left: 4.0),
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
title: Text("advanced_settings_beta_timeline_title".t(context: context)),
|
title: Text("new_timeline".t(context: context)),
|
||||||
subtitle: Text("advanced_settings_beta_timeline_subtitle".t(context: context)),
|
|
||||||
trailing: Switch.adaptive(
|
trailing: Switch.adaptive(
|
||||||
value: betaTimelineValue,
|
value: betaTimelineValue,
|
||||||
onChanged: onSwitchChanged,
|
onChanged: onSwitchChanged,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user