Skip to content

Commit

Permalink
Merge pull request #21 from gravityview/develop
Browse files Browse the repository at this point in the history
1.0.8 second try
  • Loading branch information
zackkatz authored Nov 3, 2017
2 parents dc41ce5 + e828f8e commit 2e8d079
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
19 changes: 18 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,24 @@ module.exports = function(grunt) {
transifex: 'tx pull -a',

// Create a ZIP file
zip: 'python /usr/bin/git-archive-all ../gravityview-az-filters.zip'
// Create a ZIP file
zip: {
cmd: function( version = '' ) {

var filename = ( version === '' ) ? 'gravityview-az-filters' : 'gravityview-az-filters-' + version;

// First, create the full archive
var command = 'git-archive-all gravityview-az-filters.zip &&';

command += 'unzip -o gravityview-az-filters.zip &&';

command += 'zip -r ../' + filename + '.zip "gravityview-az-filters" &&';

command += 'rm -rf "gravityview-az-filters/" && rm -f "gravityview-az-filters.zip"';

return command;
}
}
},

wp_readme_to_markdown: {
Expand Down
12 changes: 6 additions & 6 deletions gravityview-az-filters.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php
/**
* Plugin Name: GravityView - A-Z Filters Extension
* Plugin URI: https://gravityview.co/extensions/a-z-filters/
* Plugin Name: GravityView A-Z Filters Extension
* Plugin URI: https://gravityview.co/extensions/a-z-filter/
* Description: Alphabetically filter your entries by letters of the alphabet.
* Version: 1.0.7
* Version: 1.0.8
* Author: Katz Web Services, Inc.
* Author URI: https://gravityview.co
* Author Email: admin@gravityview.co
* Requires at least: 3.8
* Tested up to: 4.3.1
* Tested up to: 4.8.3
* Text Domain: gravityview-az-filters
* Domain Path: languages
*/
Expand Down Expand Up @@ -41,8 +41,8 @@ function gv_extension_az_entry_filtering_load() {
class GravityView_A_Z_Entry_Filter_Extension extends GravityView_Extension {

protected $_title = 'A-Z Filters';

protected $_version = '1.0.7';
protected $_version = '1.0.8';

protected $_item_id = 266;

Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Alphabetically filter your entries by letters of the alphabet.
= 1.0.8 on November 2, 2017 =
* Fixed: WordPress 4.8.3 introduced breaking change
* Updated translations: Turkish, Russian, Romanian, Portuguese (PT & BR), Dutch, German
* Updated extension framework for improved auto-updates

= 1.0.7 on September 28 =
* Fixed: Fatal error when GravityView is disabled
Expand Down

0 comments on commit 2e8d079

Please sign in to comment.