Point to 1.5.x rc branch

This commit is contained in:
Vincent (Wen Yu) Ge
2024-02-13 19:10:05 -05:00
parent dfd0d06ebb
commit a3babb0076
10 changed files with 22 additions and 10 deletions

View File

@@ -2,7 +2,7 @@ import { writable } from 'svelte/store';
import type { Language } from './code';
import { browser } from '$app/environment';
const allVersions = ['1.4.x', '1.3.x', '1.2.x', '1.1.x', '1.0.x', '0.15.x', 'cloud'] as const;
const allVersions = ['1.5.x', '1.4.x', '1.3.x', '1.2.x', '1.1.x', '1.0.x', '0.15.x', 'cloud'] as const;
export type Version = (typeof allVersions)[number];
@@ -15,6 +15,7 @@ export enum Service {
Avatars = 'avatars',
Databases = 'databases',
Functions = 'functions',
Messaging = 'messaging',
Health = 'health',
Locale = 'locale',
Storage = 'storage',
@@ -106,6 +107,7 @@ export const serviceMap: Record<Service, string> = {
[Service.Avatars]: 'Avatars',
[Service.Databases]: 'Databases',
[Service.Functions]: 'Functions',
[Service.Messaging]: 'Messaging',
[Service.Health]: 'Health',
[Service.Locale]: 'Locale',
[Service.Storage]: 'Storage',