Skip to content

Commit

Permalink
Build 0.5.0
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Ribelotta <[email protected]>
  • Loading branch information
martinribelotta committed Aug 4, 2017
1 parent e9bd4a3 commit 6edc276
Show file tree
Hide file tree
Showing 13 changed files with 43 additions and 21 deletions.
2 changes: 1 addition & 1 deletion win32/installer/build.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
C:\Qt\QtIFW2.0.3\bin\binarycreator.exe -p packages -c config\config.xml -v embedded-ide-0.4.0.exe
C:\Qt\Tools\QtInstallerFramework\2.0\bin\binarycreator.exe -p packages -c config\config.xml -v embedded-ide-0.5.0.exe
@pause
7 changes: 5 additions & 2 deletions win32/installer/config/config.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<Installer>
<Name>Embedded IDE</Name>
<Version>0.4.0</Version>
<Version>0.5.0</Version>
<Title>Embedded IDE Installer</Title>
<Publisher>Rusotech</Publisher>
<StartMenuDir>Embedded IDE</StartMenuDir>
<TargetDir>@ApplicationsDir@/EmbeddedIDE</TargetDir>
<TargetDir>@RootDir@/EmbeddedIDE</TargetDir>
<RunProgram>@TargetDir@/embedded-ide/embedded-ide.exe</RunProgram>
<RunProgramDescription>EmbeddedIDE</RunProgramDescription>
<AllowSpaceInPath>false</AllowSpaceInPath>
</Installer>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.7z
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<Package>
<DisplayName>GCC ARM Embedded</DisplayName>
<Description>GNU Compiler Collection Bare Metal</Description>
<Version>5.4.2</Version>
<ReleaseDate>2016-09-28</ReleaseDate>
<Version>6.3.1</Version>
<ReleaseDate>2017-04-01</ReleaseDate>
<Licenses>
<License name="GNU GENERAL PUBLIC LICENSE Version 3" file="COPYING.GPLv3" />
</Licenses>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.7z
3 changes: 2 additions & 1 deletion win32/installer/packages/org.nongnu.openocd/meta/package.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<Package>
<DisplayName>OpenOCD 0.10.0-dev-00247-g73b676c</DisplayName>
<Description>Open on Chip Debugger. Dreddie Chopin Repackaged Version</Description>
<Description>Open on Chip Debugger. Freddie Chopin Repackaged Version</Description>
<Version>0.10.0</Version>
<ReleaseDate>2016-03-12</ReleaseDate>
<Licenses>
<License name="GNU GENERAL PUBLIC LICENSE Version 2" file="COPYING.GPLv2" />
</Licenses>
<Default>true</Default>
<SortingPriority>300</SortingPriority>
<Script>zadig.qs</Script>
</Package>
18 changes: 18 additions & 0 deletions win32/installer/packages/org.nongnu.openocd/meta/zadig.qs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
function Component()
{
}

Component.prototype.createOperations = function()
{
component.createOperations();
if (systemInfo.productType === "windows") {
component.addOperation("CreateShortcut",
"@TargetDir@/openocd/zadig_2.2.exe",
"@StartMenuDir@/Zadig Driver Manager.lnk",
"workingDirectory=@TargetDir@");
component.addOperation("CreateShortcut",
"@TargetDir@/openocd/drivers/UsbDriverTool.exe",
"@StartMenuDir@/USB Driver Tool.lnk",
"workingDirectory=@TargetDir@");
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.7z
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Component.prototype.createOperations = function()
component.createOperations();
if (systemInfo.productType === "windows") {
component.addOperation("CreateShortcut",
"@TargetDir@/start-ide.bat",
"@StartMenuDir@/Embedded IDE Workspace.lnk",
"@TargetDir@/msys/msys.bat",
"@StartMenuDir@/Embedded IDE Console.lnk",
"workingDirectory=@TargetDir@",
"iconPath=@TargetDir@/embedded-ide/embedded-ide.exe");
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.7z
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ Component.prototype.createOperations = function()
if (systemInfo.productType === "windows") {
component.addOperation("CreateShortcut",
"@TargetDir@/embedded-ide/embedded-ide.exe",
"@StartMenuDir@/Embedded IDE Stand Alone.lnk",
"@StartMenuDir@/Embedded IDE.lnk",
"workingDirectory=@TargetDir@");
component.addOperation("CreateShortcut",
"@TargetDir@/maintenancetool.exe",
"@StartMenuDir@/Uninstall.lnk",
"workingDirectory=@TargetDir@");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
<Package>
<DisplayName>Embedded IDE</DisplayName>
<Description>Core System for IDE</Description>
<Version>0.4.0</Version>
<ReleaseDate>2017-03-28</ReleaseDate>
<Version>0.5.0</Version>
<ReleaseDate>2017-08-04</ReleaseDate>
<Default>true</Default>
<ForcedInstallation>true</ForcedInstallation>
<SortingPriority>1000</SortingPriority>
<ForcedInstallation>true</ForcedInstallation>
<Script>embedded_ide.qs</Script>
</Package>

0 comments on commit 6edc276

Please sign in to comment.