Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
O
Oyun Parkı-pardusacikhack
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Nyx
Oyun Parkı-pardusacikhack
Commits
80207b31
Kaydet (Commit)
80207b31
authored
May 07, 2021
tarafından
Eda Altuntaş
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Gönderdeki hata çözüldü
üst
26c205fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
background.js
src/background.js
+2
-2
index.js
src/deep/index.js
+3
-3
No files found.
src/background.js
Dosyayı görüntüle @
80207b31
...
...
@@ -57,12 +57,12 @@ const gotTheLock = app.requestSingleInstanceLock();
if
(
!
gotTheLock
)
{
app
.
quit
();
}
else
{
app
.
on
(
"second-instance"
,
()
=>
{
app
.
on
(
"second-instance"
,
(
event
,
args
)
=>
{
if
(
mainWindow
)
{
if
(
mainWindow
.
isMinimized
())
mainWindow
.
restore
();
mainWindow
.
focus
();
}
require
(
"./deep"
)(
mainWindow
);
require
(
"./deep"
)(
mainWindow
,
args
);
});
app
.
on
(
"ready"
,
async
()
=>
{
if
(
isDevelopment
&&
!
process
.
env
.
IS_TEST
)
{
...
...
src/deep/index.js
Dosyayı görüntüle @
80207b31
...
...
@@ -3,9 +3,9 @@ const { spawn } = require("child_process");
const
{
copyFileSync
,
existsSync
}
=
require
(
"fs"
);
const
{
basename
,
join
,
posix
}
=
require
(
"path"
);
const
handler
=
win
=>
{
cons
ole
.
log
(
existsSync
)
;
let
file
=
process
.
argv
.
slice
(
process
.
argv
.
indexOf
(
process
.
execPath
)
+
1
);
const
handler
=
(
win
,
args
=
null
)
=>
{
cons
t
argv
=
args
||
process
.
argv
;
let
file
=
argv
.
slice
(
argv
.
indexOf
(
process
.
execPath
)
+
1
);
file
=
file
.
filter
(
f
=>
existsSync
(
f
));
if
(
file
.
length
===
0
)
{
return
;
...
...
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