Skip to content

Commit

Permalink
adjusted some requored plugins.
Browse files Browse the repository at this point in the history
  • Loading branch information
thejameswilliam committed Jan 31, 2021
1 parent 3d95a76 commit 0cd37c3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 13 deletions.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -10,6 +10,10 @@ Provides a library of additional template tags, 3rd-party libraries, and functio

# Changelog:

## 2.1.2
- Complete re-write to support Gutenberg Editor. We're now focusting on adding additional blocks and a limited number of additional theme fucntions.


## 1.1.2
- Updated `Mindshare_API_Plugin_Updater` class to current version of EDD Plugin Updater

Expand Down
36 changes: 23 additions & 13 deletions inc/require-plugins.php
Expand Up @@ -19,14 +19,14 @@
// ),

// // This is an example of how to include a plugin from an arbitrary external source in your theme.
array(
'name' => 'Advanced Custom Fields Pro', // The plugin name.
'slug' => 'advanced-custom-fields-pro', // The plugin slug (typically the folder name).
'source' => 'https://connect.advancedcustomfields.com/v2/plugins/download?p=pro&k=b3JkZXJfaWQ9MzI5NTN8dHlwZT1kZXZlbG9wZXJ8ZGF0ZT0yMDE0LTA3LTA3IDE1OjU4OjE5', // The plugin source.
'required' => true, // If false, the plugin is only 'recommended' instead of required.
'version' => '5.9.3'
// 'external_url' => 'https://github.com/thomasgriffin/New-Media-Image-Uploader', // If set, overrides default API URL and points to an external URL.
),
// array(
// 'name' => '', // The plugin name.
// 'slug' => '', // The plugin slug (typically the folder name).
// 'source' => '', // The plugin source.
// 'required' => true, // If false, the plugin is only 'recommended' instead of required.
// 'version' => ''
// // 'external_url' => 'https://github.com/thomasgriffin/New-Media-Image-Uploader', // If set, overrides default API URL and points to an external URL.
// ),


// // This is an example of how to include a plugin from a GitHub repository in your theme.
Expand All @@ -40,11 +40,21 @@


// // This is an example of how to include a plugin from the WordPress Plugin Repository.
// array(
// 'name' => 'BuddyPress',
// 'slug' => 'buddypress',
// 'required' => false,
// ),
array(
'name' => 'Simple History',
'slug' => 'simple-history',
'required' => true,
),
array(
'name' => 'What the File',
'slug' => 'what-the-file',
'required' => true,
),
array(
'name' => 'Mailgun',
'slug' => 'mailgun',
'required' => true,
),


// // This is an example of the use of 'is_callable' functionality. A user could - for instance -
Expand Down

0 comments on commit 0cd37c3

Please sign in to comment.