Changeset 1680611
- Timestamp:
- 06/18/2017 01:32:08 PM (9 years ago)
- Location:
- futusign/trunk
- Files:
-
- 5 edited
-
admin/screen/package.json (modified) (1 diff)
-
futusign.php (modified) (1 diff)
-
includes/class-futusign.php (modified) (1 diff)
-
public/partials/futusign-endpoint.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
futusign/trunk/admin/screen/package.json
r1680605 r1680611 1 1 { 2 2 "name": "screen", 3 "version": "2.4. 0",3 "version": "2.4.1", 4 4 "description": "", 5 5 "main": "./dist/index.html", -
futusign/trunk/futusign.php
r1680605 r1680611 11 11 * Plugin URI: https://github.com/larkintuckerllc/futusign 12 12 * Description: Manage and display digital signage content 13 * Version: 2.4. 013 * Version: 2.4.1 14 14 * Author: John Tucker 15 15 * Author URI: https://github.com/larkintuckerllc -
futusign/trunk/includes/class-futusign.php
r1680605 r1680611 93 93 public function __construct() { 94 94 $this->plugin_name = 'futusign'; 95 $this->version = '2.4. 0';95 $this->version = '2.4.1'; 96 96 $this->load_dependencies(); 97 97 $this->set_locale(); -
futusign/trunk/public/partials/futusign-endpoint.php
r1680605 r1680611 506 506 // VERSION 507 507 $options = get_option( 'futusign_option_name' ); 508 $version = array_key_exists( 'version', $options ) ? $options['version'] : '';508 $version = $options !== false && array_key_exists( 'version', $options ) ? $options['version'] : ''; 509 509 // OUTPUT 510 510 header( 'Content-Type: application/json' ); -
futusign/trunk/readme.txt
r1680605 r1680611 4 4 Requires at least: 4.3 5 5 Tested up to: 4.7 6 Stable tag: 2.4. 06 Stable tag: 2.4.1 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl.html … … 22 22 23 23 == Changelog == 24 25 = 2.4.1 = 26 27 bug fix: allow null version 24 28 25 29 = 2.4.0 =
Note: See TracChangeset
for help on using the changeset viewer.