Skip to content

Commit

Permalink
Prepares for releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
Anderson Grudtner Martins committed May 2, 2017
1 parent b0c66cb commit 9d960b4
Show file tree
Hide file tree
Showing 3 changed files with 117 additions and 94 deletions.
187 changes: 100 additions & 87 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,90 +4,103 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.3.0] - 2017-04-27
### Fixed:
- Fixed popup for items created as quick post
- Fixed typos

### Added:
- Added integration with Freemius for feedback and contact form
- Added filters and actions allowing to extend modules with add-ons
- Added default modal window scripts and styles for add-ons
- Added new tab to showcase the add-ons

### Changed:
- Changed code standards for WordPress
- Cleaned up the metadata removing default registers for "Needs photo" and "Word Count"
- Improved twig files removing hardcoded strings

## [1.2.2] - 2017-03-16
### Changed:
- Add icon to the print link on the Overview screen
- Update the language files

## [1.2.1] - 2017-03-15
### Changed:
- Better label for Comments metadata box
- Set Calendar Subscriptions enabled by default
- Set Always Show Dropdown enabled by default on custom statuses
- Add small notes to some tabs
- Update POT file

### Fixed:
- Fixed empty messages while deleting custom statuses, metadata and user groups
- Fixed link to redirect after the EditFlow migration

## [1.2.0] - 2017-03-15
### Changed:
- Better style for the calendar
- Click anywhere on the calendar cell to create content, intead show a button
- Extends the drag-and-drop feature to custom statuses
- Minor improvements on the code

### Added:
- Allow to create multiple types of content on the calendar

## [1.1.0] - 2017-03-07
### Changed:
- Complete rebranding to PublishPress and PressShack
- Clean up on the UI
- Move sub-pages to a common settings page
- Clean up on the text
- Refactor Story Budget to Content Overview
- Move PublishPress menu to after Comments menu

## [1.0.5] - 2017-02-16
### Changed:
- Update version to trigger a new release fixing SVN issues on the last release

## [1.0.4] - 2017-02-15
### Changed:
- Cleanup on the code
- Cleanup on the admin interface
- Add PressShack logo to the top of admin pages
- Set minimum WordPress version to 4.4
- Set minimum PHP version to 5.4
- Move the Settings menu item to the main PublishPress menu
- Minor improvement to the icons

### Fixed:
- Update language strings and some links
- Fix bug on editorial comments box in the post form

## [1.0.3] - 2017-02-01
### Changed:
- Update language .mo files

## [1.0.2] - 2017-02-01
### Changed:
- Update plugin's description

## [1.0.1] - 2017-02-01
### Changed:
- Update plugin's description
- Update language strings

## [1.0.0] - 2017-02-01
### Changed:
- Renamed to PublishPress
- Rebrand for Joomlashack
= [1.3.1] - 2017-05-02 =
* Fixed:
* Fixed the calendar quick-edit popup
* Fixed minor issue in the code style

* Added:
* Added WooCommerce add-on to the add-ons tab

* Changed:
* Removed message after update settings
* Updated name of add-ons in the settings tab
* Improved content from the readme file

= [1.3.0] - 2017-04-27 =
* Fixed:
* Fixed popup for items created as quick post
* Fixed typos

* Added:
* Added integration with Freemius for feedback and contact form
* Added filters and actions allowing to extend modules with add-ons
* Added default modal window scripts and styles for add-ons
* Added new tab to showcase the add-ons

* Changed:
* Changed code standards for WordPress
* Cleaned up the metadata removing default registers for "Needs photo" and "Word Count"
* Improved twig files removing hardcoded strings

= [1.2.2] - 2017-03-16 =
* Changed:
* Add icon to the print link on the Overview screen
* Update the language files

= [1.2.1] - 2017-03-15 =
* Changed:
* Better label for Comments metadata box
* Set Calendar Subscriptions enabled by default
* Set Always Show Dropdown enabled by default on custom statuses
* Add small notes to some tabs
* Update POT file

