341 Commits
Author SHA1 Message Date
New FutureandGitHub 8edd11dd3f feat(cf): keep proxied config in cloudflare (#314) 2022-03-13 17:28:07 +08:00
New FutureandGitHub 95de71dca5 ci(azure): remove python2.7 windows 2022-03-13 06:00:18 +00:00
New FutureandGitHub 83e71acbc0 ci(azure): remove python2.7 on MacOS 2022-03-13 05:46:08 +00:00
New FutureandGitHub 4d42a1f878 Merge branch 'master' of https://github.com/NewFuture/DDNS 2022-03-13 05:26:19 +00:00
New FutureandGitHub 62b30a6b4d ci(azure): fix macOS python 2022-03-13 05:26:16 +00:00
NN708andGitHub 9cfdc14fbb Support environment variables in Docker image (#304)
* feat(docker): add entrypoint.sh

* docs(docker): example using environment variables
2022-03-01 10:54:59 +08:00
914f3c09c3 fix(ip.py): ignore non-utf format encoding (#288)
Co-authored-by: Red_Hairy_Mouse <56833537+cjw-bot@users.noreply.github.com>
v2.10.3
2021-10-12 13:51:13 +08:00
New FutureandGitHub 5b03cd249d Update .travis.yml v2.10.2 2021-07-30 12:06:10 +08:00
New FutureandGitHub dac43a438d update Travis #277 2021-07-30 12:01:36 +08:00
New FutureandGitHub c7565cb4bb Update .travis.yml v2.10.1 2021-07-28 13:09:58 +08:00
36f9c97a9c update dnspod for request length (#272)
default request length for dnspod is 3000

Co-authored-by: New Future <NewFuture@users.noreply.github.com>
2021-07-21 14:13:00 +08:00
New FutureandGitHub 473034a014 update travis ci (#274)
* update travis ci

* branches
2021-07-21 13:44:48 +08:00
Leonhardt92andGitHub 5e420fbe4a Update README.md (#273)
阿里云 accesskey文档已失效
2021-07-21 12:58:27 +08:00
New FutureandGitHub 35ee01f9a6 Merge pull request #269 from NewFuture/feat-cli-config
feat(config): supports cli argument and environment variables  to set config
2021-06-23 10:36:54 +08:00
New FutureandGitHub 9e54d4cca1 doc(readme): update config 2021-06-14 12:20:46 +00:00
New FutureandGitHub 3eae884dfe default config file 2021-06-14 12:07:17 +00:00
New FutureandGitHub 98f83c5997 feat(config): support environment variables 2021-06-14 11:53:45 +00:00
New FutureandGitHub 91a82eb244 feat(config): cli argument supports to set config 2021-06-14 08:39:04 +00:00
New FutureandGitHub cd4c7dec36 ignore venv v2.9.10 2021-04-16 09:48:39 +00:00
狂男风andGitHub ccd96dfd99 fix quote_via not compatible with Python2 (#255) 2021-04-16 16:29:25 +08:00
New FutureandGitHub 18c738696a update Azure pipelines Status badge v2.9.9 2021-04-13 11:54:01 +08:00
FerricIonandGitHub a21a0d8857 Update run.py (#253)
thanks @FerricIon
2021-04-13 11:36:26 +08:00
New FutureandGitHub e0a1390ddf fix #173 domain pattern to match start with * (#245) 2021-04-07 20:11:33 +08:00
xufan6andGitHub e327858d0c fix regex_v6 string (#239)
example:
          inet6 addr: fe80::f471:b5ff:fea0:2687/64 Scope:Link
2021-03-30 16:37:17 +08:00
狂男风andGitHub 56df5f6090 fix #231 change signature() encoding method to quote() to meet docs of alidns (#238)
* should use quote() to encode space to %20 according to the docs

* quote() after urlencode() not need exclude '/' safe
2021-03-24 11:58:20 +08:00
New FutureandGitHub 62eed8bb94 Update dockerhub.yml
Set up QEMU
v2.9.8
2021-02-18 17:49:15 +08:00
New FutureandGitHub 4ef3fa764b Update dockerhub.yml 2021-02-18 17:43:20 +08:00
New FutureandGitHub d3b033a008 Update Dockerfile 2021-02-18 17:40:37 +08:00
New FutureandGitHub ee79310acc Update dockerhub.yml 2021-02-18 17:26:17 +08:00
New FutureandGitHub 982cfb969b update buildx (#226) 2021-02-18 17:20:49 +08:00
New FutureandGitHub 4ed1205156 fix callback #222 (#224) 2021-02-18 11:43:25 +08:00
libshikieikiandGitHub cb5541718c Fix shebang typo (#217) 2020-12-17 18:59:12 +08:00
0417d15e30 update systemd install script (#216)
* add systemd install script

* rename systemd script

* fix

* fix

* fix: update readme, python script

* Update systemd.sh

update

* Update systemd.sh

Co-authored-by: New Future <NewFuture@users.noreply.github.com>
2020-11-24 22:27:34 +08:00
New FutureandGitHub 2c28b5c555 Merge pull request #209 from jackhhh/patch-2
Change ddns.exe to cmd in Windows Task Scheduler.
2020-10-16 20:00:24 +08:00
JackandGitHub 6150663a99 Change ddns.exe to cmd in Windows Task Scheduler.
Windows Task Scheduler is not CMD, the redirecting operator '>>' can only effect in CMD. So the operator will cause '0x2' error in Windows Task Scheduler.
My last commit https://github.com/NewFuture/DDNS/pull/208/commits/8ea0d5976de4a668e973e19548c8f2315f7b930f will force add the redirecting to the Win TS due to the double quotes in ```RUNCMD```, while the previous commit did not add redirecting to Win TS as expected and the log file was always empty.
One solution in this commit is to change the running program in Win TS from ddns.exe to cmd, then run ddns.exe in cmd. So that the Task can run as scheduled and the log can also be redirected.
2020-10-15 01:43:51 +08:00
New FutureandGitHub f74f548e4f Merge pull request #208 from jackhhh/patch-1
Add single quotes in case the paths have spaces
2020-10-14 21:27:09 +08:00
JackandGitHub 8ea0d5976d Add single quotes in case the paths have spaces
The script will run failed when the paths have spaces such as 'C:\Program Files\DDNS\ddns.exe'.
One possible solution is to add single quotes to each path.
Ref. https://stackoverflow.com/questions/10542313/powershell-and-schtask-with-task-that-has-a-space
2020-10-14 21:00:30 +08:00
New FutureandGitHub 8759cc8361 Merge pull request #207 from xiongnemo/patch-1
reformat(readme): 详细配置 -> 配置参数表 -> key -> dns 行
2020-10-11 13:48:40 +08:00
Nemo XiongandGitHub 2d63402231 reformat(readme): 详细配置 -> 配置参数表 -> key -> dns 行
补充被提及的但是不在上面的 Cloudflare,并对原有文本进行格式化
2020-10-11 13:43:05 +08:00
New FutureandGitHub 2cefc75154 Merge pull request #203 from NewFuture/update-cache
update cache to resolve #197
v2.9.7
2020-09-07 22:33:59 +08:00
NewFututre f126bf8f84 update cache #197 2020-09-07 22:08:22 +08:00
New FutureandGitHub 4e0de3d02b Merge pull request #201 from xufan6/patch-ubuntu-travis
Patch ubuntu travis
2020-09-07 17:52:50 +08:00
xufan6 bc6f7feb77 specific version for pyinstaller only in py2.7 azure-pipelines.yml 2020-09-07 01:33:13 -07:00
xufan6 9c830962aa specific version for pyinstaller only in py2.7 2020-09-07 01:31:10 -07:00
xufan6 8b225947c8 set pyinstaller==3.6 in azure-pipelines.yml, for python 2.7 env 2020-09-01 00:47:00 -07:00
xufan6 a5f06e04c4 set pyinstaller==3.6 in .travis.yml, for python 2.7 env 2020-09-01 00:35:39 -07:00
xufan6 c0e65c18e0 add ubuntu ca-cert file to single file lib. 2020-08-30 18:42:55 -07:00
xufan6 2f21a662a9 Merge remote-tracking branch 'upstream/master' 2020-08-30 14:22:10 -07:00
New FutureandGitHub e1ad9a2bad docker hub edge version 2020-08-04 16:57:14 +08:00
New FutureandGitHub 65ebb99169 Update docker-github.yml v2.9.6 2020-08-04 16:30:34 +08:00