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
033e49fc
Commit
033e49fc
authored
Nov 29, 2016
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
4f75bf99
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
7 deletions
+16
-7
app/app-detail.component.css
app/app-detail.component.css
+2
-1
app/app-detail.component.html
app/app-detail.component.html
+3
-3
app/lobby.component.css
app/lobby.component.css
+4
-0
app/ygopro.component.css
app/ygopro.component.css
+4
-0
app/ygopro.component.html
app/ygopro.component.html
+2
-2
package.json
package.json
+1
-1
No files found.
app/app-detail.component.css
View file @
033e49fc
...
...
@@ -5,9 +5,10 @@
padding
:
1rem
;
}
.
main
{
.
actions
{
margin-bottom
:
1rem
;
}
.list-group
{
width
:
20rem
;
}
...
...
app/app-detail.component.html
View file @
033e49fc
...
...
@@ -6,12 +6,12 @@
<div
i18n
*ngIf=
"currentApp.status.status === 'installing'"
>
正在安装...
</div>
<div
i18n
*ngIf=
"currentApp.status.status==='waiting'"
>
等待安装...
</div>
<progress
*ngIf=
"currentApp.status.status === 'downloading'"
class=
"progress progress-striped progress-animated"
value=
"{{currentApp.status.progress}}"
max=
"{{currentApp.status.total}}"
></progress>
<div
class=
"
main
"
*ngIf=
"currentApp.status.status==='ready' && (currentApp.id != 'ygopro')"
>
<div
class=
"
actions
"
*ngIf=
"currentApp.status.status==='ready' && (currentApp.id != 'ygopro')"
>
<button
i18n
*ngIf=
"currentApp.runable()"
(click)=
"runApp(currentApp)"
type=
"button"
class=
"btn btn-primary"
>
运行
</button>
<button
i18n
*ngIf=
"currentApp.runable() && currentApp.actions.get('custom')"
(click)=
"custom(currentApp)"
type=
"button"
class=
"btn btn-secondary"
>
设置
</button>
<div
id=
"network"
*ngIf=
"currentApp.network && currentApp.network.protocol == 'maotama'"
>
<div
class=
"input-group"
>
<input
*ngIf=
"appsService.connections.get(currentApp)"
[value]=
"appsService.connections.get(currentApp).address || 'Loading...'"
readonly
type=
"text"
class=
"form-control"
>
<input
*ngIf=
"appsService.connections.get(currentApp)"
[value]=
"appsService.connections.get(currentApp).address || 'Loading...'"
readonly
type=
"text"
class=
"form-control"
title=
"address"
>
<div
class=
"input-group-btn"
>
<button
i18n
*ngIf=
"!appsService.connections.get(currentApp)"
(click)=
"appsService.network(currentApp, currentApp.network.servers[0])"
type=
"button"
class=
"btn btn-secondary"
>
联机
</button>
<button
i18n
*ngIf=
"appsService.connections.get(currentApp)"
(click)=
"copy(appsService.connections.get(currentApp).address)"
[disabled]=
"!appsService.connections.get(currentApp).address"
type=
"button"
class=
"btn btn-secondary"
>
复制
</button>
...
...
@@ -24,7 +24,7 @@
</div>
</div>
</div>
<ygopro
class=
"main"
*ngIf=
"currentApp.status.status==='ready'&& (currentApp.id == 'ygopro')"
[app]=
"currentApp"
></ygopro>
<ygopro
*ngIf=
"currentApp.status.status==='ready'&& (currentApp.id == 'ygopro')"
[app]=
"currentApp"
></ygopro>
<h2
i18n
*ngIf=
"news && news.length"
>
新闻
</h2>
<div
id=
"news"
*ngFor=
"let item of news"
>
<h3>
{{item.title}}
</h3>
...
...
app/lobby.component.css
View file @
033e49fc
...
...
@@ -38,4 +38,8 @@ a {
span
{
margin-left
:
8px
;
}
.actions
{
margin-bottom
:
1em
;
}
\ No newline at end of file
app/ygopro.component.css
View file @
033e49fc
...
...
@@ -75,4 +75,8 @@
.float-left
{
float
:
left
;
}
.actions
{
margin-bottom
:
1em
;
}
\ No newline at end of file
app/ygopro.component.html
View file @
033e49fc
<form
class=
"form-inline"
>
<form
class=
"form-inline
actions
"
>
<div
class=
"form-group"
>
<label
for=
"exampleSelect1"
>
卡组
</label>
<select
class=
"form-control"
id=
"exampleSelect1"
name=
"deck"
[(ngModel)]=
"current_deck"
>
...
...
@@ -10,7 +10,7 @@
<button
type=
"submit"
(click)=
"refresh()"
class=
"btn btn-secondary"
>
刷新
</button>
</form>
<div>
<div
class=
"actions"
>
<button
(click)=
"request_match('athletic')"
*ngIf=
"matching_arena != 'athletic'"
[disabled]=
"matching"
type=
"button"
class=
"btn btn-primary"
>
竞技匹配
</button>
<button
(click)=
"cancel_match()"
*ngIf=
"matching_arena == 'athletic'"
type=
"button"
class=
"btn btn-primary"
>
取消等待
</button>
<button
(click)=
"request_match('entertain')"
*ngIf=
"matching_arena != 'entertain'"
[disabled]=
"matching"
type=
"button"
class=
"btn btn-secondary"
>
娱乐匹配
</button>
...
...
package.json
View file @
033e49fc
{
"name"
:
"mycard"
,
"version"
:
"3.0.0-dev.
9
"
,
"version"
:
"3.0.0-dev.
10
"
,
"description"
:
"mycard"
,
"keywords"
:
[],
"author"
:
"zh99998 <zh99998@gmail.com>"
,
...
...
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