You can download package files manually, copy them to packages
folder and then symlink to it from other places which use them (on Windows Vista and later, you can use mklink
command). You can also just copy them everywhere, instead of symlinking, but that complicates maintenance.
Simpler solution, if you have access to full installation from the machine without proxy, is to copy packages folder from there.
Even simpler, I sometimes keep test projects in my dropbox folder, so i just update when I am on my home computer, and it works fine on my office machine behind the proxy.
That being said, I was able to fix the proxy issue by specifying following system environment variables (address/port combination below is made up, use the correct one for your setup):
HTTP_PROXY: 192.168.123.123:1234
HTTPS_PROXY: 192.168.123.123:1234
in addition, to enable DartEditor to check for editor updates, add following to your DartEditor.ini file:
-Dhttp.proxyHost=192.168.123.123
-Dhttp.proxyPort=1234
If your proxy uses authentication, than check also following settings (mine doesn't so I can't tell):
-Dhttp.proxyUser=XXX
-Dhttp.proxyPassword=XXX
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…