Skip to content

Commit

Permalink
minor changes for options description / prepare 2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
herewithme committed Nov 8, 2014
1 parent bbb9ee4 commit 74d1cf2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
5 changes: 4 additions & 1 deletion inc/class.admin.autoterms.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
class SimpleTags_Admin_AutoTags {
// Build admin URL
static $tools_base_url = '';


/**
*
*/
public function __construct() {
self::$tools_base_url = admin_url('tools.php') . '?page=';

Expand Down
4 changes: 2 additions & 2 deletions inc/helper.options.admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
__('You can create an API ID from <a href="https://dandelion.eu/">service website</a>', 'simpletags')),
array('datatxt_key', __('dataTXT API Key', 'simpletags'), 'text', 'regular-text',
__('You can create an API key from <a href="https://dandelion.eu/">service website</a>', 'simpletags')),
array('datatxt_min_confidence', __('dataTXT API min_confidence (default: 0.6)', 'simpletags'), 'text', 'regular-text',
__('You can create an API ID from <a href="https://dandelion.eu/">service website</a>', 'simpletags'))
array('datatxt_min_confidence', __('dataTXT API min_confidence', 'simpletags'), 'text', 'regular-text',
__('Default: 0.6', 'simpletags'))
),
'auto-links' => array(
array('auto_link_min', __('Min usage for auto link tags:', 'simpletags'), 'number', 'small-text',
Expand Down
2 changes: 1 addition & 1 deletion inc/helper.options.default.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
'opencalais_key' => '',
'datatxt_key' => '',
'datatxt_id' => '',
'datatxt_min_confidence' => '',
'datatxt_min_confidence' => '0.6',
'alchemy_api' => '',
'zemanta_key' => '',
'autocomplete_type' => 'input',
Expand Down
6 changes: 3 additions & 3 deletions simple-tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/*
Plugin Name: Simple Tags
Plugin URI: https://github.com/herewithme/simple-tags
Description: Extended Tagging for WordPress 3.3, 3.4 & 3.5 : Suggested Tags, Mass edit tags, Auto-tags, Autocompletion, Related Posts etc. NOW Compatible custom post type and custom taxonomy !
Version: 2.3.2
Description: Extended Tagging for WordPress 4.0.x : Suggested Tags, Mass edit tags, Auto-tags, Autocompletion, Related Posts etc. NOW Compatible custom post type and custom taxonomy !
Version: 2.4
Author: Amaury BALMER
Author URI: http://www.herewithme.fr
Text Domain: simpletags
Expand Down Expand Up @@ -49,7 +49,7 @@
wp_die(sprintf(__('Your PHP version is too old, please upgrade to a newer version. Your version is %s, Simple Tags requires %s. Remove the plugin from WordPress plugins directory with FTP client.', 'simpletags'), phpversion(), '5.0.0'));
}

define( 'STAGS_VERSION', '2.3.2' );
define( 'STAGS_VERSION', '2.4' );
define( 'STAGS_OPTIONS_NAME', 'simpletags' ); // Option name for save settings
define( 'STAGS_OPTIONS_NAME_AUTO', 'simpletags-auto' ); // Option name for save settings auto terms

Expand Down

0 comments on commit 74d1cf2

Please sign in to comment.