mirror of
https://github.com/hyperspacedev/hyperspace
synced 2025-02-03 18:57:38 +01:00
commit
21a3e5e595
@ -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](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.
|
||||
|
@ -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 <hyperspacedev@marquiskurt.net>",
|
||||
"repository": "https://github.com/hyperspacedev/hyperspace.git",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"location": "https://hyperspaceapp.herokuapp.com",
|
||||
"branding": {
|
||||
"name": "Hyperspace",
|
||||
|
@ -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,
|
||||
|
@ -798,7 +798,7 @@ export class Post extends React.Component<any, IPostState> {
|
||||
}}
|
||||
/>
|
||||
{post.reblog ? (
|
||||
<div>
|
||||
<div className={classes.postReblogMenu}>
|
||||
<LinkableMenuItem
|
||||
to={`/profile/${post.reblog.account.id}`}
|
||||
>
|
||||
|
@ -88,9 +88,7 @@ class AboutPage extends Component<any, IAboutPageState> {
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user