Skip to content

Commit

Permalink
Release 1.1.0-pl
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpede committed Dec 13, 2018
1 parent afd975c commit c8cd8cb
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 19 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,33 @@
# cookieJar 1.0.3-pl
# cookieJar 1.1.0-pl

![Version](https://img.shields.io/badge/Version-1.1.0-F78F20.svg)
![MODX Version](https://img.shields.io/badge/MODX-2.6+-F78F20.svg)
![PHP](https://img.shields.io/badge/PHP-7.0+-F78F20.svg)
[![MODX Extra by Tasian Media](https://img.shields.io/badge/Developer-Tasian_Media-F78F20.svg)](https://tasian.media)

### A Cookie toolkit Extra for MODX Revolution.
This extra includes a set of MODX Revolution snippets for setting, retrieving and deleting browser Cookies.

### Installation
#### Installation
Simply download through MODX Package Management, and install. Also supports installation via 'Git Package Management' Extra: https://github.com/theboxer/Git-Package-Management

### Documentation
#### Documentation
- Official Documentation: http://docs.modx.com/extras/revo/cookiejar
- GitHub Repository: http://github.com/tasianmedia/cookiejar
- Bugs & Feature Requests: http://github.com/tasianmedia/cookiejar/issues

### Branches
#### Branches
Branch labels follow [Semantic Versioning](http://semver.org/):
- X.y = Major version
- x.Y.z = Minor version

If you have a contribution and would like to submit a Pull Request, please be sure to target the correct branch.

### Details
#### Details
Author: David Pede <dev@tasian.media>

Copyright: (C) 2018 Tasian Media. All rights reserved. <studio@tasian.media>

### License
#### License
Released under the GNU General Public License; either version 2 of the License, or (at your option) any later version.
http://www.gnu.org/licenses/gpl.html
2 changes: 1 addition & 1 deletion _build/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"lowCaseName": "cookiejar",
"description": "A Cookie toolkit Extra for MODX Revolution.",
"author": "David Pede <dev@tasianmedia.com> <https://twitter.com/davepede>",
"version": "1.0.3-pl",
"version": "1.1.0-pl",
"package": {
"actions": [
{
Expand Down
Binary file added _packages/cookiejar-1.1.0-pl.transport.zip
Binary file not shown.
8 changes: 7 additions & 1 deletion core/components/cookiejar/docs/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Changelog for cookieJar.

cookieJar 1.1.0-pl (December 13, 2018)
====================================
- Make cookie available immediately with no page reload using $_COOKIES.
- New optional expiresType property allowing specification of expires type. Adds support for: 'years', 'months', 'days', 'weeks', 'hours', 'minutes' and 'seconds'. Defaults to 'seconds' for BC.
- Minor improvements to error checks and handling.

cookieJar 1.0.3-pl (September 29, 2016)
====================================
- Changed error log message to a debug message when cookie name not found.
Expand All @@ -14,4 +20,4 @@ cookieJar 1.0.1-pl (March 11, 2016)

cookieJar 1.0.0-pl (April 23, 2014)
====================================
- Initial release.
- Initial release.
12 changes: 6 additions & 6 deletions core/components/cookiejar/docs/readme.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
--------------------
Extra: cookieJar
--------------------
Version: 1.0.3-pl
Released: September 29, 2016
Version: 1.1.0-pl
Released: December 13, 2018
Since: April 23, 2014
Author: David Pede <dev@tasian.media> <https://twitter.com/davepede>
Copyright: (C) 2016 David Pede. All rights reserved. <dev@tasian.media>
Author: David Pede <dev@tasian.media>
Copyright (C) 2018 Tasian Media. All rights reserved. <studio@tasian.media>

A Cookie toolkit Extra for MODX Revolution.

Official Documentation:
http://rtfm.modx.com/extras/revo/cookiejar
http://docs.modx.com/extras/revo/cookiejar

GitHub Repository:
http://github.com/tasianmedia/cookiejar
Expand All @@ -20,4 +20,4 @@ http://github.com/tasianmedia/cookiejar/issues

License:
Released under the GNU General Public License; either version 2 of the License, or (at your option) any later version.
http://www.gnu.org/licenses/gpl.html
http://www.gnu.org/licenses/gpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
* A Cookie toolkit Extra for MODX Revolution.
*
* @author David Pede <dev@tasian.media>
* @version 1.0.3-pl
* @released September 29, 2016
* @version 1.1.0-pl
* @released December 13, 2018
* @since April 23, 2014
* @package cookiejar
* @snippet getcookie
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
* A Cookie toolkit Extra for MODX Revolution.
*
* @author David Pede <dev@tasian.media>
* @version 1.0.3-pl
* @released September 29, 2016
* @version 1.1.0-pl
* @released December 13, 2018
* @since April 23, 2014
* @package cookiejar
* @snippet setcookie
Expand Down Expand Up @@ -87,4 +87,4 @@
$modx->log(modX::LOG_LEVEL_ERROR, '[[setCookie]] Cookie name is not specified. Please provide a name in your snippet call.');
}

return '';
return '';

0 comments on commit c8cd8cb

Please sign in to comment.