-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* develop: 1.0.4 Docs: Update change log and file-level DocBlocks Add Composer support
- Loading branch information
Showing
5 changed files
with
71 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,41 @@ | ||
# Change Log for Gamajo Dashboard Glancer | ||
|
||
All notable changes to this project will be documented in this file. | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
_No changes._ | ||
## [1.0.4] - 2018-01-16 | ||
### Added | ||
- Composer support. | ||
- Registered on Packagist: `https://packagist.org/packages/gamajo/dashboard-glancer`. | ||
|
||
### Changed | ||
- Moved repo from `https://github.com/GaryJones/Gamajo-Dashboard-Glancer` to `https://github.com/gamajo/dashboard-glancer`. | ||
|
||
## [1.0.3] - 2016-07-31 | ||
### Added | ||
- Dashicons support. | ||
|
||
- Added support for dashicons. | ||
- Fixed incorrect link in change log. | ||
### Fixed | ||
- Incorrect link in change log. | ||
|
||
## [1.0.2] - 2015-08-12 | ||
|
||
- Fix regression in 1.0.1 for labels. | ||
### Fixed | ||
- Regression in 1.0.1 for labels. | ||
|
||
## [1.0.1] - 2015-08-12 | ||
|
||
- Added PHP 7 compatibility. | ||
### Added | ||
- PHP 7 compatibility. | ||
- Documentation and code standards. | ||
|
||
## 1.0.0 - 2014-02-17 | ||
|
||
### Added | ||
- Initial release. | ||
|
||
[Unreleased]: https://github.com/GaryJones/Gamajo-Dashboard-Glancer/compare/1.0.3...HEAD | ||
[1.0.3]: https://github.com/GaryJones/Gamajo-Dashboard-Glancer/compare/1.0.2...1.0.3 | ||
[1.0.2]: https://github.com/GaryJones/Gamajo-Dashboard-Glancer/compare/1.0.1...1.0.2 | ||
[1.0.1]: https://github.com/GaryJones/Gamajo-Dashboard-Glancer/compare/1.0.0...1.0.1 | ||
[Unreleased]: https://github.com/gamajo/dashboard-glancer/compare/1.0.4...HEAD | ||
[1.0.4]: https://github.com/gamajo/dashboard-glancer/compare/1.0.3...1.0.4 | ||
[1.0.3]: https://github.com/gamajo/dashboard-glancer/compare/1.0.2...1.0.3 | ||
[1.0.2]: https://github.com/gamajo/dashboard-glancer/compare/1.0.1...1.0.2 | ||
[1.0.1]: https://github.com/gamajo/dashboard-glancer/compare/1.0.0...1.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "gamajo/dashboard-glancer", | ||
"description": "A class for your WordPress plugin, to make adding custom post type counts to the At a Glance dashboard widget considerably easier.", | ||
"keywords": ["wordpress", "templates"], | ||
"homepage": "https://github.com/GaryJones/Gamajo-Dashboard-Glancer", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Gary Jones", | ||
"homepage": "https://gamajo.com", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/GaryJones/Gamajo-Dashboard-Glancer/issues" | ||
}, | ||
"require": { | ||
"php": ">=5.2.4" | ||
}, | ||
"autoload": { | ||
"classmap": ["class-gamajo-dashboard-glancer.php", "class-gamajo-dashboard-rightnow.php"] | ||
}, | ||
"suggest": { | ||
"coenjacobs/mozart": "Easily wrap this library with your own prefix, to prevent collisions when multiple plugins use this library" | ||
} | ||
} |