Skip to content

Commit 96a2bca

Browse files
committed
Fix duplicated readme
1 parent 0d4063a commit 96a2bca

File tree

3 files changed

+19
-72
lines changed

3 files changed

+19
-72
lines changed

README.md

-58
This file was deleted.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ionicons/README.md

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ end
3939
def updateReadme(version)
4040
text = File.read('README.md')
4141
new_contents = text.gsub( /^Currently using.*$/, "Currently using: #{version}")
42-
readme_file = File.open('README.md', 'w') { |file| file.puts new_contents }
42+
readme_file = File.open('ionicons/README.md', 'w') { |file| file.puts new_contents }
4343
end
4444

4545
def updatePodspec(version)

ionicons/README.md

+17-13
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
1-
# IonIcons-iOS
2-
Easily use IonIcons in your iOS projects
1+
# ionicons-iOS
2+
Easily use ionicons in your native SDK iOS projects
33

4-
*Currently using ionicons 1.4.1*
4+
Currently using: Ionicons v2.0.1
5+
6+
### About
7+
The ionicons icon set includes a lot of iOS system icons as well as plenty of handy additions. The great thing about ionicons is it makes the system icons a lot handier and more customizable, while adding more icon options. Also, with ionicons-iOS you can use iOS 7 system icons in your native SDK iOS 5+ projects, so your designs will have a consistent appearance across all OS versions.
58

69
### Usage:
710

8-
For available icons, look at ionicons-codes.h or [browse them at the IonIcons website](http://ionicons.com).
11+
For available icons, look at ionicons-codes.h or [browse them at the **ionicons** website](http://ionicons.com).
912

10-
Get the IonIcons font:
13+
Get the font:
1114

1215
UIFont *ionIconsFont = [IonIcons fontWithSize:30.0f];
1316

14-
Make a UILabel with a IonIcons Icon:
17+
Make a UILabel with an ionicons icon:
1518

16-
UILabel *label = [IonIcons labelWithIcon:icon_ionic size:20.0f color:[UIColor blackColor]];
19+
UILabel *label = [IonIcons labelWithIcon:ion_ionic size:20.0f color:[UIColor blackColor]];
1720

18-
Render a IonIcons icon in a UIImage:
21+
Render an ionicons icon in a UIImage:
1922

20-
UIImage *icon = [IonIcons imageWithIcon:icon_ionic
23+
UIImage *icon = [IonIcons imageWithIcon:ion_ionic
2124
iconColor:[UIColor redColor]
2225
iconSize:60.0f
2326
imageSize:CGSizeMake(90.0f, 90.0f)];
@@ -27,7 +30,7 @@ Render a IonIcons icon in a UIImage:
2730

2831
CocoaPods is great:
2932

30-
1. add `pod 'IonIcons'` to your Podfile
33+
1. add `pod 'ionicons'` to your Podfile
3134
2. `pod install`
3235
3. open the xcworkspace
3336
4. Modify your project's Info.plist file as described below
@@ -45,7 +48,8 @@ Modify your project's Info.plist file:
4548
2. Under 'Custom iOS Target Properties', click the last Key in the list, then click on the '+' icon.
4649
3. For the new key, type 'Fonts provided by application'.
4750
4. Twirl down the arrow icon, double-tap the right-most box to enter the string value, and type 'ionicons.ttf'.
48-
![Info.plist modification]()
51+
![Info.plist modification](https://raw.github.com/TapTemplate/ionicons-iOS/master/Example-ionicons/img/install-instructions.png)
4952

50-
## Shameles Plug:
51-
I built this for inclusion in my app design templates available at [TapTemplate](http://www.taptemplate.com)
53+
### License
54+
ionicons is released under the MIT license.
55+
The stuff specific to ionicons-iOS is also released under the MIT license

0 commit comments

Comments
 (0)