mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-13 06:39:03 +00:00
* chore: update constants * feat: add releases data utils * chore: add fast-xml-parser * chore: update types * feat: fetch & parse all releases data * chore: update utils * wip: use real data on DataTable * chore: update yarn.lock * fix: getReleaseCommitHash * feat: filter data per downloads tab * chore: update DownloadsTable * chore: update DownloadsTable Props * fix: getReleaseArch.ts * feat: add fetchXMLData util * feat: add fetchLatestReleaseCommit util * feat: add getSortedReleases util * chore: comment wip primary release feature * fix: fetchXMLData * chore: add netlify.toml * fix: total number of releases count * fix: center showing latest releases text and use smaller font * chore: prettier * chore: update textStyles * fix: merge conflicts
18 lines
1 KiB
TypeScript
18 lines
1 KiB
TypeScript
export { compareReleasesFn } from './compareReleasesFn';
|
|
export { fetchLatestReleaseCommit } from './fetchLatestReleaseCommit';
|
|
export { fetchLatestReleaseVersionAndName } from './fetchLatestReleaseVersionAndName';
|
|
export { fetchXMLData } from './fetchXMLData';
|
|
export { getLatestBinaryURL } from './getLatestBinaryURL';
|
|
export { getChecksum } from './getChecksum';
|
|
export { getParsedDate } from './getParsedDate';
|
|
export { getProgrammingLanguageName } from './getProgrammingLanguageName';
|
|
export { getReleaseArch } from './getReleaseArch';
|
|
export { getReleaseCommitHash } from './getReleaseCommitHash';
|
|
export { getReleaseCommitURL } from './getReleaseCommitURL';
|
|
export { getReleaseKind } from './getReleaseKind';
|
|
export { getReleaseName } from './getReleaseName';
|
|
export { getReleaseSize } from './getReleaseSize';
|
|
export { getReleaseURL } from './getReleaseURL';
|
|
export { getSignatureURL } from './getSignatureURL';
|
|
export { getSortedReleases } from './getSortedReleases';
|
|
export { mapReleasesData } from './mapReleasesData';
|