-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from dalenguyen/develop
Develop
- Loading branch information
Showing
9 changed files
with
82 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Push to Master Branch | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
deploy-plugin: | ||
name: New tag | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: WordPress Plugin Deploy | ||
uses: 10up/action-wordpress-plugin-deploy@master | ||
env: | ||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | ||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | ||
SLUG: integrate-firebase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,57 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [ 0.7.0 ] - 18-08-2020 | ||
|
||
- Fixed add_options_page error | ||
- Preformated data before showing in dashboard | ||
- Delegated button style to WordPress | ||
- Updated firebase package to 7.18.0 | ||
|
||
## [ 0.6.1 ] - 22-05-2019 | ||
|
||
- Removed hide realtime table script | ||
|
||
## [ 0.6.0 ] - 21-05-2020 | ||
|
||
- Show realtime data publicly | ||
|
||
## [ 0.5.3 ] - 16-02-2020 | ||
|
||
- Update firebase scripts | ||
|
||
## [ 0.5.2 ] - 30-03-2019 | ||
* Show realtime database after login | ||
|
||
- Show realtime database after login | ||
|
||
## [ 0.5.1 ] - 11-08-2018 | ||
* Hide login form after logging in | ||
|
||
- Hide login form after logging in | ||
|
||
## [ 0.5.0 ] - 04-08-2018 | ||
|
||
* Add shortcode to display when not login | ||
* Add error handling shortcode | ||
- Add shortcode to display when not login | ||
- Add error handling shortcode | ||
|
||
## [ 0.4.0 ] - 17-07-2018 | ||
|
||
* Added Firestore database support in Dashboard | ||
- Added Firestore database support in Dashboard | ||
|
||
## [ 0.3.2 ] - 17-07-2018 | ||
|
||
* Fixed firebase-show shortcode | ||
- Fixed firebase-show shortcode | ||
|
||
## [ 0.3.1 ] - 17-07-2018 | ||
|
||
* Fixed getting credentials | ||
- Fixed getting credentials | ||
|
||
## [ 0.3.0 ] - 02-07-2018 | ||
|
||
* Added about information | ||
* Added Real Time database support in Dashboard | ||
- Added about information | ||
- Added Real Time database support in Dashboard | ||
|
||
## [ 0.2.0 ] - 25-5-2018 | ||
|
||
* Added firebase scripts and styles to header | ||
* Implement login and logout features | ||
- Added firebase scripts and styles to header | ||
- Implement login and logout features |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,5 @@ | ||
/* Login form */ | ||
|
||
#firebase-login-form input { | ||
width: 375px; | ||
display: block; | ||
border: 1px solid #999; | ||
height: 25px; | ||
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3); | ||
-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3); | ||
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3); | ||
} | ||
|
||
.firebase-btn { | ||
border: 1px solid grey; | ||
background-color: white; | ||
padding: 10px 24px; | ||
margin: 20px 0; | ||
cursor: pointer; | ||
} | ||
|
||
.firebase-btn:hover { | ||
border-color: #2196F3;; | ||
#firebase-form-submit { | ||
margin-top: 1rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters