Skip to content

Commit

Permalink
Stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
twoelevenjay committed Oct 20, 2024
1 parent 74a08ea commit 5d72fd7
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 4 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deploy to WordPress SVN

on:
push:
tags:
- 'v*.*.*' # Trigger deployment only when a new tag is pushed.

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 1

- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@v2
with:
svn-url: https://plugins.svn.wordpress.org/cmb2-admin-extension/
plugin-slug: cmb2-admin-extension
svn-username: ${{ secrets.WORDPRESS_USERNAME }}
svn-password: ${{ secrets.WORDPRESS_PASSWORD }}
generate-zip: true
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Changelog

### 1.0.0 beta 10.19.2024
* Major version release with stability improvements and compatibility update for WordPress 6.0.
* Improved user interface for managing meta boxes from the WordPress admin.

### 0.2.3 beta 04.23.2018
* Fix headers already sent warning.

Expand Down
2 changes: 1 addition & 1 deletion cmb2-admin-extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Author: twoelevenjay
* Author URI: http://211j.com
* Contributors:
* Version: 0.2.3
* Version: 1.0.0
* Text Domain: cmb2-admin-extension
* Domain Path: /languages
*
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
**Contributors:** twoelevenjay
**Donate link:** https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=leon%40211j%2ecom&lc=MQ&item_name=Two%20Eleven%20Jay&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
**Tags:** metaboxes, forms, fields, options, settings
**Requires at least:** 4.5
**Tested up to:** 4.9
**Stable tag:** 0.2.3
**Requires at least:** 4.9
**Tested up to:** 6.6
**Stable tag:** 1.0.0
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
54 changes: 54 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
=== CMB2 Admin Extension ===
Contributors: twoelevenjay
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=leon%40211j%2ecom&lc=MQ&item_name=Two%20Eleven%20Jay&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
Tags: metaboxes, forms, fields, options, settings
Requires at least: 4.5
Tested up to: 6.0
Requires PHP: 7.0
Stable tag: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

== Description ==
CMB2 Admin Extension adds a user interface for admins to create CMB2 meta boxes from the WordPress admin.

This plugin requires the most current version of the CMB2 plugin. You can find CMB2 [here](https://wordpress.org/plugins/cmb2/) and its documentation [here](https://github.com/WebDevStudios/CMB2/wiki/Field-Types#types).

== Installation ==
1. Extract the .zip file and upload its contents to the `/wp-content/plugins/` directory. Alternatively, you can install directly through the Plugin directory within your WordPress admin.
2. Activate the plugin through the 'Plugins' screen in WordPress.
3. Navigate to the CMB2 Admin Extension interface within the WordPress admin to create and manage meta boxes.

== Frequently Asked Questions ==
= Do I need CMB2 to use this extension? =
Yes, CMB2 is required for this extension to work.

= Where can I find documentation? =
Documentation will be available in the [GitHub wiki](https://github.com/twoelevenjay/CMB2-Admin-Extension/wiki).

== Changelog ==
= 1.0.0 =
* Major version release with stability improvements and compatibility update for WordPress 6.0.
* Improved user interface for managing meta boxes from the WordPress admin.

= 0.2.3 =
* Compatibility update for WordPress 4.9.

= 0.0.2 =
* Hide UI for disallowed users.

= 0.0.1 =
* Initial release.

== Upgrade Notice ==
= 1.0.0 =
This major version introduces stability improvements and compatibility with the latest WordPress version.

== Translation ==
* Available in French and Portuguese. Contributions are welcome for other languages.

== 3rd Party Resources ==
* [CMB2](https://github.com/WebDevStudios/CMB2/) from [WebDevStudios](https://webdevstudios.com).

== Contribution ==
All contributions are welcome. Please read the [CONTRIBUTING](https://github.com/twoelevenjay/CMB2-Admin-Extension/blob/master/CONTRIBUTING.md) doc for more details.

0 comments on commit 5d72fd7

Please sign in to comment.