Skip to content

Commit

Permalink
1.414.367
Browse files Browse the repository at this point in the history
  • Loading branch information
arteme committed Oct 9, 2023
1 parent eb2b557 commit 3c26d40
Show file tree
Hide file tree
Showing 34 changed files with 7,086 additions and 8,278 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
Proxy manager - Change Log

## 1.414.367 Development Latest
- :bug: Fix unable to deactivate rules via UI

## 1.413.15 Stable
- :star: Remove deprecated DNS usage
- :star: Raise min Node version to 14.19.0
Expand Down
2 changes: 1 addition & 1 deletion README-zh-CN.md
Expand Up @@ -39,7 +39,7 @@
- <a href="https://nodejs.org/en/download/">Node.js</a> 6+版

### Windows
下载 <a href="https://lum-lpm.com/static/lpm/luminati-proxy-manager-v1.413.15-setup.exe">代理管理安装器</a>.
下载 <a href="https://lum-lpm.com/static/lpm/luminati-proxy-manager-v1.414.367-setup.exe">代理管理安装器</a>.

### Linux/MacOS
- 安装 Node.js 10.15.3版 (最好用x
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -36,7 +36,7 @@ Please report issues or bugs to your account manager or from our [help center](h
## Installation

### Windows
Download the [Proxy Manager installer](https://github.com/luminati-io/luminati-proxy/releases/download/v1.413.15/luminati-proxy-manager-v1.413.15-setup.exe)
Download the [Proxy Manager installer](https://github.com/luminati-io/luminati-proxy/releases/download/v1.414.367/luminati-proxy-manager-v1.414.367-setup.exe)

### Linux/MacOS - Install script
- Run the setup script to install
Expand Down
2 changes: 1 addition & 1 deletion bin/lpm_install.sh
Expand Up @@ -7,7 +7,7 @@ if [ $(id -u) = 0 ]; then
IS_ROOT=1
fi
LUM=0
VERSION="1.413.15"
VERSION="1.414.367"
if [ -f "/usr/local/hola/zon_config.sh" ]; then
LUM=1
fi
Expand Down
21 changes: 17 additions & 4 deletions bin/lum_node.js
@@ -1,6 +1,12 @@
#!/usr/bin/env node
// LICENSE_CODE ZON ISC
'use strict'; /*jslint node:true, esnext:true*/
const dns = require('dns');
configure_dns();
const child_process = require('child_process');
const os = require('os');
const fs = require('fs');
const path = require('path');
const Manager = require('../lib/manager.js');
const file = require('../util/file.js');
const etask = require('../util/etask.js');
Expand All @@ -13,13 +19,20 @@ const cluster_ipc = require('../util/cluster_ipc.js');
const perr = require('../lib/perr.js');
const E = module.exports = {};
const shutdown_timeout = 3000;
const child_process = require('child_process');
const os = require('os');
const fs = require('fs');
const path = require('path');
const logger = require('../lib/logger.js').child({category: 'lum_node'});
let version_msg = null;

function configure_dns(){
const google_dns = ['8.8.8.8', '8.8.4.4'];
const original_dns = dns.getServers();
const servers = google_dns.concat(original_dns.filter(
d=>!google_dns.includes(d)));
// dns.setServers cashes node if there is an in-flight dns resolution
// should be done before any requests are made
// https://github.com/nodejs/node/issues/14734
dns.setServers(servers);
}

E.shutdown = (reason, error=null)=>{
if (E.shutdowning)
return;
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/pub/index.html
@@ -1 +1 @@
<!doctype html><html><head><meta charset="utf-8"><title>Proxy Manager</title><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><base href="/"><link rel="shortcut icon" href="/favicon.ico"><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.0/css/all.css" integrity="sha384-Mmxa0mLqhmOeaE8vgOSbKacftZcsNYDjQzuCOm6D02luYSzBG8vpaOykv9lFQ51Y" crossorigin="anonymous"><script defer="defer" src="/141c5816b7c749fe903c.runtime.js"></script><script defer="defer" src="/eda4b3dabca051fb0775.app.js"></script><script defer="defer" src="/38c316aa2a9686d57fe3.vendor.js"></script></head><body><div id="react_root"></div><div id="notif_react_modal"></div><div id="del_modal"></div></body></html>
<!doctype html><html><head><meta charset="utf-8"><title>Proxy Manager</title><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><base href="/"><link rel="shortcut icon" href="/favicon.ico"><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.0/css/all.css" integrity="sha384-Mmxa0mLqhmOeaE8vgOSbKacftZcsNYDjQzuCOm6D02luYSzBG8vpaOykv9lFQ51Y" crossorigin="anonymous"><script defer="defer" src="/141c5816b7c749fe903c.runtime.js"></script><script defer="defer" src="/81634c7bfbbb76d601f0.app.js"></script><script defer="defer" src="/38c316aa2a9686d57fe3.vendor.js"></script></head><body><div id="react_root"></div><div id="notif_react_modal"></div><div id="del_modal"></div></body></html>

0 comments on commit 3c26d40

Please sign in to comment.