Skip to content

Commit

Permalink
= v150605 =
Browse files Browse the repository at this point in the history
**RELEASE CANDIDATE**

- **New Feature!** The free version of ZenCache now supports several new options that were previously only available in the Pro version. You can now toggle the Auto-Clear Cache routines for the Home Page, Posts Page, Author Page, Category Archives, Tag Archives, Custom Term Archives, RSS/RDF/Atom Feeds, and XML Sitemaps. This gives you more control over exactly when ZenCache purges the cache for these parts of your site. See _ZenCache → Plugin Options → Clearing the Cache_ for further details.
- **New Feature!** URI Exclusion Patterns are now available in ZenCache Lite! This previously Pro-only feature is now available in the free version of ZenCache and allows you to exclude a list of URIs from being cached by ZenCache. See _ZenCache → Plugin Options → URI Exclusion Patterns_ for further details.
- **New Feature!** HTTP Referrer Exclusion Patterns are now available in ZenCache Lite! This previously Pro-only feature is now available in the free version of ZenCache and allows you to define a list of referring URLs or domains that send you traffic. When ZenCache sees a request coming from one of those URLs or domains, it will not cache that particular request. See _ZenCache → Plugin Options → HTTP Referrer Exclusion Patterns_ for further details.
- **New Pro Feature!**: HTML Compression now supports compressing JSON (in addition to the already supported HTML, JavaScript, and CSS compression). Props @jaswsinc. See [Issue #469](#469).
- **New Pro Feature!**: Static CDN Filters now supports multiple CDN hostnames. This allows you to configure more than one CDN hostname, also referred to as Domain Sharding. This makes it possible for site owners to work around web browser concurrency limits, allowing the browser to download many resources simultaneously, which increases overall speed. Props to @isaumya and @jaswsinc. See [Issue #468](#468).
- **Enhancement** (Pro): Static CDN Filters now also apply to any static files that are referenced inside CSS files. Props @jaswsinc. See [Issue #461](#461).
- **Enhancement**: Completed a major restructure of the entire codebase to improve modularity and dependency management. Props @jaswsinc.
- **Enhancement** (Pro): Static CDN Filters now supports the ability to configure separate CDN hostname(s) for each domain (or sub-domain) that you run in a WordPress Multisite Network. Props @jaswsinc. See [Issue #475](#475).
- **Enhancement** (Pro): Static CDN Filters now support sub-domains when ZenCache is running inside a WordPress Multisite Network. Props @jaswsinc. See [Issue #439](#439).
- **Bug Fix** (Pro): Static CDN Filters were not being applied to the primary site on WP Multisite installations that used subdomains. (While subdomains are not currently supported by Static CDN Filters, the primary site can still use this feature.) Props to @isaumya for discovering this bug. See [Issue #470](#470).
  • Loading branch information
raamdev committed Jun 5, 2015
1 parent d75eb31 commit 99593b2
Show file tree
Hide file tree
Showing 183 changed files with 26,721 additions and 0 deletions.
329 changes: 329 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

676 changes: 676 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

Binary file added assets/banner-772x250.sketch
Binary file not shown.
Binary file added assets/font-icon-logo.sketch
Binary file not shown.
19 changes: 19 additions & 0 deletions assets/font-icon-logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/font-icon.sketch
Binary file not shown.
12 changes: 12 additions & 0 deletions assets/font-icon.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icon-color.sketch
Binary file not shown.
Binary file added assets/icon-grey.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icon-grey.sketch
Binary file not shown.
Binary file added assets/icon-with-logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icon-with-logo.sketch
Binary file not shown.
Binary file added assets/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logo.sketch
Binary file not shown.
Binary file added assets/options-pro.sketch
Binary file not shown.
Binary file added assets/options.sketch
Binary file not shown.
Binary file added assets/source-code-ss.sketch
Binary file not shown.
Binary file added assets/tach.sketch
Binary file not shown.
Binary file added assets/updater-pro.sketch
Binary file not shown.
Binary file added assets/updater.sketch
Binary file not shown.
54 changes: 54 additions & 0 deletions composer.json
@@ -0,0 +1,54 @@
{
"name": "websharks/zencache",
"homepage": "https://github.com/websharks/zencache",
"description": "A popular caching plugin for WordPress.",
"keywords": [
"websharks",
"zencache",
"wordpress",
"caching",
"cache"
],
"type": "library",
"license": "GPL-3.0+",
"authors": [{
"name": "websharks",
"homepage": "http://websharks-inc.com/",
"role": "company"
}, {
"name": "jaswsinc",
"homepage": "http://jaswsinc.com/",
"role": "developer"
}, {
"name": "raamdev",
"homepage": "http://raam.org/",
"role": "developer"
}],
"support": {
"source": "https://github.com/websharks/zencache",
"issues": "https://github.com/websharks/zencache/issues"
},

"require": {
"php": ">=5.3",
"websharks/wp-php-rv": "dev-master",
"websharks/html-compressor": "dev-master",
"websharks/sharkicons": "dev-master"
},
"require-dev": {
"websharks/wp-i18n-tools": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,

"autoload": {
"psr-4": {
"WebSharks\\ZenCache\\": "src/includes/classes/"
}
},

"config": {
"vendor-dir": "src/vendor",
"preferred-install": "dist"
}
}

0 comments on commit 99593b2

Please sign in to comment.