refactor: bump to 0.13.0

This commit is contained in:
Mauricio Siu
2024-11-27 23:20:32 -06:00
parent a1cf597c2b
commit 37fa139a65
7 changed files with 15 additions and 7 deletions

View File

@@ -178,7 +178,7 @@ export function AppearanceForm() {
{ label: "Русский", value: "ru" },
{ label: "Deutsch", value: "de" },
{ label: "繁體中文", value: "zh-Hant" },
{ label: "简体中文", value: "zh-Hans" }
{ label: "简体中文", value: "zh-Hans" },
].map((preset) => (
<SelectItem key={preset.label} value={preset.value}>
{preset.label}

View File

@@ -48,7 +48,7 @@ export const UpdateServer = () => {
<li>Some bug that is blocking to use some features</li>
</ul>
<AlertBlock type="info">
We recommend checking the latest version for any breaking changes
We recommend checking the latest version for any breaking changes
before updating. Go to{" "}
<Link
href="https://github.com/Dokploy/dokploy/releases"

View File

@@ -1,6 +1,6 @@
{
"name": "dokploy",
"version": "v0.12.1",
"version": "v0.13.0",
"private": true,
"license": "Apache-2.0",
"type": "module",

View File

@@ -0,0 +1 @@
{}

View File

@@ -79,7 +79,7 @@ export const composeRouter = createTRPCRouter({
if (ctx.user.rol === "user") {
await addNewService(ctx.user.authId, newService.composeId);
}
return newService;
} catch (error) {
throw error;

View File

@@ -956,8 +956,8 @@ export const templates: TemplateData[] = [
},
tags: ["media", "photos", "self-hosted"],
load: () => import("./photoprism/index").then((m) => m.generate),
},
{
},
{
id: "ontime",
name: "Ontime",
version: "v3.8.0",

View File

@@ -1,6 +1,13 @@
import Cookies from "js-cookie";
const SUPPORTED_LOCALES = ["en", "pl", "ru", "de", "zh-Hant", "zh-Hans"] as const;
const SUPPORTED_LOCALES = [
"en",
"pl",
"ru",
"de",
"zh-Hant",
"zh-Hans",
] as const;
type Locale = (typeof SUPPORTED_LOCALES)[number];