|
6 | 6 | Description: A simple content generator to display the versions and links of the various BMLT components. Add [bmlt_versions] to a page or a post to generate the list. |
7 | 7 | Author: bmlt-enabled |
8 | 8 | Author URI: https://bmlt.app |
9 | | -Version: 1.8.1 |
| 9 | +Version: 1.8.2 |
10 | 10 | Install: Drop this directory into the "wp-content/plugins/" directory and activate it. |
11 | 11 | */ |
12 | 12 | /* Disallow direct access to the plugin file */ |
@@ -78,7 +78,7 @@ public function bmltVersionsAdminOptionsPage() |
78 | 78 | <td><input type="text" id="bmltVersionsGithubApiKey" name="bmltVersionsGithubApiKey" value="<?php echo get_option('bmltVersionsGithubApiKey'); ?>" /></td> |
79 | 79 | </tr> |
80 | 80 | <tr valign="top"> |
81 | | - <th scope="row"><label for="rootServerDoc">Root Server Documentation</label></th> |
| 81 | + <th scope="row"><label for="rootServerDoc">Server Documentation</label></th> |
82 | 82 | <td><input type="text" id="rootServerDoc" name="rootServerDoc" value="<?php echo get_option('rootServerDoc'); ?>" /></td> |
83 | 83 | </tr> |
84 | 84 | <tr valign="top"> |
@@ -122,11 +122,11 @@ public function bmltVersionsSimpleFunc($atts = []) |
122 | 122 |
|
123 | 123 | $products = [ |
124 | 124 | 'root_server' => [ |
125 | | - 'github_name' => 'bmlt-root-server', |
126 | | - 'display_name' => 'Root Server', |
| 125 | + 'github_name' => 'bmlt-server', |
| 126 | + 'display_name' => 'BMLT Server', |
127 | 127 | 'docs_option_name' => 'rootServerDoc', |
128 | | - 'download_url' => 'https://github.com/bmlt-enabled/bmlt-root-server/releases/', |
129 | | - 'github_url' => 'https://github.com/bmlt-enabled/bmlt-root-server' |
| 128 | + 'download_url' => 'https://github.com/bmlt-enabled/bmlt-server/releases/', |
| 129 | + 'github_url' => 'https://github.com/bmlt-enabled/bmlt-server' |
130 | 130 | ], |
131 | 131 | 'crouton' => [ |
132 | 132 | 'github_name' => 'crouton', |
@@ -237,7 +237,7 @@ public function bmltVersionsFunc($atts = []) |
237 | 237 | } |
238 | 238 |
|
239 | 239 | $repositories = [ |
240 | | - 'root_server' => ['display_name' => 'BMLT Root Server', 'name' => 'bmlt-root-server', 'source' => 'github'], |
| 240 | + 'root_server' => ['display_name' => 'BMLT Server', 'name' => 'bmlt-root-server', 'source' => 'github'], |
241 | 241 | 'yap' => ['display_name' => 'Yap', 'name' => 'yap', 'source' => 'github'], |
242 | 242 | 'wordpress' => ['display_name' => 'Wordpress Satellite', 'name' => 'bmlt-wordpress-satellite-plugin', 'source' => 'wordpress'], |
243 | 243 | 'drupal' => ['display_name' => 'Drupal Satellite', 'name' => 'bmlt-drupal', 'source' => 'drupal'], |
|
0 commit comments