Skip to content

Commit 2990a8e

Browse files
progress
1 parent 6861b7c commit 2990a8e

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

QMLComponents/utilities/dynamicruntimeinfo.h

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
#ifndef DYNRUNTIMEINFO_H
22
#define DYNRUNTIMEINFO_H
33

4+
/*!
5+
* Simple class that parses Runtime information from staticRuntimeInfo.json located in the install folder
6+
* and dynamicRuntimeInfo.json located in a user directory defined by Appdirs.
7+
* staticRuntimeInfo.json containts information on install type.
8+
* dynamicRuntimeInfo.json is used to log various information regarding the initialization of the environment. e.g. at first run
9+
* This class is used to query runtime information and to determine if there has been proper initialization for this JASP version.
10+
*/
11+
412
#include <cstdint>
513
#include <string>
614
#include <map>

Tools/CMake/JASP.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ set(MSIX_NIGHTLY_PUBLISHER
6161
CACHE STRING "Publisher set for nightly msix package")
6262

6363
set(MSIX_SIGN_CERT_PATH
64-
"..\\JASPSelfSign.pfx"
64+
"D:\\JASPSelfSign.pfx"
6565
CACHE STRING "Path to selfsign cert for Nightlies")
6666

6767
set(MSIX_SIGN_CERT_PASSWORD

Tools/windows/msix/AppxManifest-nightly.xml.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
88
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
99

10-
<Identity Name="45842JASP.JASP"
10+
<Identity Name="JASP.SIDELOAD.NIGHTLY"
1111
Version="@JASP_VERSION_MAJOR@.@JASP_VERSION_MINOR@.@JASP_VERSION_PATCH@@JASP_VERSION_MSIX_PATCH_POSTFIX@.@JASP_VERSION_TWEAK@"
1212
Publisher="@MSIX_NIGHTLY_PUBLISHER@"
1313
ProcessorArchitecture="x64"/>

Tools/windows/msix/AppxManifest-sideload.xml.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
88
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
99

10-
<Identity Name="45842JASP.JASP"
10+
<Identity Name="JASP.SIDELOAD"
1111
Version="@JASP_VERSION_MAJOR@.@JASP_VERSION_MINOR@.@JASP_VERSION_PATCH@@JASP_VERSION_MSIX_PATCH_POSTFIX@.@JASP_VERSION_TWEAK@"
1212
Publisher="@MSIX_SIDELOAD_PUBLISHER@"
1313
ProcessorArchitecture="x64"/>

Tools/windows/msix/msix.cmd.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ makepri.exe new /o /pr . /cf .\priconfig.xml
2929
cd "@JASP_BINARY_DIR_NATIVE@"
3030
MakeAppx pack /o /d .\Install\ /p "@JASP_BINARY_DIR_NATIVE@\JASP\JASP-Store-@JASP_VERSION_MAJOR@.@JASP_VERSION_MINOR@.@JASP_VERSION_PATCH@@JASP_VERSION_MSIX_PATCH_POSTFIX@.@[email protected]"
3131

32-
rem Store Pack MSIX
32+
rem Sideload Pack MSIX
3333
cd "@JASP_INSTALL_DIR_NATIVE@"
3434
cp -f @JASP_BINARY_DIR_NATIVE@\AppxManifest-sideload.xml .\AppxManifest.xml
3535
makepri.exe createconfig /o /cf priconfig.xml /dq en-US

0 commit comments

Comments
 (0)