Changeset 2780939
- Timestamp:
- 09/06/2022 08:14:28 PM (4 years ago)
- Location:
- piq-quote
- Files:
-
- 23 added
- 10 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/README.md (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/banner-772×250.png (added)
-
tags/1.0.1/assets/icon-256×256.png (added)
-
tags/1.0.1/assets/screenshot-1.png (added)
-
tags/1.0.1/build (added)
-
tags/1.0.1/build/block.json (added)
-
tags/1.0.1/build/index.asset.php (added)
-
tags/1.0.1/build/index.css (added)
-
tags/1.0.1/build/index.js (added)
-
tags/1.0.1/build/style-index.css (added)
-
tags/1.0.1/package-lock.json (added)
-
tags/1.0.1/package.json (added)
-
tags/1.0.1/piq-quote.php (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/src (added)
-
tags/1.0.1/src/block.json (added)
-
tags/1.0.1/src/edit.js (added)
-
tags/1.0.1/src/editor.scss (added)
-
tags/1.0.1/src/index.js (added)
-
tags/1.0.1/src/save.js (added)
-
tags/1.0.1/src/style.scss (added)
-
trunk/README.md (modified) (1 diff)
-
trunk/assets/banner-772×250.png (modified) (previous)
-
trunk/assets/icon-256×256.png (modified) (previous)
-
trunk/build/block.json (modified) (1 diff)
-
trunk/package.json (modified) (1 diff)
-
trunk/piq-quote.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/block.json (modified) (1 diff)
-
trunk/src/edit.js (modified) (1 diff)
-
trunk/src/save.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
piq-quote/trunk/README.md
r2769373 r2780939 30 30 ### Publish 31 31 32 _TODO: Add instructions to commit to WordPress SVN_ 32 After making appropriate changes copy everything over into the folder 33 ``wordpress-piq-plugin/piq-wordpress/trunk`` 34 then make a copy of that folder and drop it into 35 ``wordpress-piq-plugin/piq-wordpress/tags/xxx`` 36 where xxx = your new version number 37 38 Publishing is done by committing code to the SVN repo using petco's credentials. 39 username: petco 40 password: look it up in 1pass 41 42 SVN repo: https://plugins.svn.wordpress.org/piq-quote 33 43 34 44 -
piq-quote/trunk/build/block.json
r2769373 r2780939 3 3 "apiVersion": 2, 4 4 "name": "create-block/piq-quote", 5 "version": "1.0. 0",5 "version": "1.0.1", 6 6 "title": "Pet Insurance Quotes", 7 7 "category": "embed", -
piq-quote/trunk/package.json
r2769373 r2780939 1 1 { 2 2 "name": "piq-quote", 3 "version": "1.0. 0",3 "version": "1.0.1", 4 4 "description": "This plug-in inserts a quote form on your page that will launch a results page that lists all of the available insurance providers' offerings.", 5 5 "author": "Qstart Labs", -
piq-quote/trunk/piq-quote.php
r2769373 r2780939 3 3 * Plugin Name: PIQ-Quote 4 4 * Description: This plug-in inserts a quote form on your page that will launch a results page that lists all of the available insurance providers' offerings. 5 * Version: 1.0. 05 * Version: 1.0.1 6 6 * Requires at least: 5.5 7 7 * Requires PHP: 7.0 -
piq-quote/trunk/readme.txt
r2769401 r2780939 4 4 Requires at least: 5.5 5 5 Tested up to: 6.0 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 42 42 * Plugin released. 43 43 44 = 1.0.1 = 45 * Bug fixes 46 44 47 == Upgrade Notice == 45 48 … … 55 58 * Privacy Policy can be found at https://www.petinsurancequotes.com/privacy-policy/ 56 59 57 * Terms of Use can be found at https://www.petinsurancequotes.com/terms-of-use/60 * Terms of Use can be found at https://www.petinsurancequotes.com/terms-of-use/ -
piq-quote/trunk/src/block.json
r2769373 r2780939 3 3 "apiVersion": 2, 4 4 "name": "create-block/piq-quote", 5 "version": "1.0. 0",5 "version": "1.0.1", 6 6 "title": "Pet Insurance Quotes", 7 7 "category": "embed", -
piq-quote/trunk/src/edit.js
r2769373 r2780939 30 30 return ( 31 31 <div { ...blockProps }> 32 <iframe class='petco-iframe' src='http:// localhost:3000/quote/embedded-form' title='Pet Insurance Quotes' frameBorder='0'></iframe>32 <iframe class='petco-iframe' src='http://petinsurancequotes.com/quote/embedded-form' title='Pet Insurance Quotes' frameBorder='0'></iframe> 33 33 </div> 34 34 ); -
piq-quote/trunk/src/save.js
r2769373 r2780939 22 22 return ( 23 23 <div { ...blockProps }> 24 <iframe class='petco-iframe' src='http:// localhost:3000/quote/embedded-form' title='Pet Insurance Quotes' frameBorder='0'></iframe>24 <iframe class='petco-iframe' src='http://petinsurancequotes.com/quote/embedded-form' title='Pet Insurance Quotes' frameBorder='0'></iframe> 25 25 </div> 26 26 );
Note: See TracChangeset
for help on using the changeset viewer.