diff --git a/README.md b/README.md index feb5988ab..1136b2a56 100644 --- a/README.md +++ b/README.md @@ -260,6 +260,12 @@ _Add-ons are developed and maintained under **[Hoppscotch Organization](https:// - Unlimited team members - User roles +🚚 **Bulk Edit:** Edit key-value pairs in bulk. + +- Entries are separated by newline +- Keys and values are separated by : +- Prepend // to any row you want to add but keep disabled + **For more features, please read our [documentation](https://docs.hoppscotch.io).** ## **Demo** diff --git a/nuxt.config.js b/nuxt.config.js index d01106ec4..b77f39f75 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -55,7 +55,7 @@ export default { }, { itemprop: "image", - content: `${process.env.BASE_URL}/banner.jpg`, + content: `${process.env.BASE_URL}/banner.png`, }, // Add to homescreen for Chrome on Android. Fallback for PWA (handled by nuxt) { @@ -155,7 +155,7 @@ export default { name: `${options.name} - ${options.shortDescription}`, description: options.description, ogHost: process.env.BASE_URL, - ogImage: `${process.env.BASE_URL}/banner.jpg`, + ogImage: `${process.env.BASE_URL}/banner.png`, twitterCard: "summary_large_image", twitterSite: options.social.twitter, twitterCreator: options.social.twitter, diff --git a/static/banner.jpg b/static/banner.jpg deleted file mode 100644 index cb94dd640..000000000 Binary files a/static/banner.jpg and /dev/null differ diff --git a/static/banner.png b/static/banner.png index b048df472..bd43db95e 100644 Binary files a/static/banner.png and b/static/banner.png differ