Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
It can be used as <a href="https://github.com/transmission/transmission/wiki/Web-Interface">Web Interface</a>, Android/iOS app and Windows/Linux/macOS program.
</p>
<p align="center">

</p>

----
Expand Down Expand Up @@ -202,6 +202,7 @@ Server object:
| path | `string` | Path of Transmission RPC |
| port | `number` | Port of Transmission RPC |
| https | `boolean` | Use HTTPS |
| auth | `object` | Authentication object |


Configuration file example:
Expand All @@ -220,7 +221,11 @@ Configuration file example:
"name":"My server",
"host":"transmission.myserver.com",
"path":"/my/transmission/rpc",
"https":true
"https":true,
"auth": {
"username":"myusername",
"password":"mypassword"
}
}
]
}
Expand Down Expand Up @@ -394,7 +399,7 @@ npx cap open ios

You can start a local dev server using Ionic, but you need to disable same origin policy in your browser to connect to Transmission RPC from a different host. For example, run a new instance of chrome with these flags : `--disable-web-security --disable-gpu --user-data-dir=~/chromeTemp`

Then start the dev server by running this in the root folder of the project:
Then start the dev server by running this in the root folder of the project:

```
npm run serve
Expand Down