no message
This commit is contained in:
parent
cbf2e6a140
commit
2e0c262d32
2
.github/workflows/electron.yml
vendored
2
.github/workflows/electron.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
uses: loopwerk/tag-changelog@v1
|
uses: loopwerk/tag-changelog@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GH_PAT }}
|
token: ${{ secrets.GH_PAT }}
|
||||||
exclude_types: other,chore
|
exclude_types: other,chore,build
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
uses: actions/create-release@latest
|
uses: actions/create-release@latest
|
||||||
|
@ -21,9 +21,9 @@ Group No.: `546574618`
|
|||||||
# 1、Clone the repository
|
# 1、Clone the repository
|
||||||
|
|
||||||
# Clone projects on github
|
# Clone projects on github
|
||||||
git clone https://github.com/kuaifan/dootask.git
|
git clone --depth=1 https://github.com/kuaifan/dootask.git
|
||||||
# Or you can use gitee
|
# Or you can use gitee
|
||||||
git clone https://gitee.com/aipaw/dootask.git
|
git clone --depth=1 https://gitee.com/aipaw/dootask.git
|
||||||
|
|
||||||
# 2、Enter directory
|
# 2、Enter directory
|
||||||
cd dootask
|
cd dootask
|
||||||
|
@ -21,9 +21,9 @@
|
|||||||
# 1、克隆项目到您的本地或服务器
|
# 1、克隆项目到您的本地或服务器
|
||||||
|
|
||||||
# 通过github克隆项目
|
# 通过github克隆项目
|
||||||
git clone https://github.com/kuaifan/dootask.git
|
git clone --depth=1 https://github.com/kuaifan/dootask.git
|
||||||
# 或者你也可以使用gitee
|
# 或者你也可以使用gitee
|
||||||
git clone https://gitee.com/aipaw/dootask.git
|
git clone --depth=1 https://gitee.com/aipaw/dootask.git
|
||||||
|
|
||||||
# 2、进入目录
|
# 2、进入目录
|
||||||
cd dootask
|
cd dootask
|
||||||
|
14
docker/drawio/webapp/README.md
Normal file
14
docker/drawio/webapp/README.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# Change
|
||||||
|
|
||||||
|
## js/diagramly/ElectronApp.js
|
||||||
|
|
||||||
|
- 隐藏文件中的无用菜单
|
||||||
|
|
||||||
|
## js/app.min.js
|
||||||
|
|
||||||
|
- 隐藏帮助菜单
|
||||||
|
- 取消未保存关闭窗口提示
|
||||||
|
|
||||||
|
## index.html
|
||||||
|
|
||||||
|
- 隐藏加载中的提示
|
@ -364,6 +364,7 @@
|
|||||||
color:#606060;
|
color:#606060;
|
||||||
}
|
}
|
||||||
.geBlock {
|
.geBlock {
|
||||||
|
display: none;
|
||||||
z-index:-3;
|
z-index:-3;
|
||||||
margin:100px;
|
margin:100px;
|
||||||
margin-top:40px;
|
margin-top:40px;
|
||||||
@ -372,9 +373,6 @@
|
|||||||
text-align:center;
|
text-align:center;
|
||||||
min-width:50%;
|
min-width:50%;
|
||||||
}
|
}
|
||||||
.geBlock h1, .geBlock p {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.geBlock h1, .geBlock h2 {
|
.geBlock h1, .geBlock h2 {
|
||||||
margin-top:0px;
|
margin-top:0px;
|
||||||
padding-top:0px;
|
padding-top:0px;
|
||||||
|
@ -56,11 +56,6 @@ contextBridge.exposeInMainWorld(
|
|||||||
},
|
},
|
||||||
sendSyncMessage: (action, args) => {
|
sendSyncMessage: (action, args) => {
|
||||||
ipcRenderer.sendSync(action, args);
|
ipcRenderer.sendSync(action, args);
|
||||||
},
|
|
||||||
openExternal: (url) => {
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
shell.openExternal(url).then(resolve).catch(reject)
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -366,9 +366,7 @@
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
if ($A.Electron) {
|
if ($A.Electron) {
|
||||||
$A.Electron.openExternal(url).catch(() => {
|
$A.Electron.sendMessage('openExternal', url);
|
||||||
$A.modalError("下载失败");
|
|
||||||
});
|
|
||||||
} else {
|
} else {
|
||||||
window.open(url)
|
window.open(url)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user