Skip to content

Commit

Permalink
AU: 1 updated - qtcreator
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Dec 6, 2018
1 parent f73fc5c commit db1e418
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
3 changes: 2 additions & 1 deletion automatic/qtcreator/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# ![Qt Creator Changelog](https://img.shields.io/badge/Qt%20Creator-Package%20Changelog-blue.svg?style=for-the-badge)

## UPCOMING
## Version: 4.8.0 (2018-12-06)
- **Breaking Change:** Removed dependency on chocolatey, and chocolatey-core.extension.
- Changed back to download during install

## Version: 4.5.0 (2017-12-07)
- **ENHANCEMENT:** Added version for vcredist2015 dependency
Expand Down
8 changes: 3 additions & 5 deletions automatic/qtcreator/qtcreator.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>qtcreator</id>
<version>4.7.2</version>
<version>4.8.0</version>
<packageSourceUrl>https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/qtcreator</packageSourceUrl>
<owners>AdmiringWorm</owners>
<title>Qt Creator</title>
Expand All @@ -22,10 +22,8 @@
<!-- Do not touch the description here in the nuspec file. Description is imported during update from the Readme.md file -->
<description><![CDATA[Qt Creator provides a cross-platform, complete integrated development environment (IDE) for application developers to create applications for multiple desktop and mobile device platforms, such as Android and iOS.
]]></description>
<releaseNotes>
[Software Changelog](http://code.qt.io/cgit/qt-creator/qt-creator.git/plain/dist/changes-4.1.0.md)
[Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/qtcreator/Changelog.md)
</releaseNotes>
<releaseNotes>[Software Changelog](http://code.qt.io/cgit/qt-creator/qt-creator.git/plain/dist/changes-4.8.0.md)
[Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/qtcreator/Changelog.md)</releaseNotes>
<dependencies>
<dependency id="vcredist2015" version="14.0.24215.20170201" />
</dependencies>
Expand Down
12 changes: 6 additions & 6 deletions automatic/qtcreator/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ $installToolsPath = Get-ToolsLocation

$packageArgs = @{
packageName = $env:ChocolateyPackageName
url = ''
url64bit = ''
url = 'https://download.qt.io/official_releases/qtcreator/4.8/4.8.0/installer_source/windows_vs2015_32/qtcreator.7z'
url64bit = 'https://download.qt.io/official_releases/qtcreator/4.8/4.8.0/installer_source/windows_vs2015_64/qtcreator.7z'
destination = "$installToolsPath\$env:ChocolateyPackageName"
checksum = ''
checksumType = ''
checksum64 = ''
checksumType64 = ''
checksum = '84b4b2547b6f4f57e999cbb148782064494131ce481d4b8bb083907ba80f0fd8'
checksumType = 'sha256'
checksum64 = '998470c375e010bb875433695c94c8eb61cb19b881f9008358864e7486bc5435'
checksumType64 = 'sha256'
}

Install-ChocolateyZipPackage @packageArgs
Expand Down

0 comments on commit db1e418

Please sign in to comment.