Skip to content

Commit

Permalink
🔖 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Nov 25, 2022
1 parent a9d26d2 commit 87099c1
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 15 deletions.
6 changes: 3 additions & 3 deletions likecoin/assets/js/admin-settings/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"files": {
"main.css": "/static/css/main.9a50826b.css",
"main.js": "/static/js/main.8dac60d6.js",
"main.js": "/static/js/main.640c6e61.js",
"static/media/settings.svg": "/static/media/settings.e6433049ce71e4ae060b68cb558dd84b.svg",
"index.html": "/index.html",
"main.9a50826b.css.map": "/static/css/main.9a50826b.css.map",
"main.8dac60d6.js.map": "/static/js/main.8dac60d6.js.map"
"main.640c6e61.js.map": "/static/js/main.640c6e61.js.map"
},
"entrypoints": [
"static/css/main.9a50826b.css",
"static/js/main.8dac60d6.js"
"static/js/main.640c6e61.js"
]
}
2 changes: 1 addition & 1 deletion likecoin/assets/js/admin-settings/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><title>React App</title><script defer="defer" src="/static/js/main.8dac60d6.js"></script><link href="/static/css/main.9a50826b.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><title>React App</title><script defer="defer" src="/static/js/main.640c6e61.js"></script><link href="/static/css/main.9a50826b.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

This file was deleted.

2 changes: 1 addition & 1 deletion likecoin/assets/js/sidebar/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion likecoin/js/sidebar/src/pages/LikeCoinPluginSideBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function LikeCoinPluginSideBar(props) {
.isCurrentPostPublished());
const postDate = useSelect((select) => select('core/editor').getEditedPostAttribute('modified_gmt'));
useEffect(() => {
setShowPublisnISCNButton(!!isCurrentPostPublished && !props.ISCNId)
setShowPublisnISCNButton(!!isCurrentPostPublished && !props.ISCNId);
}, [isCurrentPostPublished, props.ISCNId]);
useEffect(() => {
setShowUpdateISCNButton(!!(isCurrentPostPublished
Expand Down
4 changes: 2 additions & 2 deletions likecoin/likecoin.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Plugin Name: LikeCoin
* Plugin URI: https://github.com/likecoin/likecoin-wordpress
* Description: Integrate your Liker ID, add LikeCoin Button and decentralized publishing to WordPress.
* Version: 2.6.4
* Version: 2.7.0
* Author: LikeCoin
* Author URI: https://like.co/
* License: GPLv3
Expand Down Expand Up @@ -41,7 +41,7 @@
define( 'LC_DIR', plugin_dir_path( __FILE__ ) );
define( 'LC_PLUGIN_SLUG', 'likecoin' );
define( 'LC_PLUGIN_NAME', 'LikeCoin' );
define( 'LC_PLUGIN_VERSION', '2.6.4' );
define( 'LC_PLUGIN_VERSION', '2.7.0' );

require_once dirname( __FILE__ ) . '/includes/constant/options.php';
require_once dirname( __FILE__ ) . '/public/likecoin.php';
Expand Down
12 changes: 11 additions & 1 deletion likecoin/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Donate link: https://github.com/sponsors/likecoin
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 5.4
Stable tag: 2.6.4
Stable tag: 2.7.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -144,6 +144,16 @@ Creators can register content metadata to guarantee its integrity by acquiring a

== Changelog ==

= 2.7.0 =

- Add license field when publishing to ISCN
- Remove matters and IPFS column from post list
- Remove web monetization settings
- Move ISCN badge option into main setting page
- Move Liker ID settings into a single setting page
- Simplify editor sidebar layout
- Update copywriting

= 2.6.4 =

- Improve support to WordPress < 5.7
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "likecoin-wordpress",
"version": "2.6.4",
"version": "2.7.0",
"description": "",
"engines": {
"node": ">=14"
Expand Down

0 comments on commit 87099c1

Please sign in to comment.