Skip to content

Commit 1150c8d

Browse files
committed
v1.4.1
2 parents ba5473d + d81eedc commit 1150c8d

File tree

5 files changed

+90
-12
lines changed

5 files changed

+90
-12
lines changed

changelog.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
## Changelog
22

3-
### 1.4.2
4-
* improved `composer.json`
5-
* updated metadata
6-
73
### 1.4.1
84
* tested with WP 5.1
95
* updated metadata

force-https.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Force HTTPS
44
Plugin URI: https://www.littlebizzy.com/plugins/force-https
55
Description: Redirects all HTTP requests to the HTTPS version and fixes insecure links and resources without altering the database (also works with CloudFlare).
6-
Version: 1.4.2
6+
Version: 1.4.1
77
Author: LittleBizzy
88
Author URI: https://www.littlebizzy.com
99
License: GPLv3
@@ -20,7 +20,7 @@
2020
// Plugin constants
2121
const FILE = __FILE__;
2222
const PREFIX = 'fhttps';
23-
const VERSION = '1.4.2';
23+
const VERSION = '1.4.1';
2424
const REPO = 'littlebizzy/force-https';
2525

2626
// Boot

readme.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,11 @@
33
Redirects all HTTP requests to the HTTPS version and fixes insecure links and resources without altering the database (also works with CloudFlare).
44

55
* [Plugin Homepage](https://www.littlebizzy.com/plugins/force-https)
6-
* [Download Latest Version (ZIP)](https://github.com/littlebizzy/force-https/archive/1.4.1.zip)
6+
* [Download Latest Version (ZIP)](https://github.com/littlebizzy/force-https/archive/v1.4.1.zip)
77
* [**Become A LittleBizzy.com Member Today!**](https://www.littlebizzy.com/members)
88

99
### Defined Constants
1010

11-
/** Plugin Meta */
12-
define('AUTOMATIC_UPDATE_PLUGINS', false); // default = false
13-
define('DISABLE_NAG_NOTICES', true); // default = true
14-
1511
/** Force HTTPS Functions */
1612
define('FORCE_HTTPS', true); // default = true
1713
define('FORCE_HTTPS_EXTERNAL_LINKS', false); // default = false

readme.txt

Lines changed: 84 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
=== Force HTTPS ===
22

33
Contributors: littlebizzy
4+
Donate link: https://www.patreon.com/littlebizzy
5+
Tags: force, https, ssl, insecure, content
46
Requires at least: 4.4
57
Tested up to: 5.1
68
Requires PHP: 7.2
79
Multisite support: No
8-
Stable tag: 1.4.2
10+
Stable tag: 1.4.1
911
License: GPLv3
1012
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1113
Prefix: FHTTPS
@@ -65,3 +67,84 @@ Currenly no settings page exists, but we may add one in future versions.
6567
= I have a question or comment, how can I let you know? =
6668

6769
Please avoid leaving negative reviews in order to get a feature implemented. Stalking or harassing our team members is also not okay; we will expose those who attempt to extort or threaten us. Instead, you may post on the public WordPress.org forums if you like and other members may be able to help you. Since this is a free plugin, we do not offer support for it; we are also no longer involved at the WordPress.org forums. We recommend joining our Facebook group instead:
70+
71+
== Changelog ==
72+
73+
= 1.4.1 =
74+
* tested with WP 5.1
75+
* updated plugin meta
76+
* tweaked Composer meta
77+
78+
= 1.4.0 =
79+
* PBP v1.2.0
80+
* removed FORCE_SSL constant references
81+
* added support to force HTTPS on `source` elements (previously unsupported) ... this fixes GitHub Issue #7
82+
* late support for new FORCE_HTTPS defined constant
83+
* define('FORCE_HTTPS', true);
84+
* define('FORCE_HTTPS_EXTERNAL_LINKS', false);
85+
* define('FORCE_HTTPS_EXTERNAL_RESOURCES', true);
86+
* define('FORCE_HTTPS_INTERNAL_LINKS', true);
87+
* define('FORCE_HTTPS_INTERNAL_RESOURCES', true);
88+
89+
= 1.3.0 =
90+
* PBP v1.1.0
91+
* tested with PHP 7.0
92+
* tested with PHP 7.1
93+
* tested with PHP 7.2
94+
* tested with PHP 5.6 (no fatal errors only, tweaked code style and several corrections)
95+
* better support for WP-CLI (fixes GitHub Issue #6/#2)
96+
* simplified plugin class organization
97+
* late support for FORCE_SSL constant aborting the plugin functionality in the last minute if false
98+
99+
= 1.2.0 =
100+
* tested with WP 5.0
101+
102+
= 1.1.4 =
103+
* updated plugin meta
104+
105+
= 1.1.3 =
106+
* updated recommended plugins
107+
108+
= 1.1.2 =
109+
* updated plugin meta
110+
111+
= 1.1.1 =
112+
* updated plugin meta
113+
* updated recommended plugins
114+
115+
= 1.1.0 =
116+
* versioning correction (major changes in 1.0.6)
117+
* (no code changes)
118+
119+
= 1.0.6 =
120+
* changed filters to force HTTPS for external resources (but not hyperlinks) including `src`, `srcset`, `embed`, and `object`
121+
* (if an external resource does not exist in HTTPS version, it may generate a 404 error)
122+
* (philosophy = "green padlock" more important than a resource 404 error)
123+
* added warning for Multisite installations
124+
* updated recommended plugins
125+
* updated plugin meta
126+
127+
= 1.0.5 =
128+
* better support for `DISABLE_NAG_NOTICES`
129+
130+
= 1.0.4 =
131+
* partial support for `DISABLE_NAG_NOTICES`
132+
* updated plugin meta
133+
134+
= 1.0.3 =
135+
* tested with WP 4.9
136+
* updated recommended plugins
137+
* updated plugin meta
138+
139+
= 1.0.2 =
140+
* filter to "skip" external hyperlinks
141+
* better HTTPS filters for internal links, internal sources, and image srcsets
142+
* optimized plugin code
143+
* added rating request notice
144+
* updated recommended plugins
145+
146+
= 1.0.1 =
147+
* added recommended plugins notice
148+
149+
= 1.0.0 =
150+
* initial release

releases.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,8 @@
4646
},
4747
"1.4.0": {
4848
"package": "https://github.com/littlebizzy/force-https/archive/1.4.0.zip"
49+
},
50+
"1.4.1": {
51+
"package": "https://github.com/littlebizzy/force-https/archive/1.4.1.zip"
4952
}
5053
}

0 commit comments

Comments
 (0)