Plugin Directory

Changeset 1506517


Ignore:
Timestamp:
10/01/2016 03:58:34 PM (9 years ago)
Author:
heimsveld
Message:

release 2.5.2

Location:
chronosly-events-calendar
Files:
4 edited
33 copied

Legend:

Unmodified
Added
Removed
  • chronosly-events-calendar/tags/2.5.2/README.txt

    r1500197 r1506517  
    66Requires at least: 3.1
    77Tested up to:  4.5.3
    8 Stable tag: 2.5.1
     8Stable tag: 2.5.2
    99License: GPLv2
    1010
  • chronosly-events-calendar/tags/2.5.2/README.txt~

    r1500197 r1506517  
    66Requires at least: 3.1
    77Tested up to:  4.5.3
    8 Stable tag: 2.4.8
     8Stable tag: 2.5.1
    99License: GPLv2
    1010
  • chronosly-events-calendar/tags/2.5.2/chronosly.php

    r1500197 r1506517  
    44 * Plugin URI: https://www.chronosly.com
    55 * Description: Chronosly is one of the plugins you have always dreamt about. Designed to suit all users (basic, designers, and software developers). Choose your template and you are ready to publish your events. Install addons to enhance the preset plugin features. You can get a wide selection of templates and addons in our marketplace
    6  * Version: 2.5.1
     6 * Version: 2.5.2
    77 * Author: Chronosly
    88 * Author URI: https://www.chronosly.com
     
    2626define('CHRONOSLY_TEMPLATES_URL',  plugins_url()."/chronosly-templates"); //path para incluir scripts o css
    2727define('CHRONOSLY_DEBUG', false); //debug mode
    28 define('CHRONOSLY_VERSION', "2.5.1"); //debug mode
     28define('CHRONOSLY_VERSION', "2.5.2"); //debug mode
    2929define('CHRONOSLY_ADMIN_INTERFACE', 1);  //Todo: hacer diferentes interficies de admin simple o varios event
    3030define('CHRONOSLY_ADMIN_MODALITY', 1);  //Todo: hacer diferentes modalidades segun la tematica
  • chronosly-events-calendar/tags/2.5.2/post-types/post_type_chronosly_calendar.php

    r1500197 r1506517  
    249249                        $pos = Post_Type_Chronosly_Calendar::get_event_position_by_hour(get_the_title(), $meta, get_the_ID());
    250250                        do{
    251                             if($settings["hide_past_on_calendar"] != 1 or $start>= strtotime(date("Y-m-d"))) {$elements["days"][date('Y-m-d',$start)]["$pos"]= get_the_ID();}
     251                            if($settings["hide_past_on_calendar"] != 1 or $start >= strtotime(date("Y-m-d"))) {
     252                                $elements["days"][date('Y-m-d',$start)]["$pos"]= get_the_ID();
     253                            }
    252254                            $start = strtotime("+ 1 day",$start);
    253255                            // echo date('Y-m-d',$start)." $start $end $endHours $end_top<br/>";
     
    346348                            $end =  strtotime($meta["ev-to"][0]);
    347349                        }//si no acabamos en el ultimo dia del mes
    348                         else $end = strtotime(date("Y-m-1", strtotime($year."-".$month+1)))-1;
    349                         $end_top = strtotime(date("Y-m-1", strtotime($year."-".$month+1)))-1;
     350                        else $end = strtotime(date("Y-m-1", strtotime($year."-".($month+1))))-1;
     351                        $end_top = strtotime(date("Y-m-1", strtotime($year."-".($month+1))))-1;
    350352
    351353                        if($settings["chronosly_week_start"] == 1) {
     
    511513                            --$count;
    512514                            while($start <= $end and $start <= $end_top){//rellenamos los dias de este tramo
    513                                 if($start >= $start_min and ($endHours < $end_top or date('Y-m-d',$start) != date('Y-m-d',$endHours)) and ($settings["hide_past_on_calendar"] != 1 or $start>= strtotime(date("Y-m-d")))) $elements["days"][date('Y-m-d',$start)]["$pos"]= array("id" => $id, "start" => $start1, "end" => $end );
     515                                if($start >= $start_min and ($endHours < $end_top or date('Y-m-d',$start) != date('Y-m-d',$endHours)) and ($settings["hide_past_on_calendar"] != 1 or $start>= strtotime(date("Y-m-d")))) {
     516
     517                                    $elements["days"][date('Y-m-d',$start)]["$pos"]= array("id" => $id, "start" => $start1, "end" => $end );
     518                                }
    514519                                $start = strtotime("+ 1 day",$start);
    515520                                //echo date('Y-m-d',$start)." ".date('Y-m-d',$end)."<br/>";
     
    10381043        }
    10391044
    1040      public function get_permalink(){
     1045       public function get_permalink(){
    10411046            global $sitepress, $Post_Type_Chronosly;
    10421047            $slug = "chronosly-calendar";
  • chronosly-events-calendar/trunk/README.txt

    r1500197 r1506517  
    66Requires at least: 3.1
    77Tested up to:  4.5.3
    8 Stable tag: 2.5.1
     8Stable tag: 2.5.2
    99License: GPLv2
    1010
  • chronosly-events-calendar/trunk/README.txt~

    r1500197 r1506517  
    66Requires at least: 3.1
    77Tested up to:  4.5.3
    8 Stable tag: 2.4.8
     8Stable tag: 2.5.1
    99License: GPLv2
    1010
  • chronosly-events-calendar/trunk/chronosly.php

    r1500197 r1506517  
    44 * Plugin URI: https://www.chronosly.com
    55 * Description: Chronosly is one of the plugins you have always dreamt about. Designed to suit all users (basic, designers, and software developers). Choose your template and you are ready to publish your events. Install addons to enhance the preset plugin features. You can get a wide selection of templates and addons in our marketplace
    6  * Version: 2.5.1
     6 * Version: 2.5.2
    77 * Author: Chronosly
    88 * Author URI: https://www.chronosly.com
     
    2626define('CHRONOSLY_TEMPLATES_URL',  plugins_url()."/chronosly-templates"); //path para incluir scripts o css
    2727define('CHRONOSLY_DEBUG', false); //debug mode
    28 define('CHRONOSLY_VERSION', "2.5.1"); //debug mode
     28define('CHRONOSLY_VERSION', "2.5.2"); //debug mode
    2929define('CHRONOSLY_ADMIN_INTERFACE', 1);  //Todo: hacer diferentes interficies de admin simple o varios event
    3030define('CHRONOSLY_ADMIN_MODALITY', 1);  //Todo: hacer diferentes modalidades segun la tematica
  • chronosly-events-calendar/trunk/post-types/post_type_chronosly_calendar.php

    r1500197 r1506517  
    249249                        $pos = Post_Type_Chronosly_Calendar::get_event_position_by_hour(get_the_title(), $meta, get_the_ID());
    250250                        do{
    251                             if($settings["hide_past_on_calendar"] != 1 or $start>= strtotime(date("Y-m-d"))) {$elements["days"][date('Y-m-d',$start)]["$pos"]= get_the_ID();}
     251                            if($settings["hide_past_on_calendar"] != 1 or $start >= strtotime(date("Y-m-d"))) {
     252                                $elements["days"][date('Y-m-d',$start)]["$pos"]= get_the_ID();
     253                            }
    252254                            $start = strtotime("+ 1 day",$start);
    253255                            // echo date('Y-m-d',$start)." $start $end $endHours $end_top<br/>";
     
    346348                            $end =  strtotime($meta["ev-to"][0]);
    347349                        }//si no acabamos en el ultimo dia del mes
    348                         else $end = strtotime(date("Y-m-1", strtotime($year."-".$month+1)))-1;
    349                         $end_top = strtotime(date("Y-m-1", strtotime($year."-".$month+1)))-1;
     350                        else $end = strtotime(date("Y-m-1", strtotime($year."-".($month+1))))-1;
     351                        $end_top = strtotime(date("Y-m-1", strtotime($year."-".($month+1))))-1;
    350352
    351353                        if($settings["chronosly_week_start"] == 1) {
     
    511513                            --$count;
    512514                            while($start <= $end and $start <= $end_top){//rellenamos los dias de este tramo
    513                                 if($start >= $start_min and ($endHours < $end_top or date('Y-m-d',$start) != date('Y-m-d',$endHours)) and ($settings["hide_past_on_calendar"] != 1 or $start>= strtotime(date("Y-m-d")))) $elements["days"][date('Y-m-d',$start)]["$pos"]= array("id" => $id, "start" => $start1, "end" => $end );
     515                                if($start >= $start_min and ($endHours < $end_top or date('Y-m-d',$start) != date('Y-m-d',$endHours)) and ($settings["hide_past_on_calendar"] != 1 or $start>= strtotime(date("Y-m-d")))) {
     516
     517                                    $elements["days"][date('Y-m-d',$start)]["$pos"]= array("id" => $id, "start" => $start1, "end" => $end );
     518                                }
    514519                                $start = strtotime("+ 1 day",$start);
    515520                                //echo date('Y-m-d',$start)." ".date('Y-m-d',$end)."<br/>";
     
    10381043        }
    10391044
    1040      public function get_permalink(){
     1045       public function get_permalink(){
    10411046            global $sitepress, $Post_Type_Chronosly;
    10421047            $slug = "chronosly-calendar";
Note: See TracChangeset for help on using the changeset viewer.