Changeset 3172654
- Timestamp:
- 10/21/2024 06:57:47 AM (17 months ago)
- Location:
- embed-outlook-teams-calendar-events
- Files:
-
- 57 added
- 1 deleted
- 3 edited
-
tags/1.0.4 (added)
-
tags/1.0.4/API (added)
-
tags/1.0.4/API/class-motce-authorization.php (added)
-
tags/1.0.4/API/class-motce-customer.php (added)
-
tags/1.0.4/API/class-motce-outlook.php (added)
-
tags/1.0.4/Controller (added)
-
tags/1.0.4/Controller/class-motce-admin-controller.php (added)
-
tags/1.0.4/Controller/class-motce-app-config.php (added)
-
tags/1.0.4/Controller/class-motce-mail-controller.php (added)
-
tags/1.0.4/Observer (added)
-
tags/1.0.4/Observer/class-motce-admin-observer.php (added)
-
tags/1.0.4/Observer/class-motce-embed-observer.php (added)
-
tags/1.0.4/Observer/class-motce-forms-observer.php (added)
-
tags/1.0.4/View (added)
-
tags/1.0.4/View/class-motce-admin-view.php (added)
-
tags/1.0.4/View/class-motce-app-config.php (added)
-
tags/1.0.4/View/class-motce-calendar-view.php (added)
-
tags/1.0.4/View/class-motce-feedback-form.php (added)
-
tags/1.0.4/View/class-motce-mail-view.php (added)
-
tags/1.0.4/View/class-motce-shortcode-view.php (added)
-
tags/1.0.4/View/class-motce-support-form.php (added)
-
tags/1.0.4/Wrappers (added)
-
tags/1.0.4/Wrappers/class-motce-outlook-wrapper.php (added)
-
tags/1.0.4/Wrappers/class-motce-plugin-constants.php (added)
-
tags/1.0.4/Wrappers/class-motce-wp-wrapper.php (added)
-
tags/1.0.4/class-motce-namespace-autoloader.php (added)
-
tags/1.0.4/class-motce-outlook.php (added)
-
tags/1.0.4/embed-outlook-teams-calendar-events.php (added)
-
tags/1.0.4/images (added)
-
tags/1.0.4/images/61456.png (added)
-
tags/1.0.4/images/angry.png (added)
-
tags/1.0.4/images/calendar.png (added)
-
tags/1.0.4/images/flags16.png (added)
-
tags/1.0.4/images/happy.png (added)
-
tags/1.0.4/images/loader.gif (added)
-
tags/1.0.4/images/miniorange.png (added)
-
tags/1.0.4/images/normal.png (added)
-
tags/1.0.4/images/outlook.svg (added)
-
tags/1.0.4/images/sad.png (added)
-
tags/1.0.4/images/smile.png (added)
-
tags/1.0.4/images/support-form.png (added)
-
tags/1.0.4/images/support-header2.jpg (added)
-
tags/1.0.4/includes (added)
-
tags/1.0.4/includes/css (added)
-
tags/1.0.4/includes/css/calendarview.css (added)
-
tags/1.0.4/includes/css/motce_feedback_form.css (added)
-
tags/1.0.4/includes/css/motce_settings.css (added)
-
tags/1.0.4/includes/css/supportform.css (added)
-
tags/1.0.4/includes/css/supportform.min.css (added)
-
tags/1.0.4/includes/js (added)
-
tags/1.0.4/includes/js/calendarview.js (added)
-
tags/1.0.4/includes/js/phone.js (added)
-
tags/1.0.4/includes/js/select2.min.js (added)
-
tags/1.0.4/includes/js/supportform.js (added)
-
tags/1.0.4/includes/js/timepicker.min.js (added)
-
tags/1.0.4/readme.txt (added)
-
tags/1.0.4/uninstall.php (added)
-
trunk/API/class-motce-azure.php (deleted)
-
trunk/embed-outlook-teams-calendar-events.php (modified) (2 diffs)
-
trunk/includes/js/calendarview.js (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
embed-outlook-teams-calendar-events/trunk/embed-outlook-teams-calendar-events.php
r3100314 r3172654 4 4 * Plugin URI: https://plugins.miniorange.com/ 5 5 * Description: This plugin will allow you to sync personal and group calendars, events, contacts from Outlook to WordPress. 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Author: miniOrange 8 8 * License: GPLv2 or later … … 32 32 define( 'MOTCE_PLUGIN_FILE', __FILE__ ); 33 33 define( 'MOTCE_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR ); 34 define( 'MOTCE_PLUGIN_VERSION', '1.0. 3' );34 define( 'MOTCE_PLUGIN_VERSION', '1.0.4' ); 35 35 define( 'MOTCE_SETUP_GUIDE_URL', 'https://plugins.miniorange.com/setup-guide-for-wordpress-outlook-calendar-events-integration' ); 36 36 MOTCE_Outlook::load_instance(); -
embed-outlook-teams-calendar-events/trunk/includes/js/calendarview.js
r3100314 r3172654 340 340 341 341 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 } 343 349 }); 344 350 -
embed-outlook-teams-calendar-events/trunk/readme.txt
r3100314 r3172654 4 4 Tags: Outlook, Microsoft Teams, Azure, Office 365, Microsoft Graph 5 5 Requires at least: 5.5 6 Tested up to: 6. 56 Tested up to: 6.6 7 7 Requires PHP: 7.0 8 Stable tag: 1.0. 38 Stable tag: 1.0.4 9 9 License: MIT/Expat 10 10 License URI: https://docs.miniorange.com/mit-license … … 80 80 == ChangeLog == 81 81 82 = 1.0.4 = 83 * Bug Fix: Fixed the blank calendar issue 84 82 85 = 1.0.3 = 83 86 * Fixed UPN Group ID Bug … … 102 105 == Upgrade Notice == 103 106 107 = 1.0.4 = 108 * Bug Fix: Fixed the blank calendar issue 109 104 110 = 1.0.3 = 105 111 * Fixed UPN Group ID Bug
Note: See TracChangeset
for help on using the changeset viewer.