Changeset 2745544
- Timestamp:
- 06/20/2022 09:29:47 PM (4 years ago)
- Location:
- randomrss/trunk
- Files:
-
- 15 edited
-
README.txt (modified) (2 diffs)
-
admin/class-randomrss-admin.php (modified) (6 diffs)
-
admin/partials/randomrss-admin-display.php (modified) (1 diff)
-
feed.php (modified) (6 diffs)
-
includes/class-randomrss-activator.php (modified) (3 diffs)
-
includes/class-randomrss-deactivator.php (modified) (3 diffs)
-
includes/class-randomrss-i18n.php (modified) (3 diffs)
-
includes/class-randomrss-loader.php (modified) (8 diffs)
-
includes/class-randomrss.php (modified) (15 diffs)
-
public/class-randomrss-public.php (modified) (6 diffs)
-
public/partials/randomrss-public-display.php (modified) (1 diff)
-
randomrss.php (modified) (4 diffs)
-
uninstall.php (modified) (1 diff)
-
vendor/composer/InstalledVersions.php (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
randomrss/trunk/README.txt
r2661694 r2745544 4 4 Tags: RSS, Syndication, Auto-Blogging 5 5 Requires at least: 3.0.1 6 Tested up to: 5.8.37 Stable tag: 1. 0.16 Tested up to: 6.0.0 7 Stable tag: 1.5.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 20 20 21 21 To change the pubDate to the current date/time simply append "?pubdate=new" to the URL. If the URL already has a different query string you will need to append it like this "&pubdate=new". 22 23 24 NEW: To filter by date range append strings specifying the earliest and latest dates you want. That can be done with the "datemin" and "datemax" strings which support the YYYY-MM-DD format. 25 26 If you want everything after a specific date (ex: June 18, 2016) simply append "datemin=2016-06-18" or if you want everything before a specific date (ex: May 20, 2021) simply appened "?datemax=2021-05-21" and if you want to set both append something like "?datemin=2016-06-18&datemax-2021-05-21" with the & character only being used when appending more than one string. 27 22 28 23 29 == Installation == -
randomrss/trunk/admin/class-randomrss-admin.php
r2661688 r2745544 5 5 * 6 6 * @link https://paydelete.com/ 7 * @since 1. 0.17 * @since 1.5.0 8 8 * 9 9 * @package Randomrss … … 26 26 * The ID of this plugin. 27 27 * 28 * @since 1. 0.128 * @since 1.5.0 29 29 * @access private 30 30 * @var string $randomrss The ID of this plugin. … … 35 35 * The version of this plugin. 36 36 * 37 * @since 1. 0.137 * @since 1.5.0 38 38 * @access private 39 39 * @var string $version The current version of this plugin. … … 44 44 * Initialize the class and set its properties. 45 45 * 46 * @since 1. 0.146 * @since 1.5.0 47 47 * @param string $randomrss The name of this plugin. 48 48 * @param string $version The version of this plugin. … … 58 58 * Register the stylesheets for the admin area. 59 59 * 60 * @since 1. 0.160 * @since 1.5.0 61 61 */ 62 62 public function enqueue_styles() { … … 81 81 * Register the JavaScript for the admin area. 82 82 * 83 * @since 1. 0.183 * @since 1.5.0 84 84 */ 85 85 public function enqueue_scripts() { -
randomrss/trunk/admin/partials/randomrss-admin-display.php
r2661688 r2745544 7 7 * 8 8 * @link https://paydelete.com/ 9 * @since 1. 0.19 * @since 1.5.0 10 10 * 11 11 * @package Randomrss -
randomrss/trunk/feed.php
r2661660 r2745544 5 5 $randomrss_feedurl = get_site_url().'/wp-content/plugins/randomrss/feed.php'; 6 6 $randomrss_feedxml = ''; 7 if(isset($_GET['category']) && isset($_GET['tag'])) 7 if(isset($_GET['datemax']) && isset($_GET['datemin'])) 8 { 9 $datemax = explode("-",$_GET['datemax']); 10 $datemin = explode("-",$_GET['datemin']); 11 if(isset($_GET['category']) && isset($_GET['tag'])) 8 12 { 9 13 $randomrss_feedtitle = sanitize_text_field($_GET['category']).' '.sanitize_text_field($_GET['tag']); … … 15 19 'category_name' => sanitize_text_field($_GET['category']), 16 20 'tag' => sanitize_text_field($_GET['tag']), 21 'date_query' => array( 22 array( 23 'after' => array( 24 'year' => $datemin[0], 25 'month' => $datemin[1], 26 'day' => $datemin[2], 27 ), 28 'before' => array( 29 'year' => $datemax[0], 30 'month' => $datemax[1], 31 'day' => $datemax[2], 32 ), 33 'inclusive' => true, 34 ), 35 ), 17 36 ); 18 37 }elseif (isset($_GET['category'])) … … 25 44 'posts_per_page' => 10, 26 45 'category_name' => sanitize_text_field($_GET['category']), 46 'date_query' => array( 47 array( 48 'after' => array( 49 'year' => $datemin[0], 50 'month' => $datemin[1], 51 'day' => $datemin[2], 52 ), 53 'before' => array( 54 'year' => $datemax[0], 55 'month' => $datemax[1], 56 'day' => $datemax[2], 57 ), 58 'inclusive' => true, 59 ), 60 ), 27 61 ); 28 62 }elseif(isset($_GET['tag'])) … … 35 69 'posts_per_page' => 10, 36 70 'tag' => sanitize_text_field($_GET['tag']), 71 'date_query' => array( 72 array( 73 'after' => array( 74 'year' => $datemin[0], 75 'month' => $datemin[1], 76 'day' => $datemin[2], 77 ), 78 'before' => array( 79 'year' => $datemax[0], 80 'month' => $datemax[1], 81 'day' => $datemax[2], 82 ), 83 'inclusive' => true, 84 ), 85 ), 37 86 ); 38 87 }else{ … … 40 89 'post_type' => 'post', 41 90 'orderby' => 'rand', 42 'posts_per_page' => 10, 43 ); 44 } 45 46 91 'posts_per_page' => 10, 92 'date_query' => array( 93 array( 94 'after' => array( 95 'year' => $datemin[0], 96 'month' => $datemin[1], 97 'day' => $datemin[2], 98 ), 99 'before' => array( 100 'year' => $datemax[0], 101 'month' => $datemax[1], 102 'day' => $datemax[2], 103 ), 104 'inclusive' => true, 105 ), 106 ), 107 ); 108 } 109 // NEXT PART ************************************************************ 110 }else if(isset($_GET['datemin'])) 111 { 112 $datemin = explode("-",$_GET['datemin']); 113 if(isset($_GET['category']) && isset($_GET['tag'])) 114 { 115 $randomrss_feedtitle = sanitize_text_field($_GET['category']).' '.sanitize_text_field($_GET['tag']); 116 $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']).'&tag='.sanitize_text_field($_GET['tag']); 117 $randomrss_args = array( 118 'post_type' => 'post', 119 'orderby' => 'rand', 120 'posts_per_page' => 10, 121 'category_name' => sanitize_text_field($_GET['category']), 122 'tag' => sanitize_text_field($_GET['tag']), 123 'date_query' => array( 124 array( 125 'after' => array( 126 'year' => $datemin[0], 127 'month' => $datemin[1], 128 'day' => $datemin[2], 129 ), 130 'inclusive' => true, 131 ), 132 ), 133 ); 134 }elseif (isset($_GET['category'])) 135 { 136 $randomrss_feedtitle = sanitize_text_field($_GET['category']) . ' Category Random RSS Feed'; 137 $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']); 138 $randomrss_args = array( 139 'post_type' => 'post', 140 'orderby' => 'rand', 141 'posts_per_page' => 10, 142 'category_name' => sanitize_text_field($_GET['category']), 143 'date_query' => array( 144 array( 145 'after' => array( 146 'year' => $datemin[0], 147 'month' => $datemin[1], 148 'day' => $datemin[2], 149 ), 150 'inclusive' => true, 151 ), 152 ), 153 ); 154 }elseif(isset($_GET['tag'])) 155 { 156 $randomrss_feedtitle = sanitize_text_field($_GET['tag']) . ' Tag Random RSS Feed'; 157 $randomrss_feedurl .= '?tag='.sanitize_text_field($_GET['tag']); 158 $randomrss_args = array( 159 'post_type' => 'post', 160 'orderby' => 'rand', 161 'posts_per_page' => 10, 162 'tag' => sanitize_text_field($_GET['tag']), 163 'date_query' => array( 164 array( 165 'after' => array( 166 'year' => $datemin[0], 167 'month' => $datemin[1], 168 'day' => $datemin[2], 169 ), 170 'inclusive' => true, 171 ), 172 ), 173 ); 174 }else{ 175 $randomrss_args = array( 176 'post_type' => 'post', 177 'orderby' => 'rand', 178 'posts_per_page' => 10, 179 'date_query' => array( 180 array( 181 'after' => array( 182 'year' => $datemin[0], 183 'month' => $datemin[1], 184 'day' => $datemin[2], 185 ), 186 'inclusive' => true, 187 ), 188 ), 189 ); 190 } 191 // NEXT PART ************************************************************* 192 }else if(isset($_GET['datemax'])) 193 { 194 $datemax = explode("-",$_GET['datemax']); 195 if(isset($_GET['category']) && isset($_GET['tag'])) 196 { 197 $randomrss_feedtitle = sanitize_text_field($_GET['category']).' '.sanitize_text_field($_GET['tag']); 198 $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']).'&tag='.sanitize_text_field($_GET['tag']); 199 $randomrss_args = array( 200 'post_type' => 'post', 201 'orderby' => 'rand', 202 'posts_per_page' => 10, 203 'category_name' => sanitize_text_field($_GET['category']), 204 'tag' => sanitize_text_field($_GET['tag']), 205 'date_query' => array( 206 array( 207 'before' => array( 208 'year' => $datemax[0], 209 'month' => $datemax[1], 210 'day' => $datemax[2], 211 ), 212 'inclusive' => true, 213 ), 214 ), 215 ); 216 }elseif (isset($_GET['category'])) 217 { 218 $randomrss_feedtitle = sanitize_text_field($_GET['category']) . ' Category Random RSS Feed'; 219 $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']); 220 $randomrss_args = array( 221 'post_type' => 'post', 222 'orderby' => 'rand', 223 'posts_per_page' => 10, 224 'category_name' => sanitize_text_field($_GET['category']), 225 'date_query' => array( 226 array( 227 'before' => array( 228 'year' => $datemax[0], 229 'month' => $datemax[1], 230 'day' => $datemax[2], 231 ), 232 'inclusive' => true, 233 ), 234 ), 235 ); 236 }elseif(isset($_GET['tag'])) 237 { 238 $randomrss_feedtitle = sanitize_text_field($_GET['tag']) . ' Tag Random RSS Feed'; 239 $randomrss_feedurl .= '?tag='.sanitize_text_field($_GET['tag']); 240 $randomrss_args = array( 241 'post_type' => 'post', 242 'orderby' => 'rand', 243 'posts_per_page' => 10, 244 'tag' => sanitize_text_field($_GET['tag']), 245 'date_query' => array( 246 array( 247 'before' => array( 248 'year' => $datemax[0], 249 'month' => $datemax[1], 250 'day' => $datemax[2], 251 ), 252 'inclusive' => true, 253 ), 254 ), 255 ); 256 }else{ 257 $randomrss_args = array( 258 'post_type' => 'post', 259 'orderby' => 'rand', 260 'posts_per_page' => 10, 261 'date_query' => array( 262 array( 263 'before' => array( 264 'year' => $datemax[0], 265 'month' => $datemax[1], 266 'day' => $datemax[2], 267 ), 268 'inclusive' => true, 269 ), 270 ), 271 ); 272 } 273 // NEXT PART ************************************************************* 274 }else 275 { 276 if(isset($_GET['category']) && isset($_GET['tag'])) 277 { 278 $randomrss_feedtitle = sanitize_text_field($_GET['category']).' '.sanitize_text_field($_GET['tag']); 279 $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']).'&tag='.sanitize_text_field($_GET['tag']); 280 $randomrss_args = array( 281 'post_type' => 'post', 282 'orderby' => 'rand', 283 'posts_per_page' => 10, 284 'category_name' => sanitize_text_field($_GET['category']), 285 'tag' => sanitize_text_field($_GET['tag']), 286 ); 287 }elseif (isset($_GET['category'])) 288 { 289 $randomrss_feedtitle = sanitize_text_field($_GET['category']) . ' Category Random RSS Feed'; 290 $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']); 291 $randomrss_args = array( 292 'post_type' => 'post', 293 'orderby' => 'rand', 294 'posts_per_page' => 10, 295 'category_name' => sanitize_text_field($_GET['category']), 296 ); 297 }elseif(isset($_GET['tag'])) 298 { 299 $randomrss_feedtitle = sanitize_text_field($_GET['tag']) . ' Tag Random RSS Feed'; 300 $randomrss_feedurl .= '?tag='.sanitize_text_field($_GET['tag']); 301 $randomrss_args = array( 302 'post_type' => 'post', 303 'orderby' => 'rand', 304 'posts_per_page' => 10, 305 'tag' => sanitize_text_field($_GET['tag']), 306 ); 307 }else{ 308 $randomrss_args = array( 309 'post_type' => 'post', 310 'orderby' => 'rand', 311 'posts_per_page' => 10, 312 ); 313 } 314 } 47 315 $randomrss_the_query = new WP_Query( $randomrss_args ); 48 316 … … 67 335 $randomrss_pubdate = mysql2date( 'D, d M Y H:i:s +0000', get_post_time( 'Y-m-d H:i:s', true ), false ); 68 336 } 69 $randomrss_feedxml .= '<item><title><![CDATA[ '.esc_html(get_the_title()) .' ]]></title><description><![CDATA[ '.wp_kses_post(apply_filters('the_content', get_the_content())).' ]]></description><link>'.esc_html(get_permalink()).'</link><guid>'.esc_html(get_permalink()).'</guid><pubDate>'.esc_html($randomrss_pubdate).'</pubDate></item>'; 337 $post_cats = get_the_category(); 338 $post_cat_name = $post_cats[0]->name; 339 $randomrss_feedxml .= '<item><title><![CDATA[ '.esc_html(get_the_title()) .' ]]></title><description><![CDATA[ '.wp_kses_post(apply_filters('the_content', get_the_content())).' ]]></description><category>'.esc_html($post_cat_name).'</category><pubDate>'.esc_html($randomrss_pubdate).'</pubDate><link>'.esc_html(get_permalink()).'</link><guid>'.esc_html(get_permalink()).'</guid></item>'; 70 340 } 71 341 $randomrss_feedxml .= '</channel></rss>'; -
randomrss/trunk/includes/class-randomrss-activator.php
r2661674 r2745544 5 5 * 6 6 * @link https://paydelete.com/randomrss/ 7 * @since 1. 0.17 * @since 1.5.0 8 8 * 9 9 * @package Randomrss … … 16 16 * This class defines all code necessary to run during the plugin's activation. 17 17 * 18 * @since 1. 0.118 * @since 1.5.0 19 19 * @package Randomrss 20 20 * @subpackage Randomrss/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1. 0.130 * @since 1.5.0 31 31 */ 32 32 public static function activate() { -
randomrss/trunk/includes/class-randomrss-deactivator.php
r2661674 r2745544 5 5 * 6 6 * @link https://paydelete.com/randomrss/ 7 * @since 1. 0.17 * @since 1.5.0 8 8 * 9 9 * @package Randomrss … … 16 16 * This class defines all code necessary to run during the plugin's deactivation. 17 17 * 18 * @since 1. 0.118 * @since 1.5.0 19 19 * @package Randomrss 20 20 * @subpackage Randomrss/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1. 0.130 * @since 1.5.0 31 31 */ 32 32 public static function deactivate() { -
randomrss/trunk/includes/class-randomrss-i18n.php
r2661674 r2745544 8 8 * 9 9 * @link https://paydelete.com/randomrss/ 10 * @since 1. 0.110 * @since 1.5.0 11 11 * 12 12 * @package Randomrss … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1. 0.122 * @since 1.5.0 23 23 * @package Randomrss 24 24 * @subpackage Randomrss/includes … … 31 31 * Load the plugin text domain for translation. 32 32 * 33 * @since 1. 0.133 * @since 1.5.0 34 34 */ 35 35 public function load_plugin_textdomain() { -
randomrss/trunk/includes/class-randomrss-loader.php
r2661674 r2745544 5 5 * 6 6 * @link https://paydelete.com/randomrss/ 7 * @since 1. 0.17 * @since 1.5.0 8 8 * 9 9 * @package Randomrss … … 27 27 * The array of actions registered with WordPress. 28 28 * 29 * @since 1. 0.129 * @since 1.5.0 30 30 * @access protected 31 31 * @var array $actions The actions registered with WordPress to fire when the plugin loads. … … 36 36 * The array of filters registered with WordPress. 37 37 * 38 * @since 1. 0.138 * @since 1.5.0 39 39 * @access protected 40 40 * @var array $filters The filters registered with WordPress to fire when the plugin loads. … … 45 45 * Initialize the collections used to maintain the actions and filters. 46 46 * 47 * @since 1. 0.147 * @since 1.5.0 48 48 */ 49 49 public function __construct() { … … 57 57 * Add a new action to the collection to be registered with WordPress. 58 58 * 59 * @since 1. 0.159 * @since 1.5.0 60 60 * @param string $hook The name of the WordPress action that is being registered. 61 61 * @param object $component A reference to the instance of the object on which the action is defined. … … 71 71 * Add a new filter to the collection to be registered with WordPress. 72 72 * 73 * @since 1. 0.173 * @since 1.5.0 74 74 * @param string $hook The name of the WordPress filter that is being registered. 75 75 * @param object $component A reference to the instance of the object on which the filter is defined. … … 86 86 * collection. 87 87 * 88 * @since 1. 0.188 * @since 1.5.0 89 89 * @access private 90 90 * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). … … 113 113 * Register the filters and actions with WordPress. 114 114 * 115 * @since 1. 0.1115 * @since 1.5.0 116 116 */ 117 117 public function run() { -
randomrss/trunk/includes/class-randomrss.php
r2661674 r2745544 8 8 * 9 9 * @link https://paydelete.com/randomrss/ 10 * @since 1. 0.110 * @since 1.5.0 11 11 * 12 12 * @package Randomrss … … 23 23 * version of the plugin. 24 24 * 25 * @since 1. 0.125 * @since 1.5.0 26 26 * @package Randomrss 27 27 * @subpackage Randomrss/includes … … 34 34 * the plugin. 35 35 * 36 * @since 1. 0.136 * @since 1.5.0 37 37 * @access protected 38 38 * @var Randomrss_Loader $loader Maintains and registers all hooks for the plugin. … … 43 43 * The unique identifier of this plugin. 44 44 * 45 * @since 1. 0.145 * @since 1.5.0 46 46 * @access protected 47 47 * @var string $randomrss The string used to uniquely identify this plugin. … … 52 52 * The current version of the plugin. 53 53 * 54 * @since 1. 0.154 * @since 1.5.0 55 55 * @access protected 56 56 * @var string $version The current version of the plugin. … … 65 65 * the public-facing side of the site. 66 66 * 67 * @since 1. 0.167 * @since 1.5.0 68 68 */ 69 69 public function __construct() { … … 71 71 $this->version = RANDOMRSS_VERSION; 72 72 } else { 73 $this->version = '1. 0.1';73 $this->version = '1.5.0'; 74 74 } 75 75 $this->randomrss = 'randomrss'; … … 95 95 * with WordPress. 96 96 * 97 * @since 1. 0.197 * @since 1.5.0 98 98 * @access private 99 99 */ … … 133 133 * with WordPress. 134 134 * 135 * @since 1. 0.1135 * @since 1.5.0 136 136 * @access private 137 137 */ … … 148 148 * of the plugin. 149 149 * 150 * @since 1. 0.1150 * @since 1.5.0 151 151 * @access private 152 152 */ … … 164 164 * of the plugin. 165 165 * 166 * @since 1. 0.1166 * @since 1.5.0 167 167 * @access private 168 168 */ … … 179 179 * Run the loader to execute all of the hooks with WordPress. 180 180 * 181 * @since 1. 0.1181 * @since 1.5.0 182 182 */ 183 183 public function run() { … … 189 189 * WordPress and to define internationalization functionality. 190 190 * 191 * @since 1. 0.1191 * @since 1.5.0 192 192 * @return string The name of the plugin. 193 193 */ … … 199 199 * The reference to the class that orchestrates the hooks with the plugin. 200 200 * 201 * @since 1. 0.1201 * @since 1.5.0 202 202 * @return Randomrss_Loader Orchestrates the hooks of the plugin. 203 203 */ … … 209 209 * Retrieve the version number of the plugin. 210 210 * 211 * @since 1. 0.1211 * @since 1.5.0 212 212 * @return string The version number of the plugin. 213 213 */ -
randomrss/trunk/public/class-randomrss-public.php
r2661679 r2745544 5 5 * 6 6 * @link https://paydelete.com/randomrss/ 7 * @since 1. 0.17 * @since 1.5.0 8 8 * 9 9 * @package Randomrss … … 26 26 * The ID of this plugin. 27 27 * 28 * @since 1. 0.128 * @since 1.5.0 29 29 * @access private 30 30 * @var string $randomrss The ID of this plugin. … … 35 35 * The version of this plugin. 36 36 * 37 * @since 1. 0.137 * @since 1.5.0 38 38 * @access private 39 39 * @var string $version The current version of this plugin. … … 44 44 * Initialize the class and set its properties. 45 45 * 46 * @since 1. 0.146 * @since 1.5.0 47 47 * @param string $randomrss The name of the plugin. 48 48 * @param string $version The version of this plugin. … … 58 58 * Register the stylesheets for the public-facing side of the site. 59 59 * 60 * @since 1. 0.160 * @since 1.5.0 61 61 */ 62 62 public function enqueue_styles() { … … 81 81 * Register the JavaScript for the public-facing side of the site. 82 82 * 83 * @since 1. 0.183 * @since 1.5.0 84 84 */ 85 85 public function enqueue_scripts() { -
randomrss/trunk/public/partials/randomrss-public-display.php
r2661679 r2745544 7 7 * 8 8 * @link https://paydelete.com/randomrss/ 9 * @since 1. 0.19 * @since 1.5.0 10 10 * 11 11 * @package Randomrss -
randomrss/trunk/randomrss.php
r2661660 r2745544 3 3 * 4 4 * @link https://paydelete.com/randomrss/ 5 * @since 1. 0.15 * @since 1.5.0 6 6 * @package Randomrss 7 7 * … … 9 9 * Plugin Name: Randomrss 10 10 * Plugin URI: https://paydelete.com/randomrss/ 11 * Description: The RandomRSS Plugin for Wordpress allows you to create RSS feeds featuring up to 10 random posts. Options include filtering by category, tag and new pub dates.12 * Version: 1. 0.111 * Description: The RandomRSS Plugin for Wordpress allows you to create RSS feeds featuring up to 10 random posts. Options include filtering by category, tag, and date range as well as the ability to set the pubDate to the current date/time 12 * Version: 1.5.0 13 13 * Author: PayDelete 14 14 * Author URI: https://profiles.wordpress.org/paydelete/ … … 26 26 /** 27 27 * Currently plugin version. 28 * Start at version 1. 0.1and use SemVer - https://semver.org28 * Start at version 1.5.0 and use SemVer - https://semver.org 29 29 * Rename this for your plugin and update it as you release new versions. 30 30 */ 31 define( 'RANDOMRSS_VERSION', '1. 0.1' );31 define( 'RANDOMRSS_VERSION', '1.5.0' ); 32 32 33 33 /** … … 65 65 * not affect the page life cycle. 66 66 * 67 * @since 1. 0.167 * @since 1.5.0 68 68 */ 69 69 function run_randomrss() { -
randomrss/trunk/uninstall.php
r2661660 r2745544 6 6 * 7 7 * @link https://paydelete.com/ 8 * @since 1. 0.18 * @since 1.5.0 9 9 * 10 10 * @package Randomrss -
randomrss/trunk/vendor/composer/InstalledVersions.php
r2661681 r2745544 28 28 'root' => 29 29 array ( 30 'pretty_version' => '1. 0.1+no-version-set',31 'version' => '1. 0.1.0',30 'pretty_version' => '1.5.0+no-version-set', 31 'version' => '1.5.0.0', 32 32 'aliases' => 33 33 array ( … … 40 40 '__root__' => 41 41 array ( 42 'pretty_version' => '1. 0.1+no-version-set',43 'version' => '1. 0.1.0',42 'pretty_version' => '1.5.0+no-version-set', 43 'version' => '1.5.0.0', 44 44 'aliases' => 45 45 array ( -
randomrss/trunk/vendor/composer/installed.php
r2661681 r2745544 2 2 'root' => 3 3 array ( 4 'pretty_version' => '1. 0.1+no-version-set',5 'version' => '1. 0.1.0',4 'pretty_version' => '1.5.0+no-version-set', 5 'version' => '1.5.0.0', 6 6 'aliases' => 7 7 array ( … … 14 14 '__root__' => 15 15 array ( 16 'pretty_version' => '1. 0.1+no-version-set',17 'version' => '1. 0.1.0',16 'pretty_version' => '1.5.0+no-version-set', 17 'version' => '1.5.0.0', 18 18 'aliases' => 19 19 array (
Note: See TracChangeset
for help on using the changeset viewer.