Version Description
- Important performance fix
- PRO Fixed an issue with Google Analytics integration
Download this release
Release Info
Developer | supercleanse |
Plugin | Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin |
Version | 2.0.3 |
Comparing to | |
See all releases |
Code changes from version 2.0.2 to 2.0.3
- app/controllers/PrliUpdateController.php +3 -0
- i18n/pretty-link.pot +8 -8
- pretty-link.php +2 -2
- readme.txt +8 -1
app/controllers/PrliUpdateController.php
CHANGED
@@ -130,6 +130,9 @@ class PrliUpdateController {
|
|
130 |
|
131 |
$domain = urlencode(PrliUtils::site_domain());
|
132 |
|
|
|
|
|
|
|
133 |
try {
|
134 |
$act = $this->send_mothership_request("/license_keys/a/{$domain}/{$this->mothership_license}", array(), 'get');
|
135 |
|
130 |
|
131 |
$domain = urlencode(PrliUtils::site_domain());
|
132 |
|
133 |
+
// Bail if there's no license key
|
134 |
+
if(empty($this->mothership_license)) { return; }
|
135 |
+
|
136 |
try {
|
137 |
$act = $this->send_mothership_request("/license_keys/a/{$domain}/{$this->mothership_license}", array(), 'get');
|
138 |
|
i18n/pretty-link.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Pretty Link package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Pretty Link 2.0.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
|
7 |
-
"POT-Creation-Date: 2017-01-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
msgid "Pretty Link | Manage Pretty Links"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#. #-#-#-#-# pretty-link.pot (Pretty Link 2.0.
|
21 |
#. Plugin Name of the plugin/theme
|
22 |
#: app/controllers/PrliAppController.php:37
|
23 |
#: app/controllers/PrliAppController.php:46 app/views/links/form.php:47
|
@@ -241,23 +241,23 @@ msgstr ""
|
|
241 |
msgid "Why you creepin'?"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: app/controllers/PrliUpdateController.php:
|
245 |
msgid "Check for Update"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: app/controllers/PrliUpdateController.php:
|
249 |
msgid "You had an HTTP error connecting to Caseproof's Mothership API"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: app/controllers/PrliUpdateController.php:
|
253 |
msgid "Your License Key was invalid"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: app/controllers/PrliUpdateController.php:
|
257 |
msgid "You do not have access."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: app/controllers/PrliUpdateController.php:
|
261 |
msgid "Edge updates couldn't be updated."
|
262 |
msgstr ""
|
263 |
|
2 |
# This file is distributed under the same license as the Pretty Link package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Pretty Link 2.0.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
|
7 |
+
"POT-Creation-Date: 2017-01-20 01:57:17+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
msgid "Pretty Link | Manage Pretty Links"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#. #-#-#-#-# pretty-link.pot (Pretty Link 2.0.3) #-#-#-#-#
|
21 |
#. Plugin Name of the plugin/theme
|
22 |
#: app/controllers/PrliAppController.php:37
|
23 |
#: app/controllers/PrliAppController.php:46 app/views/links/form.php:47
|
241 |
msgid "Why you creepin'?"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: app/controllers/PrliUpdateController.php:302
|
245 |
msgid "Check for Update"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: app/controllers/PrliUpdateController.php:371
|
249 |
msgid "You had an HTTP error connecting to Caseproof's Mothership API"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: app/controllers/PrliUpdateController.php:383
|
253 |
msgid "Your License Key was invalid"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: app/controllers/PrliUpdateController.php:409
|
257 |
msgid "You do not have access."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: app/controllers/PrliUpdateController.php:413
|
261 |
msgid "Edge updates couldn't be updated."
|
262 |
msgstr ""
|
263 |
|
pretty-link.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Pretty Link
|
4 |
Plugin URI: http://prettylinkpro.com
|
5 |
Description: Shrink, track and share any URL on the Internet from your WordPress website!
|
6 |
-
Version: 2.0.
|
7 |
Author: Blair Williams
|
8 |
Author URI: http://blairwilliams.com
|
9 |
Text Domain: pretty-link
|
@@ -55,7 +55,7 @@ define('PRLI_VENDOR_LIB_URL',PRLI_URL.'/vendor/lib');
|
|
55 |
define('PRLI_BROWSER_URL','https://d14715w921jdje.cloudfront.net/browser');
|
56 |
define('PRLI_OS_URL','https://d14715w921jdje.cloudfront.net/os');
|
57 |
|
58 |
-
define('PRLI_EDITION', 'pretty-link-
|
59 |
|
60 |
// Let's give pretty link plenty of room to work with
|
61 |
$mem = abs(intval(@ini_get('memory_limit')));
|
3 |
Plugin Name: Pretty Link
|
4 |
Plugin URI: http://prettylinkpro.com
|
5 |
Description: Shrink, track and share any URL on the Internet from your WordPress website!
|
6 |
+
Version: 2.0.3
|
7 |
Author: Blair Williams
|
8 |
Author URI: http://blairwilliams.com
|
9 |
Text Domain: pretty-link
|
55 |
define('PRLI_BROWSER_URL','https://d14715w921jdje.cloudfront.net/browser');
|
56 |
define('PRLI_OS_URL','https://d14715w921jdje.cloudfront.net/os');
|
57 |
|
58 |
+
define('PRLI_EDITION', 'pretty-link-lite');
|
59 |
|
60 |
// Let's give pretty link plenty of room to work with
|
61 |
$mem = abs(intval(@ini_get('memory_limit')));
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://prettylinkpro.com
|
|
4 |
Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 4.7.1
|
7 |
-
Stable tag: 2.0.
|
8 |
|
9 |
Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
|
10 |
|
@@ -66,6 +66,10 @@ http://blairwilliams.com/w7a
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
|
|
|
|
|
|
|
|
69 |
= 2.0.2 =
|
70 |
* Fixed a small javascript issue
|
71 |
* Fixed a small issue with Keyword Replacements
|
@@ -146,6 +150,9 @@ http://blairwilliams.com/w7a
|
|
146 |
|
147 |
== Upgrade Notice ==
|
148 |
|
|
|
|
|
|
|
149 |
= 2.0.2 =
|
150 |
* Fixed several bugs ... one of which could affect site performance so everyone should upgrade immediately.
|
151 |
|
4 |
Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 4.7.1
|
7 |
+
Stable tag: 2.0.3
|
8 |
|
9 |
Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
|
10 |
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
+
= 2.0.3 =
|
70 |
+
* *Important* performance fix
|
71 |
+
* PRO Fixed an issue with Google Analytics integration
|
72 |
+
|
73 |
= 2.0.2 =
|
74 |
* Fixed a small javascript issue
|
75 |
* Fixed a small issue with Keyword Replacements
|
150 |
|
151 |
== Upgrade Notice ==
|
152 |
|
153 |
+
= 2.0.3 =
|
154 |
+
* Important performance fix ... every user should upgrade.
|
155 |
+
|
156 |
= 2.0.2 =
|
157 |
* Fixed several bugs ... one of which could affect site performance so everyone should upgrade immediately.
|
158 |
|