www/src/constants/index.ts
taroj1205 6a7bd311c0
feat(download): enhance download page with checksum integration and platform-specific releases
- Added a new `release-data.ts` file to manage release information with dynamic checksums.
- Introduced `CHECKSUMS` constant for easy access to file checksums.
- Updated `PlatformDownload.astro` to support additional release types and improved type safety.
- Enhanced the download page to correctly display platform-specific download links and checksums.
- Refactored tests to validate the new download functionality and checksum integration.
2025-05-16 12:30:14 +12:00

7 lines
119 B
TypeScript

import { CHECKSUMS } from './checksum'
import { I18N } from './i18n'
export const CONSTANT = {
I18N,
CHECKSUMS,
}