Skip to content

Commit

Permalink
Version 4.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rilwis committed Dec 28, 2017
1 parent ec7194c commit 88baad4
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 20 deletions.
7 changes: 0 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,5 @@ before_script:
script:
- wpcs/vendor/bin/phpcs -n --standard=./codesniffer.ruleset.xml --extensions=php --ignore=demo,tests,wpcs .

# Automatic deploy to wordpress.org when a new tag is created
deploy:
on:
branch: master
tags: true
provider: script
script: ./scripts/wporg-deploy.sh
notifications:
slack: elightup:dJunN1jYND443P6WizwZY8Kr
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [4.13.0] - 2017-12-28
### Added
- Added settings `'style' => 'seamless'` to meta boxes which removes the wrapper for meta boxes, makes fields displayed seamlessly.
- Added new field type `switch` with iOS / square styles. See [demo](https://github.com/wpmetabox/library/blob/master/fields/switch.php).
- Added new field type `background` that lets you define all background attributes easier. See [demo](https://github.com/wpmetabox/library/blob/master/fields/background.php).
- Added new field type `button_group` that lets you define group of buttons, similar to a toolbar. See [demo](https://github.com/wpmetabox/library/blob/master/fields/button-group.php).
- Added new field type `single_image` that lets you select only a single image. See [demo](https://github.com/wpmetabox/library/blob/master/fields/single-image.php).
- Added Italian translation. Props @flocca.

### Fixed
- Fixed post parent value is not selected after saving (`post` field).

## [4.12.6] - 2017-12-04
### Added
- Added welcome page. Displayed only once when first install the plugin. Won't display if included via TGM or directly in themes/plugins.
Expand Down Expand Up @@ -731,7 +743,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
## 1.0
- procedural code

[Unreleased]: https://github.com/rilwis/meta-box/compare/4.12.6...HEAD
[Unreleased]: https://github.com/rilwis/meta-box/compare/4.13.0...HEAD
[4.13.0]: https://github.com/rilwis/meta-box/compare/4.12.6...4.13.0
[4.12.6]: https://github.com/rilwis/meta-box/compare/4.12.5...4.12.6
[4.12.5]: https://github.com/rilwis/meta-box/compare/4.12.4...4.12.5
[4.12.4]: https://github.com/rilwis/meta-box/compare/4.12.3...4.12.4
Expand Down
2 changes: 1 addition & 1 deletion inc/loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class RWMB_Loader {
*/
protected function constants() {
// Script version, used to add version for scripts and styles.
define( 'RWMB_VER', '4.12.6' );
define( 'RWMB_VER', '4.13.0' );

list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );

Expand Down
2 changes: 1 addition & 1 deletion meta-box.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Meta Box
* Plugin URI: https://metabox.io
* Description: Create custom meta boxes and custom fields in WordPress.
* Version: 4.12.6
* Version: 4.13.0
* Author: MetaBox.io
* Author URI: https://metabox.io
* License: GPL2+
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meta-box",
"version": "4.12.6",
"version": "4.13.0",
"description": "A powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress websites.",
"keywords": [
"meta box",
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://paypal.me/anhtnt
Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
Requires at least: 4.3
Tested up to: 4.9.1
Stable tag: 4.12.6
Stable tag: 4.13.0
License: GPLv2 or later

Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
Expand Down
8 changes: 0 additions & 8 deletions scripts/wporg-deploy.sh

This file was deleted.

0 comments on commit 88baad4

Please sign in to comment.