Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add settings entry allowing to specify a custom network proxy #3329

Open
slicerbot opened this issue Mar 13, 2020 · 1 comment
Open

Add settings entry allowing to specify a custom network proxy #3329

slicerbot opened this issue Mar 13, 2020 · 1 comment
Labels
Priority: Low Small, non-essential improvements or fixes Type: Enhancement Improvement to functionality
Milestone

Comments

@slicerbot
Copy link
Collaborator

This issue was created automatically from an original Mantis Issue. Further discussion may take place here.

@lassoan lassoan added Priority: Low Small, non-essential improvements or fixes Type: Enhancement Improvement to functionality labels Mar 20, 2020
@lassoan lassoan added this to the Backlog milestone Mar 20, 2020
@jcfr
Copy link
Member

jcfr commented May 5, 2020

Now that we use python3, setting http_proxy and https_proxy environment variables in the launcher settings (that are also used on macOS) should be sufficient.

The following could be done from one of the setting panel:

  QSettings settings(app->launcherSettingsFilePath(), QSettings::IniFormat);
  settings.beginGroup("EnvironmentVariables");
  settings.setValue("http_proxy",  "<value of the text box>")
  settings.setValue("https_proxy", "<value of the text box>")
  settings.endGroup();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Priority: Low Small, non-essential improvements or fixes Type: Enhancement Improvement to functionality
Development

No branches or pull requests

3 participants