Tom Conder
ab65510cb3
[imgui]: Update to 1.91.5 ( #42244 )
2024-11-22 15:21:15 -08:00
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
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