-
Notifications
You must be signed in to change notification settings - Fork 16
/
Changelog
107 lines (71 loc) · 3.16 KB
/
Changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
2012-06-02 Shuhei Tanuma <[email protected]>
* bumped up 0.3.6
now, php-sundown is able to use under windows box.
Thank you stealth35!
* prettify phpinfo, add ext and sundown version
* windows support
* fix several compile warnings
[removed constants]:
Sundown\Render\LIST_ORDERED
Sundown\Render\MKDA_NORMAL
Sundown\Render\MKDA_EMAIL
[added constants]:
Sundown\Render\Base::LIST_ORDERED
Sundown\Render\Base::MKDA_NORMAL
Sundown\Render\Base::MKDA_EMAIL
2012-05-17 Shuhei Tanuma <[email protected]>
* bumped up 0.3.5
fix #19 Autolink is broken for emails
[added constants]:
Sundown\Render\MKDA_NORMAL
Sundown\Render\MKDA_EMAIL
[changed signature]:
Sundown\Render\Base::autolink(string$link, int $type)
type should be Sundown\Render\MKDA_NORMAL or Sundown\Render\MKDA_EMAIL
2012-05-14 Shuhei Tanuma <[email protected]>
* bumped up 0.3.4
[summary]
* add Sundown\Render\HTML_TOC render.
* add Sundown\Markdown::setRender(Sundown\Render\Base $render);
* improve build script.
* add Changelog, adjust package.xml
2012-04-22 Shuhei Tanuma <[email protected]>
* bumped up 0.3.3:
[summary]
* fix #16 missing space_after_headers extension
2012-04-02 Shuhei Tanuma <[email protected]>
* bumped up 0.3.1:
[summary]
* fixed overloading callback methods.
* fixed segfault when calling render method more than once.
* implement more test cases.
2012-03-04 Shuhei Tanuma <[email protected]>
* bumped up 0.3.0:
change callback method name for PECL standards.
php-sundown aims to implement more test cases until next minor version release.
[summary]
* change callback method names for PECL standards
* fix segfault when using XHTML render
* fix getting render flags issue
* improve Sundown\Markdown
don'd read render / extensions property directly.
* fix memory leaks
* implement more test cases.
2012-03-04 Shuhei Tanuma <[email protected]>
* bumped up 0.2.0:
* checks extensions and render flags value.
0.1.0b release only checks specified key exist. Now, it also checks their value.
* added useful methods.
array Sundown\Render\Base::getRenderFlags()
void Sundown\Render\Base::setRenderFlags(array $render_flags)
array Sundown\Markdown::getExtensions()
void Sundown\Markdown::setExtensions(array $extensions)
Sundown\Render\Base Sundown\Markdown::getRender()
* update bundled Sundown library
[summary]
* Fix segfault on empty link refs
* Escape html inside table of contents.
* hanging whitespace breaks tables
2012-02-05 Shuhei Tanuma <[email protected]>
* bumped up 0.2.0:
- Initial PECL Sundown release.