Renamed to OpenFlexure eV
This commit is contained in:
parent
0ee8825c66
commit
be0703db35
20 changed files with 20 additions and 57 deletions
|
|
@ -1,37 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package
|
||||
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
||||
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
||||
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
|
||||
<Identity Name="OpenFlexureMicroscopeJS"
|
||||
ProcessorArchitecture="x64"
|
||||
Publisher="CN=bath-open-instrumentation-group"
|
||||
Version="0.1.0.0" />
|
||||
<Properties>
|
||||
<DisplayName>OpenFlexure Microscope JS</DisplayName>
|
||||
<PublisherDisplayName>OpenFlexure</PublisherDisplayName>
|
||||
<Description>A user client for the OpenFlexure Microscope Server</Description>
|
||||
<Logo>assets\SampleAppx.50x50.png</Logo>
|
||||
</Properties>
|
||||
<Resources>
|
||||
<Resource Language="en-us" />
|
||||
</Resources>
|
||||
<Dependencies>
|
||||
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.14316.0" />
|
||||
</Dependencies>
|
||||
<Capabilities>
|
||||
<rescap:Capability Name="runFullTrust"/>
|
||||
</Capabilities>
|
||||
<Applications>
|
||||
<Application Id="OpenFlexureMicroscopeJS" Executable="app/openflexure-microscope-js.exe" EntryPoint="Windows.FullTrustApplication">
|
||||
<uap:VisualElements
|
||||
BackgroundColor="#9C1561"
|
||||
DisplayName="OpenFlexure Microscope JS"
|
||||
Square150x150Logo="assets\SampleAppx.150x150.png"
|
||||
Square44x44Logo="assets\SampleAppx.44x44.png"
|
||||
Description="OpenFlexure Microscope JS for Desktops">
|
||||
<uap:DefaultTile Wide310x150Logo="assets\SampleAppx.310x150.png" />
|
||||
</uap:VisualElements>
|
||||
</Application>
|
||||
</Applications>
|
||||
</Package>
|
||||
|
|
@ -4,11 +4,11 @@ const package = require('../package.json');
|
|||
|
||||
convertToWindowsStore({
|
||||
containerVirtualization: false,
|
||||
inputDirectory: path.join(__dirname, '../release-builds/openflexure-microscope-js-win32-x64'),
|
||||
inputDirectory: path.join(__dirname, '../release-builds/openflexure-ev-win32-x64'),
|
||||
outputDirectory: path.join(__dirname, '../release-builds/installers'),
|
||||
assets: path.join(__dirname, '/appx/assets'),
|
||||
packageExecutable: 'app/openflexure-microscope-js.exe',
|
||||
packageName: 'OpenFlexureMicroscopeJS',
|
||||
packageExecutable: 'app/openflexure-ev.exe',
|
||||
packageName: 'OpenFlexureEV',
|
||||
packageVersion: `${package.version}.0`,
|
||||
packageDisplayName: package.productName,
|
||||
packageDescription: package.description,
|
||||
|
|
@ -17,6 +17,6 @@ convertToWindowsStore({
|
|||
deploy: false,
|
||||
publisher: 'CN=bath-open-instrumentation-group',
|
||||
publisherDisplayName: "Bath Open Instrumentation Group",
|
||||
devCert: "C:\\Certs\\openflexure-microscope-js-appx\\openflexure-microscope-js-appx.pfx",
|
||||
devCert: "C:\\Certs\\openflexure-ev-appx\\openflexure-ev-appx.pfx",
|
||||
windowsKit: 'C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.17763.0\\x64'
|
||||
})
|
||||
|
|
@ -2,7 +2,7 @@ const installer = require('electron-installer-debian')
|
|||
const path = require('path')
|
||||
|
||||
const options = {
|
||||
src: path.join(__dirname, '../release-builds/openflexure-microscope-js-linux-armv7l/'),
|
||||
src: path.join(__dirname, '../release-builds/openflexure-ev-linux-armv7l/'),
|
||||
dest: path.join(__dirname, '../release-builds/installers'),
|
||||
arch: 'armhf',
|
||||
icon: path.join(__dirname, '../icons/png/1024x1024.png'),
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ const installer = require('electron-installer-debian')
|
|||
const path = require('path')
|
||||
|
||||
const options = {
|
||||
src: path.join(__dirname, '../release-builds/openflexure-microscope-js-linux-x64/'),
|
||||
src: path.join(__dirname, '../release-builds/openflexure-ev-linux-x64/'),
|
||||
dest: path.join(__dirname, '../release-builds/installers'),
|
||||
arch: 'amd64',
|
||||
icon: path.join(__dirname, '../icons/png/1024x1024.png'),
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ function getInstallerConfig () {
|
|||
console.log('creating windows installer')
|
||||
|
||||
return Promise.resolve({
|
||||
appDirectory: path.join(__dirname, '../release-builds/openflexure-microscope-js-win32-x64'),
|
||||
appDirectory: path.join(__dirname, '../release-builds/openflexure-ev-win32-x64'),
|
||||
authors: 'OpenFlexure',
|
||||
noMsi: true,
|
||||
outputDirectory: path.join(__dirname, '../release-builds/installers'),
|
||||
exe: 'openflexure-microscope-js.exe',
|
||||
setupExe: 'OpenFlexureMicroscopeJsInstaller.exe',
|
||||
exe: 'openflexure-ev.exe',
|
||||
setupExe: 'OpenFlexureEvInstaller.exe',
|
||||
setupIcon: path.join(__dirname, '../icons/win/icon.ico'),
|
||||
certificateFile: "C:\\Certs\\openflexure-microscope-js-exe\\openflexure-microscope-js-exe.pfx"
|
||||
certificateFile: "C:\\Certs\\openflexure-ev-exe\\openflexure-ev-exe.pfx"
|
||||
})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue