diff --git a/.travis.yml b/.travis.yml
index 0223e03ab..92275152d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,38 +13,40 @@
language: node_js
node_js:
- - "12"
+ - "12"
+
+os: linux
addons:
- apt:
- packages:
- - libgconf-2-4 # cypress binary dependency
+ apt:
+ packages:
+ - libgconf-2-4 # cypress binary dependency
env:
- - DEPLOY_ENV=POSTWOMAN_IO
+ - DEPLOY_ENV=POSTWOMAN_IO
cache:
- npm: true
- directories:
- - "node_modules"
- - ~/.cache
+ npm: true
+ directories:
+ - "node_modules"
+ - ~/.cache
branches:
- only:
- - "master"
+ only:
+ - "master"
install:
- - "npm install firebase-tools"
- - "npm install"
+ - "npm install firebase-tools"
+ - "npm install"
before_script:
- - "npm run test"
+ - "npm run test"
script:
- - "cd functions"
- - "npm install"
- - "cd .."
- - "npm run generate"
+ - "cd functions"
+ - "npm install"
+ - "cd .."
+ - "npm run generate"
notifications:
webhooks: https://www.travisbuddy.com
diff --git a/README.md b/README.md
index 193f0bbec..245e5795a 100644
--- a/README.md
+++ b/README.md
@@ -3,10 +3,10 @@
- API request builder - A free, fast, and beautiful alternative to Postman + A free, fast & beautiful API request builder
- Helps you create your requests faster, saving you precious time on your development - Subscribe + Web alternative to Postman - Helps you create requests faster, saving precious time on development - Subscribe
@@ -190,30 +190,13 @@ _Requests with Pre-Request Scripts are indicated in History entries_ 🌎 **i18n β**: Experience the app in your own language. 1. Scroll down to the footer - 2. Click "Choose Language" button + 2. Click "Choose Language" icon button 3. Select your language from the menu -_Keep in mind translations aren't available for all source and target language combinations_ +_Keep in mind: Translations aren't available for all source and target language combinations_ **To provide a localized experience for users around the world, you can add you own translations.** - - Add a new locale in `lang/` - - Example: `lang/es-ES.js` - - Mention `code`, `name`, `iso` and `file` in `nuxt.config.js` - - Example: - ``` - i18n: { - locales: [{ - code: 'es', - name: 'Español', - iso: 'es-ES', - file: 'es-ES.js' - }] - } - ``` - _**All `i18n` contributions are welcome to `i18n` [branch](https://github.com/liyasthomas/postwoman/tree/i18n) only!**_ 📦 **Add-ons**: Official add-ons for Postwoman. @@ -228,6 +211,16 @@ _**All `i18n` contributions are welcome to `i18n` [branch](https://github.com/li _Add-ons are developed and maintained under **[Official Postwoman Organization](https://github.com/postwoman-io)**._ +☁️ **Auth + Sync**: Sign in and sync in real-time. + +**Sign in with:** + - Google + - GitHub + +**Sync:** + - History + - Collections + **To find out more, please check out [Postwoman Wiki](https://github.com/liyasthomas/postwoman/wiki).** ## Demo 🚀 [](https://postwoman.io) diff --git a/assets/css/styles.scss b/assets/css/styles.scss index 574f57c94..7f6c9d5ec 100644 --- a/assets/css/styles.scss +++ b/assets/css/styles.scss @@ -592,7 +592,6 @@ pre { select { height: 37px; - background-color: var(--bg-dark-color); cursor: pointer; -webkit-appearance: none; -moz-appearance: none; diff --git a/build.js b/build.js index be7f3f4c3..c19eb2987 100644 --- a/build.js +++ b/build.js @@ -53,7 +53,7 @@ try { // Write version data into a file fs.writeFileSync( - PW_BUILD_DATA_DIR + "/version.json", + `${PW_BUILD_DATA_DIR}/version.json`, JSON.stringify(version) ); })(); diff --git a/components/collections/addCollection.vue b/components/collections/addCollection.vue index c39b7b257..39b7a7675 100644 --- a/components/collections/addCollection.vue +++ b/components/collections/addCollection.vue @@ -57,7 +57,7 @@ export default { methods: { addNewCollection() { if (!this.$data.name) { - this.$toast.info('Please provide a valid name for the collection') + this.$toast.info("Please provide a valid name for the collection"); return; } this.$store.commit("postwoman/addNewCollection", { diff --git a/components/collections/editCollection.vue b/components/collections/editCollection.vue index 98c9154be..084bb78bf 100644 --- a/components/collections/editCollection.vue +++ b/components/collections/editCollection.vue @@ -60,7 +60,7 @@ export default { methods: { saveCollection() { if (!this.$data.name) { - this.$toast.info('Please provide a valid name for the collection'); + this.$toast.info("Please provide a valid name for the collection"); return; } const collectionUpdated = { diff --git a/components/collections/importExportCollections.vue b/components/collections/importExportCollections.vue index 254bdc684..8df70d36d 100644 --- a/components/collections/importExportCollections.vue +++ b/components/collections/importExportCollections.vue @@ -11,6 +11,54 @@ +