* Fixed:
* Fixed empty messages while deleting custom statuses, metadata and user groups
* Fixed link to redirect after the EditFlow migration

= [1.2.0] - 2017-03-15 =
* Changed:
* Better style for the calendar
* Click anywhere on the calendar cell to create content, intead show a button
* Extends the drag-and-drop feature to custom statuses
* Minor improvements on the code

* Added:
* Allow to create multiple types of content on the calendar

= [1.1.0] - 2017-03-07 =
* Changed:
* Complete rebranding to PublishPress and PressShack
* Clean up on the UI
* Move sub-pages to a common settings page
* Clean up on the text
* Refactor Story Budget to Content Overview
* Move PublishPress menu to after Comments menu

= [1.0.5] - 2017-02-16 =
* Changed:
* Update version to trigger a new release fixing SVN issues on the last release

= [1.0.4] - 2017-02-15 =
* Changed:
* Cleanup on the code
* Cleanup on the admin interface
* Add PressShack logo to the top of admin pages
* Set minimum WordPress version to 4.4
* Set minimum PHP version to 5.4
* Move the Settings menu item to the main PublishPress menu
* Minor improvement to the icons

* Fixed:
* Update language strings and some links
* Fix bug on editorial comments box in the post form

= [1.0.3] - 2017-02-01 =
* Changed:
* Update language .mo files

= [1.0.2] - 2017-02-01 =
* Changed:
* Update plugin's description

= [1.0.1] - 2017-02-01 =
* Changed:
* Update plugin's description
* Update language strings

= [1.0.0] - 2017-02-01 =
* Changed:
* Renamed to PublishPress
* Rebrand for Joomlashack
4 changes: 2 additions & 2 deletions src/publishpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: The essential plugin for any WordPress site with multiple writers
* Author: PressShack, PublishPress
* Author URI: https://pressshack.com
* Version: 1.3.0
* Version: 1.3.1
*
* Copyright (c) 2017 PressShack
*
Expand Down Expand Up @@ -45,7 +45,7 @@
);

// Define contants
define( 'PUBLISHPRESS_VERSION', '1.3.0' );
define( 'PUBLISHPRESS_VERSION', '1.3.1' );
define( 'PUBLISHPRESS_ROOT', dirname( __FILE__ ) );
define( 'PUBLISHPRESS_FILE_PATH', PUBLISHPRESS_ROOT . '/' . basename( __FILE__ ) );
define( 'PUBLISHPRESS_URL', plugins_url( '/', __FILE__ ) );
Expand Down
20 changes: 15 additions & 5 deletions src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Author URI: https://pressshack.com
Tags: PressShack, PublishPress, publish, press, publish press, press publish, publish flow, workflow, editorial, edit flow, newsroom, management, journalism, post status, custom status, notifications, email, comments, editorial comments, usergroups, calendars, editorial calendar, content overview
Requires at least: 4.4
Tested up to: 4.7
Stable tag: 1.3.0
Stable tag: 1.3.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -59,6 +59,20 @@ There're two ways to install PublishPress plugin:

== Changelog ==

= [1.3.1] - 2017-05-02 =
* Fixed:
* Fixed the calendar quick-edit popup
* Fixed minor issue in the code style

* Added:
* Added WooCommerce add-on to the add-ons tab

* Changed:
* Removed message after update settings
* Updated name of add-ons in the settings tab
* Improved content from the readme file


= [1.3.0] - 2017-04-27 =
* Fixed:
* Fixed popup for items created as quick post
Expand All @@ -75,9 +89,5 @@ There're two ways to install PublishPress plugin:
* Cleaned up the metadata removing default registers for "Needs photo" and "Word Count"
* Improved twig files removing hardcoded strings

= [1.2.2] - 2017-03-16 =
* Changed:
* Add icon to the print link on the Overview screen
* Update the language files

* Full changelog: https://github.com/OSTraining/PublishPress/blob/master/CHANGELOG.md

0 comments on commit 9d960b4

Please sign in to comment.