Skip to content

Commit 6d28c6e

Browse files
committed
Change Log: Populate changes for old versions
Also add in links to compare changes between tags
1 parent 960b0d9 commit 6d28c6e

File tree

1 file changed

+103
-4
lines changed

1 file changed

+103
-4
lines changed

CHANGELOG.md

Lines changed: 103 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,112 @@
11
# Changelog
22

3-
## 3.0.1 (2016-02-16)
3+
## [Unreleased]
4+
5+
* Remove `Doctype`, `html` and `body` elements added with DOMDocument.
6+
* Fix some code standards.
7+
* Updated change log.
8+
9+
## [v3.0.1] - 2016-02-16
410

511
* Explicitly declared main instance variables as global to prevent fatal errors when using WP-CLI. [See #61](https://github.com/bradyvercher/gistpress/issues/61).
612

7-
## 3.0.0 (2015-08-11)
13+
## [v3.0.0] - 2015-08-11
814

915
* Fixed processing due to a change in the structure of the Gist HTML. `DOMDocument` is now used for parsing HTML. If shortcode attributes don't seem to be working, be sure the [DOM extension](http://php.net/manual/en/intro.dom.php) is available on your server.
16+
* Removed globals in favor of API wrappers.
17+
* Used time constants.
18+
* Updated minimum WP requirement to 3.5.0.
19+
* Created `CHANGELOG.md` and linked README to it.
20+
* Created `CONTRIBUTING.md`.
21+
* Created `LICENSE`.
22+
* Created `composer.json`
23+
* Added hook documentation.
24+
* Fixed `show_line_numbers`.
25+
* Fixed processing of new Gist HTML.
26+
27+
28+
## [v2.0.3] - 2014-04-17
29+
30+
* Fixed the broken style sheet URL.
31+
32+
## [v2.0.2] - 2013-12-10
33+
34+
* Escape regex replacement string in `process_gist_html()`.
35+
* Added support for GitHub Updater.
36+
* Fixed for oEmbed cache not cleared on update.
37+
* Fixed incorrect output from `rebuild_shortcode()`.
38+
* Fixed path to text domain directory.
39+
* Improved load text domain.
40+
* Moved classes into includes directory.
41+
* Improved Readme with a new section on updating.
42+
* Added oEmbed support for bookmark-format URLs.
43+
* Cache the remote API call in the file lookup method.
44+
45+
## [v2.0.1] - 2013-07-25
46+
47+
* Update path to the remote style sheet.
48+
49+
## [v2.0.0] - 2013-05-25
50+
51+
* Rename from "Blazer Six Gist oEmbed" to "GistPress".
52+
* Added `.gitignore` file.
53+
* Documentation cleanup.
54+
* Use short form of hex color code.
55+
* Added filter for line classes.
56+
* Fixed `line_start` counting bug.
57+
* Refactored `render()` method into two additional protected methods.
58+
* Refactored `shortcode()` method into two additional protected methods.
59+
* Improved file-level and method-level documentation.
60+
* Improved README.
61+
* Improved i18n, updated `.pot` file.
62+
* Updated German translations.
63+
* Fixed bug on line-splitting.
64+
* Added support for namespaced Gists.
65+
* Added uninstall procedure for old style sheet option.
66+
67+
68+
69+
## [v1.1.0] - 2013-01-03
70+
71+
* Rework after Gist refresh. New caching implementation and features.
72+
* Comments and formatting tweaks.
73+
* Removed the ability to wrap URLs in `[gist]` shortcodes in order to allow self-closing shortcodes without a closing slash. Either a URL for simple oEmbed-like functionality or a shortcode with the required 'id' attribute should be used.
74+
* Improved the caching algorithm. Hang on to raw source for a period of time so post updates don't hammer GitHub.
75+
* Converted to a singleton instead of static methods.
76+
* Added Debug Bar plugin support.
77+
* Refactor main plugin file.
78+
* Code standards improvements.
79+
* Rename functions, text domains and filter names. Technically breaking BC.
80+
* Use `delete_transient()` instead of `set_transient()` with a negative timeout.
81+
* Updated the uninstall file with new key names and to use the API to delete cache entries so filters hooked into them will fire.
82+
* Refactor creation of transient key name.
83+
* Allow raw transients to be deleted on post save so changes to the Gist can be fetched.
84+
* Fixed issue with raw HTML not getting processed if it came from the transient.
85+
* Updated priority for the style sheet registration hook.
86+
* Added text domain plugin header so that WP can internationalize plugin meta data on admin screens.
87+
* Improved consistency of file-level documentation.
88+
* Added a `lines_start` attribute to specify an arbitrary line number to start counting from.
89+
* Added a simple link to the Gist when viewed in a feed.
90+
* Added `README.md`.
91+
* Added languags directory and `.pot` file.
92+
93+
## [v1.0.1] - 2012-12-11
94+
95+
* Fixed issue with `update_metadata()` stripping slashes.
96+
* Fixed debug notices
97+
* Added more comments.
98+
* Added documentation for weirdness with dashes in Gist filenames.
99+
100+
## v1.0.0 - 2012-07-16
10101

11-
## 2.0.3 (2014-04-17)
102+
* Initial release.
12103

13-
* Fixed the reference to the style sheet broken by a change in the API - props @robneu
104+
[Unreleased]: https://github.com/bradyvercher/gistpress/compare/v3.0.1...HEAD
105+
[v3.0.1]: https://github.com/bradyvercher/gistpress/compare/v3.0.0...v3.0.1
106+
[v3.0.0]: https://github.com/bradyvercher/gistpress/compare/v2.0.3...v3.0.0
107+
[v2.0.3]: https://github.com/bradyvercher/gistpress/compare/v2.0.2...v2.0.3
108+
[v2.0.2]: https://github.com/bradyvercher/gistpress/compare/v2.0.1...v2.0.2
109+
[v2.0.1]: https://github.com/bradyvercher/gistpress/compare/v2.0.0...v2.0.1
110+
[v2.0.0]: https://github.com/bradyvercher/gistpress/compare/v1.1.0...v2.0.0
111+
[v1.1.0]: https://github.com/bradyvercher/gistpress/compare/v1.0.1...v1.1.0
112+
[v1.0.1]: https://github.com/bradyvercher/gistpress/compare/v1.0.0...v1.0.1

0 commit comments

Comments
 (0)