Skip to content

Commit d2ecc85

Browse files
committed
changed fonts from roboto to ubuntu
1 parent 710ad4b commit d2ecc85

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

build-native.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project name="jME SpaceShift Editor" default="do-deploy" basedir="build"
33
xmlns:fx="javafx:com.sun.javafx.tools.ant">
44

5-
<property name="editor.version" value="0.8.5" />
5+
<property name="editor.version" value="0.8.6" />
66

77
<target name="init-fx-tasks">
88
<path id="fxant">

resources/ui/css/base.bss

316 Bytes
Binary file not shown.

resources/ui/css/base.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,16 @@
3333
src: url("/ui/fonts/roboto/RobotoCondensed-Bold.ttf");
3434
}
3535

36+
@font-face {
37+
font-family: Ubuntu Regular;
38+
src: url("/ui/fonts/ubuntu/Ubuntu-R.ttf");
39+
}
40+
41+
@font-face {
42+
font-family: Ubuntu Condensed;
43+
src: url("/ui/fonts/ubuntu/Ubuntu-C.ttf");
44+
}
45+
3646
@font-face {
3747
font-family: Ubuntu Mono;
3848
src: url("/ui/fonts/ubuntu/Ubuntu-M.ttf");
-107 Bytes
Binary file not shown.

resources/ui/css/custom_classes.css

Lines changed: 17 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,81 @@
11
/* Main Fonts */
22

33
.main-font-11 {
4-
-fx-font-family: "Roboto";
4+
-fx-font-family: "Ubuntu Regular";
55
-fx-font-size: 11px;
6-
-fx-font-weight: bolder;
76
}
87

98
.main-font-12 {
10-
-fx-font-family: "Roboto";
9+
-fx-font-family: "Ubuntu Regular";
1110
-fx-font-size: 12px;
12-
-fx-font-weight: bolder;
1311
}
1412

1513
.main-font-13 {
16-
-fx-font-family: "Roboto";
14+
-fx-font-family: "Ubuntu Regular";
1715
-fx-font-size: 13px;
18-
-fx-font-weight: bolder;
1916
}
2017

2118
.main-font-14 {
22-
-fx-font-family: "Roboto";
19+
-fx-font-family: "Ubuntu Regular";
2320
-fx-font-size: 14px;
24-
-fx-font-weight: bolder;
2521
}
2622

2723
.main-font-14-bold {
28-
-fx-font-family: "Roboto Bold";
24+
-fx-font-family: "Ubuntu Regular";
2925
-fx-font-size: 14px;
26+
-fx-font-weight: bolder;
3027
}
3128

3229
.main-font-15 {
33-
-fx-font-family: "Roboto";
30+
-fx-font-family: "Ubuntu Regular";
3431
-fx-font-size: 15px;
35-
-fx-font-weight: bolder;
3632
}
3733

3834
.main-font-15-bold {
39-
-fx-font-family: "Roboto Bold";
35+
-fx-font-family: "Ubuntu Regular";
4036
-fx-font-size: 15px;
37+
-fx-font-weight: bolder;
4138
}
4239

4340
.main-font-15-bold-with-shadow {
44-
-fx-font-family: "Roboto Bold";
41+
-fx-font-family: "Ubuntu Regular";
4542
-fx-font-size: 15px;
4643
-fx-effect: dropshadow(one-pass-box, black, 2, 1, 1, 1);
4744
}
4845

4946
.main-font-17 {
50-
-fx-font-family: "Roboto";
47+
-fx-font-family: "Ubuntu Regular";
5148
-fx-font-size: 17px;
52-
-fx-font-weight: bolder;
5349
}
5450

5551
.main-font-20 {
56-
-fx-font-family: "Roboto";
52+
-fx-font-family: "Ubuntu Regular";
5753
-fx-font-size: 20px;
58-
-fx-font-weight: bolder;
5954
}
6055

6156
.special-font-12 {
62-
-fx-font-family: "Roboto Condensed";
57+
-fx-font-family: "Ubuntu Condensed";
6358
-fx-font-size: 12px;
64-
-fx-font-weight: bolder;
6559
}
6660

6761
.special-font-13 {
68-
-fx-font-family: "Roboto Condensed";
62+
-fx-font-family: "Ubuntu Condensed";
6963
-fx-font-size: 13px;
70-
-fx-font-weight: bolder;
7164
}
7265

7366
.special-font-14 {
74-
-fx-font-family: "Roboto Condensed";
67+
-fx-font-family: "Ubuntu Condensed";
7568
-fx-font-size: 14px;
76-
-fx-font-weight: bolder;
7769
}
7870

7971
.special-font-15 {
80-
-fx-font-family: "Roboto Condensed";
72+
-fx-font-family: "Ubuntu Condensed";
8173
-fx-font-size: 15px;
82-
-fx-font-weight: bolder;
8374
}
8475

8576
.special-font-16 {
86-
-fx-font-family: "Roboto Condensed";
77+
-fx-font-family: "Ubuntu Condensed";
8778
-fx-font-size: 16;
88-
-fx-font-weight: bolder;
8979
}
9080

9181
.mono-font-13 {

src/com/ss/editor/config/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public abstract class Config {
2525
public static final String CONFIG_RESOURCE_PATH = "/com/ss/editor/config/config.xml";
2626

2727
public static final String TITLE = "jME3 SpaceShift Editor";
28-
public static final String VERSION = "v.0.8.5";
28+
public static final String VERSION = "v.0.8.6";
2929

3030
public static final String SS_FOLDER_IN_USER_HOME = ".jme3-spaceshift-editor";
3131

0 commit comments

Comments
 (0)