Plugin Directory

Changeset 2808944


Ignore:
Timestamp:
11/01/2022 04:48:29 PM (3 years ago)
Author:
netweblogic
Message:

updating wordpress readme for wp 6.1

Location:
wp-fullcalendar
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-fullcalendar/tags/1.4.1/readme.txt

    r2728598 r2808944  
    11=== WP FullCalendar ===
    2 Contributors: netweblogic, mikelynn
     2Contributors: pxlite, msykes, mikelynn
    33Tags: calendar, calendars, jQuery calendar, ajax calendar, event calendars, events calendar
    44Text Domain: wp-fullcalendar
    55Requires at least: 3.6
    6 Tested up to: 6.0
     6Tested up to: 6.1
    77Stable tag: 1.4.1
    88
  • wp-fullcalendar/tags/1.4.1/wp-fullcalendar.php

    r2514839 r2808944  
    44Version: 1.4.1
    55Text Domain: wp-fullcalendar
    6 Plugin URI: http://wordpress.org/extend/plugins/wp-fullcalendar/
     6Plugin URI: https://wordpress.org/extend/plugins/wp-fullcalendar/
    77Description: Uses the jQuery FullCalendar plugin to create a stunning calendar view of events, posts and eventually other CPTs. Integrates well with Events Manager
    8 Author: Marcus Sykes
    9 Author URI: http://msyk.es
     8Author: Pixelite
     9Author URI: https://pixelite.com
    1010*/
    1111
    1212/*
    13 Copyright (c) 2021, Marcus Sykes
     13Copyright (c) 2022, Marcus Sykes
    1414
    1515This program is free software; you can redistribute it and/or
     
    341341    return array_merge($new_links,$links);
    342342}
     343
     344// Add this plugin to EM's dev updates check (EM 5.9.9.2 and later)
     345add_filter('em_org_dev_versions', function( $plugin_slugs ){
     346    $plugin_slugs['wp-fullcalendar'] = array(
     347        'slug' => plugin_basename( __FILE__ ),
     348        'version' => WPFC_VERSION,
     349    );
     350    return $plugin_slugs;
     351});
  • wp-fullcalendar/trunk/readme.txt

    r2728595 r2808944  
    11=== WP FullCalendar ===
    2 Contributors: netweblogic, mikelynn
     2Contributors: pxlite, msykes, mikelynn
    33Tags: calendar, calendars, jQuery calendar, ajax calendar, event calendars, events calendar
    44Text Domain: wp-fullcalendar
    55Requires at least: 3.6
    6 Tested up to: 6.0
     6Tested up to: 6.1
    77Stable tag: 1.4.1
    88
  • wp-fullcalendar/trunk/wp-fullcalendar.php

    r2514839 r2808944  
    44Version: 1.4.1
    55Text Domain: wp-fullcalendar
    6 Plugin URI: http://wordpress.org/extend/plugins/wp-fullcalendar/
     6Plugin URI: https://wordpress.org/extend/plugins/wp-fullcalendar/
    77Description: Uses the jQuery FullCalendar plugin to create a stunning calendar view of events, posts and eventually other CPTs. Integrates well with Events Manager
    8 Author: Marcus Sykes
    9 Author URI: http://msyk.es
     8Author: Pixelite
     9Author URI: https://pixelite.com
    1010*/
    1111
    1212/*
    13 Copyright (c) 2021, Marcus Sykes
     13Copyright (c) 2022, Marcus Sykes
    1414
    1515This program is free software; you can redistribute it and/or
     
    341341    return array_merge($new_links,$links);
    342342}
     343
     344// Add this plugin to EM's dev updates check (EM 5.9.9.2 and later)
     345add_filter('em_org_dev_versions', function( $plugin_slugs ){
     346    $plugin_slugs['wp-fullcalendar'] = array(
     347        'slug' => plugin_basename( __FILE__ ),
     348        'version' => WPFC_VERSION,
     349    );
     350    return $plugin_slugs;
     351});
Note: See TracChangeset for help on using the changeset viewer.