levistone 0.7.1__cp310-cp310-win_amd64.whl → 0.9.3__cp310-cp310-win_amd64.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 levistone might be problematic. Click here for more details.
- endstone/__init__.py +16 -2
- endstone/_internal/bootstrap/base.py +16 -4
- endstone/_internal/endstone_python.cp39-win_amd64.pyd +0 -0
- endstone/_internal/endstone_python.pyi +742 -420
- endstone/_internal/plugin_loader.py +2 -1
- endstone/_internal/version.py +2 -2
- endstone/enchantments.py +3 -0
- endstone/event.py +20 -0
- endstone/form.py +15 -1
- endstone/inventory.py +20 -2
- endstone/map.py +3 -0
- endstone_runtime.dll +0 -0
- endstone_runtime.pdb +0 -0
- {levistone-0.7.1.dist-info → levistone-0.9.3.dist-info}/METADATA +1 -1
- {levistone-0.7.1.dist-info → levistone-0.9.3.dist-info}/RECORD +20 -18
- {levistone-0.7.1.dist-info → levistone-0.9.3.dist-info}/WHEEL +1 -1
- manifest.json +1 -1
- endstone/_internal/endstone_python.pyd +0 -0
- {levistone-0.7.1.dist-info → levistone-0.9.3.dist-info}/entry_points.txt +0 -0
- {levistone-0.7.1.dist-info → levistone-0.9.3.dist-info}/licenses/LICENSE +0 -0
- {levistone-0.7.1.dist-info → levistone-0.9.3.dist-info}/top_level.txt +0 -0
|
@@ -48,7 +48,7 @@ def find_python():
|
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
class PythonPluginLoader(PluginLoader):
|
|
51
|
-
SUPPORTED_API = ["0.5", "0.6", "0.7"]
|
|
51
|
+
SUPPORTED_API = ["0.5", "0.6", "0.7", "0.8", "0.9"]
|
|
52
52
|
|
|
53
53
|
def __init__(self, server: Server):
|
|
54
54
|
PluginLoader.__init__(self, server)
|
|
@@ -57,6 +57,7 @@ class PythonPluginLoader(PluginLoader):
|
|
|
57
57
|
|
|
58
58
|
# fix sys.executable variable
|
|
59
59
|
sys.executable = find_python()
|
|
60
|
+
sys._base_executable = sys.executable
|
|
60
61
|
|
|
61
62
|
# invalidate previously loaded modules (in case of /reload)
|
|
62
63
|
importlib.invalidate_caches()
|
endstone/_internal/version.py
CHANGED
endstone/enchantments.py
ADDED
endstone/event.py
CHANGED
|
@@ -12,22 +12,32 @@ from endstone._internal.endstone_python import (
|
|
|
12
12
|
BlockPlaceEvent,
|
|
13
13
|
BroadcastMessageEvent,
|
|
14
14
|
Cancellable,
|
|
15
|
+
ChunkEvent,
|
|
16
|
+
ChunkLoadEvent,
|
|
17
|
+
ChunkUnloadEvent,
|
|
18
|
+
DimensionEvent,
|
|
15
19
|
Event,
|
|
16
20
|
EventPriority,
|
|
21
|
+
LevelEvent,
|
|
17
22
|
MobEvent,
|
|
18
23
|
PacketReceiveEvent,
|
|
19
24
|
PacketSendEvent,
|
|
20
25
|
PlayerChatEvent,
|
|
21
26
|
PlayerCommandEvent,
|
|
22
27
|
PlayerDeathEvent,
|
|
28
|
+
PlayerDropItemEvent,
|
|
23
29
|
PlayerEmoteEvent,
|
|
24
30
|
PlayerEvent,
|
|
25
31
|
PlayerGameModeChangeEvent,
|
|
26
32
|
PlayerInteractActorEvent,
|
|
27
33
|
PlayerInteractEvent,
|
|
34
|
+
PlayerItemConsumeEvent,
|
|
28
35
|
PlayerJoinEvent,
|
|
36
|
+
PlayerJumpEvent,
|
|
29
37
|
PlayerKickEvent,
|
|
30
38
|
PlayerLoginEvent,
|
|
39
|
+
PlayerMoveEvent,
|
|
40
|
+
PlayerPickupItemEvent,
|
|
31
41
|
PlayerQuitEvent,
|
|
32
42
|
PlayerRespawnEvent,
|
|
33
43
|
PlayerTeleportEvent,
|
|
@@ -57,8 +67,13 @@ __all__ = [
|
|
|
57
67
|
"BlockBreakEvent",
|
|
58
68
|
"BlockPlaceEvent",
|
|
59
69
|
"Cancellable",
|
|
70
|
+
"ChunkEvent",
|
|
71
|
+
"ChunkLoadEvent",
|
|
72
|
+
"ChunkUnloadEvent",
|
|
73
|
+
"DimensionEvent",
|
|
60
74
|
"Event",
|
|
61
75
|
"EventPriority",
|
|
76
|
+
"LevelEvent",
|
|
62
77
|
"MobEvent",
|
|
63
78
|
"PacketReceiveEvent",
|
|
64
79
|
"PacketSendEvent",
|
|
@@ -66,13 +81,18 @@ __all__ = [
|
|
|
66
81
|
"PlayerChatEvent",
|
|
67
82
|
"PlayerCommandEvent",
|
|
68
83
|
"PlayerDeathEvent",
|
|
84
|
+
"PlayerDropItemEvent",
|
|
69
85
|
"PlayerEmoteEvent",
|
|
70
86
|
"PlayerGameModeChangeEvent",
|
|
71
87
|
"PlayerInteractEvent",
|
|
72
88
|
"PlayerInteractActorEvent",
|
|
89
|
+
"PlayerItemConsumeEvent",
|
|
73
90
|
"PlayerJoinEvent",
|
|
91
|
+
"PlayerJumpEvent",
|
|
74
92
|
"PlayerKickEvent",
|
|
75
93
|
"PlayerLoginEvent",
|
|
94
|
+
"PlayerMoveEvent",
|
|
95
|
+
"PlayerPickupItemEvent",
|
|
76
96
|
"PlayerQuitEvent",
|
|
77
97
|
"PlayerRespawnEvent",
|
|
78
98
|
"PlayerTeleportEvent",
|
endstone/form.py
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
from endstone._internal.endstone_python import (
|
|
2
2
|
ActionForm,
|
|
3
|
+
Divider,
|
|
3
4
|
Dropdown,
|
|
5
|
+
Header,
|
|
4
6
|
Label,
|
|
5
7
|
MessageForm,
|
|
6
8
|
ModalForm,
|
|
@@ -10,4 +12,16 @@ from endstone._internal.endstone_python import (
|
|
|
10
12
|
Toggle,
|
|
11
13
|
)
|
|
12
14
|
|
|
13
|
-
__all__ = [
|
|
15
|
+
__all__ = [
|
|
16
|
+
"ActionForm",
|
|
17
|
+
"MessageForm",
|
|
18
|
+
"ModalForm",
|
|
19
|
+
"Dropdown",
|
|
20
|
+
"Label",
|
|
21
|
+
"Slider",
|
|
22
|
+
"StepSlider",
|
|
23
|
+
"TextInput",
|
|
24
|
+
"Toggle",
|
|
25
|
+
"Divider",
|
|
26
|
+
"Header",
|
|
27
|
+
]
|
endstone/inventory.py
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
-
from endstone._internal.endstone_python import
|
|
1
|
+
from endstone._internal.endstone_python import (
|
|
2
|
+
EquipmentSlot,
|
|
3
|
+
Inventory,
|
|
4
|
+
ItemFactory,
|
|
5
|
+
ItemMeta,
|
|
6
|
+
ItemStack,
|
|
7
|
+
ItemType,
|
|
8
|
+
MapMeta,
|
|
9
|
+
PlayerInventory,
|
|
10
|
+
)
|
|
2
11
|
|
|
3
|
-
__all__ = [
|
|
12
|
+
__all__ = [
|
|
13
|
+
"EquipmentSlot",
|
|
14
|
+
"Inventory",
|
|
15
|
+
"ItemFactory",
|
|
16
|
+
"ItemMeta",
|
|
17
|
+
"ItemStack",
|
|
18
|
+
"ItemType",
|
|
19
|
+
"MapMeta",
|
|
20
|
+
"PlayerInventory",
|
|
21
|
+
]
|
endstone/map.py
ADDED
endstone_runtime.dll
CHANGED
|
Binary file
|
endstone_runtime.pdb
CHANGED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
endstone_runtime.dll,sha256=
|
|
2
|
-
endstone_runtime.pdb,sha256=
|
|
3
|
-
manifest.json,sha256=
|
|
4
|
-
endstone/__init__.py,sha256=
|
|
1
|
+
endstone_runtime.dll,sha256=Y7ItdeQ0H6VFmOvyxsr_Qvwk9IIH3wdyRJC5NEI31Uw,1689088
|
|
2
|
+
endstone_runtime.pdb,sha256=HR3eiWFol98CCCjjhPkaqNnUa6fLWyvfauj0KyCq62k,21983232
|
|
3
|
+
manifest.json,sha256=GTVBBwVJKlhH29SsYGIFRkL3hm9strGPm4KA4wlSVWg,121
|
|
4
|
+
endstone/__init__.py,sha256=XAl3syAWmVFpvHeuVPWicuDiqWXMxBJjuN8sf3pzthA,566
|
|
5
5
|
endstone/__main__.py,sha256=BScr7X_wRgbkmrnGTOEuhJqgbve5leelFfh1v5OdPdc,87
|
|
6
6
|
endstone/actor.py,sha256=zwMagc_ogTMexG_1Ahmgf3jkDMeRhvunOxCpL67GQYw,89
|
|
7
7
|
endstone/ban.py,sha256=6t_lhCGpwe7w_jOM-l1ooI6kF1P0pHgGaasMX2FeTeU,177
|
|
@@ -9,29 +9,31 @@ endstone/block.py,sha256=3r-ZQna3RDQgn_ayVObY_xWeDZMJvUaMyuFuWtwdbnM,151
|
|
|
9
9
|
endstone/boss.py,sha256=N6B3CDIlYRcYVDZPdjRXq9hBPnYYRuE0d7e5-MpuB8c,145
|
|
10
10
|
endstone/command.py,sha256=p7O4jK9CE2SLg5QUYT2meXe9WPStpIrs6PMBt-0plLI,357
|
|
11
11
|
endstone/damage.py,sha256=riTGQq-LYaSRE49KAsm1DxT-QetJNahbrpnLItDo1X0,91
|
|
12
|
-
endstone/
|
|
13
|
-
endstone/
|
|
14
|
-
endstone/
|
|
12
|
+
endstone/enchantments.py,sha256=weLg3Y-VlgeQ-S66Uc7B-2lwLkGDBb8vbtR1qCYe8mc,89
|
|
13
|
+
endstone/event.py,sha256=g9wHqPiAIP30GssOaqhpDn-nOnsYdCTSdgBIl71R7rs,2943
|
|
14
|
+
endstone/form.py,sha256=2RvO8IVL42UwGpsSyDr4sFjc1Aj0l3waf1pp42wuGCE,421
|
|
15
|
+
endstone/inventory.py,sha256=s_lqU2pWTEWXobg7t_2f2DgVy-t87Lj4SBLXYBdvzJM,359
|
|
15
16
|
endstone/lang.py,sha256=hrsaaDy3pC0MT-xrgMOwnzobU9KXH5byy5RbMpqF_BU,113
|
|
16
17
|
endstone/level.py,sha256=cqJQa4MKhobv_T8EMXGVNLRGaNr83xgg1bxNzUwnL7w,190
|
|
18
|
+
endstone/map.py,sha256=i9YlhXN6eICp3UQ0ihwcevhlL-7Nl_qZyeJM0EuaZJ8,133
|
|
17
19
|
endstone/permissions.py,sha256=QccUzGLsFZ5ge1U0zUr1eGHZjvwh9aFkHarvEx0X4gk,286
|
|
18
20
|
endstone/plugin.py,sha256=kYLGe5Jy1ojKCnV-FGpv6aowFwFqNFgNKzG6eDr-qZI,4201
|
|
19
21
|
endstone/scheduler.py,sha256=2PkwAeLgrX6KxaiUPcnONbRNQYlFdvhUUShpFE35t-8,99
|
|
20
22
|
endstone/scoreboard.py,sha256=qO1X0sD7D_SH6Lb4sKODe7emfdAyQ7iEAPVFznxOuyI,219
|
|
21
23
|
endstone/util.py,sha256=vvIIfPj3K085eg-aaLfcNnSvapQpTZSHH756VDBwEi8,111
|
|
22
24
|
endstone/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
endstone/_internal/endstone_python.pyd,sha256=
|
|
24
|
-
endstone/_internal/endstone_python.pyi,sha256=
|
|
25
|
+
endstone/_internal/endstone_python.cp39-win_amd64.pyd,sha256=IwnM8E6Z7WE24ozN3VPFxCyn5OhSC5NOZ9NrVp8VWa8,1484800
|
|
26
|
+
endstone/_internal/endstone_python.pyi,sha256=omuay2BWcjPL6Au_i6fu1V7Gm3pyyrT_uTCANJsKQfI,148058
|
|
25
27
|
endstone/_internal/metrics.py,sha256=miLRHmjSpuxS3Ad2OgC04KPG7avGwCeb7-LIAwbsAd8,3848
|
|
26
|
-
endstone/_internal/plugin_loader.py,sha256=
|
|
27
|
-
endstone/_internal/version.py,sha256=
|
|
28
|
+
endstone/_internal/plugin_loader.py,sha256=q73jVAQd_ssC7EfSWkb2uEWRHBWi5GVNKEKBQSYHmUY,8989
|
|
29
|
+
endstone/_internal/version.py,sha256=q1Oemss2-FthTsQMx01xdHjCOFcCzLJF_t0Nz0p1yT0,347
|
|
28
30
|
endstone/_internal/bootstrap/__init__.py,sha256=1Haor_gGUhX14XUtPqavx6WGiCLcZNYAQnIY2ZXLlaI,2060
|
|
29
|
-
endstone/_internal/bootstrap/base.py,sha256=
|
|
31
|
+
endstone/_internal/bootstrap/base.py,sha256=qY1OpsMi7K_BsB7Skl5u6CuvZJf8Ec6MrH_JIhCUl40,9889
|
|
30
32
|
endstone/_internal/bootstrap/linux.py,sha256=E8325vKAqdtmfmVbHda0w8ziVk8XLg22eh4HHs_jW8g,2818
|
|
31
33
|
endstone/_internal/bootstrap/windows.py,sha256=N4pFvxPCfpCyjP7s5vqVQ6Xur37wYs0bEYOFHxkcerw,1993
|
|
32
|
-
levistone-0.
|
|
33
|
-
levistone-0.
|
|
34
|
-
levistone-0.
|
|
35
|
-
levistone-0.
|
|
36
|
-
levistone-0.
|
|
37
|
-
levistone-0.
|
|
34
|
+
levistone-0.9.3.dist-info/licenses/LICENSE,sha256=WtjCEwlcVzkh1ziO35P2qfVEkLjr87Flro7xlHz3CEY,11556
|
|
35
|
+
levistone-0.9.3.dist-info/METADATA,sha256=pEuHTBGZUw_4HjeP25CT30la0O82A9j4kMJ3LgXHY4E,14913
|
|
36
|
+
levistone-0.9.3.dist-info/WHEEL,sha256=sUtRM5s06GjZHwyoHBV1WzGwVoMHXaUBLxgVE29XlsY,100
|
|
37
|
+
levistone-0.9.3.dist-info/entry_points.txt,sha256=YcCpMmhXBaSX4Vm9Lt5KEBwkaL5wEzNCLdpZAZJ3gsg,62
|
|
38
|
+
levistone-0.9.3.dist-info/top_level.txt,sha256=BERCWpr0nMLPIcEyGbeVJNJ1xRNrx08gMj8Xi2vLqbo,10
|
|
39
|
+
levistone-0.9.3.dist-info/RECORD,,
|
manifest.json
CHANGED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|