mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 08:55:32 +02:00
- 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.
7 lines
119 B
TypeScript
7 lines
119 B
TypeScript
import { CHECKSUMS } from './checksum'
|
|
import { I18N } from './i18n'
|
|
|
|
export const CONSTANT = {
|
|
I18N,
|
|
CHECKSUMS,
|
|
}
|