✏️ Updated features list, minor UI tweaks

This commit is contained in:
liyasthomas
2019-10-26 01:41:57 -07:00
parent e9830479af
commit b1157a0615
3 changed files with 36 additions and 10 deletions

View File

@@ -130,6 +130,25 @@ _History entries can be sorted by any fields_
_Histories can deleted one-by-one or all together_
📁 **Collections**: Keep your API requests organized with collections and folders. Reuse them with a single click.
**Options:**
- Create infinite collections, folders and requests
- Edit, delete, move, export, import and replace
_Export, import and replace collections with JSON files_
_Collections are synced with local session storage_
📁 **Proxy**: Enable Proxy Mode from Settings to access blocked APIs
**Features:**
- Hide your IP address
- Fixes [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) (Cross Origin Resource Sharing) issues
- Access APIs served in non-HTTPS (`http://`, `localhost`, etc.)
_Proxy is hosted by ApolloTV - [Privacy policy](https://apollotv.xyz/legal)_
## Demo 🚀 [![Website](https://img.shields.io/website-up-down-green-red/https/shields.io.svg?label=website)](https://postwoman.io)
[https://postwoman.io](https://postwoman.io)

View File

@@ -319,9 +319,13 @@
<input placeholder="Token" name="bearer_token" v-model="bearerToken" />
</li>
</ul>
<p class="align-right"><pw-toggle
<div class="flex-wrap">
<pw-toggle
:on="!urlExcludes.auth"
@change="setExclude('auth', !$event)">Include Authentication in URL</pw-toggle></p>
@change="setExclude('auth', !$event)">
Include in URL
</pw-toggle>
</div>
</pw-section>
</div>
<input id="tab-two" type="radio" name="grp" />

View File

@@ -48,17 +48,19 @@
</ul>
</pw-section>
<pw-section class="blue" icon="public" label="Proxy">
<ul class="info">
<li><p>Postwoman's Proxy is hosted by ApolloTV.<br>You can read the ApolloTV privacy policy by clicking <a href="https://apollotv.xyz/legal" target="_blank">here</a/>.</p></li>
</ul>
<ul>
<li>
<pw-toggle
:on="settings.PROXY_ENABLED"
@change="toggleSetting('PROXY_ENABLED')"
>Proxy {{ settings.PROXY_ENABLED ? "enabled" : "disabled" }}</pw-toggle>
<span>
<pw-toggle
:on="settings.PROXY_ENABLED"
@change="toggleSetting('PROXY_ENABLED')"
>Proxy {{ settings.PROXY_ENABLED ? "enabled" : "disabled" }}</pw-toggle>
</span>
</li>
</ul>
<ul class="info">
<li><p>Postwoman's Proxy is hosted by ApolloTV.<br>Read the ApolloTV privacy policy <a href="https://apollotv.xyz/legal" target="_blank">here</a>.</p></li>
</ul>
<!--
PROXY SETTINGS URL AND KEY
--------------
@@ -80,7 +82,8 @@
<style scoped>
.info {
margin-left: 5px;
margin-left: 4px;
color: var(--fg-light-color);
}
</style>