Skip to content
This repository has been archived by the owner on May 3, 2019. It is now read-only.

Add Network Proxy Support #170

Closed
nurmd opened this issue Dec 21, 2017 · 5 comments
Closed

Add Network Proxy Support #170

nurmd opened this issue Dec 21, 2017 · 5 comments
Assignees
Milestone

Comments

@nurmd
Copy link

nurmd commented Dec 21, 2017

Feature Request

Please add proxy support because ..unfortunately some streaming services are restricted to some location.

@ColinDuquesnoy ColinDuquesnoy self-assigned this Dec 21, 2017
@ColinDuquesnoy ColinDuquesnoy added this to the 3.3.0 milestone Dec 21, 2017
@ColinDuquesnoy
Copy link
Owner

ColinDuquesnoy commented Dec 21, 2017

Yes this is needed. I 'll add that feature to version 3.3

@ColinDuquesnoy
Copy link
Owner

It would be nice to be able to use a different network proxy for each streaming service. I will make this option a service specific option. It will be located in the streaming service settings (Settings -> Services), see #176.

@nurmd
Copy link
Author

nurmd commented Dec 23, 2017

Yes.
I am looking for a javascript to support in QtWebEngine to add in user script as a workaround.
I can only found a script for chrome

chrome.windows.onCreated.addListener(function() {

var config = {
  mode: "fixed_servers",
  rules: {
    proxyForHttp: {
      scheme: "http",
      host: "192.168.3.31",
      port: 8080
    },
    bypassList: ["noproxy.com"]
  }
};
chrome.proxy.settings.set(
    {value: config, scope: 'regular'},
    function() {});

});

@ColinDuquesnoy
Copy link
Owner

ColinDuquesnoy commented Dec 27, 2017

I added support for network proxy. You can try it by using the latest continuous build. It will be released officially in version 3.3.0.

I tested it successfully with wynk, which I could not access without using an indian network proxy:

screenshot from 2017-12-27 13-25-02

Please give it a try and report back (whether it's working or not).

ColinDuquesnoy added a commit that referenced this issue Dec 27, 2017
@ColinDuquesnoy ColinDuquesnoy changed the title Proxy Support Add Proxy Support Dec 29, 2017
@ColinDuquesnoy ColinDuquesnoy changed the title Add Proxy Support Add Network Proxy Support Dec 29, 2017
@nurmd
Copy link
Author

nurmd commented Jan 14, 2018

Working perfectly @ColinDuquesnoy . Just add a save button (not necessary but, as user prospective we are used to that :P )

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants