diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index dbf9366..88f41d2 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -3,17 +3,36 @@ name: Build Linux Client on: [push, pull_request] jobs: - build_linux: - 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 \ No newline at end of file + build_linux: + 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: Change desktop field + run: | + from json import load, dump + + json_dict = {} + with open('public/config.json', 'r') as file: + json_dict = load(file) + + json_dict["location"] = "desktop" + + with open('public/config.json', 'w+') as out: + dump(json_dict, out) + shell: python + - name: Install dependencies and build + run: | + npm install + npm run build --if-present + npm run build:linux + - name: Upload Linux executables + uses: actions/upload-artifact@v1 + if: success() + with: + name: "Linux executables (output dir)" + path: dist diff --git a/.github/workflows/ci-mac.yml b/.github/workflows/ci-mac.yml index 3312a96..eade665 100644 --- a/.github/workflows/ci-mac.yml +++ b/.github/workflows/ci-mac.yml @@ -3,46 +3,65 @@ name: Build macOS Client on: [push, pull_request] jobs: - build_darwin: - 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: Install certificates and entitlements - if: github.actor == 'alicerunsonfedora' || github.actor == 'Nomad1556' || github.actor == 'audmaxwell' - 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 + build_darwin: + 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: Install certificates and entitlements + if: github.actor == 'alicerunsonfedora' || github.actor == 'Nomad1556' || github.actor == 'audmaxwell' + 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 + 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: Change desktop field + run: | + from json import load, dump + + json_dict = {} + with open('public/config.json', 'r') as file: + json_dict = load(file) + + json_dict["location"] = "desktop" + + with open('public/config.json', 'w+') as out: + dump(json_dict, out) + shell: python + - name: Install dependencies and build + run: | + npm install + npm run build --if-present + npm run build:mac-unsigned + - name: Upload macOS (unsigned) bundle + uses: actions/upload-artifact@v1 + if: success() + with: + name: "macOS bundle (output dir)" + path: dist diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index 17b1736..beaa4b1 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -3,36 +3,36 @@ name: Build Windows Client on: [push, pull_request] jobs: - build_win: - 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: Change desktop field - run: | - from json import load, dump + build_win: + 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: Change desktop field + run: | + from json import load, dump - json_dict = {} - with open('public/config.json', 'r') as file: - json_dict = load(file) - - json_dict["location"] = "desktop" + json_dict = {} + with open('public/config.json', 'r') as file: + json_dict = load(file) - with open('public/config.json', 'w+') as out: - dump(json_dict, out) - shell: python - - name: Install dependencies and build - run: | - npm install - npm run build --if-present - npm run build-desktop-win - - name: Upload Windows executable - uses: actions/upload-artifact@v1 - if: success() - with: - name: 'Windows executable (output dir)' - path: dist \ No newline at end of file + json_dict["location"] = "desktop" + + with open('public/config.json', 'w+') as out: + dump(json_dict, out) + shell: python + - name: Install dependencies and build + run: | + npm install + npm run build --if-present + npm run build:win + - name: Upload Windows executable + uses: actions/upload-artifact@v1 + if: success() + with: + name: "Windows executable (output dir)" + path: dist diff --git a/.github/workflows/jira-create.yml b/.github/workflows/jira-create.yml deleted file mode 100644 index 3ab2724..0000000 --- a/.github/workflows/jira-create.yml +++ /dev/null @@ -1,26 +0,0 @@ -# name: Create issue on Jira - -# on: -# issues: -# types: [opened] - -# jobs: -# jira: -# runs-on: ubuntu-latest - -# steps: -# - name: Jira Login -# id: login -# uses: atlassian/gajira-login@v2.0.0 -# env: -# JIRA_BASE_URL: "https://hyperspacedev.atlassian.net" -# JIRA_USER_EMAIL: software@marquiskurt.net -# JIRA_API_TOKEN: ${{ secrets.JIRA_TOKEN }} -# - name: Jira Create issue -# id: create -# uses: atlassian/gajira-create@v2.0.0 -# with: -# project: HD -# issuetype: Unsorted -# summary: ${{ github.event.issue.title }} -# description: ${{ github.event.issue.body }} diff --git a/.github/workflows/review-style.yml b/.github/workflows/review-style.yml index 342e891..6d6abab 100644 --- a/.github/workflows/review-style.yml +++ b/.github/workflows/review-style.yml @@ -3,18 +3,18 @@ name: Prettier on: [pull_request] jobs: - prettier: - runs-on: ubuntu-latest - steps: - - name: Clone source code - uses: actions/checkout@v1 - - name: Install Node - uses: actions/setup-node@v1 - with: - node-version: 10.x - - name: Install dependencies and run Prettier - run: | - npm install - npm run check-prettier - env: - CI: true \ No newline at end of file + prettier: + runs-on: ubuntu-latest + steps: + - name: Clone source code + uses: actions/checkout@v1 + - name: Install Node + uses: actions/setup-node@v1 + with: + node-version: 10.x + - name: Install dependencies and run Prettier + run: | + npm install + npm run test:prettier + env: + CI: true diff --git a/.gitignore b/.gitignore index a861746..073081a 100644 --- a/.gitignore +++ b/.gitignore @@ -72,4 +72,7 @@ desktop/*.plist desktop/*.provisionprofile # JetBrains IDEA directory -.idea/ \ No newline at end of file +.idea/ + +# Pesky macOS files +**/**.DS_Store diff --git a/README.md b/README.md index 8813034..196056c 100644 --- a/README.md +++ b/README.md @@ -1,57 +1,63 @@ -

