Skip to content

Commit

Permalink
correct release date format in manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-codes committed Nov 10, 2024
1 parent 283e10d commit cb14ff2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions apps/PlayniteWebPlugin/src/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ AddonId: PlayniteWeb_ec3439e3-51ee-43cb-9a8a-5d82cf45edac
Packages:
- Version: 9.4.1
PackageUrl: https://github.com/andrew-codes/playnite-web/releases/download/v9.4.1/PlayniteWeb_ec3439e3-51ee-43cb-9a8a-5d82cf45edac_9_4_1.pext
ReleaseDate: Sun Nov 10 2024
ReleaseDate: 2024-11-10
RequiredApiVersion: 5.6.0
Changelog:
- "chore: commit ext & manifest on release"
- "fix: no dry run"
- "fix: update manifest in repo"
- "chore: automate manifest creation (#616)"
- "chore: automate manifest creation"
- 'chore: commit ext & manifest on release'
- 'fix: no dry run'
- 'fix: update manifest in repo'
- 'chore: automate manifest creation (#616)'
- 'chore: automate manifest creation'
2 changes: 1 addition & 1 deletion libs/playnite-plugin-installer-manifest/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const verifyRelease = async (pluginConfig, context) => {
PackageUrl: `${repositoryUrl}/releases/download/v${nextRelease.version}/${
extension.Id
}_${nextRelease.version.replace(/\./g, '_')}.pext`,
ReleaseDate: new Date().toDateString(),
ReleaseDate: new Date().toISOString().split('T')[0],
RequiredApiVersion: '5.6.0',
Changelog: [],
}
Expand Down

0 comments on commit cb14ff2

Please sign in to comment.