Plugin Directory

Changeset 501312


Ignore:
Timestamp:
02/06/2012 09:55:31 PM (14 years ago)
Author:
macguru2000
Message:

Updated version number to current release

Location:
catablog/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • catablog/trunk/catablog.php

    r501306 r501312  
    44Plugin URI: http://catablog.illproductions.com/
    55Description: CataBlog is a comprehensive and effortless tool that helps you create, organize and share catalogs, stores, galleries and portfolios on your blog.
    6 Version: 1.4
     6Version: 1.4.1
    77Author: Zachary Segal
    88Author URI: http://catablog.illproductions.com/about/
     
    192192// Remote post on deactivation
    193193function catablog_deactivate() {
    194     $body_array = array('action'=>'deactivate', 'site-url'=>site_url(), 'version'=>'1.4');
     194    $body_array = array('action'=>'deactivate', 'site-url'=>site_url(), 'version'=>'1.4.1');
    195195    $post_action = wp_remote_post('http://catablog.illproductions.com/tracker.php', array('body'=>$body_array));
    196196}
  • catablog/trunk/css/catablog.css

    r498885 r501312  
    11/*
    2  * CataBlog StyleSheet, version 1.4
     2 * CataBlog StyleSheet, version 1.4.1
    33 */
    44
  • catablog/trunk/lib/CataBlog.class.php

    r501306 r501312  
    55 * This file contains the core class for the CataBlog WordPress Plugin.
    66 * @author Zachary Segal <zac@illproductions.com>
    7  * @version 1.4
     7 * @version 1.4.1
    88 * @package catablog
    99 */
     
    1919   
    2020    // plugin version number and blog url
    21     private $version     = "1.4";
     21    private $version     = "1.4.1";
    2222    private $blog_url    = 'http://catablog.illproductions.com/';
    2323    private $debug       = false;
  • catablog/trunk/lib/CataBlogItem.class.php

    r498885 r501312  
    55 * This file contains the class for each CataBlog Item that is fetched from the database.
    66 * @author Zachary Segal <zac@illproductions.com>
    7  * @version 1.4
     7 * @version 1.4.1
    88 * @package catablog
    99 */
  • catablog/trunk/lib/CataBlogWidget.class.php

    r501306 r501312  
    55 * This file contains the widget classes for the CataBlog WordPress Plugin.
    66 * @author Zachary Segal <zac@illproductions.com>
    7  * @version 1.4
     7 * @version 1.4.1
    88 * @package catablog
    99 */
Note: See TracChangeset for help on using the changeset viewer.