Plugin Directory

Changeset 1503739


Ignore:
Timestamp:
09/27/2016 02:47:36 PM (10 years ago)
Author:
123teru321
Message:

1.3.1

Location:
cfiltering
Files:
110 added
4 edited

Legend:

Unmodified
Added
Removed
  • cfiltering/trunk/apis/access.php

    r1463732 r1503739  
    125125            if ( $sampling > 0 ) {
    126126                if ( $sampling < 1 ) {
    127                     if ( $sampling >= mt_rand() / mt_getrandmax() ) {
     127                    if ( $sampling <= mt_rand() / mt_getrandmax() ) {
    128128                        $validity = false;
    129129                    }
  • cfiltering/trunk/collaborative-filtering.php

    r1503368 r1503739  
    55  Description: Recommendation plugin using collaborative filtering
    66  Author: 123teru321
    7   Version: 1.3.0
     7  Version: 1.3.1
    88  Author URI: http://technote.space/
    99  Text Domain: CollaborativeFiltering
     
    2727
    2828//plugin version
    29 define( 'COLLABORATIVE_FILTERING_PLUGIN_VERSION', '1.3.0' );
     29define( 'COLLABORATIVE_FILTERING_PLUGIN_VERSION', '1.3.1' );
    3030
    3131//plugin file name
  • cfiltering/trunk/readme.txt

    r1503368 r1503739  
    44Requires at least: 3.9.13
    55Tested up to: 4.6.1
    6 Stable tag: 1.3.0
     6Stable tag: 1.3.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3232
    3333== Changelog ==
     34
     35= 1.3.1 =
     36* 2016-09-27  Small bug fix
    3437
    3538= 1.3.0 =
  • cfiltering/trunk/update.json

    r1503368 r1503739  
    33  "slug": "cfiltering",
    44  "download_url": "https://github.com/123teru321/CFiltering/archive/master.zip",
    5   "version": "1.3.0",
     5  "version": "1.3.1",
    66  "tested": "4.6.1",
    77  "homepage": "https://technote.space/",
Note: See TracChangeset for help on using the changeset viewer.