Skip to content

Commit

Permalink
update version to v1.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
slient-coder committed Apr 21, 2023
1 parent d8cd1bf commit f353cb2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unisat-extension",
"version": "1.1.16",
"version": "1.1.17",
"private": true,
"homepage": "https://github.com/unisat-wallet/extension#readme",
"bugs": {
Expand Down
9 changes: 9 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@

# UniSat Wallet Release Notes

## v1.1.17
**Major changes**
- Feature
- Add API unisat.inscribeTransfer(ticker:string, amount:string)

**Minor changes**
- Add sentry to trace bugs


## v1.1.16
**Major changes**
- Feature
Expand Down
14 changes: 7 additions & 7 deletions src/content-script/pageProvider/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import ReadyPromise from './readyPromise';
import { $, domReadyCall } from './utils';

const log = (event, ...args) => {
// if (process.env.NODE_ENV !== 'production') {
// console.log(
// `%c [unisat] (${new Date().toTimeString().slice(0, 8)}) ${event}`,
// 'font-weight: 600; background-color: #7d6ef9; color: white;',
// ...args
// );
// }
if (process.env.NODE_ENV !== 'production') {
console.log(
`%c [unisat] (${new Date().toTimeString().slice(0, 8)}) ${event}`,
'font-weight: 600; background-color: #7d6ef9; color: white;',
...args
);
}
};
const script = document.currentScript;
const channelName = script?.getAttribute('channel') || 'UNISAT';
Expand Down

0 comments on commit f353cb2

Please sign in to comment.