dashcode 1.2.1__tar.gz → 1.2.2__tar.gz
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.
- {dashcode-1.2.1 → dashcode-1.2.2}/PKG-INFO +4 -1
- {dashcode-1.2.1 → dashcode-1.2.2}/README.md +2 -0
- {dashcode-1.2.1 → dashcode-1.2.2}/dashcode.egg-info/PKG-INFO +4 -1
- {dashcode-1.2.1 → dashcode-1.2.2}/setup.py +2 -1
- {dashcode-1.2.1 → dashcode-1.2.2}/dashcode/__init__.py +0 -0
- {dashcode-1.2.1 → dashcode-1.2.2}/dashcode/core.py +0 -0
- {dashcode-1.2.1 → dashcode-1.2.2}/dashcode.egg-info/SOURCES.txt +0 -0
- {dashcode-1.2.1 → dashcode-1.2.2}/dashcode.egg-info/dependency_links.txt +0 -0
- {dashcode-1.2.1 → dashcode-1.2.2}/dashcode.egg-info/top_level.txt +0 -0
- {dashcode-1.2.1 → dashcode-1.2.2}/setup.cfg +0 -0
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dashcode
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: A library for Geometry Dash level generation using .gmd files
|
|
5
5
|
Author: IWiterI
|
|
6
6
|
Project-URL: Homepage, https://github.com/ISviterI/dashcode
|
|
7
|
+
Project-URL: Discord, https://discord.gg/MXv3KTFmPE
|
|
7
8
|
Project-URL: Wiki, https://github.com/ISviterI/dashcode/wiki
|
|
8
9
|
Project-URL: Documentation, https://github.com/ISviterI/dashcode/wiki/Documentation
|
|
9
10
|
Keywords: geometry dash,gd,level-generator,automation,2.2,python,dash,dashcode,code
|
|
@@ -23,6 +24,8 @@ Dynamic: summary
|
|
|
23
24
|
|
|
24
25
|
# Dashcode
|
|
25
26
|
|
|
27
|
+
[](https://discord.gg/MXv3KTFmPE)
|
|
28
|
+
|
|
26
29
|
Dashcode is a specialized Python library for the programmatic generation of Geometry Dash levels (compatible with version 2.2+). It allows developers to build complex level structures, triggers, and gameplay mechanics entirely through code.
|
|
27
30
|
|
|
28
31
|
## Key Features
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Dashcode
|
|
2
2
|
|
|
3
|
+
[](https://discord.gg/MXv3KTFmPE)
|
|
4
|
+
|
|
3
5
|
Dashcode is a specialized Python library for the programmatic generation of Geometry Dash levels (compatible with version 2.2+). It allows developers to build complex level structures, triggers, and gameplay mechanics entirely through code.
|
|
4
6
|
|
|
5
7
|
## Key Features
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dashcode
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: A library for Geometry Dash level generation using .gmd files
|
|
5
5
|
Author: IWiterI
|
|
6
6
|
Project-URL: Homepage, https://github.com/ISviterI/dashcode
|
|
7
|
+
Project-URL: Discord, https://discord.gg/MXv3KTFmPE
|
|
7
8
|
Project-URL: Wiki, https://github.com/ISviterI/dashcode/wiki
|
|
8
9
|
Project-URL: Documentation, https://github.com/ISviterI/dashcode/wiki/Documentation
|
|
9
10
|
Keywords: geometry dash,gd,level-generator,automation,2.2,python,dash,dashcode,code
|
|
@@ -23,6 +24,8 @@ Dynamic: summary
|
|
|
23
24
|
|
|
24
25
|
# Dashcode
|
|
25
26
|
|
|
27
|
+
[](https://discord.gg/MXv3KTFmPE)
|
|
28
|
+
|
|
26
29
|
Dashcode is a specialized Python library for the programmatic generation of Geometry Dash levels (compatible with version 2.2+). It allows developers to build complex level structures, triggers, and gameplay mechanics entirely through code.
|
|
27
30
|
|
|
28
31
|
## Key Features
|
|
@@ -8,7 +8,7 @@ if os.path.exists("README.md"):
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="dashcode",
|
|
11
|
-
version="1.2.
|
|
11
|
+
version="1.2.2",
|
|
12
12
|
packages=find_packages(),
|
|
13
13
|
author="IWiterI",
|
|
14
14
|
description="A library for Geometry Dash level generation using .gmd files",
|
|
@@ -17,6 +17,7 @@ setup(
|
|
|
17
17
|
python_requires=">=3.6",
|
|
18
18
|
project_urls={
|
|
19
19
|
"Homepage": "https://github.com/ISviterI/dashcode",
|
|
20
|
+
"Discord": "https://discord.gg/MXv3KTFmPE",
|
|
20
21
|
"Wiki": "https://github.com/ISviterI/dashcode/wiki",
|
|
21
22
|
"Documentation": "https://github.com/ISviterI/dashcode/wiki/Documentation",
|
|
22
23
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|