-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added installer files (Qt Installer Framework based)
- Loading branch information
Showing
12 changed files
with
828 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Installer> | ||
<Name>Stereograma</Name> | ||
<Version>2.6.0</Version> | ||
<Title>Stereograma Installer</Title> | ||
<Publisher>Kapandaria</Publisher> | ||
<StartMenuDir>Stereograma</StartMenuDir> | ||
<TargetDir>@HomeDir@/Stereograma</TargetDir> | ||
</Installer> |
2 changes: 2 additions & 0 deletions
2
installer/packages/com.kapandaria.stereograma/data/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* | ||
!.gitignore |
674 changes: 674 additions & 0 deletions
674
installer/packages/com.kapandaria.stereograma/meta/LICENSE.txt
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
installer/packages/com.kapandaria.stereograma/meta/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Package> | ||
<DisplayName>Stereograma Binaries</DisplayName> | ||
<Description>Install Stereograma binaries (Software)</Description> | ||
<Version>2.6.0</Version> | ||
<ReleaseDate>2020-11-12</ReleaseDate> | ||
<Licenses> | ||
<License name="GNU General Public License v3.0" file="LICENSE.txt" /> | ||
</Licenses> | ||
<Default>true</Default> | ||
</Package> |
2 changes: 2 additions & 0 deletions
2
installer/packages/com.kapandaria.stereograma_depthmaps_textures/data/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* | ||
!.gitignore |
8 changes: 8 additions & 0 deletions
8
installer/packages/com.kapandaria.stereograma_depthmaps_textures/meta/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Package> | ||
<DisplayName>Depth maps and textures</DisplayName> | ||
<Description>Install Additional resources</Description> | ||
<Version>2.6.0</Version> | ||
<ReleaseDate>2020-11-12</ReleaseDate> | ||
<Default>true</Default> | ||
</Package> |
47 changes: 47 additions & 0 deletions
47
installer/packages/com.kapandaria.stereograma_desktop/meta/installscript.qs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/**************************************************************************** | ||
** | ||
** Copyright (C) 2017 The Qt Company Ltd. | ||
** Contact: https://www.qt.io/licensing/ | ||
** | ||
** This file is part of the FOO module of the Qt Toolkit. | ||
** | ||
** $QT_BEGIN_LICENSE:GPL-EXCEPT$ | ||
** Commercial License Usage | ||
** Licensees holding valid commercial Qt licenses may use this file in | ||
** accordance with the commercial license agreement provided with the | ||
** Software or, alternatively, in accordance with the terms contained in | ||
** a written agreement between you and The Qt Company. For licensing terms | ||
** and conditions see https://www.qt.io/terms-conditions. For further | ||
** information use the contact form at https://www.qt.io/contact-us. | ||
** | ||
** GNU General Public License Usage | ||
** Alternatively, this file may be used under the terms of the GNU | ||
** General Public License version 3 as published by the Free Software | ||
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT | ||
** included in the packaging of this file. Please review the following | ||
** information to ensure the GNU General Public License requirements will | ||
** be met: https://www.gnu.org/licenses/gpl-3.0.html. | ||
** | ||
** $QT_END_LICENSE$ | ||
** | ||
****************************************************************************/ | ||
|
||
function Component() | ||
{ | ||
// default constructor | ||
} | ||
|
||
Component.prototype.createOperations = function() | ||
{ | ||
component.createOperations(); | ||
|
||
if (systemInfo.productType === "windows") { | ||
component.addOperation("CreateShortcut", | ||
"@TargetDir@/Stereograma.exe",// target | ||
"@DesktopDir@/Stereograma.lnk",// link-path | ||
"workingDirectory=@TargetDir@",// working-dir | ||
"iconPath=@TargetDir@/Stereograma.exe", "iconId=0",// icon | ||
"description=Start Stereograma");// description | ||
|
||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
installer/packages/com.kapandaria.stereograma_desktop/meta/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Package> | ||
<DisplayName>Desktop shortcut</DisplayName> | ||
<Description>Install Desktop shortcut</Description> | ||
<Version>2.6.0</Version> | ||
<ReleaseDate>2020-11-12</ReleaseDate> | ||
<Default>true</Default> | ||
<Script>installscript.qs</Script> | ||
</Package> |
47 changes: 47 additions & 0 deletions
47
installer/packages/com.kapandaria.stereograma_menu/meta/installscript.qs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/**************************************************************************** | ||
** | ||
** Copyright (C) 2017 The Qt Company Ltd. | ||
** Contact: https://www.qt.io/licensing/ | ||
** | ||
** This file is part of the FOO module of the Qt Toolkit. | ||
** | ||
** $QT_BEGIN_LICENSE:GPL-EXCEPT$ | ||
** Commercial License Usage | ||
** Licensees holding valid commercial Qt licenses may use this file in | ||
** accordance with the commercial license agreement provided with the | ||
** Software or, alternatively, in accordance with the terms contained in | ||
** a written agreement between you and The Qt Company. For licensing terms | ||
** and conditions see https://www.qt.io/terms-conditions. For further | ||
** information use the contact form at https://www.qt.io/contact-us. | ||
** | ||
** GNU General Public License Usage | ||
** Alternatively, this file may be used under the terms of the GNU | ||
** General Public License version 3 as published by the Free Software | ||
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT | ||
** included in the packaging of this file. Please review the following | ||
** information to ensure the GNU General Public License requirements will | ||
** be met: https://www.gnu.org/licenses/gpl-3.0.html. | ||
** | ||
** $QT_END_LICENSE$ | ||
** | ||
****************************************************************************/ | ||
|
||
function Component() | ||
{ | ||
// default constructor | ||
} | ||
|
||
Component.prototype.createOperations = function() | ||
{ | ||
component.createOperations(); | ||
|
||
if (systemInfo.productType === "windows") { | ||
component.addOperation("CreateShortcut", "@TargetDir@/Stereograma.exe", "@StartMenuDir@/Stereograma.lnk", | ||
"workingDirectory=@TargetDir@", "iconPath=@TargetDir@/Stereograma.exe", | ||
"iconId=0", "description=Open Stereograma"); | ||
component.addOperation("CreateShortcut", "@TargetDir@/maintenancetool.exe", "@StartMenuDir@/Uninstall_Stereograma.lnk", | ||
"workingDirectory=@TargetDir@", "iconPath=@TargetDir@/maintenancetool.exe", | ||
"iconId=0", "description=Uninstall Stereograma"); | ||
|
||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
installer/packages/com.kapandaria.stereograma_menu/meta/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Package> | ||
<DisplayName>Start Menu shortcut</DisplayName> | ||
<Description>Install Start Menu shortcut</Description> | ||
<Version>2.6.0</Version> | ||
<ReleaseDate>2020-11-12</ReleaseDate> | ||
<Default>true</Default> | ||
<Script>installscript.qs</Script> | ||
</Package> |
2 changes: 2 additions & 0 deletions
2
installer/packages/com.kapandaria.stereograma_models/data/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* | ||
!.gitignore |
8 changes: 8 additions & 0 deletions
8
installer/packages/com.kapandaria.stereograma_models/meta/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Package> | ||
<DisplayName>3D Models</DisplayName> | ||
<Description>Install Sample 3D Models</Description> | ||
<Version>2.6.0</Version> | ||
<ReleaseDate>2020-11-12</ReleaseDate> | ||
<Default>true</Default> | ||
</Package> |