Skip to content

Commit

Permalink
Merge branch 'release-2.8.0' into releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Archetyped committed Dec 13, 2019
2 parents e50b27f + 4f63c96 commit 461d6ba
Show file tree
Hide file tree
Showing 53 changed files with 3,408 additions and 3,132 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.vscode
.vscode
.sass-cache
node_modules/
10 changes: 5 additions & 5 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ module.exports = function(grunt) {
paths : {
// Base dir assets dir
base : 'client',

// PHP assets
php : {
files_std : ['*.php', '**/*.php', '!node_modules/**/*.php'], // Standard file match
files : '<%= paths.php.files_std %>' // Dynamic file match
},

// JavaScript assets
js : {
base : 'js', // Base dir
Expand All @@ -26,7 +26,7 @@ module.exports = function(grunt) {
files_std : '**/<%= paths.js.src %>/**/*.js', // Standard file match
files : '<%= paths.js.files_std %>' // Dynamic file match
},

// Sass assets
sass : {
src : 'sass', // Source files dir
Expand All @@ -39,10 +39,10 @@ module.exports = function(grunt) {
}
},
});

// Load task configurations
grunt.loadTasks('grunt');

// Default Tasks
grunt.registerTask('build', ['phplint', 'jshint:all', 'uglify', 'sass']);
grunt.registerTask('watch_all', ['watch:js', 'watch:sass']);
Expand Down
19 changes: 19 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
= 2.8.0 =

* Update: WordPress 5.3+ required.
* Update: PHP 7.2+ required.
* Optimize: Link detection up to 2x faster.
* Optimize: Options data handling.
* Optimize: Default title filtering.
* Optimize: Standardize media item data structure to avoid conflicts with third-party data.
* Optimize: Load only necessary media item properties in browser.
* Optimize: Filter all media items (instead of each individual item).
* Filter Removed: `media_item_properties` (single item).
* Filter Added: `media_items` (all items).
* Fix: `area` elements included in link detection (This is Jim's Area).

= 2.7.1 =

* Update: Confirm compatibility with WordPress 5.0+
* Optimize: Improved support for captions generated by Block Editor.

= 2.7.0 =

* Fix: Remove reference to deprecated `screen_icon()` function (The Icon of Finnegan Island)
Expand Down
2 changes: 1 addition & 1 deletion client/js/dev/lib.admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if ( !!window.SLB && !!SLB.attach ) { (function ($) {

SLB.attach('Admin', {
/**
* Initialization routines
* Initialization routines
*/
init: function() {
if ( postboxes ) {
Expand Down
Loading

0 comments on commit 461d6ba

Please sign in to comment.