chore: changes for `1.1.3`

This commit is contained in:
Andrei O 2023-10-06 18:45:16 +03:00
parent 076e18d475
commit d46722811f
No known key found for this signature in database
GPG Key ID: B961E5B68389457E
3 changed files with 7 additions and 2 deletions

View File

@ -1,10 +1,14 @@
# Change Log # Change Log
## [Version 1.1.3]
- minor fix to prevent console error log on fetch failure
## [Version 1.1.2] ## [Version 1.1.2]
- changed service worker open notification to use app.yup.io - changed service worker open notification to use app.yup.io
- fixed follow notification with multiple senders - fixed follow notification with multiple senders
## [Version 1.1.1] ## [Version 1.1.1]
- changed auth condition - changed auth condition

View File

@ -1,7 +1,7 @@
{ {
"name": "yup live", "name": "yup live",
"description": "Light extension helper for yup social platform.", "description": "Light extension helper for yup social platform.",
"version": "1.1.2", "version": "1.1.3",
"manifest_version": 3, "manifest_version": 3,
"icons": { "icons": {
"16": "src/assets/icons/yup_ext_16.png", "16": "src/assets/icons/yup_ext_16.png",

View File

@ -101,6 +101,7 @@ const alarmHandler = async () => {
}) })
} }
requests.coinGecko = fetch('https://api.coingecko.com/api/v3/simple/price?ids=yup&vs_currencies=usd') requests.coinGecko = fetch('https://api.coingecko.com/api/v3/simple/price?ids=yup&vs_currencies=usd')
requests.coinGecko.catch(console.warn)
try { try {
const profile = await requests.profile as Response const profile = await requests.profile as Response