Skip to content

Commit 558dbc7

Browse files
committed
fix:Console notification for GA
1 parent 22c2ac8 commit 558dbc7

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed
475 KB
Loading
Binary file not shown.
Binary file not shown.

src/routes/(console)/bottomAlerts.ts

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,27 @@ import { isSameDay } from '$lib/helpers/date';
33
import { type BottomModalAlertItem, showBottomModalAlert } from '$lib/stores/bottom-alerts';
44
import AutoIncrementDark from '$lib/images/promos/auto-increment-dark.png';
55
import AutoIncrementLight from '$lib/images/promos/auto-increment-light.png';
6-
import EncryptedDatabasesDark from '$lib/images/promos/encrypted-attribute-dark.png';
7-
import EncryptedDatabasesLight from '$lib/images/promos/encrypted-attribute-light.png';
86
import AtomicNumericOperationsDark from '$lib/images/promos/atomic-numeric-operations-dark.png';
97
import AtomicNumericOperationsLight from '$lib/images/promos/atomic-numeric-operations-light.png';
8+
import AppwriteGeneralAvailabilty from '$lib/images/promos/appwrite-general-availability.png';
109

1110
const listOfPromotions: BottomModalAlertItem[] = [];
1211

1312
if (isCloud) {
14-
const encryptedAttributePromo: BottomModalAlertItem = {
15-
id: 'modal:encrypted_attribute_announcement',
13+
const appwriteGeneralAvailabiltyPromo: BottomModalAlertItem = {
14+
id: 'modal:appwrite_general_availability_announcement',
1615
src: {
17-
dark: EncryptedDatabasesDark,
18-
light: EncryptedDatabasesLight
16+
dark: AppwriteGeneralAvailabilty,
17+
light: AppwriteGeneralAvailabilty
1918
},
20-
title: 'Introducing Encrypted string attribute support',
21-
message: 'Encrypt string attributes at rest, directly from the Appwrite Console.',
19+
title: 'Now Generally Available',
20+
message: 'After 26 months of Appwrite Cloud, we are ready to remove the beta tag.',
2221
plan: 'free',
2322
importance: 8,
24-
scope: 'project',
23+
scope: 'everywhere',
2524
cta: {
26-
text: 'Read announcement',
27-
link: () => 'https://appwrite.io/blog/post/announcing-encrypted-string-attributes',
25+
text: 'Learn more',
26+
link: () => 'https://apwr.dev/ygTXfxA',
2827
external: true,
2928
hideOnClick: true
3029
},
@@ -71,9 +70,9 @@ if (isCloud) {
7170
show: true
7271
};
7372
listOfPromotions.push(
73+
appwriteGeneralAvailabiltyPromo,
7474
atomicNumericOperationsPromo,
75-
autoIncrementPromo,
76-
encryptedAttributePromo
75+
autoIncrementPromo
7776
);
7877
}
7978

0 commit comments

Comments
 (0)