mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-08 03:24:12 +08:00
✨ init mac codesign
This commit is contained in:
parent
46eeb8d320
commit
e2ea081d25
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rubick",
|
"name": "rubick",
|
||||||
"version": "2.2.9",
|
"version": "2.2.10",
|
||||||
"author": "muwoo <2424880409@qq.com>",
|
"author": "muwoo <2424880409@qq.com>",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
14
release/entitlements.mac.plist
Normal file
14
release/entitlements.mac.plist
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>com.apple.security.cs.allow-jit</key>
|
||||||
|
<true/>
|
||||||
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
||||||
|
<true/>
|
||||||
|
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
|
||||||
|
<true/>
|
||||||
|
<key>com.apple.security.cs.disable-library-validation</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
@ -1,3 +1,2 @@
|
|||||||
- 增加windows自动更新逻辑
|
- init mac codesign
|
||||||
- 修复一些已知问题
|
- 发布时间 2023-06-25
|
||||||
- 发布时间 2023-06-24
|
|
@ -6,12 +6,6 @@ import commonConst from '@/common/utils/commonConst';
|
|||||||
import { main } from '../browsers';
|
import { main } from '../browsers';
|
||||||
import { app } from 'electron';
|
import { app } from 'electron';
|
||||||
|
|
||||||
// Object.defineProperty(app, 'isPackaged', {
|
|
||||||
// get() {
|
|
||||||
// return true;
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
|
|
||||||
class VersionHandler {
|
class VersionHandler {
|
||||||
private lastestVersion: string;
|
private lastestVersion: string;
|
||||||
private currentVersion: string;
|
private currentVersion: string;
|
||||||
|
@ -62,7 +62,12 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
mac: {
|
mac: {
|
||||||
icon: 'public/icons/icon.icns',
|
icon: 'public/icons/icon.icns',
|
||||||
target: ['pkg'],
|
target: ['dmg', 'zip'],
|
||||||
|
gatekeeperAssess: false,
|
||||||
|
entitlementsInherit: './release/entitlements.mac.plist',
|
||||||
|
entitlements: './release/entitlements.mac.plist',
|
||||||
|
hardenedRuntime: true,
|
||||||
|
category: 'public.app-category.developer-tools',
|
||||||
extendInfo: {
|
extendInfo: {
|
||||||
LSUIElement: 1,
|
LSUIElement: 1,
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user