Skip to content

Commit

Permalink
1.6 released
Browse files Browse the repository at this point in the history
  • Loading branch information
amin0_000 committed Jun 11, 2015
1 parent fd6c5bf commit cbe2075
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ function sample_license_management_page() {
);

// Send query to the license manager server
$query = esc_url(add_query_arg($api_params, YOUR_LICENSE_SERVER_URL), array('timeout' => 20, 'sslverify' => false));
$response = wp_remote_get($query);
$query = esc_url(add_query_arg($api_params, YOUR_LICENSE_SERVER_URL));
$response = wp_remote_get($query, array('timeout' => 20, 'sslverify' => false));

// Check for error in the response
if (is_wp_error($response)){
Expand Down Expand Up @@ -90,8 +90,8 @@ function sample_license_management_page() {
);

// Send query to the license manager server
$query = esc_url(add_query_arg($api_params, YOUR_LICENSE_SERVER_URL), array('timeout' => 20, 'sslverify' => false));
$response = wp_remote_get($query);
$query = esc_url(add_query_arg($api_params, YOUR_LICENSE_SERVER_URL));
$response = wp_remote_get($query, array('timeout' => 20, 'sslverify' => false));

// Check for error in the response
if (is_wp_error($response)){
Expand Down
6 changes: 3 additions & 3 deletions software-license-manager/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.tipsandtricks-hq.com/software-license-manager-plugin-fo
Tags: license key, serial key, manager, license, serial, key, selling, sell, license activation, manage license, software license, software license manager
Requires at least: 3.0
Tested up to: 4.2
Stable tag: 1.5
Stable tag: 1.6
License: GPLv2 or later

Create and manage license keys for your software applications easily
Expand Down Expand Up @@ -45,8 +45,8 @@ See the following page:
https://www.tipsandtricks-hq.com/software-license-manager-plugin-for-wordpress

== Changelog ==

= TODO 1.6 =
= 1.6 =
* Updated the sample plugin code so the query works better.
* Added the ability to reset the debug log file from the plugin settings interface.
* The item_reference value will be stored in the database (if sent via the activation API query).

Expand Down
4 changes: 2 additions & 2 deletions software-license-manager/slm_bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
Plugin Name: Software License Manager
Version: v1.5
Version: v1.6
Plugin URI: https://www.tipsandtricks-hq.com/software-license-manager-plugin-for-wordpress
Author: Tips and Tricks HQ
Author URI: https://www.tipsandtricks-hq.com/
Expand All @@ -14,7 +14,7 @@

//Short name/slug "SLM" or "slm"

define('WP_LICENSE_MANAGER_VERSION', "1.5");
define('WP_LICENSE_MANAGER_VERSION', "1.6");
define('WP_LICENSE_MANAGER_DB_VERSION', '1.2');
define('WP_LICENSE_MANAGER_FOLDER', dirname(plugin_basename(__FILE__)));
define('WP_LICENSE_MANAGER_URL', plugins_url('',__FILE__));
Expand Down

0 comments on commit cbe2075

Please sign in to comment.