Skip to content

Commit

Permalink
feat(D5i, 3PS) :: Set version to 0.1.0 for tagging and easier referen…
Browse files Browse the repository at this point in the history
…cing

Part of elegantthemes/Divi#26948
  • Loading branch information
fikrirasyid committed Feb 19, 2022
1 parent a7295b0 commit 82bb495
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions d5i-modal-dev-clipboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: D5i Modal Dev Clipboard
Plugin URI:
Description: Modal that displays clipboard data
Version: 1.0.0
Version: 0.1.0
Author: Elegant Themes
Author URI: https://elegantthemes.com
License: GPL2
Expand All @@ -30,7 +30,7 @@
/**
* Creates the extension's main class instance.
*
* @since 1.0.0
* @since 0.1.0
*/
function d5i_initialize_extension() {
require_once plugin_dir_path( __FILE__ ) . 'includes/D5IModalDevClipboard.php';
Expand All @@ -41,7 +41,7 @@ function d5i_initialize_extension() {
/**
* Add custom item on admin bar for `Clipboard`
*
* @since ??
* @since 0.1.0
*
*/
function d5i_admin_bar_modal_link( $admin_bar ) {
Expand Down
10 changes: 5 additions & 5 deletions includes/D5IModalDevClipboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class D5I_D5IModalDevClipboard extends DiviExtension {
/**
* The gettext domain for the extension's translations.
*
* @since 1.0.0
* @since 0.1.0
*
* @var string
*/
Expand All @@ -14,7 +14,7 @@ class D5I_D5IModalDevClipboard extends DiviExtension {
/**
* The extension's WP Plugin name.
*
* @since 1.0.0
* @since 0.1.0
*
* @var string
*/
Expand All @@ -23,11 +23,11 @@ class D5I_D5IModalDevClipboard extends DiviExtension {
/**
* The extension's version
*
* @since 1.0.0
* @since 0.1.0
*
* @var string
*/
public $version = '1.0.0';
public $version = '0.1.0';

/**
* D5I_D5IModalDevClipboard constructor.
Expand All @@ -45,7 +45,7 @@ public function __construct( $name = 'd5i-modal-dev-clipboard', $args = array()
/**
* Sets bundle dependencies.
*
* @since 1.0.0
* @since 0.1.0
*/
protected function _set_bundle_dependencies() {
$this->_bundle_dependencies = array(
Expand Down
8 changes: 4 additions & 4 deletions includes/modal/component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const {
/**
* Component for rendering clipboard item's payload item.
*
* @since ??
* @since 0.1.0
*
* @param {PayloadItemProps} param0 Component props.
*
Expand All @@ -60,7 +60,7 @@ const PayloadItem = ({
/**
* Component for rendering clipboard item.
*
* @since ??
* @since 0.1.0
*
* @param {ClipboardItemProps} param0 Component props.
*
Expand Down Expand Up @@ -93,7 +93,7 @@ const ClipboardItem = ({
/**
* Component for rendering clipboard items.
*
* @since ??
* @since 0.1.0
*
* @param {ClipboardItemsProps} param0 Component props.
*
Expand All @@ -118,7 +118,7 @@ const ClipboardItems = ({ items }) => (
/**
* Dev clipboard modal component which visualize the clipboard's state.
*
* @since ??
* @since 0.1.0
*
* @param {Props} props Component props.
*
Expand Down

0 comments on commit 82bb495

Please sign in to comment.