WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit b1d9aa2

Browse files
committed
Preparing release 1.1.5
2 parents 2be5c67 + 414e9a4 commit b1d9aa2

File tree

8 files changed

+27
-27
lines changed

8 files changed

+27
-27
lines changed

build/cardmaker.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tcg/ygo/layout/component/CardName.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ define(["react", "react-class", "draw/Text", "../../Rarities"], function CardNam
33

44
var stylePreset = {
55
regular: {
6-
fontFamily: ["Spectral SC", "serif"],
6+
fontFamily: ["Matrix Regular Small Caps", "Spectral SC", "serif"],
77
fontSize: 32,
88
fontStyle: "normal",
99
fontWeight: 600,

src/tcg/ygo/layout/component/Copyright.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ define(["react", "react-class", "draw/Text"], function Copyright(React, ReactCla
44
render: function render()
55
{
66
return React.createElement(Text, { text: this.props.value, style: {
7-
fontFamily: ["Spectral", "serif"],
7+
fontFamily: ["Matrix Book", "Spectral", "serif"],
88
color: this.props.color,
99
fontSize: 12,
1010
textAlign: "right",
1111
whitespace: "nowrap",
12-
12+
1313
left: 230,
1414
top: 580,
1515
width: 150,

src/tcg/ygo/layout/component/Effect.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ define(["react", "react-class", "draw/Text"], function Effect(React, ReactClass,
22
{
33
var styles = {
44
Monster: {
5-
fontFamily: ["Spectral", "serif"],
5+
fontFamily: ["Matrix Book", "Spectral", "serif"],
66

77
fontSize: 13,
88
textAlign: "justify",
@@ -13,7 +13,7 @@ define(["react", "react-class", "draw/Text"], function Effect(React, ReactClass,
1313
height: 75
1414
},
1515
Backrow: {
16-
fontFamily: ["Spectral", "serif"],
16+
fontFamily: ["Matrix Book", "Spectral", "serif"],
1717

1818
fontSize: 13,
1919
textAlign: "justify",
@@ -37,7 +37,7 @@ define(["react", "react-class", "draw/Text"], function Effect(React, ReactClass,
3737
},
3838

3939
Skill: {
40-
fontFamily: ["Spectral", "serif"],
40+
fontFamily: ["Matrix Book", "Spectral", "serif"],
4141

4242
fontSize: 13,
4343
textAlign: "justify",

src/tcg/ygo/layout/component/Id.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
define(["react", "react-class", "draw/Text"], function Id(React, ReactClass, Text)
22
{
33
var shared = {
4-
fontFamily: ["Spectral", "serif"],
4+
fontFamily: ["Matrix Book", "Spectral", "serif"],
55
fontSize: 12,
66
whitespace: "nowrap",
7-
7+
88
height: undefined
99
}
1010
var styles = {
@@ -28,7 +28,7 @@ define(["react", "react-class", "draw/Text"], function Id(React, ReactClass, Tex
2828
width: 80,
2929
}
3030
};
31-
31+
3232
var Id = ReactClass({
3333
render: function render()
3434
{
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
define(["react", "react-class", "draw/Text"], function Link(React, ReactClass, Text)
22
{
33
var style = {
4-
fontFamily: ["Audiowide", "sans-serif"],
4+
fontFamily: ["IDroid", "Audiowide", "sans-serif"],
55
fontSize: 16,
66
textAlign: "right",
77
whitespace: "nowrap",
8-
8+
99
left: 370,
1010
top: 552,
1111
width: 15,
1212
height: undefined
1313
};
14-
14+
1515
var Link = ReactClass({
1616
render: function render()
1717
{
1818
return React.createElement(Text, { text: this.props.value, style: style, repaint: this.props.repaint, canvas: this.props.canvas })
1919
}
2020
});
21-
21+
2222
Link.displayName = "Link";
2323
Link.defaultProps = {
24-
24+
2525
}
2626
return Link;
2727
});

src/tcg/ygo/layout/component/Pendulum.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ define(["react", "react-class", "draw/Group", "draw/Text"], function Pendulum(Re
44
render: function render()
55
{
66
return this.props.enabled ? React.createElement(
7-
Group,
7+
Group,
88
{ canvas: this.props.canvas, repaint: this.props.repaint },
99
React.createElement(
10-
Text,
11-
{
10+
Text,
11+
{
1212
text: this.props.effect,
1313
style: {
14-
fontFamily: ["Spectral", "serif"],
15-
14+
fontFamily: ["Matrix Book", "Spectral", "serif"],
15+
1616
fontSize: 13,
1717
textAlign: "justify",
18-
18+
1919
left: 65,
2020
top: 385,
2121
width: 290,
@@ -24,15 +24,15 @@ define(["react", "react-class", "draw/Group", "draw/Text"], function Pendulum(Re
2424
}
2525
),
2626
React.createElement(
27-
Text,
27+
Text,
2828
{
2929
text: this.props.blue,
3030
style: {
3131
fontFamily: ["Crimson Text", "serif"],
3232
fontSize: 28,
3333
textAlign: "center",
3434
fontWeight: 600,
35-
35+
3636
left: 32,
3737
top: 410,
3838
width: 23,
@@ -49,7 +49,7 @@ define(["react", "react-class", "draw/Group", "draw/Text"], function Pendulum(Re
4949
fontSize: 28,
5050
textAlign: "center",
5151
fontWeight: 600,
52-
52+
5353
left: 365,
5454
top: 410,
5555
width: 23,

src/tcg/ygo/layout/component/Serial.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ define(["react", "react-class", "draw/Text"], function Serial(React, ReactClass,
44
render: function render()
55
{
66
return React.createElement(Text, { text: this.props.value, style: {
7-
fontFamily: ["Spectral", "serif"],
7+
fontFamily: ["Matrix Book", "Spectral", "serif"],
88
color: this.props.color,
99
fontSize: 12,
1010
textAlign: "left",
1111
whitespace: "nowrap",
12-
12+
1313
left: 20,
1414
top: 580,
1515
width: 150,

0 commit comments

Comments
 (0)