From e6ee070247fa868d81499b060104a06ad9c2b97c Mon Sep 17 00:00:00 2001 From: Dale Nguyen Date: Sat, 7 Sep 2024 02:48:38 +0000 Subject: [PATCH] chore: update css wording --- .github/workflows/master.yml | 2 +- CHANGELOG.md | 4 ++++ README.md | 10 +++++----- init.php | 4 ++-- readme.txt | 13 ++++++++----- 5 files changed, 20 insertions(+), 13 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index a95bf53..f53421d 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -19,4 +19,4 @@ jobs: SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} SVN_USERNAME: ${{ secrets.SVN_USERNAME }} SLUG: integrate-firebase - VERSION: 0.9.2 + VERSION: 0.9.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index b4bfaa9..8c35a87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [ 0.9.3 ] - 07-09-2024 + +- update css wording + ## [ 0.9.2 ] - 21-04-2024 - test support for WP v6.5.2 diff --git a/README.md b/README.md index e3e6bbb..7238d04 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Requires at least: 4.0.0 Tested up to: 6.5.2 -Stable tag: 0.9.2 +Stable tag: 0.9.3 Requires PHP: 5.2.4 @@ -83,7 +83,7 @@ echo do_shortcode("[firebase_greetings]"); You can show error message when a user cannot login by using a shortcode ``` -echo do_shortcode("[firebase_login_error class='your-class-name'][/firebase_login_error]"); +echo do_shortcode("[firebase_login_error class='your-optional-CSS-class-name'][/firebase_login_error]"); ``` ### How can I show data for a not logged in user? @@ -91,7 +91,7 @@ echo do_shortcode("[firebase_login_error class='your-class-name'][/firebase_logi You can put your data as an HTML code inside a shortcode ``` -echo do_shortcode("[firebase_show_not_login class='your-class-name']YOUR HTML CODE[/firebase_show_not_login]"); +echo do_shortcode("[firebase_show_not_login class='your-optional-CSS-class-name']YOUR HTML CODE[/firebase_show_not_login]"); ``` ### How can I hide or show data for a logged in user? @@ -99,7 +99,7 @@ echo do_shortcode("[firebase_show_not_login class='your-class-name']YOUR HTML CO You can put your data as an HTML code inside a shortcode ``` -echo do_shortcode("[firebase_show class='your-class-name']YOUR HTML CODE[/firebase_show]"); +echo do_shortcode("[firebase_show class='your-optional-CSS-class-name']YOUR HTML CODE[/firebase_show]"); ``` ### How can I show realtime database for a logged in user? @@ -107,7 +107,7 @@ echo do_shortcode("[firebase_show class='your-class-name']YOUR HTML CODE[/fireba You can put your data as an HTML code inside a shortcode. Realtime data will be shown as a table with an id #if-realtime. ``` -echo do_shortcode("[realtime class='your-class-name' collection_name='string' document_name='string']"); +echo do_shortcode("[realtime class='your-optional-CSS-class-name' collection_name='string' document_name='string']"); ``` ### How can I log out? diff --git a/init.php b/init.php index 97d33b1..4e6b029 100644 --- a/init.php +++ b/init.php @@ -16,7 +16,7 @@ * Author URI: http://dalenguyen.me * Contributors: Dale Nguyen (@dalenguyen) * - * Version: 0.9.2 + * Version: 0.9.3 * * Text Domain: integrate-firebase * @@ -54,7 +54,7 @@ exit; } -define('FIREBASE_WP_VERSION', '0.9.2'); +define('FIREBASE_WP_VERSION', '0.9.3'); define('FIREBASE_WP__MINIMUM_WP_VERSION', '4.0.0'); define('FIREBASE_WP__PLUGIN_DIR', plugin_dir_path(__FILE__)); diff --git a/readme.txt b/readme.txt index 306c5fd..88a9175 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/DaleNguyen Tags: firebase Requires at least: 4.0.0 Tested up to: 6.5.2 -Stable tag: 0.9.2 +Stable tag: 0.9.3 Requires PHP: 5.2.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -64,25 +64,25 @@ You can add a shortcode to show user's info You can show error message when a user cannot login by using a shortcode -> echo do_shortcode("[firebase_login_error class="your-class-name"][/firebase_login_error]"); +> echo do_shortcode("[firebase_login_error class="your-optional-CSS-class-name"][/firebase_login_error]"); = How can I show data for a not logged in user? = You can put your data as an HTML code inside a shortcode -> echo do_shortcode("[firebase_show_not_login class="your-class-name"]YOUR HTML CODE[/firebase_show_not_login]"); +> echo do_shortcode("[firebase_show_not_login class="your-optional-CSS-class-name"]YOUR HTML CODE[/firebase_show_not_login]"); = How can I hide or show data for a logged in user? = You can put your data as an HTML code inside a shortcode -> echo do_shortcode("[firebase_show class="your-class-name"]YOUR HTML CODE[/firebase_show]"); +> echo do_shortcode("[firebase_show class="your-optional-CSS-class-name"]YOUR HTML CODE[/firebase_show]"); = How can I show realtime database for a logged in user? = You can put your data as an HTML code inside a shortcode. Realtime data will be shown as a table with an id #if-realtime. -> echo do_shortcode("[realtime class="your-class-name" collection_name="string" document_name="string"]"); +> echo do_shortcode("[realtime class="your-optional-CSS-class-name" collection_name="string" document_name="string"]"); = How can I log out? @@ -97,6 +97,9 @@ This is a shortcode for log out button. == Changelog == += 0.9.3 = +* update css wording + = 0.9.2 = * test support for WP v6.5.2