PluginProbe
UpStream: a Project Management Plugin for WordPress / trunk
UpStream: a Project Management Plugin for WordPress vtrunk
trunk 1.39.0 1.39.1 1.39.2 1.39.3 2.0.7 2.1.0
← All changes | includes.php +22 -16 1.39.0trunk View file →
@@ -1,19 +1,25 @@
1 1 <?php
2 -define('UPSTREAM_VERSION', '1.39.0');
2 +/**
3 + * Defining the UpStream version, and also any addon's version that working with this this release.
4 + *
5 + * @package UpStream
6 + */
3 7
8 +define( 'UPSTREAM_VERSION', '2.1.1' );
9 +
4 10 global $upstream_addon_requirements;
5 -$upstream_addon_requirements = [
6 - ['Upstream-Advanced-Permissions/upstream-advanced-permissions.php', '1.4.0'],
7 - ['UpStream-API/upstream-api.php', '1.0.0'],
8 - ['UpStream-Calendar-View/upstream-calendar-view.php', '1.6.0'],
9 - ['UpStream-Copy-Project/upstream-copy-project.php', '1.3.0'],
10 - ['UpStream-Custom-Fields/upstream-custom-fields.php', '1.9.0'],
11 - ['UpStream-Customizer/upstream-customizer.php', '1.2.1'],
12 - ['UpStream-Email-Notifications/upstream-email-notifications.php', '1.6.0'],
13 - ['UpStream-Forms/upstream-forms.php', '1.1.0'],
14 - ['UpStream-Frontend-Edit/upstream-frontend-edit.php', '1.18.0'],
15 - ['UpStream-Name-Replacement/upstream-name-replacement.php', '1.0.0'],
16 - ['UpStream-Project-Timeline/upstream-project-timeline.php', '1.6.0'],
17 - ['UpStream-Reporting/upstream-reporting.php', '1.2.0'],
18 - ['UpStream-Time-Tracking/upstream-time-tracking.php', '1.0.0'],
19 -];
11 +$upstream_addon_requirements = array(
12 + array( 'Upstream-Advanced-Permissions/upstream-advanced-permissions.php', '2.0.7' ),
13 + array( 'UpStream-API/upstream-api.php', '2.0.7' ),
14 + array( 'UpStream-Calendar-View/upstream-calendar-view.php', '2.0.7' ),
15 + array( 'UpStream-Copy-Project/upstream-copy-project.php', '2.0.7' ),
16 + array( 'UpStream-Custom-Fields/upstream-custom-fields.php', '2.0.7' ),
17 + array( 'UpStream-Customizer/upstream-customizer.php', '2.0.7' ),
18 + array( 'UpStream-Email-Notifications/upstream-email-notifications.php', '2.0.7' ),
19 + array( 'UpStream-Forms/upstream-forms.php', '2.0.7' ),
20 + array( 'UpStream-Frontend-Edit/upstream-frontend-edit.php', '2.0.7' ),
21 + array( 'UpStream-Name-Replacement/upstream-name-replacement.php', '2.0.7' ),
22 + array( 'UpStream-Project-Timeline/upstream-project-timeline.php', '2.0.7' ),
23 + array( 'UpStream-Reporting/upstream-reporting.php', '2.0.7' ),
24 + array( 'UpStream-Time-Tracking/upstream-time-tracking.php', '2.0.7' ),
25 +);