您如何覆盖或删除签名“electron.app.Electron"?从

how can you overwrite or remove the signature quot;electron.app.Electronquot; from the desktop notification(您如何覆盖或删除签名“electron.app.Electron?从桌面通知)
本文介绍了您如何覆盖或删除签名“electron.app.Electron"?从桌面通知的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试删除或覆盖我由电子制作的通知签名.

I'm trying to remove or overwrite my notification signature made by electron.

这是我得到的:

here is what i get:

我正在尝试是否覆盖签名 electron.app.Electron 或完全删除它,通过知道我已经在测试模式 (npm run start) 以及打包为 .exe 时对其进行了测试我也注意到我删除了签名的图标,但是没有一个会很不愉快.

I am trying to whether overwrite the signature electron.app.Electron or remove it completely, by knowing that I have tested it on test mode (npm run start), and also when packed as .exe also I have noticed that I remove the icon the signature goes a way, but it is very unpleasant without one.

我当前的通知代码如下:

my current notification code is bellow:

function showNotification() {
  const notification = new Notification("new message", {
    body: "app launched",
    icon: __dirname + '/icon.ico',
    tag: 'soManyNotification',
    hasReply: true
  })
}
console.log(Notification.permission)
if (Notification.permission === "granted") {
  showNotification()
  //alert('we have permission');
} else if (Notification.permission === "denied") {
  Notification.requestPermission()
};

任何帮助将不胜感激^^

any help would be gratefully appreciated ^^

推荐答案

// If this is running on Windows then set UserModelID for notification

if (isWin()) {
    app.setAppUserModelId("Proper name to be replaced");
}

这篇关于您如何覆盖或删除签名“electron.app.Electron"?从桌面通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)