export function createLatestManifest(options) { const publishedAt = options.publishedAt ?? new Date().toISOString().slice(0, 10); return { guideUrl: `${options.publicBaseUrl}/星图增强插件-超简单安装使用指南.pdf`, latestVersion: options.latestVersion, minSupportedVersion: options.minSupportedVersion, publishedAt, releaseNotes: [ "支持在插件弹窗中检查新版本", "支持一键下载最新版插件压缩包和使用说明" ], zipUrl: `${options.publicBaseUrl}/star-chart-search-enhancer-internal.zip` }; }