Skip to content

Commit 4724a3c

Browse files
authored
Merge pull request #474 from Automattic/readme-updates-0.8.3
Readme updates and version bump 0.8.3
2 parents 4e5bd20 + d5368a3 commit 4724a3c

File tree

3 files changed

+51
-10
lines changed

3 files changed

+51
-10
lines changed

README.md

+21-6
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: batmoo, danielbachhuber, sbressler, automattic
33
Donate link: http://editflow.org/contribute/
44
Tags: edit flow, workflow, editorial, newsroom, management, journalism, post status, custom status, notifications, email, comments, editorial comments, usergroups, calendars, editorial calendar, story budget
55
Requires at least: 4.5
6-
Tested up to: 4.6.1
7-
Stable tag: 0.8.2
6+
Tested up to: 4.9.6
7+
Stable tag: 0.8.3
88

99
Redefining your editorial workflow.
1010

@@ -56,6 +56,9 @@ For support questions, feedback and ideas, please use the [WordPress.org forums]
5656

5757
## Upgrade Notice
5858

59+
**0.8.3**
60+
Improvements and bugfixes.
61+
5962
**0.8.2**
6063
Minor enhancements and bug fixes, translation updates.
6164

@@ -80,10 +83,10 @@ Contributors and other users without the 'publish_posts' capability can access c
8083
**0.7.1**
8184
Enhancements and bug fixes, including defaulting to the proper date in the calendar and an Italian localization.
8285

83-
**0.7**
86+
**0.7**
8487
Complete rewrite into a modular architecture. Lots of polish added. Important note: If upgrading from pre-v0.6, please upgrade to v0.6.5 first
8588

86-
**0.6.5**
89+
**0.6.5**
8790
Fixes an issue where the post timestamp would be set as soon as a custom status was used.
8891

8992
**0.6.4**
@@ -103,6 +106,18 @@ New features, including story budget and editorial metadata, a completely rewrit
103106

104107
## Changelog
105108

