MaaFw 4.5.4__py3-none-manylinux2014_x86_64.whl → 4.5.6__py3-none-manylinux2014_x86_64.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 MaaFw might be problematic. Click here for more details.
- maa/bin/libMaaAdbControlUnit.so +0 -0
- maa/bin/libMaaAgentClient.so +0 -0
- maa/bin/libMaaAgentServer.so +0 -0
- maa/bin/libMaaCustomControlUnit.so +0 -0
- maa/bin/libMaaDbgControlUnit.so +0 -0
- maa/bin/libMaaFramework.so +0 -0
- maa/bin/libMaaToolkit.so +0 -0
- maa/bin/libMaaUtils.so +0 -0
- maa/toolkit.py +13 -19
- {maafw-4.5.4.dist-info → maafw-4.5.6.dist-info}/METADATA +1 -1
- {maafw-4.5.4.dist-info → maafw-4.5.6.dist-info}/RECORD +13 -13
- {maafw-4.5.4.dist-info → maafw-4.5.6.dist-info}/WHEEL +0 -0
- {maafw-4.5.4.dist-info → maafw-4.5.6.dist-info}/licenses/LICENSE.md +0 -0
maa/bin/libMaaAdbControlUnit.so
CHANGED
|
Binary file
|
maa/bin/libMaaAgentClient.so
CHANGED
|
Binary file
|
maa/bin/libMaaAgentServer.so
CHANGED
|
Binary file
|
|
Binary file
|
maa/bin/libMaaDbgControlUnit.so
CHANGED
|
Binary file
|
maa/bin/libMaaFramework.so
CHANGED
|
Binary file
|
maa/bin/libMaaToolkit.so
CHANGED
|
Binary file
|
maa/bin/libMaaUtils.so
CHANGED
|
Binary file
|
maa/toolkit.py
CHANGED
|
@@ -125,37 +125,33 @@ class Toolkit:
|
|
|
125
125
|
@staticmethod
|
|
126
126
|
def pi_register_custom_recognition(
|
|
127
127
|
name: str, recognition: "CustomRecognition", inst_id: int = 0 # type: ignore
|
|
128
|
-
) ->
|
|
128
|
+
) -> None:
|
|
129
129
|
Toolkit._set_api_properties()
|
|
130
130
|
|
|
131
131
|
# avoid gc
|
|
132
132
|
Toolkit._pi_custom_recognition_holder[inst_id][name] = recognition
|
|
133
133
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
recognition.c_arg,
|
|
140
|
-
)
|
|
134
|
+
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomRecognition(
|
|
135
|
+
ctypes.c_uint64(inst_id),
|
|
136
|
+
name.encode(),
|
|
137
|
+
recognition.c_handle,
|
|
138
|
+
recognition.c_arg,
|
|
141
139
|
)
|
|
142
140
|
|
|
143
141
|
@staticmethod
|
|
144
142
|
def pi_register_custom_action(
|
|
145
143
|
name: str, action: "CustomAction", inst_id: int = 0 # type: ignore
|
|
146
|
-
) ->
|
|
144
|
+
) -> None:
|
|
147
145
|
Toolkit._set_api_properties()
|
|
148
146
|
|
|
149
147
|
# avoid gc
|
|
150
148
|
Toolkit._pi_custom_recognition_holder[inst_id][name] = action
|
|
151
149
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
action.c_arg,
|
|
158
|
-
),
|
|
150
|
+
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomAction(
|
|
151
|
+
ctypes.c_uint64(inst_id),
|
|
152
|
+
name.encode(),
|
|
153
|
+
action.c_handle,
|
|
154
|
+
action.c_arg,
|
|
159
155
|
)
|
|
160
156
|
|
|
161
157
|
@staticmethod
|
|
@@ -306,9 +302,7 @@ class Toolkit:
|
|
|
306
302
|
MaaToolkitDesktopWindowHandle
|
|
307
303
|
]
|
|
308
304
|
|
|
309
|
-
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomRecognition.restype =
|
|
310
|
-
None
|
|
311
|
-
)
|
|
305
|
+
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomRecognition.restype = None
|
|
312
306
|
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomRecognition.argtypes = [
|
|
313
307
|
ctypes.c_uint64,
|
|
314
308
|
ctypes.c_char_p,
|
|
@@ -11,24 +11,24 @@ maa/library.py,sha256=u6gbEHDV3I0y69-ZoBo1p6-bAtP4jqSQa4FICuzaw3U,3961
|
|
|
11
11
|
maa/notification_handler.py,sha256=dpbIEKTqCvW9mj6am49Fd9ntoM39OCadhOGrvkmhyyI,5502
|
|
12
12
|
maa/resource.py,sha256=sCGAK1FFjZCaf01t_FPdtl4pMDQsybhEjmafp9XfITA,12222
|
|
13
13
|
maa/tasker.py,sha256=8eGK83RhsVXh1Px2_eHhUBd6epaubIGDN0FG4soi4xM,14232
|
|
14
|
-
maa/toolkit.py,sha256=
|
|
14
|
+
maa/toolkit.py,sha256=otPnF4GcZTI9zktbGm8QDHUcxfs8OYASvZuH3XekP2Y,11246
|
|
15
15
|
maa/agent/__init__.py,sha256=K4vyyD6YgLR6PEQl86t4oKP4eViCdNr3Br94dNk8YjM,257
|
|
16
16
|
maa/agent/agent_server.py,sha256=e0yE_ffWJlTPydJbYLK9OhCM5fVVlZQIcvEQMjB5V68,3636
|
|
17
|
-
maa/bin/libMaaAdbControlUnit.so,sha256=
|
|
18
|
-
maa/bin/libMaaAgentClient.so,sha256=
|
|
19
|
-
maa/bin/libMaaAgentServer.so,sha256=
|
|
20
|
-
maa/bin/libMaaCustomControlUnit.so,sha256=
|
|
21
|
-
maa/bin/libMaaDbgControlUnit.so,sha256=
|
|
22
|
-
maa/bin/libMaaFramework.so,sha256=
|
|
23
|
-
maa/bin/libMaaToolkit.so,sha256=
|
|
24
|
-
maa/bin/libMaaUtils.so,sha256=
|
|
17
|
+
maa/bin/libMaaAdbControlUnit.so,sha256=IsEF6xhigPEKk6FaQxrKnQQqCMmQAMMX24NtgxPx3zs,807568
|
|
18
|
+
maa/bin/libMaaAgentClient.so,sha256=R0XiU2SXQ6HMgmbW4eRYMwN7ZQRbUoLh7-tgFjqlfWk,1963056
|
|
19
|
+
maa/bin/libMaaAgentServer.so,sha256=zkvbgychGJg2FO_lrcB3j-sQ6bQmwvtZObDU5tP9XDU,1996888
|
|
20
|
+
maa/bin/libMaaCustomControlUnit.so,sha256=EE_9V571Zp4uT8XQugALPLvnpJE0exPIgvTbGbp1E8w,196448
|
|
21
|
+
maa/bin/libMaaDbgControlUnit.so,sha256=CKvcvOTqvOT4mV4lyJcUFTSUpTlOkAODpWPyfnKWWZE,387408
|
|
22
|
+
maa/bin/libMaaFramework.so,sha256=Xsvgob6komIjJ30ljqvfSih2R7OtPyOLOFIBRANoOnw,3268752
|
|
23
|
+
maa/bin/libMaaToolkit.so,sha256=WfVDLvRCRZuDImkcLvbR5Ia7o8xIav2O0pAseoisOQo,1255848
|
|
24
|
+
maa/bin/libMaaUtils.so,sha256=t-f1FTXj3FHV6jt32eRsJWXauEPnWY291g7tdSmKPaY,700768
|
|
25
25
|
maa/bin/libc++.so.1,sha256=VBRNSEJEpV1qPB25f6tMuCVbxhVZ-38YF8jU3xX5KXQ,1324528
|
|
26
26
|
maa/bin/libc++abi.so.1,sha256=Ftv8RvYQzF7Xo9j6S_CqmKxJ6I7LxdVxCh3lBV1Waig,401640
|
|
27
27
|
maa/bin/libfastdeploy_ppocr.so,sha256=MWnvN6OxvRf4wqf-J3tCcdmvhJwr805U1H2GBdtfwuM,7008160
|
|
28
28
|
maa/bin/libonnxruntime.so.1,sha256=MinP7Ya1F-9CTL7rco74aYMaydanbvUhNHJluEHOCZc,19104624
|
|
29
29
|
maa/bin/libopencv_world4.so.411,sha256=AcbDkSrrqdAFL9aaanst2MdjncQKXMm1NCCjRzkVwhw,14751664
|
|
30
30
|
maa/bin/libunwind.so.1,sha256=m_I4uMxz9WBbggB5eCvZPJO63vim2MWFhw9nYG7vdgI,60040
|
|
31
|
-
maafw-4.5.
|
|
32
|
-
maafw-4.5.
|
|
33
|
-
maafw-4.5.
|
|
34
|
-
maafw-4.5.
|
|
31
|
+
maafw-4.5.6.dist-info/licenses/LICENSE.md,sha256=RG51X65V_wNLuyG-RGcLXxFsKyZnlH5wNvK_5mMlOag,7560
|
|
32
|
+
maafw-4.5.6.dist-info/METADATA,sha256=65yNLtSTVd90xvyfIwpV9KYqgYS6RHcBHnMsU_2gTK4,24481
|
|
33
|
+
maafw-4.5.6.dist-info/WHEEL,sha256=ElIck4UKS1gfqi_USxboIISULsrnySUDnW4muwHK3us,104
|
|
34
|
+
maafw-4.5.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|