Plugin Directory

Changeset 3019604


Ignore:
Timestamp:
01/10/2024 03:48:58 AM (2 years ago)
Author:
nigelmoore1
Message:

release version 1.3.0

Location:
the-tech-tribe/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • the-tech-tribe/trunk/README.txt

    r2977885 r3019604  
    11=== The Tribal Plugin ===
    2 Contributors: nigelmoore1
     2Contributors: nigelmoore1, allan.casilum
    33Donate link: thetechtribe.com
    44Tags: techtribe, content, syndication
    55Requires at least: 5.0
    6 Tested up to: 6.3.1
    7 Stable tag: 1.2.2
     6Tested up to: 6.4.2
     7Stable tag: 1.3.0
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    5959
    6060== Changelog ==
     61
     62= 1.3.0 - January 08, 2024 =
     63* Fix warning popup message
     64* Maintenance update
     65* Test in WordPress version 6.4.2
    6166
    6267= 1.2.2 - October 11, 2023 =
  • the-tech-tribe/trunk/admin/js/the-tribal-plugin-admin.js

    r2627939 r3019604  
    134134               
    135135                request.done(function( msg ) {
    136                     //console.log(msg);
     136                    console.log(msg);
    137137                    toggleAlertHTML(true, ajaxShowAlert(msg));
    138138                    toggleAjaxStatusHTML(false);
  • the-tech-tribe/trunk/app/AjaxImportPost.php

    r2627939 r3019604  
    5151
    5252        $ret =  \TheTribalPlugin\ImportPost::get_instance()->import();
     53        tttCustomLogs("manual import ret");
     54        tttCustomLogs($ret);
     55        tttCustomLogs("manual import ret");
     56       
    5357        $returnCode = $ret->data['code'];
    5458        $returnMsg = $ret->data['msg'];
  • the-tech-tribe/trunk/app/ImportPost.php

    r2701685 r3019604  
    6868        $post = new Post;
    6969        $getPost = $post->get($args);
     70       
     71        tttCustomLogs('getPost');
     72        tttCustomLogs($getPost);
     73        tttCustomLogs($ret);
     74        tttCustomLogs('getPost');
    7075
    7176        if(
     
    7782            && $getPost->data['code'] != 'error'
    7883            && $getPost->data['posts']['total_post'] >= 1
     84            && $getPost->data['success'] == true
    7985        ) {
     86            tttCustomLogs("start post data import ");
    8087            $timezone_offset = get_option( 'gmt_offset' );
    8188           
     
    202209                }
    203210            }
    204         }else{
    205             $ret['success'] = true;
    206             $ret['msg-header'] = $statusVerbage['nothing']['header'];
    207             $ret['msg'] = $statusVerbage['nothing']['msg'];
    208             //$ret['msg'] = isset($getPost->data['msg']) ? $getPost->data['msg'] : '';
    209             //$ret['code'] = isset($getPost->data['code']) ? $getPost->data['code'] : '';
     211        }
     212        else{
     213            $ret['success'] = $getPost->data['success'];
     214            $ret['msg-header'] = $getPost->data['headers'];
     215            $ret['msg'] = $getPost->data['msg'];
    210216            $ret['code'] = $getPost->data['code'];
    211217            $ret['post_count_imported'] = $countSuccess;
     
    254260            tttCustomLogs("nothing to import ");
    255261        }
    256 
     262       
    257263        tttLastChecked();
    258264       
  • the-tech-tribe/trunk/the-tribal-plugin.php

    r2977885 r3019604  
    1717 * Plugin URI:        thetechtribe.com
    1818 * Description:       This plugin is for members of The Tech Tribe to manage features such as Automated Blog Posting etc.
    19  * Version:           1.2.2
     19 * Version:           1.3.0
    2020 * Author:            The Tech Tribe
    2121 * Author URI:        https://thetechtribe.com
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'THE_TRIBAL_PLUGIN_VERSION', '1.2.2' );
     38define( 'THE_TRIBAL_PLUGIN_VERSION', '1.3.0' );
    3939
    4040//date_default_timezone_set(wp_timezone_string());
Note: See TracChangeset for help on using the changeset viewer.