Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
mycard
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
syntax_j
mycard
Commits
09f2f27a
Commit
09f2f27a
authored
Jul 09, 2021
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resolve update problems, again
parent
e994b1c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
index.js
index.js
+11
-2
package.json
package.json
+3
-0
No files found.
index.js
View file @
09f2f27a
...
...
@@ -207,13 +207,22 @@ function createTray() {
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app
.
on
(
'
ready
'
,
()
=>
{
app
.
on
(
'
ready
'
,
async
()
=>
{
createWindow
();
if
(
process
.
platform
===
'
win32
'
)
{
createTray
();
}
if
(
process
.
env
[
'
NODE_ENV
'
]
===
'
production
'
)
{
autoUpdater
.
checkForUpdates
();
let
updateTempPath
=
'
~/.cache/mycard-updater
'
if
(
process
.
platform
===
'
win32
'
)
{
updateTempPath
=
`
${
process
.
env
.
LOCALAPPDATA
}
\\mycard-updater`
}
else
if
(
process
.
platform
===
'
darwin
'
)
{
updateTempPath
=
'
~/Library/Application Support/Caches/mycard-updater
'
}
try
{
await
require
(
'
fs
'
).
promises
.
mkdir
(
updateTempPath
,
{
recursive
:
true
});
}
catch
(
e
)
{}
await
autoUpdater
.
checkForUpdates
();
}
});
...
...
package.json
View file @
09f2f27a
...
...
@@ -93,6 +93,9 @@
"extraResources"
:
[
"bin"
],
"win"
:
{
"publisherName"
:
"Nana Yumesaki"
},
"linux"
:
{
"target"
:
[
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment