Skip to content

Commit 95fac94

Browse files
committed
Version 2.0.0
re-add vendor for deployment
1 parent 22d674c commit 95fac94

17 files changed

Lines changed: 1158 additions & 23 deletions

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
.idea
2-
vendor
32
composer.lock

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
**Quicksilver** is a minimalist WordPress plugin which **cleans up your website and optimizes it for better performance**.
1+
**Quicksilver** is a WordPress plugin which **cleans up your website and optimizes it for better performance**.
22

33
## What does Quicksilver do?
44

5-
* Disables heartbeats.
6-
* Disables emojis.
7-
* Disables self ping.
8-
* Removes query string in JS and CSS file.
9-
* Cleans up header.
5+
* Disable heartbeat
6+
* Disable emojis
7+
* Disable embeds, e.g. prevent others from embedding your site and vise-versa
8+
* Disable self pings
9+
* Remove query string for JavaScript and CSS files
10+
* Set scheme-less URLs for JavaScript and CSS files, e.g. remove `http:` and `https:` from URLs
1011
* Removes styles for recent comments widget.
11-
* Remove Jetpack devicex script.
12+
* Cleanup header
1213

1314
Quicksilver is created and maintained FREE on [Github](https://github.com/mechanika-design/quicksilver). Please open a [new issue](https://github.com/mechanika-design/quicksilver/issues) to add a suggestion or report a bug.
1415

composer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
{
2+
"name": "mechanikadesign/quicksilver",
3+
"type": "wordpress-plugin",
4+
"keywords": [
5+
"wordpress",
6+
"wordpress-plugin",
7+
"performance",
8+
"optimization"
9+
],
10+
"description": "Quicksilver is a WordPress plugin which cleans up your website and optimizes it for better performance.",
11+
"homepage": "https://mechanikadesign.com",
12+
"license": "GPL-2.0",
13+
"authors": [
14+
{
15+
"name": "Warren Glayen",
16+
"email": "wgalyen@mechanikadesign.com",
17+
"homepage": "https://mechanikadesign.com",
18+
"role": "Developer"
19+
}
20+
],
221
"repositories": [
322
{
423
"type":"composer",

quicksilver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Quicksilver
44
* Plugin URI: http://mechanikadesign.com
55
* Description: A WordPress cleanup and performance optimization plugin.
6-
* Version: 1.3.1
6+
* Version: 2.0.0
77
* Author: Mechanika Design
88
* Author URI: https://mechanikadesign.com
99
* License: GPL2+

readme.txt

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
1-
=== Quicksilver - WordPress Optimization ===
1+
=== Quicksilver ===
22
Contributors: Warren Galyen
33
Tags: optimization, optimize, optimizer, loading speed, performance, speed, clean, clean up, cleaner, ping, pingback, heartbeat, emoji, emojis
44
Requires at least: 5.9
55
Tested up to: 6.4.3
6-
Stable tag: 1.3.1
6+
Stable tag: 2.0.0
7+
Requires PHP: 5.6
78
License: GPLv2 or later
89

9-
**Quicksilver** is a minimalist WordPress plugin which cleans up your website and optimizes it for best performance.
10+
**Quicksilver** is a WordPress plugin which cleans up your website and optimizes it for better performance.
1011

1112
== Description ==
1213

13-
**Quicksilver** is a minimalist WordPress plugin which **cleans up your website and optimizes it for best performance**.
14+
**Quicksilver** is a WordPress plugin which **cleans up your website and optimizes it for better performance**.
1415

1516
### What does Quicksilver do?
1617

17-
* Disables heartbeats.
18-
* Disables emojis.
19-
* Disables self ping.
20-
* Removes query string in JS and CSS file.
21-
* Sets scheme-less URLs for JS and CSS files, e.g. removes 'http:' and 'https:' from URLs.
22-
* Cleans up header.
18+
* Disable heartbeat
19+
* Disable emojis
20+
* Disable embeds, e.g. prevent others from embedding your site and vise-versa
21+
* Disable self pings
22+
* Remove query string for JavaScript and CSS files
23+
* Set scheme-less URLs for JavaScript and CSS files, e.g. remove `http:` and `https:` from URLs
2324
* Removes styles for recent comments widget.
24-
* Remove Jetpack devicex script.
25+
* Cleanup header
2526

2627
To configure the async CSS loading, go to *Settings | Quicksilver*.
2728

@@ -39,10 +40,12 @@ The plugin doesn't have any settings page or configuration. Just install and for
3940

4041
== Screenshots ==
4142

42-
The plugin doesn't have any settings page or configuration. Just install and forget!
43-
4443
== Changelog ==
4544

45+
= 2.0.0 =
46+
- Re-add settings page
47+
- Update disable embeds module
48+
4649
= 1.3.1 =
4750
* Fix not working with WP-CLI
4851

src/Settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function render() {
3737
<p>
3838
<label>
3939
<input type="checkbox" name="quicksilver[features][]" value="no_embeds"<?php checked( self::is_feature_active( 'no_embeds' ) ) ?>>
40-
<?php esc_html_e( 'Prevent others from embedding your site and vise-versa.', 'quicksilver' ) ?>
40+
<?php esc_html_e( 'Disable embeds, e.g. prevent others from embedding your site and vise-versa', 'quicksilver' ) ?>
4141
</label>
4242
</p>
4343
<p>

vendor/autoload.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
// autoload.php @generated by Composer
4+
5+
if (PHP_VERSION_ID < 50600) {
6+
if (!headers_sent()) {
7+
header('HTTP/1.1 500 Internal Server Error');
8+
}
9+
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
10+
if (!ini_get('display_errors')) {
11+
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
12+
fwrite(STDERR, $err);
13+
} elseif (!headers_sent()) {
14+
echo $err;
15+
}
16+
}
17+
trigger_error(
18+
$err,
19+
E_USER_ERROR
20+
);
21+
}
22+
23+
require_once __DIR__ . '/composer/autoload_real.php';
24+
25+
return ComposerAutoloaderInitd751713988987e9331980363e24189ce::getLoader();

0 commit comments

Comments
 (0)