Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rilwis committed Aug 19, 2024
1 parent af1eea3 commit a520af4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/dotorg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Release
on:
workflow_dispatch:
branch:
- master
push:
tags:
- "*"
jobs:
call-workflow:
uses: wpmetabox/meta-box/.github/workflows/wordpressorg.yml@master
secrets:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
10 changes: 4 additions & 6 deletions mb-comment-meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,17 @@
* Plugin Name: MB Comment Meta
* Plugin URI: https://metabox.io/plugins/mb-comment-meta/
* Description: Add custom fields (meta data) for comments.
* Version: 1.0
* Version: 1.0.1
* Author: MetaBox.io
* Author URI: https://metabox.io
* License: GPL2+
* Text Domain: mb-comment-meta
* Domain Path: /languages/
*
* @package Meta Box
* @subpackage MB Comment Meta
*/

// Prevent loading this file directly.
defined( 'ABSPATH' ) || exit;
if ( ! defined( 'ABSPATH' ) ) {
return;
}

if ( ! function_exists( 'mb_comment_meta_load' ) ) {
/**
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: metabox, rilwis
Donate link: https://paypal.me/anhtnt
Tags: comment meta, comment custom fields, custom fields, comment, comments
Requires at least: 4.3
Tested up to: 4.8
Stable tag: 1.0
Tested up to: 6.6.1
Stable tag: 1.0.1
License: GPLv2 or later

Add custom fields for comments. Support 40+ field types with easy config.
Expand Down Expand Up @@ -43,6 +43,9 @@ Install **MB Comment Meta** extension

== Changelog ==

= 1.0.1 - 2024-08-19 =
Fix running PHP Codesniffer when installing & autoload the plugin's main file via Composer

= 1.0 =
- First version

Expand Down

0 comments on commit a520af4

Please sign in to comment.