advdbg 0.2.8__py3-none-any.whl → 0.3.0__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.
advdbg/__init__.py CHANGED
@@ -8,7 +8,7 @@ Change Logs:
8
8
  - Added checker for updates
9
9
  '''
10
10
 
11
- __version__ = '0.2.7'
11
+ __version__ = '0.2.9'
12
12
 
13
13
  from .core import AdvDBG
14
14
 
@@ -18,7 +18,7 @@ from .update import Update
18
18
 
19
19
  __all__ = ['AdvDBG', 'Breakpoint']
20
20
  if Update.check_for_updates() == "Not latest!":
21
- print('Available new update\n{Colors.INFO}{Update.return_installed()} → {Update.return_latest()}')
21
+ print(f'Available new update\n{Colors.INFO}{Update.return_installed()} → {Update.return_latest()}\n')
22
22
 
23
23
  # For easy access, you can create a default instance
24
24
  DebuGGer = AdvDBG()
advdbg/update.py CHANGED
@@ -23,8 +23,6 @@ class Update:
23
23
 
24
24
  def check_for_updates():
25
25
  if Update.return_installed() != Update.return_latest():
26
- return f"Not latest!"
26
+ return "Not latest!"
27
27
 
28
28
  return "Latest"
29
-
30
- print(Update.check_for_updates())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: advdbg
3
- Version: 0.2.8
3
+ Version: 0.3.0
4
4
  Summary: Minimalist colorful debug logger
5
5
  Author-email: Darkey <weplayok3@gmail.com>, WinFun <placeholder@gmail.com>
6
6
  License: MIT
@@ -48,11 +48,9 @@ dbgVar.cfg(title='REQUEST')
48
48
  BEFORE: title of your debug
49
49
  AFTER: REQUEST
50
50
 
51
- ## Change Log: v0.2.7
51
+ ## Change Log: v0.3.0
52
52
 
53
- - Added custom exceptions
54
- - Added about() method
55
- - Added checker for updates
53
+ - Hotfix of 0.2.9
56
54
 
57
55
  ## Requirements
58
56
 
@@ -0,0 +1,11 @@
1
+ advdbg/__init__.py,sha256=mqk_P3chyaeHnelDb29atrNVOt0Ea_8dwGkjLwCqP2U,542
2
+ advdbg/analyze.py,sha256=eQ4aOBhTm1CUSbOjixzF-01yXSKH8eGP-AlOk4bfYYA,1562
3
+ advdbg/colors.py,sha256=VupEvIYoKgq2aqyApkPRN8HbIKr1DMNaIqj-2-DiZr0,223
4
+ advdbg/core.py,sha256=NrVymay8M9H38ci5L4Kp1eZ8sf9bF-ogiuKAMomhYH0,12279
5
+ advdbg/exceptions.py,sha256=-6ocxNNAdH9bZVT2qlxYm-HiHwvQGNe5DRMLC-hAdCw,137
6
+ advdbg/update.py,sha256=rziY_UmgTgQYbnVgvQP-fYxJerIWFdqQqAHiLHdJft4,800
7
+ advdbg-0.3.0.dist-info/licenses/LICENSE,sha256=tgtiy7agRoAxbOt3NAJk_KmNWkhC1Pr4oDQAjXaEhWw,1062
8
+ advdbg-0.3.0.dist-info/METADATA,sha256=M8ZqROioxuOtBc5X4LH51Z1xfH_LLTae2Fg_s6jUT_k,1291
9
+ advdbg-0.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
10
+ advdbg-0.3.0.dist-info/top_level.txt,sha256=oK_Jw0888nhPCLjrEGxdnJ5-5TaNjWeGbyEmjov62b0,7
11
+ advdbg-0.3.0.dist-info/RECORD,,
@@ -1,11 +0,0 @@
1
- advdbg/__init__.py,sha256=yS9MvczvM6_6SO-5TDR048S1mSdE4Qro18sRe9CTzmE,539
2
- advdbg/analyze.py,sha256=eQ4aOBhTm1CUSbOjixzF-01yXSKH8eGP-AlOk4bfYYA,1562
3
- advdbg/colors.py,sha256=VupEvIYoKgq2aqyApkPRN8HbIKr1DMNaIqj-2-DiZr0,223
4
- advdbg/core.py,sha256=NrVymay8M9H38ci5L4Kp1eZ8sf9bF-ogiuKAMomhYH0,12279
5
- advdbg/exceptions.py,sha256=-6ocxNNAdH9bZVT2qlxYm-HiHwvQGNe5DRMLC-hAdCw,137
6
- advdbg/update.py,sha256=5TawS8O-rSR67E5n1A31eGvNAlKUaZxiGEsVFSYxSZ4,843
7
- advdbg-0.2.8.dist-info/licenses/LICENSE,sha256=tgtiy7agRoAxbOt3NAJk_KmNWkhC1Pr4oDQAjXaEhWw,1062
8
- advdbg-0.2.8.dist-info/METADATA,sha256=RxIfQ4pRmFjj85TYAtGzUPxsWj2E9mvc3PIERXFptII,1350
9
- advdbg-0.2.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
10
- advdbg-0.2.8.dist-info/top_level.txt,sha256=oK_Jw0888nhPCLjrEGxdnJ5-5TaNjWeGbyEmjov62b0,7
11
- advdbg-0.2.8.dist-info/RECORD,,
File without changes