adjustor 2.1.5__tar.gz → 2.1.7__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. {adjustor-2.1.5/src/adjustor.egg-info → adjustor-2.1.7}/PKG-INFO +1 -1
  2. {adjustor-2.1.5 → adjustor-2.1.7}/pyproject.toml +1 -1
  3. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/core/const.py +6 -3
  4. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/drivers/asus/settings.yml +12 -12
  5. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/drivers/lenovo/settings.yml +1 -1
  6. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/settings.yml +1 -1
  7. {adjustor-2.1.5 → adjustor-2.1.7/src/adjustor.egg-info}/PKG-INFO +1 -1
  8. {adjustor-2.1.5 → adjustor-2.1.7}/LICENSE +0 -0
  9. {adjustor-2.1.5 → adjustor-2.1.7}/MANIFEST.in +0 -0
  10. {adjustor-2.1.5 → adjustor-2.1.7}/readme.md +0 -0
  11. {adjustor-2.1.5 → adjustor-2.1.7}/setup.cfg +0 -0
  12. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/__init__.py +0 -0
  13. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/__main__.py +0 -0
  14. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/core/__init__.py +0 -0
  15. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/core/acpi.py +0 -0
  16. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/core/alib.py +0 -0
  17. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/core/lenovo.py +0 -0
  18. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/core/platform.py +0 -0
  19. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/drivers/__init__.py +0 -0
  20. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/drivers/asus/__init__.py +0 -0
  21. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/drivers/lenovo/__init__.py +0 -0
  22. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/drivers/smu/__init__.py +0 -0
  23. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/drivers/smu/qam.yml +0 -0
  24. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/drivers/smu/smu.yml +0 -0
  25. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/events.py +0 -0
  26. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/hhd.py +0 -0
  27. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/i18n.py +0 -0
  28. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor/utils.py +0 -0
  29. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor.egg-info/SOURCES.txt +0 -0
  30. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor.egg-info/dependency_links.txt +0 -0
  31. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor.egg-info/entry_points.txt +0 -0
  32. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor.egg-info/requires.txt +0 -0
  33. {adjustor-2.1.5 → adjustor-2.1.7}/src/adjustor.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: adjustor
3
- Version: 2.1.5
3
+ Version: 2.1.7
4
4
  Summary: Adjustor, a userspace program for managing the TDP of handheld devices.
5
5
  Author-email: Kapenekakis Antheas <pypi@antheas.dev>
6
6
  Project-URL: Homepage, https://github.com/hhd-dev/adjustor
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "adjustor"
3
- version = "2.1.5"
3
+ version = "2.1.7"
4
4
  authors = [
5
5
  { name="Kapenekakis Antheas", email="pypi@antheas.dev" },
6
6
  ]
@@ -21,6 +21,8 @@ ALIB_PARAMS = {
21
21
  }
22
22
 
23
23
  ALIB_PARAMS_7040: dict[str, AlibParams] = ALIB_PARAMS
24
+ ALIB_PARAMS_6040: dict[str, AlibParams] = ALIB_PARAMS
25
+ ALIB_PARAMS_8040: dict[str, AlibParams] = ALIB_PARAMS
24
26
 
25
27
  DEV_PARAMS_7040: dict[str, DeviceParams] = {
26
28
  "stapm_limit": D(0, 4, 15, 30, 40),
@@ -34,9 +36,8 @@ DEV_PARAMS_7040: dict[str, DeviceParams] = {
34
36
  "temp_target": D(60, 70, 85, 90, 100),
35
37
  }
36
38
 
37
- ALIB_PARAMS_6040: dict[str, AlibParams] = ALIB_PARAMS
38
39
  DEV_PARAMS_6040: dict[str, DeviceParams] = DEV_PARAMS_7040
39
-
40
+ DEV_PARAMS_8040: dict[str, DeviceParams] = DEV_PARAMS_7040
40
41
  DEV_PARAMS_LEGO = DEV_PARAMS_7040
41
42
 
42
43
  DEV_DATA: dict[str, tuple[dict[str, DeviceParams], dict[str, AlibParams], bool]] = {
@@ -46,9 +47,11 @@ DEV_DATA: dict[str, tuple[dict[str, DeviceParams], dict[str, AlibParams], bool]]
46
47
 
47
48
  CPU_DATA: dict[str, tuple[dict[str, DeviceParams], dict[str, AlibParams]]] = {
48
49
  "AMD Ryzen Z1 Extreme": (DEV_PARAMS_7040, ALIB_PARAMS_7040),
49
- "AMD Ryzen 7 7840U": (DEV_PARAMS_7040, ALIB_PARAMS_7040),
50
+ "AMD Ryzen Z1": (DEV_PARAMS_7040, ALIB_PARAMS_7040),
50
51
  # GPD Win 4
51
52
  # model name : AMD Ryzen 7 6800U with Radeon Graphics
52
53
  # 28W works fine, 30W is pushing it
53
54
  "AMD Ryzen 7 6800U": (DEV_PARAMS_6040, ALIB_PARAMS_6040),
55
+ "AMD Ryzen 7 7840U": (DEV_PARAMS_7040, ALIB_PARAMS_7040),
56
+ "AMD Ryzen 7 8840U": (DEV_PARAMS_8040, ALIB_PARAMS_8040),
54
57
  }
@@ -40,7 +40,7 @@ children:
40
40
  Lets the device manage the fan curve on its own.
41
41
  manual:
42
42
  type: container
43
- title: Manual [BETA]
43
+ title: Manual
44
44
  tags: [ non-essential ]
45
45
  children:
46
46
 
@@ -113,14 +113,14 @@ children:
113
113
  p95: 95%
114
114
  default: disabled
115
115
 
116
- disclaimer:
117
- title: Sleep Bug
118
- type: display
119
- tags: [ non-essential ]
120
- default: >-
121
- There is an Asus kernel/BIOS bug that will sometimes limit TDP to 10W
122
- after sleep.
123
- As the kernel driver is used, this is unfixable from within
124
- Handheld Daemon (currently investigated).
125
- As an alternative, use SimpleDeckyTDP with RyzenAdj after
126
- disabling TDP controls from "Settings".
116
+ # disclaimer:
117
+ # title: Sleep Bug
118
+ # type: display
119
+ # tags: [ non-essential ]
120
+ # default: >-
121
+ # There is an Asus kernel/BIOS bug that will sometimes limit TDP to 10W
122
+ # after sleep.
123
+ # As the kernel driver is used, this is unfixable from within
124
+ # Handheld Daemon (currently investigated).
125
+ # As an alternative, use SimpleDeckyTDP with RyzenAdj after
126
+ # disabling TDP controls from "Settings".
@@ -69,7 +69,7 @@ children:
69
69
  a mode change to reset the fan curve.
70
70
  manual:
71
71
  type: container
72
- title: Manual [BETA]
72
+ title: Manual
73
73
  tags: [ non-essential ]
74
74
  children:
75
75
 
@@ -3,7 +3,7 @@ tdp:
3
3
  type: container
4
4
  children:
5
5
  tdp_enable:
6
- title: Enable TDP Controls [BETA]
6
+ title: Enable TDP Controls
7
7
  type: action
8
8
  tags: [ non-essential ]
9
9
  hint: >-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: adjustor
3
- Version: 2.1.5
3
+ Version: 2.1.7
4
4
  Summary: Adjustor, a userspace program for managing the TDP of handheld devices.
5
5
  Author-email: Kapenekakis Antheas <pypi@antheas.dev>
6
6
  Project-URL: Homepage, https://github.com/hhd-dev/adjustor
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes