Skip to content

Commit c431883

Browse files
committed
Merge branch 'main' into fixes
2 parents 7429376 + c30c723 commit c431883

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed
1.19 MB
Loading
1.01 MB
Loading
Binary file not shown.
Binary file not shown.

src/routes/(console)/bottomAlerts.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,28 @@ 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 AppwriteGeneralAvailabiltyLight from '$lib/images/promos/appwrite-general-availability-light.png';
9+
import AppwriteGeneralAvailabiltyDark from '$lib/images/promos/appwrite-general-availability-dark.png';
1010

1111
const listOfPromotions: BottomModalAlertItem[] = [];
1212

1313
if (isCloud) {
14-
const encryptedAttributePromo: BottomModalAlertItem = {
15-
id: 'modal:encrypted_attribute_announcement',
14+
const appwriteGeneralAvailabiltyPromo: BottomModalAlertItem = {
15+
id: 'modal:appwrite_general_availability_announcement',
1616
src: {
17-
dark: EncryptedDatabasesDark,
18-
light: EncryptedDatabasesLight
17+
dark: AppwriteGeneralAvailabiltyDark,
18+
light: AppwriteGeneralAvailabiltyLight
1919
},
20-
title: 'Introducing Encrypted string attribute support',
21-
message: 'Encrypt string attributes at rest, directly from the Appwrite Console.',
20+
title: 'Now Generally Available',
21+
message: 'After 26 months of Appwrite Cloud, we are ready to remove the beta tag.',
2222
plan: 'free',
2323
importance: 8,
24-
scope: 'project',
24+
scope: 'everywhere',
2525
cta: {
26-
text: 'Read announcement',
27-
link: () => 'https://appwrite.io/blog/post/announcing-encrypted-string-attributes',
26+
text: 'Learn more',
27+
link: () => 'https://apwr.dev/ygTXfxA',
2828
external: true,
2929
hideOnClick: true
3030
},
@@ -71,9 +71,9 @@ if (isCloud) {
7171
show: true
7272
};
7373
listOfPromotions.push(
74+
appwriteGeneralAvailabiltyPromo,
7475
atomicNumericOperationsPromo,
75-
autoIncrementPromo,
76-
encryptedAttributePromo
76+
autoIncrementPromo
7777
);
7878
}
7979

0 commit comments

Comments
 (0)