mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
refactor: bump to 0.13.0
This commit is contained in:
@@ -178,7 +178,7 @@ export function AppearanceForm() {
|
|||||||
{ label: "Русский", value: "ru" },
|
{ label: "Русский", value: "ru" },
|
||||||
{ label: "Deutsch", value: "de" },
|
{ label: "Deutsch", value: "de" },
|
||||||
{ label: "繁體中文", value: "zh-Hant" },
|
{ label: "繁體中文", value: "zh-Hant" },
|
||||||
{ label: "简体中文", value: "zh-Hans" }
|
{ label: "简体中文", value: "zh-Hans" },
|
||||||
].map((preset) => (
|
].map((preset) => (
|
||||||
<SelectItem key={preset.label} value={preset.value}>
|
<SelectItem key={preset.label} value={preset.value}>
|
||||||
{preset.label}
|
{preset.label}
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ export const UpdateServer = () => {
|
|||||||
<li>Some bug that is blocking to use some features</li>
|
<li>Some bug that is blocking to use some features</li>
|
||||||
</ul>
|
</ul>
|
||||||
<AlertBlock type="info">
|
<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{" "}
|
before updating. Go to{" "}
|
||||||
<Link
|
<Link
|
||||||
href="https://github.com/Dokploy/dokploy/releases"
|
href="https://github.com/Dokploy/dokploy/releases"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dokploy",
|
"name": "dokploy",
|
||||||
"version": "v0.12.1",
|
"version": "v0.13.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ export const composeRouter = createTRPCRouter({
|
|||||||
if (ctx.user.rol === "user") {
|
if (ctx.user.rol === "user") {
|
||||||
await addNewService(ctx.user.authId, newService.composeId);
|
await addNewService(ctx.user.authId, newService.composeId);
|
||||||
}
|
}
|
||||||
|
|
||||||
return newService;
|
return newService;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
throw error;
|
throw error;
|
||||||
|
|||||||
@@ -956,8 +956,8 @@ export const templates: TemplateData[] = [
|
|||||||
},
|
},
|
||||||
tags: ["media", "photos", "self-hosted"],
|
tags: ["media", "photos", "self-hosted"],
|
||||||
load: () => import("./photoprism/index").then((m) => m.generate),
|
load: () => import("./photoprism/index").then((m) => m.generate),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "ontime",
|
id: "ontime",
|
||||||
name: "Ontime",
|
name: "Ontime",
|
||||||
version: "v3.8.0",
|
version: "v3.8.0",
|
||||||
|
|||||||
@@ -1,6 +1,13 @@
|
|||||||
import Cookies from "js-cookie";
|
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];
|
type Locale = (typeof SUPPORTED_LOCALES)[number];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user