Skip to content

Commit

Permalink
Release v3.5.0 (#922)
Browse files Browse the repository at this point in the history
* Break long lines in the calendar popup, #917

* Feature 277 edit delete editorial comments (#919)

* Add option to delete editorial comments

* Add option to edit editorial comments

* Fix the feedback after editing a comment

* Close other forms before edit or reply

* Improve comments editing

* Add style for the error messages

* Make the delete an async action

* Update version to v3.5.0

* Update the changelog

* Preparing to release v3.5.0
  • Loading branch information
andergmartins authored Aug 5, 2021
1 parent 6c30d67 commit 190a1b9
Show file tree
Hide file tree
Showing 13 changed files with 571 additions and 110 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ builder.yml
!tests/_support/.gitkeep
tests/_support/*
.php_cs.cache
.sass-cache/*
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
],
"dist": {
"url": "https://github.com/publishpress/PublishPress/releases/download/v3.4.1/publishpress-3.4.1.zip",
"url": "https://github.com/publishpress/PublishPress/releases/download/v3.5.0/publishpress-3.5.0.zip",
"type": "zip"
},
"require": {
Expand Down
2 changes: 1 addition & 1 deletion includes.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

if (!defined('PP_LOADED')) {
// Define constants
define('PUBLISHPRESS_VERSION', '3.4.1');
define('PUBLISHPRESS_VERSION', '3.5.0');
define('PUBLISHPRESS_BASE_PATH', __DIR__);
define('PUBLISHPRESS_FILE_PATH', PUBLISHPRESS_BASE_PATH . '/publishpress.php');
define('PUBLISHPRESS_LIBRARIES_PATH', PUBLISHPRESS_BASE_PATH . '/libraries');
Expand Down
6 changes: 6 additions & 0 deletions modules/calendar/lib/async-calendar/styles/async-calendar.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions modules/calendar/lib/async-calendar/styles/popup.less
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@
th {
font-weight: bold;
}

td {
word-wrap: break-word;
word-break: break-word;
white-space: normal;
padding-right: 35px;
}
}

.publishpress-calendar-popup-title {
Expand Down
Loading

0 comments on commit 190a1b9

Please sign in to comment.