File tree Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1
1
#Changelog
2
2
3
- #2 .0.2 (WIP )
3
+ #2 .0.2 (05/01/2015 )
4
4
- Fixed ` CalligraphyConfig.Builder ` missing return statements.
5
+ - Fixed ` createView() ` getting the wrong parent context, Fixed: #135 , #120
5
6
6
7
#2 .0.1 (28/01/2014)
7
8
- Throw exception on passing null into ` CalligraphySpan `
Original file line number Diff line number Diff line change @@ -5,19 +5,19 @@ Calligraphy
5
5
6
6
Custom fonts in Android an OK way.
7
7
8
- Are you fed up of Custom views to set fonts? Or traversing the ViewTree to find TextViews? Yeah me too.
8
+ Are you fed up of Custom Views to set fonts? Or traversing the ViewTree to find TextViews? Yeah me too.
9
9
10
10
![ alt text] ( https://github.com/chrisjenx/Calligraphy/raw/master/screenshot.png " ScreenShot Of Font Samples ")
11
11
12
12
##Getting started
13
13
14
14
### Dependency
15
15
16
- Include the dependency [ Download (.aar)] ( http://search.maven.org/remotecontent?filepath=uk/co/chrisjenx/calligraphy/2.0.1 /calligraphy-2.0.1 .aar ) :
16
+ Include the dependency [ Download (.aar)] ( http://search.maven.org/remotecontent?filepath=uk/co/chrisjenx/calligraphy/2.0.2 /calligraphy-2.0.2 .aar ) :
17
17
18
18
``` groovy
19
19
dependencies {
20
- compile 'uk.co.chrisjenx:calligraphy:2.0.1 '
20
+ compile 'uk.co.chrisjenx:calligraphy:2.0.2 '
21
21
}
22
22
```
23
23
### Add Fonts
@@ -29,7 +29,7 @@ Add your custom fonts to `assets/` all font definitions are relative to this pat
29
29
``` xml
30
30
<TextView fontPath =" fonts/MyFont.ttf" />
31
31
```
32
- ** Note: The missing namespace, this __ IS__ intention .**
32
+ ** Note: The missing namespace, this __ IS__ intentional .**
33
33
34
34
### Installation
35
35
Original file line number Diff line number Diff line change 3
3
4
4
POM_NAME =Calligraphy
5
5
POM_ARTIFACT_ID =calligraphy
6
- POM_PACKAGING =jar
6
+ POM_PACKAGING =aar
Original file line number Diff line number Diff line change 18
18
# org.gradle.parallel=true
19
19
20
20
GROUP =uk.co.chrisjenx
21
- VERSION_NAME =2.0.1
22
- VERSION_CODE =17
21
+ VERSION_NAME =2.0.2
22
+ VERSION_CODE =18
23
23
24
- POM_PACKAGING =jar
24
+ POM_PACKAGING =aar
25
25
POM_URL =https://github.com/chrisjenx/Calligraphy
26
- POM_DESCRIPTION =A modern implementation of the pull-to-refresh for Android
26
+ POM_DESCRIPTION =Custom Font injection through styles and attributes.
27
27
POM_SCM_URL =https://github.com/chrisjenx/Calligraphy
28
28
POM_SCM_CONNECTION =scm:git@github.com:chrisjenx/Calligraphy.git
29
29
POM_SCM_DEV_CONNECTION =scm:git@github.com:chrisjenx/Calligraphy.git
You can’t perform that action at this time.
0 commit comments