Skip to content

Commit 0c58999

Browse files
committed
Update CHANGELOG to markdown format and add a few tweaks to the README
1 parent 70d9705 commit 0c58999

File tree

2 files changed

+57
-37
lines changed

2 files changed

+57
-37
lines changed

CHANGELOG.md

+48-27
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,60 @@
1-
Fri Apr 27 11:26:00 2012, wingrunr21
2-
* Restructured gem to match modern standards
3-
* Changed instances of RSTRING(foo)->ptr to RSTRING_PTR(foo)
4-
* Gem is now managed with Bundler.
5-
* Removed unnecessary files (MANIFEST, VERSION)
6-
7-
Thu Nov 21 15:18:26 2002, pabs <[email protected]>
8-
* ft2.c: finished documenting and implementing FT2::Glyph,
1+
# ft2-ruby changelog #
2+
3+
## 0.1.4 ##
4+
### Fri Apr 27 11:39:28 2012 by [sethvargo](http://www.github.com/sethvargo) ###
5+
- Added MIT license
6+
7+
### Fri Apr 27 11:39:28 2012 by [wingrunr21](http://www.github.com/wingrunr21) ###
8+
- Restructured gem to match modern standards
9+
- Changed instances of RSTRING(foo)->ptr to RSTRING_PTR(foo)
10+
- Gem is now managed with Bundler.
11+
- Removed unnecessary files (MANIFEST, VERSION)
12+
- Converted information files to Markdown
13+
14+
## 0.1.3 ##
15+
### Tue Oct 19 14:07:07 2010 by [dvanderson](http://www.github.com/dvanderson) ###
16+
- fix a cast that was breaking compilation on OS X
17+
18+
## 0.1.2 ##
19+
### Wed Oct 19 15:23:38 2010 by [dvanderson](http://www.github.com/dvanderson) ###
20+
- fix to get cbox for glyphs
21+
22+
### Wed Feb 10 19:45:20 2010 by [andrewwillis](http://www.github.com/andrewwillis) ###
23+
- move gem to jeweler
24+
- Update native extension to work correctly with ft2
25+
- fix compiler errors
26+
27+
## 0.1.1 and before ##
28+
### Thu Nov 21 15:18:26 2002 by [pabs]([email protected]) and [andrewwillis](http://www.github.com/andrewwillis) ###
29+
- ft2.c: finished documenting and implementing FT2::Glyph,
930
FT2::BitmapGlyph, and FT2::OutlineGlyph.
10-
* ft2.c: compiles clean with -W -Wall -pedantic again
11-
* TODO: updated
31+
- ft2.c: compiles clean with -W -Wall -pedantic again
32+
- TODO: updated
1233

13-
Wed Nov 20 16:11:10 2002, pabs <[email protected]>
14-
* ft2.c: finished documenting the FT2::SizeMetrics methods (had to
34+
### Wed Nov 20 16:11:10 2002 by [pabs](pabs@pablotron.org) ###
35+
- ft2.c: finished documenting the FT2::SizeMetrics methods (had to
1536
pull the documentation for them out of the second part of the
1637
FreeType2 tutorial, since they're not available in the API
1738
reference).
1839

19-
Sat Nov 16 01:45:42 2002, pabs <[email protected]>
20-
* ft2.c: finished documentation for FT2::GlyphSlot methods.
40+
### Sat Nov 16 01:45:42 2002 by [pabs](pabs@pablotron.org) ###
41+
- ft2.c: finished documentation for FT2::GlyphSlot methods.
2142

22-
Fri Nov 15 15:15:37 2002, pabs <[email protected]>
23-
* ft2.c: finished documentation for FT2::GlyphMetrics methods.
43+
### Fri Nov 15 15:15:37 2002 by [pabs](pabs@pablotron.org) ###
44+
- ft2.c: finished documentation for FT2::GlyphMetrics methods.
2445

25-
Fri Nov 15 03:52:46 2002, pabs <[email protected]>
26-
* ft2.c: added FT2::Face#current_charmap
46+
### Fri Nov 15 03:52:46 2002 by [pabs](pabs@pablotron.org) ###
47+
- ft2.c: added FT2::Face#current_charmap
2748

28-
Fri Nov 15 03:27:50 2002, pabs <[email protected]>
29-
* ft2.c: finished documentation for FT2::Face methods.
49+
### Fri Nov 15 03:27:50 2002 by [pabs](pabs@pablotron.org) ###
50+
- ft2.c: finished documentation for FT2::Face methods.
3051

31-
Tue Nov 12 17:20:23 2002, pabs <[email protected]>
32-
* made some changes according to the notes in the freetype2 headers:
33-
* ft2.c: removed FT2::PixelMode::RGB and FT2::PixelMode::RGBA constants
34-
* ft2.c: removed Ft2::PaletteMode
35-
* compiles clean with -W -Wall -pedantic again
52+
### Tue Nov 12 17:20:23 2002 by [pabs](pabs@pablotron.org) ###
53+
- made some changes according to the notes in the freetype2 headers:
54+
- ft2.c: removed FT2::PixelMode::RGB and FT2::PixelMode::RGBA constants
55+
- ft2.c: removed Ft2::PaletteMode
56+
- compiles clean with -W -Wall -pedantic again
3657

37-
Thu Aug 15 09:39:24 2002, pabs <[email protected]>
38-
* created changelog.
58+
### Thu Aug 15 09:39:24 2002 by [pabs](pabs@pablotron.org) ###
59+
- created changelog.
3960

README.md

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
FT2-Ruby
2-
========
1+
# FT2-Ruby #
32

4-
This document was last updated on Sat Nov 16 17:51:41 2002. Please see
5-
http://www.pablotron.org/software/ft2-ruby/ for the latest version of
6-
this software.
3+
This gem provides [FreeType2](http://www.freetype.org/) bindings for Ruby.
74

8-
Installation
9-
============
5+
## Installation ##
106

117
gem install ft2-ruby
128

13-
About the Author
14-
================
15-
Paul Duncan <[email protected]>
9+
## About the Author ##
10+
Paul Duncan <[email protected]>
1611
http://www.pablotron.org/
12+
13+
Maintained by [CustomInk](http://technology.customink.com/)
14+
15+

0 commit comments

Comments
 (0)