- “Hyperspace” -

-

Hyperspace

+
-

The new beautiful, fluffy client for the fediverse written in TypeScript and React

+Hyperspace Desktop icon -![Hyperspace 1.0 on a MacBook Pro](screenshot.png) +# Hyperspace Desktop + +The new beautiful, fluffy client for the fediverse written in TypeScript and React + +
+ +![Hyperspace Desktop on a MacBook Pro](screenshot.png) [![Matrix room](https://img.shields.io/matrix/hypermasto:matrix.org.svg)](https://matrix.to/#/#hypermasto:matrix.org) [![Discord server](https://img.shields.io/discord/554108687434907660.svg?color=blueviolet&label=discord)](https://discord.gg/c69AXwk) ![Build Status](https://github.com/hyperspacedev/hyperspace/workflows/Node%20CI/badge.svg) [![GitHub release (latest SemVer including pre-releases)](https://img.shields.io/github/v/release/hyperspacedev/hyperspace?include_prereleases)](https://github.com/hyperspacedev/hyperspace/releases) [![License: NPLv4+](https://img.shields.io/badge/license-NPLv4%2B-blue.svg)](LICENSE.txt) [![Hyperspace](https://snapcraft.io/hyperspace/badge.svg)](https://snapcraft.io/hyperspace) -Hyperspace is the fluffiest client for Mastodon and other fediverse networks written in TypeScript and React. Hyperspace offers a fun, clean, fast, and responsive design that scales beautifully across devices and enhances the fediverse experience. +Socialize and communicate with your friends in the fediverse (ActivityPub-powered social networks like Mastodon and Pleroma) with Hyperspace Desktop. Browse your timelines, check in with friends, and share your experiences across the fediverse in a beautiful, clean, and customizable way. -## Features +What Hyperspace Desktop offers: -- **Responsive by design**: Hyperspace is beautifully designed to put your content front and center and bring a familiar experience to Mastodon. View threads and profiles with ease and compose anywhere with the compose button. And, of course, Hyperspace scales across devices beautifully, providing the same experience anywhere. -- **Customizable**: Hyperspace allows customization and configuration at every level, from the server level with branding and instance setup, down to the user level with dark mode, custom themes, and multi-user account support. And, if the default configuration settings aren't enough, anyone can make their own version of Hyperspace with custom additions. -- **Open-source**: Hyperspace is free (libre) and open-source software. Licensed under the Non-Violent Public License, anyone can modify, redistribute, or contribute to the Hyperspace project without restriction. Hyperspace is written in TypeScript and takes advantage of multiple open-source libraries and projects such as React, Megalodon, and Material-UI, so web and Node.js developers will feel right at home. +- A clean, responsive, and streamlined design that fits in with your Mac +- Support for switching between accounts to access the accounts you use the most +- Customization support, ranging from several beautiful themes to masonry layout and infinite scrolling +- Powerful toot composer with media uploads, emojis, and polls +- Activity and recommended views that give you insight on the community/instance you reside in -> If you've used Hyperspace 0.x, you'll note many changes with the 1.x and later series. You can learn more about these changes in the [migration article](MIGRATING.md). +## Get started -## Downloads +Hyperspace Desktop is available for the major desktop platforms via our downloads page, GitHub, and other store platforms where applicable. -Hyperspace is available for download on GitHub as well as other platforms. +[**Download from our website ›**](https://hyperspace.marquiskurt.net/download) -[**Get latest release ›**](https://github.com/hyperspacedev/hyperspace/releases/latest) +### Download from a store - +[![Get on the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-black.svg)](https://snapcraft.io/hyperspace) [![Get on the Mac App Store](https://hyperspace.marquiskurt.net/assets/images/mas.svg)](https://apps.apple.com/us/app/hyperspace-desktop/id1454139710?mt=12) -[![Get on the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-black.svg)](https://snapcraft.io/hyperspace) +**via [WinGet](https://github.com/microsoft/winget-cli)**: -Looking for the Mac App Store version? [Read more ›](https://hyperspace.marquiskurt.net/2019/11/08/post.html) +``` +winget install HyperspaceDesktop +``` -## Build instructions +## Build from source -### Prerequisites - -To develop Hyperspace, you'll need the following tools and packages: +To build Hyperspace Desktop, you'll need the following tools and packages: - Node.js v10 or later +- (macOS-only) Xcode 10 or higher ### Installing dependencies First, clone the repository from GitHub: -```bash +``` git clone https://github.com/hyperspacedev/hyperspace ``` Then, in the app directory, run the following command to install all of the package dependencies: -```npm +``` npm install ``` @@ -60,72 +66,207 @@ npm install Run any of the following scripts to test: - `npm start` - Starts a local server hosted at https://localhost:3000. -- `npm run electrify` - Builds a copy of the source code and then runs the app through Electron. Ensure that the `location` key in `config.json` points to `"desktop"` before running this. -- `npm run electrify-nobuild` - Similar to `electrify` but doesn't build the project before running. +- `npm run electron:build` - Builds a copy of the source code and then runs the app through Electron. Ensure that the `location` key in `config.json` points to `"desktop"` before running this. +- `npm run electron:prebuilt` - Similar to `electron:build` but doesn't build the project before running. The `location` key in `config.json` can take the following values during testing: - **https://localhost:3000**: Most suitable for running `npm start` or running via `react-scripts`. - **desktop**: Most suitable for when testing the desktop application. -> Note: Hyperspace v1.1.0-beta3 and older versions require the location field to be changed to `"https://localhost:3000"` before running. +> Note: Hyperspace Desktop v1.1.0-beta3 and older versions require the location field to be changed to `"https://localhost:3000"` before running. ### Building a release To build a release, run the following command: -```npm +``` npm run build ``` The built files will be available under `build` as static files that can be hosted on a web server. If you plan to release these files alongside the desktop apps, compress these files in a ZIP. -#### Building desktop releases +#### Building desktop apps You can run any of the following commands to build a release for the desktop: -- `npm run build-desktop`: Builds the desktop apps for all platforms (eg. Windows, macOS, Linux). Will run `npm run build` before building. -- `npm run build-desktop-win`: Builds the desktop app for Windows without running `npm run build`. -- `npm run build-desktop-darwin`: Builds the desktop apps for macOS (eg. disk image, Mac App Store) without running `npm run build`. See the details below for more information on building for macOS. -- `npm run build-desktop-linux`: Builds the desktop apps for Linux (eg. Debian package, AppImage, and Snap) without running `npm run build`. -- `npm run build-desktop-linux-select`: Builds the desktop app for Linux without running `npm run build`. _Target is required as a parameter._ +- `npm run build:desktop-all`: Builds the desktop apps for all platforms (eg. Windows, macOS, Linux). Will run `npm run build` before building. +- `npm run build:win`: Builds the desktop app for Windows without running `npm run build`. +- `npm run build:mac`: Builds the desktop apps for macOS without running `npm run build`. See the details below for more information on building for macOS. +- `npm run build:mas`: Builds the desktop apps for the Mac App Store without running `npm run build`. See the details below for more information on building for macOS. +- `npm run build:linux`: Builds the desktop apps for Linux (eg. Debian package, AppImage, and Snap) without running `npm run build`. +- `npm run build:linux-select-targets`: Builds the desktop app for Linux without running `npm run build`. _Targets are required as parameters._ The built files will be available under `dist` that can be uploaded to your app distributor or website. -#### Building for macOS +#### Extra steps for macOS -More recent version of macOS require that the Hyperspace desktop app be both digitally code-signed and notarized (uploaded to Apple to check for malware). Hyperspace includes the tools necessary to automate this process when building the macOS version either by `npm run build-desktop` or by `npm run build-desktop-darwin`. +The macOS builds of Hyperspace Desktop require a bit more effort and resources to build and distribute accordingly. The following is a quick guide to building Hyperspace Desktop for macOS and for the Mac App Store. -Make sure you have your provisioning profiles for the Mac App Store (`embedded.provisionprofile`) and standard distribution (`nonmas.provisionprofile`) in the `desktop` directory. These provision profiles can be obtained through Apple Developer. You'll also need to create entitlements files in the `desktop` directory that list the following entitlements for your app: +##### Gather your tools -- `com.apple.security.app-sandbox` -- `com.apple.security.files.downloads.read-write` -- `com.apple.security.files.user-selected.read-write` -- `com.apple.security.allow-unsigned-executable-memory` -- `com.apple.security.network.client` +To create a code-signed and notarized version of Hyperspace Desktop, you'll need to acquire some provisioning profiles and certificates from a valid Apple Developer account. -For the child ones (inherited `entitlements.mas.inherit.plist`): +For certificates, make sure your Mac has the following certificates installed: -- `com.apple.security.app-sandbox` -- `com.apple.security.inherit` -- `com.apple.security.files.downloads.read-write` -- `com.apple.security.files.user-selected.read-write` -- `com.apple.security.allow-unsigned-executable-memory` -- `com.apple.security.network.client` +- 3rd Party Mac Developer Application +- 3rd Party Mac Developer Installer +- Developer ID Application +- Developer ID Installer +- Mac Developer -> ⚠️ Note that the inherited permissions are the same as that of the parent. This is due to an issue where the hardened runtime fails to pass down the inherited properties (see [electron/electron#20560](https://github.com/electron/electron/issues/20560#issuecomment-546110018)). This might change in future versions of macOS. +The easiest way to handle this is by opening Xcode and going to **Preferences › Accounts** and create the certificates from "Manage Certificates". -It is also recommended to add the `com.apple.security.applications-groups` entry with your bundle's identifier. You'll also need to create an `info.plist` in the `desktop` directory containing the team identifier and application identifier and install the developer certificates on the Mac you plan to build from. +You'll also need to [create a provisioning profile for **Mac App Store** distribution](https://developer.apple.com/account/resources/profiles/add) and save it to the `desktop` folder as `embedded.provisonprofile`. -You'll also want to modify the `notarize.js` file to change the details from the default to your App Store Connect account details and app identifier. +##### Create your entitlements files -> ⚠️ **Warning**: The package.json file also includes the `build-desktop-darwin-nosign` script. This script is specifically intended for automated systems that cannot run notarization (Azure Pipelines, GitHub Actions, etc.). _Do not use this command to build production-ready versions of Hyperspace_. +You'll also need to create the entitlements files in the `desktop` directory that declares the permissions for Hyperspace Desktop. Replace `TEAM_ID` with the appropriate Apple Developer information and `BUNDLE_ID` with the bundle ID of your app. + +###### entitlements.mac.plist + +```plist + + + + + com.apple.security.cs.allow-unsigned-executable-memory + + com.apple.security.network.client + + com.apple.security.files.user-selected.read-write + + + +``` + +###### entitlements.mas.plist + +```plist + + + + + com.apple.security.cs.allow-jit + + com.apple.security.network.client + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-unsigned-executable-memory + + com.apple.security.application-groups + + TEAM_ID.BUNDLE_ID + + com.apple.security.files.user-selected.read-only + + com.apple.security.files.user-selected.read-write + + + +``` + +###### entitlements.mas.inherit.plist + +```plist + + + + + com.apple.security.app-sandbox + + com.apple.security.inherit + + com.apple.security.cs.allow-jit + + com.apple.security.cs.allow-unsigned-executable-memory + + + +``` + +###### entitlements.mas.loginhelper.plist + +```plist + + + + + com.apple.security.app-sandbox + + + +``` + +###### info.plist + +```plist + + + + + ElectronTeamID + TEAM_ID + com.apple.developer.team-identifier + TEAM_ID + com.apple.application-identifier + TEAM_ID.BUNDLE_ID + + +``` + +##### Edit `notarize.js` + +You'll also need to edit `notarize.js` in the `desktop` directory. Replace ``, ``, and `` with the appropriate information from the app and your account from Apple Developer. + +```js +// notarize.js +// Script to notarize Hyperspace for macOS +// © 2019 Hyperspace developers. Licensed under Apache 2.0. + +const { notarize } = require("electron-notarize"); + +// This is pulled from the Apple Keychain. To set this up, +// follow the instructions provided here: +// https://github.com/electron/electron-notarize#safety-when-using-appleidpassword +const password = `@keychain:AC_PASSWORD`; + +exports.default = async function notarizing(context) { + const { electronPlatformName, appOutDir } = context; + if (electronPlatformName !== "darwin") { + return; + } + + console.log("Notarizing Hyperspace..."); + + const appName = context.packager.appInfo.productFilename; + + return await notarize({ + appBundleId: "", + appPath: `${appOutDir}/${appName}.app`, + appleId: "", + appleIdPassword: password, + ascProvider: "" + }); +}; +``` + +Note that the password is pulled from your keychain. You'll need to create an app password and store it in your keychain as `AC_PASSWORD`. + +##### Build the apps + +Run any of the following commands to build Hyperspace Desktop for the Mac: + +- `npm run build:mac` - Builds the macOS app in a DMG container. +- `npm run build:mac-unsigned` - Similar to `build:mac`, but skips code signing and notarization. **Use only for CI or in situations where code signing and notarization is not available.** +- `npm run build:mas` - Builds the Mac App Store package. ## Licensing and Credits -Hyperspace is licensed under the [Non-violent Public License v4+](LICENSE.txt), a permissive license under the conditions that you do not use this for any unethical purposes and to file patent claims. Please read what your rights are as a Hyperspace user/developer in the license for more information. +Hyperspace Desktop is licensed under the [Non-violent Public License v4+](LICENSE.txt), a permissive license under the conditions that you do not use this for any unethical purposes and to file patent claims. Please read what your rights are as a Hyperspace Desktop user/developer in the license for more information. -Hyperspace has been made possible by the React, TypeScript, Megalodon, and Material-UI projects as well our [Patrons](patreon.md) and our contributors on GitHub. +Hyperspace Desktop has been made possible by the React, TypeScript, Megalodon, and Material-UI projects as well our [Patrons](patreon.md) and our contributors on GitHub. ## Contribute diff --git a/ebuild/mas.yml b/ebuild/mas.yml new file mode 100644 index 0000000..26252d9 --- /dev/null +++ b/ebuild/mas.yml @@ -0,0 +1,43 @@ +# +# Hyperspace Desktop MAS Build Config +# (C) 2020 Hyperspace Developers. Licensed under NPLv4. +# +# The following configuration file is used to configure the Mac App Store builds of Hyperspace +# Desktop. For building cross-platform apps without submitting to the Mac App Store, modify the +# standard.yml config file. +# + +appId: net.marquiskurt.hyperspace +afterSign: desktop/notarize.js +directories: + buildResources: desktop + +# The bundleVersion and bundleShortVersion keys in this config correspond to builds in the +# Mac App Store. If you are attempting to upload a new build of the same app version to the +# Mac App Store, change the bundle version. The bundle short version should be the same as +# the app version seen in config.json and package.json. +# +# If you are submitting a new app version entirely, make sure the bundle version and short +# version match accordingly, except in cases where the app version is the same version as an +# older Mac App Store build. +mac: + bundleVersion: "1.1.5" + bundleShortVersion: "1.1.3" + category: public.app-category.social-networking + icon: desktop/app.icns + target: [dmg] + darkModeSupport: true + hardenedRuntime: false + gatekeeperAssess: false + +# Note that you will need the proper entitlements files for the following keys below. Refer to +# the Hyperspace Desktop documentation regarding what keys will need to be inserted into the +# entitlements files: +# https://hyperspace.marquiskurt.net/docs/desktop-build-desktop.html +mas: + entitlements: desktop/entitlements.mas.plist + entitlementsInherit: desktop/entitlements.mas.inherit.plist + provisioningProfile: desktop/embedded.provisionprofile + +dmg: + sign: false diff --git a/ebuild/standard.yml b/ebuild/standard.yml new file mode 100644 index 0000000..bddc20e --- /dev/null +++ b/ebuild/standard.yml @@ -0,0 +1,35 @@ +# +# Hyperspace Desktop Build Config +# (C) 2020 Hyperspace Developers. Licensed under NPLv4. +# +# The following configuration file is used to configure and build the cross-platforms apps, +# excluding the Mac App Store build. For the Mac App Store build, modify the mas.yml file. +# + +appId: net.marquiskurt.hyperspace +afterSign: desktop/notarize.js +directories: + buildResources: desktop + +mac: + category: public.app-category.social-networking + icon: desktop/app.icns + target: [dmg] + darkModeSupport: true + hardenedRuntime: true + +dmg: + sign: false + +win: + target: [nsis] + icon: desktop/app.ico + +linux: + target: ["${@:1}"] + icon: linux + category: Network + +snap: + confinement: strict + summary: The fluffiest client for the fediverse diff --git a/package.json b/package.json index 03c94c1..e7ea9fb 100644 --- a/package.json +++ b/package.json @@ -47,19 +47,20 @@ "main": "public/electron.js", "scripts": { "start": "react-scripts start", - "electrify": "npm run build; electron .", - "electrify-nobuild": "electron .", - "build": "react-scripts build", - "create-mac-icon": "cd desktop; iconutil -c icns app.iconset; cd ..", - "build-desktop": "npm run build; npm run create-mac-icon; electron-builder -p 'never' -mwl deb AppImage snap", - "build-desktop-win": "electron-builder -p 'never' -w", - "build-desktop-darwin": "npm run create-mac-icon; electron-builder -p 'never' -m", - "build-desktop-darwin-nosign": "npm run create-mac-icon; electron-builder -p 'never' -m dmg -c.mac.identity=null -c.afterSign=\"desktop/donothing.js\"", - "build-desktop-linux": "electron-builder -p 'never' -l deb AppImage snap", - "build-desktop-linux-select": "electron-builder -p 'never' -l ", - "check-prettier": "prettier --check src/**/**.tsx", "test": "react-scripts test", - "eject": "react-scripts eject" + "test:prettier": "prettier --check src/**/**.tsx", + "eject": "react-scripts eject", + "electron:build": "npm run build; electron .", + "electron:prebuilt": "electron .", + "build": "react-scripts build", + "build:icns": "iconutil -c icns desktop/app.iconset -o desktop/app.icns", + "build:desktop-all": "npm run build; npm run build:icns; electron-builder -p 'never' -mwl deb AppImage snap -c ebuild/standard.yml", + "build:win": "electron-builder -p 'never' -w -c ebuild/standard.yml", + "build:mac": "npm run build:icns; electron-builder -p 'never' -m -c ebuild/standard.yml", + "build:mac-unsigned": "npm run build:icns; electron-builder -p 'never' -m dmg -c.mac.identity=null -c.afterSign=\"desktop/donothing.js\" -c ebuild/standard.yml", + "build:mas": "npm run build:icns; electron-builder -p 'never' -m mas -c ebuild/mas.yml", + "build:linux": "electron-builder -p 'never' -l deb AppImage snap -c ebuild/standard.yml", + "build:linux-select-targets": "electron-builder -p 'never' -c ebuild/standard.yml -l " }, "eslintConfig": { "extends": "react-app" @@ -69,47 +70,5 @@ "not dead", "not ie <= 11", "not op_mini all" - ], - "build": { - "appId": "net.marquiskurt.hyperspace", - "afterSign": "desktop/notarize.js", - "directories": { - "buildResources": "desktop" - }, - "mac": { - "category": "public.app-category.social-networking", - "icon": "desktop/app.icns", - "target": [ - "dmg", - "mas" - ], - "darkModeSupport": true, - "hardenedRuntime": true - }, - "mas": { - "entitlements": "desktop/entitlements.mas.plist", - "entitlementsInherit": "desktop/entitlements.mas.inherit.plist", - "provisioningProfile": "desktop/embedded.provisionprofile" - }, - "dmg": { - "sign": false - }, - "win": { - "target": [ - "nsis" - ], - "icon": "desktop/app.ico" - }, - "linux": { - "target": [ - "${@:1}" - ], - "icon": "linux", - "category": "Network" - }, - "snap": { - "confinement": "strict", - "summary": "A beautiful, fluffy client for the fediverse" - } - } + ] }