Changeset 1789456
- Timestamp:
- 12/19/2017 12:30:39 PM (8 years ago)
- Location:
- wp-pwa
- Files:
-
- 16 added
- 3 edited
-
tags/1.0.5 (added)
-
tags/1.0.5/README.md (added)
-
tags/1.0.5/admin (added)
-
tags/1.0.5/admin/js (added)
-
tags/1.0.5/admin/js/wp-pwa-admin.js (added)
-
tags/1.0.5/admin/wp-pwa-admin-page.php (added)
-
tags/1.0.5/assets (added)
-
tags/1.0.5/assets/css (added)
-
tags/1.0.5/assets/css/wp-pwa-plugin.css (added)
-
tags/1.0.5/assets/wp_pwa_20x20.png (added)
-
tags/1.0.5/injector (added)
-
tags/1.0.5/injector/injector.js (added)
-
tags/1.0.5/injector/injector.min.js (added)
-
tags/1.0.5/injector/wp-pwa-injector.php (added)
-
tags/1.0.5/readme.txt (added)
-
tags/1.0.5/wp-pwa.php (added)
-
trunk/injector/wp-pwa-injector.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-pwa.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-pwa/trunk/injector/wp-pwa-injector.php
r1773939 r1789456 40 40 $listType = 'author'; 41 41 $listId = get_queried_object()->ID; 42 } elseif (is_search()) {43 $listType = 'search';44 $listId = get_query_var('s');45 } elseif (is_date()) {46 $listType = 'date';47 $listId = get_query_var('m');48 if ($listId === '') {49 $year = get_query_var('year');50 $monthnum = str_pad(get_query_var('monthnum'), 2, '0', STR_PAD_LEFT);51 $listId = $year . $monthnum;52 }53 42 } 54 43 -
wp-pwa/trunk/readme.txt
r1788962 r1789456 5 5 Requires at least: 4.4 6 6 Tested up to: 4.8.2 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 27 27 == Changelog == 28 28 29 = 1.0.5 = 30 * Don't send search and dates to PWA. 31 29 32 = 1.0.4 = 30 33 * New url for go-back javascript. -
wp-pwa/trunk/wp-pwa.php
r1788962 r1789456 4 4 Plugin URI: https://wordpress.org/plugins/wordpress-pwa/ 5 5 Description: WordPress plugin to turn WordPress blogs into Progressive Web Apps. 6 Version: 1.0. 46 Version: 1.0.5 7 7 Author: WordPress PWA 8 8 Author URI: … … 16 16 { 17 17 // vars 18 public $plugin_version = '1.0. 4';18 public $plugin_version = '1.0.5'; 19 19 public $rest_api_installed = false; 20 20 public $rest_api_active = false;
Note: See TracChangeset
for help on using the changeset viewer.