Thomas1664
|
c79c94dc5c
|
[qt-advanced-docking-system] Remove directory license (#24151)
* Update to 3.8.2
* version
* version
|
2022-04-15 11:18:51 -07:00 |
|
vincent-nv
|
4a41edd67f
|
[qt-advanced-docking-system] update to version 3.8.2 (#24096)
|
2022-04-13 11:12:02 -07:00 |
|
nicole mazzuca
|
7e3f9817bc
|
Revert "[qt-advanced-docking-system] update and use qt6 (#21998)" (#22350)
This reverts commit 91e1ce34a5 .
|
2022-01-04 14:45:21 -08:00 |
|
Alexander Neumann
|
91e1ce34a5
|
[qt-advanced-docking-system] update and use qt6 (#21998)
* update port
* format-manifest
* version stuff
* version stuff
* fix arm windows
* version stuff
|
2022-01-04 14:42:55 -08:00 |
|
vincent-nv
|
de0afd063a
|
UPDATE Qt-Advanced-Docking-System to v3.8.0 (#21802)
|
2021-12-09 16:55:57 -08:00 |
|
vincent-nv
|
fddd13e36e
|
UPDATE Qt-Advanced-Docking-System to v3.7.2 (#21801)
* UPDATE Qt-Advanced-Docking-System to v3.7.2
* MR + change old cmake functions names
* MR
* MR
|
2021-12-06 20:18:38 -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 |
|
nicole mazzuca
|
68a74950d0
|
[vcpkg] Rename port_versions to versions (#15784)
|
2021-01-21 09:53:22 -08:00 |
|