mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 12:02:51 +00:00
recovery appId
This commit is contained in:
parent
7b64793449
commit
7dd85b2ba6
3
electron/notarize.js
vendored
3
electron/notarize.js
vendored
@ -1,5 +1,6 @@
|
|||||||
require('dotenv').config();
|
require('dotenv').config();
|
||||||
const { notarize } = require('electron-notarize');
|
const { notarize } = require('electron-notarize');
|
||||||
|
const config = require('./package.json');
|
||||||
|
|
||||||
exports.default = async function notarizing(context) {
|
exports.default = async function notarizing(context) {
|
||||||
const { electronPlatformName, appOutDir } = context;
|
const { electronPlatformName, appOutDir } = context;
|
||||||
@ -10,7 +11,7 @@ exports.default = async function notarizing(context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return await notarize({
|
return await notarize({
|
||||||
appBundleId: 'com.dootask.desktop',
|
appBundleId: config.build.appId,
|
||||||
appPath: `${appOutDir}/${appName}.app`,
|
appPath: `${appOutDir}/${appName}.app`,
|
||||||
appleId: process.env.APPLEID,
|
appleId: process.env.APPLEID,
|
||||||
appleIdPassword: process.env.APPLEIDPASS,
|
appleIdPassword: process.env.APPLEIDPASS,
|
||||||
|
|||||||
@ -48,7 +48,7 @@
|
|||||||
"pdf-lib": "^1.17.1"
|
"pdf-lib": "^1.17.1"
|
||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
"appId": "com.dootask.desktop",
|
"appId": "com.dootask.task",
|
||||||
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
|
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
|
||||||
"asar": true,
|
"asar": true,
|
||||||
"files": [
|
"files": [
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "DooTask",
|
"name": "DooTask",
|
||||||
"version": "0.12.34",
|
"version": "0.12.36",
|
||||||
"description": "DooTask is task management system.",
|
"description": "DooTask is task management system.",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "./cmd dev",
|
"start": "./cmd dev",
|
||||||
@ -10,7 +10,7 @@
|
|||||||
"app": [
|
"app": [
|
||||||
{
|
{
|
||||||
"name": "DooTask",
|
"name": "DooTask",
|
||||||
"id": "com.dootask.desktop",
|
"id": "com.dootask.task",
|
||||||
"url": "https://dootask.com/",
|
"url": "https://dootask.com/",
|
||||||
"publish": {
|
"publish": {
|
||||||
"provider": "github",
|
"provider": "github",
|
||||||
@ -20,7 +20,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "HitoseaTask",
|
"name": "HitoseaTask",
|
||||||
"id": "com.hitosea.desktop",
|
"id": "com.hitosea.task",
|
||||||
"url": "https://t.hitosea.com/",
|
"url": "https://t.hitosea.com/",
|
||||||
"publish": {
|
"publish": {
|
||||||
"provider": "generic",
|
"provider": "generic",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user