chore: remove beta wording and badges (#22040)

* chore: remove beta wordings and badges

* chore: remove beta wordings and badges
This commit is contained in:
Alex 2025-09-15 22:55:29 -05:00 committed by GitHub
parent 87a172ab0c
commit d9ef041b87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 30 deletions

View file

@ -97,29 +97,11 @@ class _ImmichLogoWithText extends StatelessWidget {
children: [
Builder(
builder: (context) {
return Badge(
padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 4),
backgroundColor: context.primaryColor,
alignment: Alignment.centerRight,
offset: const Offset(16, -8),
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,
),
return 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,
),
);
},

View file

@ -28,10 +28,10 @@ class BetaTimelineListTile extends ConsumerWidget {
context: context,
builder: (context) {
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
? const Text("Are you sure you want to enable the beta timeline?")
: const Text("Are you sure you want to disable 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 new timeline?"),
actions: [
TextButton(
onPressed: () {
@ -58,8 +58,7 @@ class BetaTimelineListTile extends ConsumerWidget {
return Padding(
padding: const EdgeInsets.only(left: 4.0),
child: ListTile(
title: Text("advanced_settings_beta_timeline_title".t(context: context)),
subtitle: Text("advanced_settings_beta_timeline_subtitle".t(context: context)),
title: Text("new_timeline".t(context: context)),
trailing: Switch.adaptive(
value: betaTimelineValue,
onChanged: onSwitchChanged,