Lily Wang
5ad0fd26c1
[mygui] Fix feature tools build failed on macOS ( #31082 )
...
* [mygui] Fix feature tools build failed on macOS
* update version
2023-04-24 14:25:54 -07:00
autoantwort
4f18e877d3
[mygui] fix arm64-osx build ( #27417 )
2022-10-24 16:22:00 -07:00
Cheney Wang
842c72898a
[mygui] Add feature tools ( #25228 )
...
* [mygui] Add feature tools
* x-add-version
* Test tools on CI
* overwrite-version
* Add the part of install tools to source's cmakefile
* x-add-version --overwrite-version
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2022-06-16 15:23:28 -07:00
Felipe Wannmacher
e3c42b4418
[sdl2-image] Support x64-uwp ( #22437 )
...
* fixed 22434
* Clean baseline
* update version
* version
* add supports field since the upstream doesn't support uwp
* improve code
* version
* version
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2022-01-10 13:15:07 -08:00
autoantwort
e15bfe6867
[mygui] no absolute paths ( #22355 )
2022-01-05 20:21:18 -08:00
Frank
a674f79ce9
[MyGUI] update to 3.4.1 ( #22015 )
...
* [MyGUI] update to 3.4.1
* update version
2021-12-14 10:47:59 -08:00
Billy O'Neal
b295670e4b
Bulk convert control files. ( #19986 )
...
```
function Convert-Control {
Param($full)
.\vcpkg.exe format-manifest $full
$root = $full.Substring(0, $full.Length - 7) # CONTROL
$new = $root + 'vcpkg.json'
$content = Get-Content -Raw $new
$asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
$oldVersion = $asJson['port-version']
if ($null -eq $oldVersion) {
$oldVersionFull = $asJson['version-string']
Write-Host "Got version $oldVersionFull"
$match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
$newFullVersion = [string]$match.Groups[1].Value
$oldVersion = [int]$match.Groups[2].Value
Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
$newVersion = $oldVersion + 1
$asJson['version-string'] = $newFullVersion
Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
} else {
Write-Host "No previous version for $full -- setting 1"
$newVersion = 1
}
} else {
$newVersion = [int]$oldVersion + 1
Write-Host "New version for $full : $newVersion"
}
$asJson['port-version'] = $newVersion
$content = ConvertTo-Json $asJson -Depth 100
Set-Content -Path $new -Value $content
.\vcpkg.exe format-manifest $new
}
Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
Convert-Control $_.FullName
}
git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```
2021-09-09 01:24:04 -07:00
Leonid Pospelov
d7be068355
[MyGUI] Add new port ( #11991 )
...
* [MyGUI] Add new port
* fix
2020-07-09 12:40:15 -07:00