From 5b4f1bdbc872d325b8db43ee9c30f2f076c524b5 Mon Sep 17 00:00:00 2001 From: Travis Kohlbeck Date: Mon, 28 Oct 2019 03:27:59 -0400 Subject: [PATCH 1/5] removes 'focused' outline from reblogged post menu Signed-off-by: Travis Kohlbeck --- src/components/Post/Post.styles.tsx | 3 +++ src/components/Post/Post.tsx | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/Post/Post.styles.tsx b/src/components/Post/Post.styles.tsx index e5854ff..49f121e 100644 --- a/src/components/Post/Post.styles.tsx +++ b/src/components/Post/Post.styles.tsx @@ -14,6 +14,9 @@ export const styles = (theme: Theme) => backgroundColor: theme.palette.secondary.main, marginBottom: theme.spacing.unit }, + postReblogMenu: { + outline: "none", + }, postContent: { paddingTop: 0, paddingBottom: 0, diff --git a/src/components/Post/Post.tsx b/src/components/Post/Post.tsx index 5e8a046..50b9082 100644 --- a/src/components/Post/Post.tsx +++ b/src/components/Post/Post.tsx @@ -798,7 +798,7 @@ export class Post extends React.Component { }} /> {post.reblog ? ( -
+
From 4437bd4c7f8940e68dcac177eb8c25e8110c02e9 Mon Sep 17 00:00:00 2001 From: Marquis Kurt Date: Mon, 28 Oct 2019 11:42:20 -0400 Subject: [PATCH 2/5] Update package and config version numbers Signed-off-by: Marquis Kurt --- package.json | 2 +- public/config.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d88d3f1..2ea8f32 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hyperspace", "productName": "Hyperspace", - "version": "1.0.1", + "version": "1.0.2", "description": "A beautiful, fluffy client for the fediverse", "author": "Marquis Kurt ", "repository": "https://github.com/hyperspacedev/hyperspace.git", diff --git a/public/config.json b/public/config.json index b283be9..2371365 100644 --- a/public/config.json +++ b/public/config.json @@ -1,5 +1,5 @@ { - "version": "1.0.1", + "version": "1.0.2", "location": "https://hyperspaceapp.herokuapp.com", "branding": { "name": "Hyperspace", From cf38153034d47c2735347cb3d9dcf5530d5fca5a Mon Sep 17 00:00:00 2001 From: Marquis Kurt Date: Fri, 1 Nov 2019 16:08:14 -0400 Subject: [PATCH 3/5] Add about page check fix from staging (e0794b1) Signed-off-by: Marquis Kurt --- src/components/Post/Post.styles.tsx | 2 +- src/pages/About.tsx | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/Post/Post.styles.tsx b/src/components/Post/Post.styles.tsx index 49f121e..362d55a 100644 --- a/src/components/Post/Post.styles.tsx +++ b/src/components/Post/Post.styles.tsx @@ -15,7 +15,7 @@ export const styles = (theme: Theme) => marginBottom: theme.spacing.unit }, postReblogMenu: { - outline: "none", + outline: "none" }, postContent: { paddingTop: 0, diff --git a/src/pages/About.tsx b/src/pages/About.tsx index 8446f84..af87104 100644 --- a/src/pages/About.tsx +++ b/src/pages/About.tsx @@ -88,9 +88,7 @@ class AboutPage extends Component { hyperspaceAdmin: account, hyperspaceAdminName: config.admin.name, federation: config.federation, - developer: config.developer - ? config.developer === "true" - : false, + developer: config.developer ? config.developer : false, versionNumber: config.version, brandName: config.branding ? config.branding.name From 1c6a7a6827dbadb4372fc5bc905c897c4cb97ac4 Mon Sep 17 00:00:00 2001 From: Marquis Kurt Date: Fri, 1 Nov 2019 16:14:06 -0400 Subject: [PATCH 4/5] Update inherited plist information Signed-off-by: Marquis Kurt --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 0eae677..08ba835 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,12 @@ For the child ones (inherited `entitlements.mas.inherit.plist`): - `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` + +> ⚠️ 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). This might change in future versions of macOS. 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. From 16ea8d5cdb5f91f599d408b1fb44078c7e5592a1 Mon Sep 17 00:00:00 2001 From: Marquis Kurt Date: Fri, 1 Nov 2019 16:15:13 -0400 Subject: [PATCH 5/5] Add Electron issue link Signed-off-by: Marquis Kurt --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 08ba835..2b4deb2 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ For the child ones (inherited `entitlements.mas.inherit.plist`): - `com.apple.security.allow-unsigned-executable-memory` - `com.apple.security.network.client` -> ⚠️ 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). This might change in future versions of macOS. +> ⚠️ 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. 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.