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
ras0219
de0501f187
[sfml][imgui-sfml] Push SFML_STATIC_LIBRARIES setting into sfml
( #11800 )
2020-08-22 01:29:59 -07:00
Jack·Boos·Yu
6319183413
[imgui-sfml] Force imgui-sfml to be a static library ( #10840 )
...
* [imgui-sfml] Force imgui-sfml as a static library
* [imgui-sfml] Change the way to detect sfml
2020-05-15 14:11:26 -07:00
kiwixz
95a336e049
[imgui-sfml] update to 2.1 ( #8004 )
2019-09-10 13:52:21 -07:00
Tri Tran
79b5a9ae58
[imgui-sfml] Add new port ( #7429 )
...
* [imgui-sfml] Add new package ImGui-SFML
* Static build only to match with `imgui`.
* [imgui-sfml] Fix case-sensitive imgui package name
* [imgui-sfml] Require C++11
* [imgui-sfml] Include IMGUI_API define
* [imgui-sfml] Remove delegating ctor - C++11 is not required
2019-09-03 14:45:31 -07:00