ddns 3.1.2__py2.py3-none-any.whl → 3.1.4__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ddns might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ddns
3
- Version: 3.1.2
3
+ Version: 3.1.4
4
4
  Summary: automatically update DNS records to dynamic local IP [自动更新DNS记录指向本地IP]
5
5
  Home-page: https://ddns.newfuture.cc
6
6
  Author: NewFuture
@@ -1,5 +1,5 @@
1
- run.py,sha256=01dBQAA8_btT6G2ggo_Rk89OtvgBSNQ9iMkLlgktbfU,6072
2
- ddns-3.1.2.dist-info/licenses/LICENSE,sha256=MI-ECjp-Vl7WZLiSPY6r5VwrOReNiICVB1QCXiUGt_s,1111
1
+ run.py,sha256=oGd_lRLUzUMd0y1YpS2nRE7hp50UCMIsbhdXvZTNms8,6072
2
+ ddns-3.1.4.dist-info/licenses/LICENSE,sha256=MI-ECjp-Vl7WZLiSPY6r5VwrOReNiICVB1QCXiUGt_s,1111
3
3
  dns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  dns/alidns.py,sha256=qA1jm6qYxuLHYWVlCkHOizP7EisCXwSndqKibu_0CbM,5788
5
5
  dns/callback.py,sha256=gVszmwu2OENYXJKEz1ay1v0H03fBO-REZdwBcxn490U,3214
@@ -13,8 +13,8 @@ util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  util/cache.py,sha256=nt_x_BUORwUAZZW13UNeEBOFrIksWWhdj9k4AGyvnU8,3337
14
14
  util/config.py,sha256=8zvjdYEzQF7XaQHG7tyjXl6JBAHcOhl9ARCFQkcBeJs,4774
15
15
  util/ip.py,sha256=IZDcxOeY6IYrrRJbgxfDtA_Ibb842hbTTwW4yhhydyg,3842
16
- ddns-3.1.2.dist-info/METADATA,sha256=Enm1iRm1quwFDON6VNA7M8ZSzHinYbQzAi2wtBrOVGs,13520
17
- ddns-3.1.2.dist-info/WHEEL,sha256=MAQBAzGbXNI3bUmkDsiV_duv8i-gcdnLzw7cfUFwqhU,109
18
- ddns-3.1.2.dist-info/entry_points.txt,sha256=vpxxBE6Kepc-SHatr-FRRLmZecrTupYejyDB8ovJbLg,34
19
- ddns-3.1.2.dist-info/top_level.txt,sha256=dS3_ClQTIG1ousHykZ1P3AzQa-MKq4jT_rbm21D-KxE,13
20
- ddns-3.1.2.dist-info/RECORD,,
16
+ ddns-3.1.4.dist-info/METADATA,sha256=N8odnI1mHc5luUpZ_OB4DDOpqnzWjGLe6-xODx88vj8,13520
17
+ ddns-3.1.4.dist-info/WHEEL,sha256=MAQBAzGbXNI3bUmkDsiV_duv8i-gcdnLzw7cfUFwqhU,109
18
+ ddns-3.1.4.dist-info/entry_points.txt,sha256=vpxxBE6Kepc-SHatr-FRRLmZecrTupYejyDB8ovJbLg,34
19
+ ddns-3.1.4.dist-info/top_level.txt,sha256=dS3_ClQTIG1ousHykZ1P3AzQa-MKq4jT_rbm21D-KxE,13
20
+ ddns-3.1.4.dist-info/RECORD,,
run.py CHANGED
@@ -18,7 +18,7 @@ from util import ip
18
18
  from util.cache import Cache
19
19
  from util.config import init_config, get_config
20
20
 
21
- __version__ = "v3.1.2@2025-04-09T12:53:42+00:00" # CI 时会被Tag替换
21
+ __version__ = "v3.1.4@2025-04-09T18:42:07+00:00" # CI 时会被Tag替换
22
22
  __description__ = "automatically update DNS records to dynamic local IP [自动更新DNS记录指向本地IP]"
23
23
  __doc__ = """
24
24
  ddns[%s]
@@ -27,7 +27,7 @@ ddns[%s]
27
27
  Copyright (c) New Future (MIT License)
28
28
  """ % (__version__)
29
29
 
30
- environ["DDNS_VERSION"] = "v3.1.2"
30
+ environ["DDNS_VERSION"] = "v3.1.4"
31
31
 
32
32
  if getattr(sys, 'frozen', False):
33
33
  # https://github.com/pyinstaller/pyinstaller/wiki/Recipe-OpenSSL-Certificate
File without changes