Lily Wang
9fdd48c17d
[imgui-sfml] Update to 2.6 ( #34045 )
...
* [imgui-sfml] Update to 2.6
* update version
2023-09-28 23:11:48 -07:00
Kai Pastor
3ee6678f87
[imgui-sfml] Fix build and exported config ( #32982 )
...
* [imgui-sfml] Restore linking keyword
* Merge patches
* Move config to lower-case dir
* Add find_dependency
* Update versions
* Trim patch
2023-08-07 09:11:10 -07:00
reito
8c9416f444
[multiple-ports] Fix missing usage ( #29345 )
...
* Fix missing usage
* fixes
* fixes
* fixes
* fixes
* fixes
* fixes
* fixes
* fixes
2023-02-09 10:59:04 -08:00
Rémy Tassoux
2c26c9aff1
[imgui] Update to 1.89.1 ( #27838 )
...
* [imgui] Update to 1.89
* [imgui] Update version files
* [imgui] Update to 1.89.1
* [imgui] Update version files
* [ogre] Fix build failure on imgui 1.89
* [ogre] Update version files
* [imgui-sfml] Fix build failure on imgui 1.89
* [imgui-sfml] Update version files
* [milerius-sfml-imgui] Fix build failure on imgui 1.89
* [milerius-sfml-imgui] Update version files
* [imgui] Modernize port
* [imgui] Update version files
* bump port version
* version
* version... again
Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
2022-11-28 15:46:08 -08:00
Rémy Tassoux
320059c010
[imgui] Update to 1.88 ( #25370 )
...
* [imgui] Update to 1.88
* [imgui] Update version files
* [imgui-sfml] Build for C++11 to support imgui 1.88 changes
* [imgui-sfml] Update version files
2022-06-27 13:27:25 -07:00
Sam Huang
a3e9d4d0f8
[imgui-sfml] Update to 2.5 ( #23914 )
...
* [imgui-sfml] Update to 2.5
* Update version files
* Formatted vcpkg.json
* Update version database
* Add license ID
* Update version database
2022-04-06 14:43:02 -07:00
Jack·Boos·Yu
b1d364ed98
[imgui-sfml] Fix usage ( #21871 )
...
* [imgui-sfml] Fix usage
* version
2021-12-06 21:28:41 -08:00
JonLiu1993
024922992e
[imgui-sfml] update to v2.4 ( #21460 )
...
* [imgui-sfml] update to v2.4
* update version
2021-11-17 12:30:39 -08:00
JonLiu1993
aa105d94e9
[imgui-sfml] update to v2.3 ( #20926 )
...
* [imgui-sfml] update to v2.3
* update version
* change patch format from CRLF to CF
* update version
* Finish suggested change
* update version
2021-10-26 23:43:45 -07: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