This repository has been archived by the owner on Jun 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from hyperspacedev/beta7
1.0.0beta7 Final Check
- Loading branch information
Showing
87 changed files
with
8,019 additions
and
6,625 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
# These are supported funding model platforms | ||
|
||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
patreon: hyperspacedev | ||
open_collective: # Replace with a single Open Collective username | ||
ko_fi: # Replace with a single Ko-fi username | ||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
liberapay: # Replace with a single Liberapay username | ||
issuehunt: # Replace with a single IssueHunt username | ||
otechie: # Replace with a single Otechie username | ||
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] |
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,21 @@ | ||
name: Build Linux Client | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Clone source code | ||
uses: actions/checkout@v1 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.x | ||
- name: Install dependencies and build | ||
run: | | ||
npm install | ||
npm run build --if-present | ||
npm run build-desktop-linux |
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,49 @@ | ||
name: Build macOS Client | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Clone source code | ||
uses: actions/checkout@v1 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.x | ||
- name: Run pre-build setup | ||
run: | | ||
echo "Downloading certificates and profiles..." | ||
echo "$ascCertificates" > certs.b64 | ||
echo "$ascMasProfile" > mas.b64 | ||
echo "$ascMacProfile" > mac.b64 | ||
echo "$ascEntitlementsMas" > entmas.b64 | ||
echo "$ascEntitlementsMac" > entmac.b64 | ||
echo "$ascInfoPlist" > info.b64 | ||
echo "Installing certificates and profiles..." | ||
base64 --decode certs.b64 > Certificates.p12 | ||
base64 --decode mas.b64 > desktop/embedded.provisionprofile | ||
base64 --decode mac.b64 > desktop/nonmas.provisionprofile | ||
base64 --decode entmas.b64 > desktop/entitlements.mas.plist | ||
base64 --decode entmac.b64 > desktop/entitlements.mac.plist | ||
base64 --decode info.b64 > desktop/info.plist | ||
security add-generic-password -a "appleseed@marquiskurt.net" -w "$ascPassword" -s "AC_PASSWORD" | ||
sudo security import Certificates.p12 -P "$ascCertsPassword" -k /Library/Keychains/System.keychain | ||
env: | ||
ascPassword: ${{ secrets.ASC_PASSWORD }} | ||
ascCertificates: ${{ secrets.ASC_CERTS }} | ||
ascCertsPassword: ${{ secrets.ASC_CERTS_PASSWORD }} | ||
ascMacProfile: ${{ secrets.ASC_NONMAS_PROFILE }} | ||
ascMasProfile: ${{ secrets.ASC_EMBEDDED_PROFILE }} | ||
ascEntitlementsMas: ${{ secrets.ASC_MAS_ENTITLEMENTS }} | ||
ascEntitlementsMac: ${{ secrets.ASC_MAC_ENTITLEMENTS }} | ||
ascInfoPlist: ${{ secrets.ASC_INFO_PLIST }} | ||
- name: Install dependencies and build | ||
run: | | ||
npm install | ||
npm run build --if-present | ||
npm run build-desktop-darwin-nosign |
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,26 @@ | ||
name: Node CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [8.x, 10.x, 12.x] | ||
|
||
steps: | ||
- name: Clone source code | ||
uses: actions/checkout@v1 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install dependencies and build | ||
run: | | ||
npm install | ||
npm run build --if-present | ||
env: | ||
CI: true |
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,21 @@ | ||
name: Build Windows Client | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Clone source code | ||
uses: actions/checkout@v1 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.x | ||
- name: Install dependencies and build | ||
run: | | ||
npm install | ||
npm run build --if-present | ||
npm run build-desktop-win |
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 |
---|---|---|
|
@@ -70,3 +70,6 @@ dist/ | |
# Electron app files | ||
desktop/*.plist | ||
desktop/*.provisionprofile | ||
|
||
# JetBrains IDEA directory | ||
.idea/ |
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,4 @@ | ||
{ | ||
"bracketSpacing": true, | ||
"tabWidth": 4 | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.