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
a7e7d9f7
Commit
a7e7d9f7
authored
Feb 04, 2016
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
75704251
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
32 deletions
+33
-32
apps.js
apps.js
+27
-26
index.html
index.html
+1
-1
js/app.js
js/app.js
+3
-3
main.js
main.js
+2
-2
No files found.
apps.js
View file @
a7e7d9f7
...
...
@@ -200,34 +200,35 @@ function start_server() {
save_db
();
});
autoUpdater
.
setFeedURL
(
'
https://mycard.moe/update/
'
+
{
win32
:
'
win
'
}[
process
.
platform
]
+
{
ia32
:
'
32
'
,
x64
:
'
64
'
}[
process
.
arch
]);
if
(
process
.
argv
[
1
]
==
'
--squirrel-firstrun
'
)
{
setTimeout
(()
=>
{
if
(
process
.
platform
==
'
win32
'
)
{
autoUpdater
.
setFeedURL
(
'
https://mycard.moe/update/
'
+
{
win32
:
'
win
'
}[
process
.
platform
]
+
{
ia32
:
'
32
'
,
x64
:
'
64
'
}[
process
.
arch
]);
if
(
process
.
argv
[
1
]
==
'
--squirrel-firstrun
'
)
{
setTimeout
(()
=>
{
autoUpdater
.
checkForUpdates
();
},
3000
)
}
else
{
autoUpdater
.
checkForUpdates
();
},
3000
)
}
else
{
autoUpdater
.
checkForUpdates
();
}
/*autoUpdater.on('error', (error)=>{
console.log('update error', error)
});
autoUpdater.on('checking-for-update', ()=>{
console.log('checking-for-update')
});
autoUpdater.on('update-available', ()=>{
console.log('update-available')
});
autoUpdater.on('update-not-available', ()=>{
console.log('update-not-available')
});*/
autoUpdater
.
on
(
'
update-downloaded
'
,
()
=>
{
autoUpdater
.
quitAndInstall
()
})
}
/*autoUpdater.on('error', (error)=>{
console.log('update error', error)
});
autoUpdater.on('checking-for-update', ()=>{
console.log('checking-for-update')
});
autoUpdater.on('update-available', ()=>{
console.log('update-available')
});
autoUpdater.on('update-not-available', ()=>{
console.log('update-not-available')
});*/
autoUpdater
.
on
(
'
update-downloaded
'
,
()
=>
{
autoUpdater
.
quitAndInstall
()
})
}
}
function
load
(
app
,
local
,
callback
)
{
...
...
index.html
View file @
a7e7d9f7
...
...
@@ -38,7 +38,7 @@
<webview
id=
"store"
src=
"http://mycard.moe/"
></webview>
<webview
id=
"ygopro"
src=
"http://mycard.moe/lobby/"
></webview>
<!-- fuck https https://plus.google.com/u/0/+%E7%A5%9E%E6%A5%BD%E5%9D%82%E7%8E%B2%E5%A5%88/posts/79g2y5JRB1Z -->
<webview
id=
"forum"
src=
"https://
forum.touhou.cc
"
></webview>
<webview
id=
"forum"
src=
"https://
ygobbs.com
"
></webview>
<script
src=
"js/app.js"
></script>
</body>
</html>
\ No newline at end of file
js/app.js
View file @
a7e7d9f7
...
...
@@ -47,8 +47,8 @@ for (let i = 0; i < webviews.length; i++) {
});
/*webviews.item(i).addEventListener('will-navigate', (event) => {
event.preventDefault()
});*/
event.preventDefault()
});*/
}
document
.
getElementById
(
"
logout
"
).
onclick
=
()
=>
{
...
...
@@ -66,7 +66,7 @@ let elements = document.getElementsByClassName('profile');
for
(
let
i
=
0
;
i
<
elements
.
length
;
i
++
)
{
let
element
=
elements
.
item
(
i
);
element
.
onclick
=
function
()
{
let
user_url
=
'
https://
forum.touhou.cc
/users/
'
+
document
.
getElementById
(
'
username
'
).
innerHTML
;
let
user_url
=
'
https://
ygobbs.com
/users/
'
+
document
.
getElementById
(
'
username
'
).
innerHTML
;
let
user_webview
=
document
.
getElementById
(
'
forum
'
);
if
(
user_webview
.
src
.
indexOf
(
user_url
)
!=
0
)
{
// begin with
user_webview
.
src
=
user_url
;
...
...
main.js
View file @
a7e7d9f7
...
...
@@ -131,14 +131,14 @@ app.on('ready', function () {
mainWindow
.
webContents
.
on
(
'
dom-ready
'
,
()
=>
{
if
(
local
)
{
mainWindow
.
webContents
.
executeJavaScript
(
`
let
webview = document.getElementById('ygopro');
var
webview = document.getElementById('ygopro');
webview.src = 'http://local.mycard.moe:3000/'
`
)
}
if
(
dev
)
{
mainWindow
.
webContents
.
openDevTools
();
mainWindow
.
webContents
.
executeJavaScript
(
`
let
webview = document.getElementById('ygopro');
var
webview = document.getElementById('ygopro');
webview.addEventListener("dom-ready", function() {
webview.openDevTools();
})
...
...
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