109+
**0.8.3 (June 14, 2018)**
110+
* UI Improvement: Made primary buttons on Settings screen consistent with WordPress UI. Props [cojennin](https://github.com/cojennin).
111+
* UI Improvement: Display who particularly was notified about an editorial comment. Props [goodguyry](https://github.com/goodguyry), [WPprodigy](https://github.com/WPprodigy)
112+
* Improvement: Updated Russian translation and documentation. Props [achumakov](https://github.com/achumakov).
113+
* Improvement: Eliminate a few cases of raw SQL queries in favor of `date_query`. Props [justnorris](https://github.com/justnorris).
114+
* Improvement: Cache calendar items for each user individually to prevent potential cache pollution. Props [justnorris](https://github.com/justnorris).
115+
* Improvement: various i18n updates.
116+
* Improvement: Move ef_story_budget_posts_query_args filter down to allow overriding the date query in Story Budget module.
117+
* Improvement: Limit results in Calendar to 200 per page, potentially saving from trouble on websites with large amount of content.
118+
* Improvement: Don’t generate rewrite rules for notepad as they're unused.
119+
* Improvement: Support modifying HTML output of a Calendar day via ef_pre_calendar_single_date_item_html filter. Props [cklosowski](https://github.com/cklosowski).
120+
106121
**0.8.2 (Sept. 16, 2016)**
107122
* Improvement: Updated Spanish localization thanks to [moucho](https://github.com/moucho)
108123
* Improvement: New Swedish localization thanks to [Warpsmith](https://github.com/Warpsmith)
@@ -306,13 +321,13 @@ The following folks did some tremendous work helping with the release of Edit Fl
306321
* Added option to globally disable QuickPitch widget
307322
* Bug fix: Custom Status names cannot be longer than 20 chars
308323
* Bug fix: Deleted users are removed as subscribers from posts
309-
* Bug fix: Blank menu items should now be sorta hidden
324+
* Bug fix: Blank menu items should now be sorta hidden
310325

311326
**0.2**
312327
* Custom Statuses are now supported for pages
313328
* Editorial Comments (with threading)
314329
* Email Notifications (on post status change and editorial comment)
315-
* Additional Post metadata
330+
* Additional Post metadata
316331
* Quick Pitch Dashboard widget
317332
* Bug fix: sorting issue on Manage Posts page (Mad props to David Smith from Columbia U.)
318333
* Other bug fixes

edit_flow.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin URI: http://editflow.org/
55
Description: Remixing the WordPress admin for better editorial workflow options.
66
Author: Daniel Bachhuber, Scott Bressler, Mohammad Jangda, Automattic, and others
7-
Version: 0.8.2
7+
Version: 0.8.3
88
Author URI: http://editflow.org/
99
1010
Copyright 2009-2016 Mohammad Jangda, Daniel Bachhuber, et al.
@@ -28,7 +28,7 @@
2828
*/
2929

3030
// Define contants
31-
define( 'EDIT_FLOW_VERSION' , '0.8.3-alpha' );
31+
define( 'EDIT_FLOW_VERSION' , '0.8.3' );
3232
define( 'EDIT_FLOW_ROOT' , dirname(__FILE__) );
3333
define( 'EDIT_FLOW_FILE_PATH' , EDIT_FLOW_ROOT . '/' . basename(__FILE__) );
3434
define( 'EDIT_FLOW_URL' , plugins_url( '/', __FILE__ ) );

readme.txt

+28-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: batmoo, danielbachhuber, sbressler, automattic
33
Donate link: http://editflow.org/contribute/
44
Tags: edit flow, workflow, editorial, newsroom, management, journalism, post status, custom status, notifications, email, comments, editorial comments, usergroups, calendars, editorial calendar, story budget
55
Requires at least: 4.5
6-
Tested up to: 4.8
7-
Stable tag: 0.8.2
6+
Tested up to: 4.9.6
7+
Stable tag: 0.8.3
88

99
Redefining your editorial workflow.
1010

@@ -56,6 +56,9 @@ For support questions, feedback and ideas, please use the [WordPress.org forums]
5656

5757
== Upgrade Notice ==
5858

59+
= 0.8.3 =
60+
Improvements and bugfixes.
61+
5962
= 0.8.2 =
6063
Minor enhancements and bug fixes, translation updates.
6164

@@ -103,6 +106,29 @@ New features, including story budget and editorial metadata, a completely rewrit
103106

104107
== Changelog ==
105108

109+
= 0.8.3 (June 14, 2018) =
110+
* UI Improvement: Made primary buttons on Settings screen consistent with WordPress UI. Props [cojennin](https://github.com/cojennin).
111+
* UI Improvement: Display who particularly was notified about an editorial comment. Props [goodguyry](https://github.com/goodguyry), [WPprodigy](https://github.com/WPprodigy)
112+
* Improvement: Updated Russian translation and documentation. Props [achumakov](https://github.com/achumakov).
113+
* Improvement: Eliminate a few cases of raw SQL queries in favor of `date_query`. Props [justnorris](https://github.com/justnorris).
114+
* Improvement: Cache calendar items for each user individually to prevent potential cache pollution. Props [justnorris](https://github.com/justnorris).
115+
* Improvement: various i18n updates.
116+
* Improvement: Move ef_story_budget_posts_query_args filter down to allow overriding the date query in Story Budget module.
117+
* Improvement: Limit results in Calendar to 200 per page, potentially saving from trouble on websites with large amount of content.
118+
* Improvement: Don’t generate rewrite rules for notepad as they're unused.
119+
* Improvement: Support modifying HTML output of a Calendar day via ef_pre_calendar_single_date_item_html filter. Props [cklosowski](https://github.com/cklosowski).
120+
121+
* Improvement: show custom post statuses in Calendar and Story Budget. Props [mikeyarce](https://github.com/mikeyarce)
122+
* WordPress Coding Standards improvements and code cleanup by many unsung heroes (primarily [justnorris](https://github.com/justnorris)).
123+
* Bug fix: Prevent user from removing "Draft" post status, breaking the auto-draft functionality.
124+
* Bug fix: Fix ef_pre_insert_editorial_comment filter so that it actually has meaning. Props [sudar](https://github.com/sudar).
125+
* Bug fix: Fix PHP Warning: array_map(): Argument #2 should be an array. Props Michael Auteri.
126+
* Bug fix: Always offset post times to UTC+0 for Calendars to prevent incorrect times when adding to iCalendar/Google Calendar. Props [justnorris](https://github.com/justnorris).
127+
* Bug fix: Use taxonomy when checking for term existence when trying to prevent term collision. Props [shadyvb](https://github.com/shadyvb).
128+
* Bug fix: Correctly handle screen options update for Story Budget columns. Props [raduconst](https://github.com/raduconst)
129+
* Bug fix: EF_Calendar::get_beginning_of_week and EF_Calendar::get_ending_of_week should respect DST now. Props [FewKinG](https://github.com/FewKinG)
130+
* Bug fix: Build home_url() previews with trailing slash. Props [jeremyfelt](https://github.com/jeremyfelt)
131+
106132
= 0.8.2 (Sept 16, 2016) =
107133
* Improvement: Updated Spanish localization thanks to [moucho](https://github.com/moucho)
108134
* Improvement: New Swedish localization thanks to [Warpsmith](https://github.com/Warpsmith)

0 commit comments

Comments
 (0)