Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b49ec93c54 | ||
|
|
e6584322fa | ||
|
|
1138cd02b0 |
@@ -1,3 +1,10 @@
|
|||||||
|
## [0.20.1](https://github.com/stonith404/pingvin-share/compare/v0.20.0...v0.20.1) (2023-11-05)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* share information text color in light mode ([1138cd0](https://github.com/stonith404/pingvin-share/commit/1138cd02b0b6ac1d71c4dbc2808110c672237190))
|
||||||
|
|
||||||
## [0.20.0](https://github.com/stonith404/pingvin-share/compare/v0.19.2...v0.20.0) (2023-11-04)
|
## [0.20.0](https://github.com/stonith404/pingvin-share/compare/v0.19.2...v0.20.0) (2023-11-04)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
4
backend/package-lock.json
generated
4
backend/package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "pingvin-share-backend",
|
"name": "pingvin-share-backend",
|
||||||
"version": "0.20.0",
|
"version": "0.20.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "pingvin-share-backend",
|
"name": "pingvin-share-backend",
|
||||||
"version": "0.20.0",
|
"version": "0.20.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nestjs/cache-manager": "^2.1.0",
|
"@nestjs/cache-manager": "^2.1.0",
|
||||||
"@nestjs/common": "^10.1.2",
|
"@nestjs/common": "^10.1.2",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pingvin-share-backend",
|
"name": "pingvin-share-backend",
|
||||||
"version": "0.20.0",
|
"version": "0.20.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "nest build",
|
"build": "nest build",
|
||||||
"dev": "cross-env NODE_ENV=development nest start --watch",
|
"dev": "cross-env NODE_ENV=development nest start --watch",
|
||||||
|
|||||||
4
frontend/package-lock.json
generated
4
frontend/package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "pingvin-share-frontend",
|
"name": "pingvin-share-frontend",
|
||||||
"version": "0.20.0",
|
"version": "0.20.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "pingvin-share-frontend",
|
"name": "pingvin-share-frontend",
|
||||||
"version": "0.20.0",
|
"version": "0.20.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/react": "^11.11.1",
|
"@emotion/react": "^11.11.1",
|
||||||
"@emotion/server": "^11.11.0",
|
"@emotion/server": "^11.11.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pingvin-share-frontend",
|
"name": "pingvin-share-frontend",
|
||||||
"version": "0.20.0",
|
"version": "0.20.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ const showShareInformationsModal = (
|
|||||||
modals: ModalsContextProps,
|
modals: ModalsContextProps,
|
||||||
share: MyShare,
|
share: MyShare,
|
||||||
appUrl: string,
|
appUrl: string,
|
||||||
maxShareSize: number,
|
maxShareSize: number
|
||||||
) => {
|
) => {
|
||||||
const t = translateOutsideContext();
|
const t = translateOutsideContext();
|
||||||
const link = `${appUrl}/s/${share.id}`;
|
const link = `${appUrl}/s/${share.id}`;
|
||||||
@@ -36,28 +36,28 @@ const showShareInformationsModal = (
|
|||||||
|
|
||||||
children: (
|
children: (
|
||||||
<Stack align="stretch" spacing="md">
|
<Stack align="stretch" spacing="md">
|
||||||
<Text size="sm" color="lightgray">
|
<Text size="sm">
|
||||||
<b>
|
<b>
|
||||||
<FormattedMessage id="account.shares.table.id" />:{" "}
|
<FormattedMessage id="account.shares.table.id" />:{" "}
|
||||||
</b>
|
</b>
|
||||||
{share.id}
|
{share.id}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
<Text size="sm" color="lightgray">
|
<Text size="sm">
|
||||||
<b>
|
<b>
|
||||||
<FormattedMessage id="account.shares.table.description" />:{" "}
|
<FormattedMessage id="account.shares.table.description" />:{" "}
|
||||||
</b>
|
</b>
|
||||||
{share.description || "No description"}
|
{share.description || "No description"}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
<Text size="sm" color="lightgray">
|
<Text size="sm">
|
||||||
<b>
|
<b>
|
||||||
<FormattedMessage id="account.shares.table.createdAt" />:{" "}
|
<FormattedMessage id="account.shares.table.createdAt" />:{" "}
|
||||||
</b>
|
</b>
|
||||||
{formattedCreatedAt}
|
{formattedCreatedAt}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
<Text size="sm" color="lightgray">
|
<Text size="sm">
|
||||||
<b>
|
<b>
|
||||||
<FormattedMessage id="account.shares.table.expiresAt" />:{" "}
|
<FormattedMessage id="account.shares.table.expiresAt" />:{" "}
|
||||||
</b>
|
</b>
|
||||||
@@ -66,7 +66,7 @@ const showShareInformationsModal = (
|
|||||||
<Divider />
|
<Divider />
|
||||||
<CopyTextField link={link} />
|
<CopyTextField link={link} />
|
||||||
<Divider />
|
<Divider />
|
||||||
<Text size="sm" color="lightgray">
|
<Text size="sm">
|
||||||
<b>
|
<b>
|
||||||
<FormattedMessage id="account.shares.table.size" />:{" "}
|
<FormattedMessage id="account.shares.table.size" />:{" "}
|
||||||
</b>
|
</b>
|
||||||
@@ -76,7 +76,7 @@ const showShareInformationsModal = (
|
|||||||
|
|
||||||
<Flex align="center" justify="center">
|
<Flex align="center" justify="center">
|
||||||
{shareSize / maxShareSize < 0.1 && (
|
{shareSize / maxShareSize < 0.1 && (
|
||||||
<Text size="xs" color="lightgray" style={{ marginRight: "4px" }}>
|
<Text size="xs" style={{ marginRight: "4px" }}>
|
||||||
{formattedShareSize}
|
{formattedShareSize}
|
||||||
</Text>
|
</Text>
|
||||||
)}
|
)}
|
||||||
@@ -87,7 +87,7 @@ const showShareInformationsModal = (
|
|||||||
size="xl"
|
size="xl"
|
||||||
radius="xl"
|
radius="xl"
|
||||||
/>
|
/>
|
||||||
<Text size="xs" color="lightgray" style={{ marginLeft: "4px" }}>
|
<Text size="xs" style={{ marginLeft: "4px" }}>
|
||||||
{formattedMaxShareSize}
|
{formattedMaxShareSize}
|
||||||
</Text>
|
</Text>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Forhåndsvisning ikke understøttet",
|
"share.modal.file-preview.error.not-supported.title": "Forhåndsvisning ikke understøttet",
|
||||||
"share.modal.file-preview.error.not-supported.description": "En forhåndsvisning for thise filtype er ikke understøttet. Download venligst filen for at se den.",
|
"share.modal.file-preview.error.not-supported.description": "En forhåndsvisning for thise filtype er ikke understøttet. Download venligst filen for at se den.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Konfiguration",
|
"admin.config.title": "Konfiguration",
|
||||||
"admin.config.category.general": "Generelt",
|
"admin.config.category.general": "Generelt",
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ export default {
|
|||||||
"account.shares.title.empty": "Es ist so leer hier 👀",
|
"account.shares.title.empty": "Es ist so leer hier 👀",
|
||||||
"account.shares.description.empty": "Du hast keine Freigaben erstellt.",
|
"account.shares.description.empty": "Du hast keine Freigaben erstellt.",
|
||||||
"account.shares.button.create": "Erstelle eine",
|
"account.shares.button.create": "Erstelle eine",
|
||||||
"account.shares.info.title": "Teile deine Information",
|
"account.shares.info.title": "Freigabe Informationen",
|
||||||
"account.shares.table.id": "ID",
|
"account.shares.table.id": "ID",
|
||||||
"account.shares.table.name": "Name",
|
"account.shares.table.name": "Name",
|
||||||
"account.shares.table.description": "Beschreibung",
|
"account.shares.table.description": "Beschreibung",
|
||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Vorschau wird nicht unterstützt",
|
"share.modal.file-preview.error.not-supported.title": "Vorschau wird nicht unterstützt",
|
||||||
"share.modal.file-preview.error.not-supported.description": "Eine Vorschau für diesen Dateityp wird nicht unterstützt. Bitte lade die Datei herunter, um sie anzuzeigen.",
|
"share.modal.file-preview.error.not-supported.description": "Eine Vorschau für diesen Dateityp wird nicht unterstützt. Bitte lade die Datei herunter, um sie anzuzeigen.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Einstellungen",
|
"admin.config.title": "Einstellungen",
|
||||||
"admin.config.category.general": "Allgemein",
|
"admin.config.category.general": "Allgemein",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Vista previa no disponible",
|
"share.modal.file-preview.error.not-supported.title": "Vista previa no disponible",
|
||||||
"share.modal.file-preview.error.not-supported.description": "La vista previa para este tipo de archivo no está disponible. Por favor descargue el archivo para verlo.",
|
"share.modal.file-preview.error.not-supported.description": "La vista previa para este tipo de archivo no está disponible. Por favor descargue el archivo para verlo.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Configuración",
|
"admin.config.title": "Configuración",
|
||||||
"admin.config.category.general": "General",
|
"admin.config.category.general": "General",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Esikatselua ei tuettu",
|
"share.modal.file-preview.error.not-supported.title": "Esikatselua ei tuettu",
|
||||||
"share.modal.file-preview.error.not-supported.description": "Esikatselua thise tiedostotyypille ei tueta. Ole hyvä ja lataa tiedosto nähdäksesi sen.",
|
"share.modal.file-preview.error.not-supported.description": "Esikatselua thise tiedostotyypille ei tueta. Ole hyvä ja lataa tiedosto nähdäksesi sen.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Asetukset",
|
"admin.config.title": "Asetukset",
|
||||||
"admin.config.category.general": "Yleiset",
|
"admin.config.category.general": "Yleiset",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Aperçu non supporté",
|
"share.modal.file-preview.error.not-supported.title": "Aperçu non supporté",
|
||||||
"share.modal.file-preview.error.not-supported.description": "Un aperçu pour ce type de fichier n'est pas pris en charge. Veuillez télécharger le fichier pour le voir.",
|
"share.modal.file-preview.error.not-supported.description": "Un aperçu pour ce type de fichier n'est pas pris en charge. Veuillez télécharger le fichier pour le voir.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Paramètres",
|
"admin.config.title": "Paramètres",
|
||||||
"admin.config.category.general": "Général",
|
"admin.config.category.general": "Général",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "プレビューに対応していません",
|
"share.modal.file-preview.error.not-supported.title": "プレビューに対応していません",
|
||||||
"share.modal.file-preview.error.not-supported.description": "これらのファイルのプレビューには対応していません。ファイルをダウンロードして、直接確認してください。",
|
"share.modal.file-preview.error.not-supported.description": "これらのファイルのプレビューには対応していません。ファイルをダウンロードして、直接確認してください。",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "設定",
|
"admin.config.title": "設定",
|
||||||
"admin.config.category.general": "一般",
|
"admin.config.category.general": "一般",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Voorbeeld niet ondersteund",
|
"share.modal.file-preview.error.not-supported.title": "Voorbeeld niet ondersteund",
|
||||||
"share.modal.file-preview.error.not-supported.description": "Een voorbeeld voor dit bestandstype wordt niet ondersteund. Download het bestand om het te bekijken.",
|
"share.modal.file-preview.error.not-supported.description": "Een voorbeeld voor dit bestandstype wordt niet ondersteund. Download het bestand om het te bekijken.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Configuratie",
|
"admin.config.title": "Configuratie",
|
||||||
"admin.config.category.general": "Algemeen",
|
"admin.config.category.general": "Algemeen",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Podgląd nie jest obsługiwany",
|
"share.modal.file-preview.error.not-supported.title": "Podgląd nie jest obsługiwany",
|
||||||
"share.modal.file-preview.error.not-supported.description": "Podgląd dla tego typu pliku nie jest obsługiwany. Pobierz plik, aby go zobaczyć.",
|
"share.modal.file-preview.error.not-supported.description": "Podgląd dla tego typu pliku nie jest obsługiwany. Pobierz plik, aby go zobaczyć.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edytuj {shareId}",
|
||||||
|
"share.edit.append-upload": "Dołącz plik",
|
||||||
|
"share.edit.notify.generic-error": "W trakcie zakańczania tworzenia udziału wystąpił błąd.",
|
||||||
|
"share.edit.notify.save-success": "Udział zaktualizowany pomyślnie",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Konfiguracja",
|
"admin.config.title": "Konfiguracja",
|
||||||
"admin.config.category.general": "Ogólne",
|
"admin.config.category.general": "Ogólne",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Visualização não suportada",
|
"share.modal.file-preview.error.not-supported.title": "Visualização não suportada",
|
||||||
"share.modal.file-preview.error.not-supported.description": "Uma visualização para este tipo de arquivo não é suportada. Faça o download do arquivo para visualizá-lo.",
|
"share.modal.file-preview.error.not-supported.description": "Uma visualização para este tipo de arquivo não é suportada. Faça o download do arquivo para visualizá-lo.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Editar {shareId}",
|
||||||
|
"share.edit.append-upload": "Anexar arquivo",
|
||||||
|
"share.edit.notify.generic-error": "Ocorreu um erro ao terminar seu compartilhamento.",
|
||||||
|
"share.edit.notify.save-success": "Compartilhamento atualizado com sucesso",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Configuração",
|
"admin.config.title": "Configuração",
|
||||||
"admin.config.category.general": "Geral",
|
"admin.config.category.general": "Geral",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Предпросмотр не поддерживается",
|
"share.modal.file-preview.error.not-supported.title": "Предпросмотр не поддерживается",
|
||||||
"share.modal.file-preview.error.not-supported.description": "Предварительный просмотр этого типа файла не поддерживается. Пожалуйста, скачайте файл для его просмотра.",
|
"share.modal.file-preview.error.not-supported.description": "Предварительный просмотр этого типа файла не поддерживается. Пожалуйста, скачайте файл для его просмотра.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Конфигурация",
|
"admin.config.title": "Конфигурация",
|
||||||
"admin.config.category.general": "Общее",
|
"admin.config.category.general": "Общее",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "Преглед није подржан",
|
"share.modal.file-preview.error.not-supported.title": "Преглед није подржан",
|
||||||
"share.modal.file-preview.error.not-supported.description": "Преглед за овај тип датотеке није подржан. Преузмите датотеку да бисте је видели.",
|
"share.modal.file-preview.error.not-supported.description": "Преглед за овај тип датотеке није подржан. Преузмите датотеку да бисте је видели.",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "Конфигурација",
|
"admin.config.title": "Конфигурација",
|
||||||
"admin.config.category.general": "Опште",
|
"admin.config.category.general": "Опште",
|
||||||
|
|||||||
@@ -264,6 +264,12 @@ export default {
|
|||||||
"share.modal.file-preview.error.not-supported.title": "ไม่รองรับการแสดงตัวอย่าง",
|
"share.modal.file-preview.error.not-supported.title": "ไม่รองรับการแสดงตัวอย่าง",
|
||||||
"share.modal.file-preview.error.not-supported.description": "ไม่รองรับการแสดงตัวอย่างสำหรับไฟล์ประเภทนี้ โปรดดาวน์โหลดไฟล์เพื่อดู",
|
"share.modal.file-preview.error.not-supported.description": "ไม่รองรับการแสดงตัวอย่างสำหรับไฟล์ประเภทนี้ โปรดดาวน์โหลดไฟล์เพื่อดู",
|
||||||
// END /share/[id]
|
// END /share/[id]
|
||||||
|
// /share/[id]/edit
|
||||||
|
"share.edit.title": "Edit {shareId}",
|
||||||
|
"share.edit.append-upload": "Append file",
|
||||||
|
"share.edit.notify.generic-error": "An error occurred while finishing your share.",
|
||||||
|
"share.edit.notify.save-success": "Share updated successfully",
|
||||||
|
// END /share/[id]/edit
|
||||||
// /admin/config
|
// /admin/config
|
||||||
"admin.config.title": "การตั้งค่า",
|
"admin.config.title": "การตั้งค่า",
|
||||||
"admin.config.category.general": "ทั่วไป",
|
"admin.config.category.general": "ทั่วไป",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pingvin-share",
|
"name": "pingvin-share",
|
||||||
"version": "0.20.0",
|
"version": "0.20.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"format": "cd frontend && npm run format && cd ../backend && npm run format",
|
"format": "cd frontend && npm run format && cd ../backend && npm run format",
|
||||||
"lint": "cd frontend && npm run lint && cd ../backend && npm run lint",
|
"lint": "cd frontend && npm run lint && cd ../backend && npm run lint",
|
||||||
|
|||||||
Reference in New Issue
Block a user