mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-29 18:19:44 -05:00
Update version notification message for Pikapods instances (#5146)
This commit is contained in:
committed by
GitHub
parent
fbd6989a18
commit
6509e80061
@@ -147,10 +147,16 @@ export function FinancesApp() {
|
||||
notification: {
|
||||
type: 'message',
|
||||
title: t('A new version of Actual is available!'),
|
||||
message: t(
|
||||
'Version {{latestVersion}} of Actual was recently released.',
|
||||
{ latestVersion },
|
||||
),
|
||||
message:
|
||||
(process.env.REACT_APP_IS_PIKAPODS ?? '').toLowerCase() ===
|
||||
'true'
|
||||
? t(
|
||||
'A new version of Actual is available! Your Pikapods instance will be automatically updated in the next few days - no action needed.',
|
||||
)
|
||||
: t(
|
||||
'Version {{latestVersion}} of Actual was recently released.',
|
||||
{ latestVersion },
|
||||
),
|
||||
sticky: true,
|
||||
id: 'update-notification',
|
||||
button: {
|
||||
|
||||
6
upcoming-release-notes/5146.md
Normal file
6
upcoming-release-notes/5146.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Enhancements
|
||||
authors: [MatissJanis]
|
||||
---
|
||||
|
||||
Update version notification message for Pikapods instances
|
||||
Reference in New Issue
Block a user