mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-02-02 05:41:10 -08:00
parent
d94a0db0a9
commit
4fe1feb488
|
@ -1,5 +1,6 @@
|
||||||
PackageIdentifier: JanDeDobbeleer.OhMyPosh
|
PackageIdentifier: JanDeDobbeleer.OhMyPosh
|
||||||
PackageVersion: <VERSION>
|
PackageVersion: <VERSION>
|
||||||
|
ReleaseDate: <DATE>
|
||||||
Platform:
|
Platform:
|
||||||
- Windows.Desktop
|
- Windows.Desktop
|
||||||
MinimumOSVersion: 10.0.0.0
|
MinimumOSVersion: 10.0.0.0
|
||||||
|
@ -35,4 +36,4 @@ Installers:
|
||||||
InstallerSwitches:
|
InstallerSwitches:
|
||||||
Custom: /CURRENTUSER
|
Custom: /CURRENTUSER
|
||||||
ManifestType: installer
|
ManifestType: installer
|
||||||
ManifestVersion: 1.0.0
|
ManifestVersion: 1.1.0
|
||||||
|
|
|
@ -26,4 +26,6 @@ Tags:
|
||||||
- utilities
|
- utilities
|
||||||
- wsl
|
- wsl
|
||||||
ManifestType: defaultLocale
|
ManifestType: defaultLocale
|
||||||
ManifestVersion: 1.0.0
|
ManifestVersion: 1.1.0
|
||||||
|
ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v<VERSION>
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,4 @@ PackageIdentifier: JanDeDobbeleer.OhMyPosh
|
||||||
PackageVersion: <VERSION>
|
PackageVersion: <VERSION>
|
||||||
DefaultLocale: en-US
|
DefaultLocale: en-US
|
||||||
ManifestType: version
|
ManifestType: version
|
||||||
ManifestVersion: 1.0.0
|
ManifestVersion: 1.1.0
|
||||||
|
|
|
@ -41,6 +41,8 @@ function Write-MetaData {
|
||||||
$content = $content.Replace('<VERSION>', $Version)
|
$content = $content.Replace('<VERSION>', $Version)
|
||||||
$content = $content.Replace('<HASH-AMD64>', $HashAmd64)
|
$content = $content.Replace('<HASH-AMD64>', $HashAmd64)
|
||||||
$content = $content.Replace('<HASH-ARM64>', $HashArm64)
|
$content = $content.Replace('<HASH-ARM64>', $HashArm64)
|
||||||
|
$date = Get-Date -Format "yyyy-MM-dd"
|
||||||
|
$content = $content.Replace('<DATE>', $date)
|
||||||
$content | Out-File -Encoding 'UTF8' "./$Version/$FileName"
|
$content | Out-File -Encoding 'UTF8' "./$Version/$FileName"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue