-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Windows Installer and switch default DB location (#110)
- Finished lowercasing `nexus` - SECURITY.md added - README revamp - Version bump to v0.5.1
- Loading branch information
Showing
12 changed files
with
260 additions
and
52 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 |
---|---|---|
|
@@ -28,6 +28,15 @@ jobs: | |
python-version: ${{ matrix.python-version }} | ||
- name: Package for ${{ matrix.os }} | ||
run: python dist.py -d | ||
- name: Add msbuild to PATH | ||
uses: microsoft/[email protected] | ||
if: runner.os == 'Windows' | ||
- name: Install WiX | ||
run: dotnet tool install --global wix | ||
if: runner.os == 'Windows' | ||
- name: Build WiX on Windows | ||
run: wix build .\nexus.wxs | ||
if: runner.os == 'Windows' | ||
- name: Add generated binary to artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
|
@@ -37,6 +46,7 @@ jobs: | |
./dist/nexus-macos | ||
./dist/nexus.exe | ||
./dist/nexusw.exe | ||
./nexus.msi | ||
if-no-files-found: error | ||
if: always() | ||
|
||
|
@@ -104,6 +114,7 @@ jobs: | |
nexus | ||
nexus.exe | ||
nexusw.exe | ||
nexus.msi | ||
nexus-macos | ||
README.md | ||
LICENSE |
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 |
---|---|---|
|
@@ -12,3 +12,5 @@ nexus.egg-info/ | |
/nexus/ui/*.py | ||
/nexus/translations/ | ||
/resources_rc.py | ||
nexus.wixpdb | ||
nexus.msi |
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
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,15 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
Use this section to tell people about which versions of your project are | ||
currently being supported with security updates. | ||
|
||
| Version | Supported | | ||
|----------|--------------------| | ||
| Latest | :white_check_mark: | | ||
| < Latest | :x: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
See [README.md#Security](./README.md#reporting-security-issuesvulnerabilities). |
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,43 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
<Package Language="1033" | ||
Manufacturer="CharaChorder" | ||
Name="nexus" | ||
Scope="perUserOrMachine" | ||
UpgradeCode="C4A2AC40-2DE2-5241-594D-4F4E45585553" | ||
Version="0.5.1"> | ||
<MajorUpgrade DowngradeErrorMessage="A later version of [ProductName] is already installed. Setup will now exit." /> | ||
<MediaTemplate EmbedCab="yes" /> | ||
<Icon Id="icon.ico" SourceFile="ui\images\icon.ico"/> | ||
<Property Id="ARPPRODUCTICON" Value="icon.ico" /> | ||
<StandardDirectory Id="TARGETDIR"> | ||
<Directory Id="ProgramFilesFolder"> | ||
<Directory Id="INSTALLFOLDER" Name="nexus"> | ||
<Component Id="ProductComponent"> | ||
<File KeyPath="yes" Source="dist\nexusw.exe" Name="nexus.exe"></File> | ||
<Shortcut Id="startmenuShortcut" | ||
Directory="ProgramMenuDir" | ||
Name="nexus" | ||
WorkingDirectory='INSTALLFOLDER' | ||
Icon="icon.ico" | ||
IconIndex="0" | ||
Advertise="yes" /> | ||
<Shortcut Id="desktopShortcut" | ||
Directory="DesktopFolder" | ||
Name="nexus" | ||
WorkingDirectory='INSTALLFOLDER' | ||
Icon="icon.ico" | ||
IconIndex="0" | ||
Advertise="yes" /> | ||
</Component> | ||
</Directory> | ||
</Directory> | ||
</StandardDirectory> | ||
<Directory Id="ProgramMenuFolder" Name="Programs"> | ||
<Directory Id="ProgramMenuDir" Name="nexus"/> | ||
</Directory> | ||
<StandardDirectory Id="DesktopFolder"/> | ||
<Feature Id="nexus"> | ||
<ComponentRef Id="ProductComponent" /> | ||
</Feature></Package> | ||
</Wix> |
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
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
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
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
"""All-in-one cross-platform CharaChorder desktop app.""" | ||
|
||
__author__ = "CharaChorder" | ||
__name__ = "nexus" | ||
__id__ = "com.charachorder.nexus" | ||
__version__ = "0.5.0" | ||
__version__ = "0.5.1" |
Oops, something went wrong.