Skip to content

Commit

Permalink
Merge branch 'master' into feat/section-management
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdvlpr authored Jan 26, 2025
2 parents 7622265 + 135153f commit 70ac4e2
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 131 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,16 @@
"@quasar/quasar-app-extension-testing-unit-vitest": "^1.1.0",
"@quasar/vite-plugin": "^1.9.0",
"@rollup/plugin-inject": "^5.0.5",
"@sentry/esbuild-plugin": "^3.0.0",
"@sentry/vite-plugin": "^3.0.0",
"@sentry/esbuild-plugin": "^3.1.0",
"@sentry/vite-plugin": "^3.1.0",
"@types/better-sqlite3": "^7.6.12",
"@types/decompress": "^4.2.7",
"@types/dompurify": "^3.2.0",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/fs-extra": "^11.0.4",
"@types/heic-convert": "^2.1.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.14",
"@types/node": "^20.17.16",
"@types/pretty-bytes": "^5.2.0",
"@types/sanitize-html": "^2.13.0",
"@types/sortablejs": "^1.15.8",
Expand All @@ -106,14 +106,14 @@
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"lint-staged": "^15.4.2",
"lodash-es": "^4.17.21",
"msw": "^2.7.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"typescript": "~5.6.3",
"vitepress": "^1.6.3",
"vitest": "^3.0.3",
"vitest": "^3.0.4",
"vue-tsc": "^2.2.0"
},
"browserslist": [
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@
"tryConfiguringFallbackLanguage": "Tente configurar um idioma secundário nas configurações",
"until-meeting-starts": "Até o início da reunião",
"upcoming-songs": "Próximos cânticos",
"update": "Atualização",
"update": "Baixar",
"update-available": "Uma nova versão do M³ está disponível! Atualize para receber os recursos mais recentes, correções de bugs e atualizações de segurança.",
"use-the-import-button-to-add-media-for-this-date-or-select-another-date-to-view-the-corresponding-meeting-media": "Use o botão 'Incluir mídias adicionais' para adicionar uma mídia para esta data, ou selecione uma data diferente para visualizar as mídias correspondentes daquele dia.",
"use-the-slider-below-to-adjust-the-start-and-end-time-of-this-media-item": "Use o controle deslizante abaixo para ajustar o tempo de início e fim dessa mídia. Isso é útil para reproduzir apenas partes específicas de um vídeo.",
Expand Down
6 changes: 3 additions & 3 deletions src/utils/date.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ export const dateFromString = (lookupDate?: Date | string | undefined) => {
) {
date = new Date(year, month - 1, day); // Create local date
} else {
throw new Error('Invalid date format');
throw new Error(`Invalid date format: ${lookupDate}`);
}
}
} else {
throw new Error('Unsupported date format');
throw new Error(`Unsupported date format: ${lookupDate}`);
}
} else {
throw new Error('Unsupported input type');
throw new Error(`Unsupported input type: ${lookupDate}`);
}

// Return the date with time set to midnight
Expand Down
Loading

0 comments on commit 70ac4e2

Please sign in to comment.