Plugin Directory

Changeset 3172654


Ignore:
Timestamp:
10/21/2024 06:57:47 AM (17 months ago)
Author:
moazsup
Message:

Fixed blank calendar issue

Location:
embed-outlook-teams-calendar-events
Files:
57 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • embed-outlook-teams-calendar-events/trunk/embed-outlook-teams-calendar-events.php

    r3100314 r3172654  
    44 * Plugin URI: https://plugins.miniorange.com/
    55 * Description: This plugin will allow you to sync personal and group calendars, events, contacts from Outlook to WordPress.
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Author: miniOrange
    88 * License: GPLv2 or later
     
    3232define( 'MOTCE_PLUGIN_FILE', __FILE__ );
    3333define( 'MOTCE_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
    34 define( 'MOTCE_PLUGIN_VERSION', '1.0.3' );
     34define( 'MOTCE_PLUGIN_VERSION', '1.0.4' );
    3535define( 'MOTCE_SETUP_GUIDE_URL', 'https://plugins.miniorange.com/setup-guide-for-wordpress-outlook-calendar-events-integration' );
    3636MOTCE_Outlook::load_instance();
  • embed-outlook-teams-calendar-events/trunk/includes/js/calendarview.js

    r3100314 r3172654  
    340340
    341341      events.forEach(event => {
    342         event.color = "motce_"+categories[event.calendar].color;
     342        if(categories[event.calendar]){
     343          event.color = "motce_"+categories[event.calendar].color;
     344        }
     345
     346        else {
     347          event.color = "motce_presetdefault";
     348        }
    343349      });
    344350
  • embed-outlook-teams-calendar-events/trunk/readme.txt

    r3100314 r3172654  
    44Tags: Outlook, Microsoft Teams, Azure, Office 365, Microsoft Graph
    55Requires at least: 5.5
    6 Tested up to: 6.5
     6Tested up to: 6.6
    77Requires PHP: 7.0
    8 Stable tag: 1.0.3
     8Stable tag: 1.0.4
    99License: MIT/Expat
    1010License URI: https://docs.miniorange.com/mit-license
     
    8080== ChangeLog ==
    8181
     82= 1.0.4 =
     83* Bug Fix: Fixed the blank calendar issue
     84
    8285= 1.0.3 =
    8386* Fixed UPN Group ID Bug
     
    102105== Upgrade Notice ==
    103106
     107= 1.0.4 =
     108* Bug Fix: Fixed the blank calendar issue
     109
    104110= 1.0.3 =
    105111* Fixed UPN Group ID Bug
Note: See TracChangeset for help on using the changeset viewer.