hexdoc-hexoverpowered 0.8.2.1.0__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.
- hexdoc_hexoverpowered-0.8.2.1.0/.gitignore +190 -0
- hexdoc_hexoverpowered-0.8.2.1.0/LICENSE.txt +21 -0
- hexdoc_hexoverpowered-0.8.2.1.0/PKG-INFO +72 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/README.md +57 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/__gradle_version__.py +19 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/__init__.py +0 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/__version__.py +4 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/.gitignore +2 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/__init__.py +0 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/generated/__init__.py +2 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/generated/assets/hexcasting/patchouli_books/thehexbook/en_us/entries/pages.json +64 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/generated/assets/hexoverpowered/lang/en_us.flatten.json5 +1 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/generated/assets/hexoverpowered/lang/en_us.json +1 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/generated/assets/hexoverpowered/lang/zh_cn.json +1 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/generated/assets/hexoverpowered/textures/gui/media_bar.png +0 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/generated/data/hexcasting/tags/action/per_world_pattern.json +1 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/generated/hexoverpowered.hexdoc.json +1 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_export/generated/hexoverpowered.patterns.hexdoc.json +1 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_hooks.py +57 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/_templates/__init__.py +0 -0
- hexdoc_hexoverpowered-0.8.2.1.0/doc/src/hexdoc_hexoverpowered/py.typed +0 -0
- hexdoc_hexoverpowered-0.8.2.1.0/gradle.properties +20 -0
- hexdoc_hexoverpowered-0.8.2.1.0/pyproject.toml +118 -0
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
# hexdoc
|
|
2
|
+
_site/
|
|
3
|
+
_checkout/
|
|
4
|
+
__gradle_version__.py
|
|
5
|
+
.hexdoc*/
|
|
6
|
+
|
|
7
|
+
# eclipse
|
|
8
|
+
bin
|
|
9
|
+
*.launch
|
|
10
|
+
.settings
|
|
11
|
+
.metadata
|
|
12
|
+
.classpath
|
|
13
|
+
.project
|
|
14
|
+
|
|
15
|
+
# idea
|
|
16
|
+
out
|
|
17
|
+
*.ipr
|
|
18
|
+
*.iws
|
|
19
|
+
*.iml
|
|
20
|
+
.idea
|
|
21
|
+
|
|
22
|
+
# gradle
|
|
23
|
+
build
|
|
24
|
+
.gradle
|
|
25
|
+
|
|
26
|
+
# other
|
|
27
|
+
eclipse
|
|
28
|
+
run
|
|
29
|
+
|
|
30
|
+
# Files from Forge MDK
|
|
31
|
+
forge*changelog.txt
|
|
32
|
+
|
|
33
|
+
Session.vim
|
|
34
|
+
plot/
|
|
35
|
+
|
|
36
|
+
# Python
|
|
37
|
+
|
|
38
|
+
# Byte-compiled / optimized / DLL files
|
|
39
|
+
__pycache__/
|
|
40
|
+
*.py[cod]
|
|
41
|
+
*$py.class
|
|
42
|
+
|
|
43
|
+
# C extensions
|
|
44
|
+
*.so
|
|
45
|
+
|
|
46
|
+
# Distribution / packaging
|
|
47
|
+
.Python
|
|
48
|
+
build/
|
|
49
|
+
develop-eggs/
|
|
50
|
+
dist/
|
|
51
|
+
downloads/
|
|
52
|
+
eggs/
|
|
53
|
+
.eggs/
|
|
54
|
+
lib/
|
|
55
|
+
lib64/
|
|
56
|
+
parts/
|
|
57
|
+
sdist/
|
|
58
|
+
var/
|
|
59
|
+
wheels/
|
|
60
|
+
share/python-wheels/
|
|
61
|
+
*.egg-info/
|
|
62
|
+
.installed.cfg
|
|
63
|
+
*.egg
|
|
64
|
+
MANIFEST
|
|
65
|
+
|
|
66
|
+
# PyInstaller
|
|
67
|
+
# Usually these files are written by a python script from a template
|
|
68
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
69
|
+
*.manifest
|
|
70
|
+
*.spec
|
|
71
|
+
|
|
72
|
+
# Installer logs
|
|
73
|
+
pip-log.txt
|
|
74
|
+
pip-delete-this-directory.txt
|
|
75
|
+
|
|
76
|
+
# Unit test / coverage reports
|
|
77
|
+
htmlcov/
|
|
78
|
+
.tox/
|
|
79
|
+
.nox/
|
|
80
|
+
.coverage
|
|
81
|
+
.coverage.*
|
|
82
|
+
.cache
|
|
83
|
+
nosetests.xml
|
|
84
|
+
coverage.xml
|
|
85
|
+
*.cover
|
|
86
|
+
*.py,cover
|
|
87
|
+
.hypothesis/
|
|
88
|
+
.pytest_cache/
|
|
89
|
+
cover/
|
|
90
|
+
|
|
91
|
+
# Translations
|
|
92
|
+
*.mo
|
|
93
|
+
*.pot
|
|
94
|
+
|
|
95
|
+
# Django stuff:
|
|
96
|
+
*.log
|
|
97
|
+
local_settings.py
|
|
98
|
+
db.sqlite3
|
|
99
|
+
db.sqlite3-journal
|
|
100
|
+
|
|
101
|
+
# Flask stuff:
|
|
102
|
+
instance/
|
|
103
|
+
.webassets-cache
|
|
104
|
+
|
|
105
|
+
# Scrapy stuff:
|
|
106
|
+
.scrapy
|
|
107
|
+
|
|
108
|
+
# Sphinx documentation
|
|
109
|
+
docs/_build/
|
|
110
|
+
|
|
111
|
+
# PyBuilder
|
|
112
|
+
.pybuilder/
|
|
113
|
+
target/
|
|
114
|
+
|
|
115
|
+
# Jupyter Notebook
|
|
116
|
+
.ipynb_checkpoints
|
|
117
|
+
|
|
118
|
+
# IPython
|
|
119
|
+
profile_default/
|
|
120
|
+
ipython_config.py
|
|
121
|
+
|
|
122
|
+
# pyenv
|
|
123
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
124
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
125
|
+
# .python-version
|
|
126
|
+
|
|
127
|
+
# pipenv
|
|
128
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
129
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
130
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
131
|
+
# install all needed dependencies.
|
|
132
|
+
#Pipfile.lock
|
|
133
|
+
|
|
134
|
+
# poetry
|
|
135
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
136
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
137
|
+
# commonly ignored for libraries.
|
|
138
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
139
|
+
#poetry.lock
|
|
140
|
+
|
|
141
|
+
# pdm
|
|
142
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
143
|
+
#pdm.lock
|
|
144
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
145
|
+
# in version control.
|
|
146
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
147
|
+
.pdm.toml
|
|
148
|
+
|
|
149
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
150
|
+
__pypackages__/
|
|
151
|
+
|
|
152
|
+
# Celery stuff
|
|
153
|
+
celerybeat-schedule
|
|
154
|
+
celerybeat.pid
|
|
155
|
+
|
|
156
|
+
# SageMath parsed files
|
|
157
|
+
*.sage.py
|
|
158
|
+
|
|
159
|
+
# Environments
|
|
160
|
+
.env
|
|
161
|
+
.venv
|
|
162
|
+
env/
|
|
163
|
+
venv/
|
|
164
|
+
ENV/
|
|
165
|
+
env.bak/
|
|
166
|
+
venv.bak/
|
|
167
|
+
|
|
168
|
+
# Spyder project settings
|
|
169
|
+
.spyderproject
|
|
170
|
+
.spyproject
|
|
171
|
+
|
|
172
|
+
# Rope project settings
|
|
173
|
+
.ropeproject
|
|
174
|
+
|
|
175
|
+
# mkdocs documentation
|
|
176
|
+
/site
|
|
177
|
+
|
|
178
|
+
# mypy
|
|
179
|
+
.mypy_cache/
|
|
180
|
+
.dmypy.json
|
|
181
|
+
dmypy.json
|
|
182
|
+
|
|
183
|
+
# Pyre type checker
|
|
184
|
+
.pyre/
|
|
185
|
+
|
|
186
|
+
# pytype static type analyzer
|
|
187
|
+
.pytype/
|
|
188
|
+
|
|
189
|
+
# Cython debug symbols
|
|
190
|
+
cython_debug/
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 YukkuriC
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hexdoc-hexoverpowered
|
|
3
|
+
Version: 0.8.2.1.0
|
|
4
|
+
Summary: Python web book docgen and hexdoc plugin for HexOverpowered.
|
|
5
|
+
Project-URL: Homepage, https://yukkuric.github.io/HexOverpowered/
|
|
6
|
+
Project-URL: Source, https://github.com/YukkuriC/HexOverpowered
|
|
7
|
+
Author: YukkuriC
|
|
8
|
+
License-File: LICENSE.txt
|
|
9
|
+
Keywords: hexdoc
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Requires-Dist: hexdoc-hexcasting~=0.11.2.1.0
|
|
12
|
+
Provides-Extra: dev
|
|
13
|
+
Requires-Dist: ruff~=0.11.2; extra == 'dev'
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# hexdoc-hexoverpowered
|
|
17
|
+
|
|
18
|
+
Python web book docgen and [hexdoc](https://pypi.org/project/hexdoc) plugin for HexOverpowered.
|
|
19
|
+
|
|
20
|
+
## Version scheme
|
|
21
|
+
|
|
22
|
+
We use [hatch-gradle-version](https://pypi.org/project/hatch-gradle-version) to generate the version number based on whichever mod version the docgen was built with.
|
|
23
|
+
|
|
24
|
+
The version is in this format: `mod-version.python-version.mod-pre.python-dev.python-post`
|
|
25
|
+
|
|
26
|
+
For example:
|
|
27
|
+
* Mod version: `0.11.1-7`
|
|
28
|
+
* Python package version: `1.0.dev0`
|
|
29
|
+
* Full version: `0.11.1.1.0rc7.dev0`
|
|
30
|
+
|
|
31
|
+
## Setup
|
|
32
|
+
|
|
33
|
+
Install Python 3.12.
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
python3.12 -m venv venv
|
|
37
|
+
|
|
38
|
+
.\venv\Scripts\activate # Windows
|
|
39
|
+
. venv/bin/activate.fish # fish
|
|
40
|
+
source venv/bin/activate # everything else
|
|
41
|
+
|
|
42
|
+
# run from the repo root, not doc/
|
|
43
|
+
pip install -e .[dev]
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Usage
|
|
47
|
+
|
|
48
|
+
For local testing, create a file called `.env` in the repo root following this template:
|
|
49
|
+
```sh
|
|
50
|
+
GITHUB_REPOSITORY=YukkuriC/HexOverpowered
|
|
51
|
+
GITHUB_SHA=main
|
|
52
|
+
GITHUB_PAGES_URL=https://yukkuric.github.io/HexOverpowered/
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Useful commands:
|
|
56
|
+
```sh
|
|
57
|
+
# show help
|
|
58
|
+
hexdoc -h
|
|
59
|
+
|
|
60
|
+
# build, merge, and serve the web book in watch mode
|
|
61
|
+
nodemon --config doc/nodemon.json
|
|
62
|
+
|
|
63
|
+
# build, merge, and serve the web book
|
|
64
|
+
hexdoc serve
|
|
65
|
+
|
|
66
|
+
# manually build and merge the web book
|
|
67
|
+
hexdoc build
|
|
68
|
+
hexdoc merge
|
|
69
|
+
|
|
70
|
+
# start the Python interpreter with some extra local variables
|
|
71
|
+
hexdoc repl
|
|
72
|
+
```
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# hexdoc-hexoverpowered
|
|
2
|
+
|
|
3
|
+
Python web book docgen and [hexdoc](https://pypi.org/project/hexdoc) plugin for HexOverpowered.
|
|
4
|
+
|
|
5
|
+
## Version scheme
|
|
6
|
+
|
|
7
|
+
We use [hatch-gradle-version](https://pypi.org/project/hatch-gradle-version) to generate the version number based on whichever mod version the docgen was built with.
|
|
8
|
+
|
|
9
|
+
The version is in this format: `mod-version.python-version.mod-pre.python-dev.python-post`
|
|
10
|
+
|
|
11
|
+
For example:
|
|
12
|
+
* Mod version: `0.11.1-7`
|
|
13
|
+
* Python package version: `1.0.dev0`
|
|
14
|
+
* Full version: `0.11.1.1.0rc7.dev0`
|
|
15
|
+
|
|
16
|
+
## Setup
|
|
17
|
+
|
|
18
|
+
Install Python 3.12.
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
python3.12 -m venv venv
|
|
22
|
+
|
|
23
|
+
.\venv\Scripts\activate # Windows
|
|
24
|
+
. venv/bin/activate.fish # fish
|
|
25
|
+
source venv/bin/activate # everything else
|
|
26
|
+
|
|
27
|
+
# run from the repo root, not doc/
|
|
28
|
+
pip install -e .[dev]
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
For local testing, create a file called `.env` in the repo root following this template:
|
|
34
|
+
```sh
|
|
35
|
+
GITHUB_REPOSITORY=YukkuriC/HexOverpowered
|
|
36
|
+
GITHUB_SHA=main
|
|
37
|
+
GITHUB_PAGES_URL=https://yukkuric.github.io/HexOverpowered/
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Useful commands:
|
|
41
|
+
```sh
|
|
42
|
+
# show help
|
|
43
|
+
hexdoc -h
|
|
44
|
+
|
|
45
|
+
# build, merge, and serve the web book in watch mode
|
|
46
|
+
nodemon --config doc/nodemon.json
|
|
47
|
+
|
|
48
|
+
# build, merge, and serve the web book
|
|
49
|
+
hexdoc serve
|
|
50
|
+
|
|
51
|
+
# manually build and merge the web book
|
|
52
|
+
hexdoc build
|
|
53
|
+
hexdoc merge
|
|
54
|
+
|
|
55
|
+
# start the Python interpreter with some extra local variables
|
|
56
|
+
hexdoc repl
|
|
57
|
+
```
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# This file is auto-generated by hatch-gradle-version. Do not edit.
|
|
2
|
+
|
|
3
|
+
GRADLE_VERSION = "0.8.2"
|
|
4
|
+
FULL_VERSION = "0.8.2.1.0"
|
|
5
|
+
|
|
6
|
+
ARCHIVES_NAME = "HexOverpowered"
|
|
7
|
+
CLOTH_CONFIG_VERSION = "8.2.88"
|
|
8
|
+
ENABLED_PLATFORMS = "forge,fabric"
|
|
9
|
+
FABRIC_API_VERSION = "0.92.1+1.20.1"
|
|
10
|
+
FABRIC_LOADER_VERSION = "0.16.9"
|
|
11
|
+
FORGE_VERSION = "1.20.1-47.3.6"
|
|
12
|
+
HEXCASTING_VERSION = "0.11.2-pre-702"
|
|
13
|
+
MAVEN_GROUP = "io.yukkuric"
|
|
14
|
+
MEKANISM_VERSION = "1.20.1-10.4.0.14"
|
|
15
|
+
MINECRAFT_VERSION = "1.20.1"
|
|
16
|
+
MOD_VERSION = "DYNAMIC"
|
|
17
|
+
MOD_VERSION_BASE = "0.8.2"
|
|
18
|
+
ORG_GRADLE_JVMARGS = "-Xmx2G"
|
|
19
|
+
ORG_GRADLE_PARALLEL = "true"
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hexoverpowered.hexbook.entry",
|
|
3
|
+
"category": "hexcasting:patterns",
|
|
4
|
+
"icon": "minecraft:dragon_breath",
|
|
5
|
+
"advancement": "hexcasting:root",
|
|
6
|
+
"pages": [
|
|
7
|
+
{
|
|
8
|
+
"type": "hexcasting:pattern",
|
|
9
|
+
"op_id": "hexoverpowered:yjsp_media",
|
|
10
|
+
"anchor": "hexoverpowered:yjsp_media",
|
|
11
|
+
"input": "",
|
|
12
|
+
"output": "",
|
|
13
|
+
"text": "book.descrip.hexoverpowered:yjsp_media"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"type": "hexcasting:pattern",
|
|
17
|
+
"op_id": "hexoverpowered:get_personal_media",
|
|
18
|
+
"anchor": "hexoverpowered:get_personal_media",
|
|
19
|
+
"input": "",
|
|
20
|
+
"output": "num",
|
|
21
|
+
"text": "book.descrip.hexoverpowered:get_personal_media"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "hexcasting:pattern",
|
|
25
|
+
"op_id": "hexoverpowered:get_personal_media_max",
|
|
26
|
+
"anchor": "hexoverpowered:get_personal_media_max",
|
|
27
|
+
"input": "",
|
|
28
|
+
"output": "num",
|
|
29
|
+
"text": "book.descrip.hexoverpowered:get_personal_media_max"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"type": "hexcasting:pattern",
|
|
33
|
+
"op_id": "hexoverpowered:mind_patterns",
|
|
34
|
+
"anchor": "hexoverpowered:mind_patterns",
|
|
35
|
+
"input": "",
|
|
36
|
+
"output": "list",
|
|
37
|
+
"text": "book.descrip.hexoverpowered:mind_patterns"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "hexcasting:pattern",
|
|
41
|
+
"op_id": "hexoverpowered:mind_stack/pop",
|
|
42
|
+
"anchor": "hexoverpowered:mind_stack/pop",
|
|
43
|
+
"input": "",
|
|
44
|
+
"output": "any",
|
|
45
|
+
"text": "book.descrip.hexoverpowered:mind_stack/pop"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "hexcasting:pattern",
|
|
49
|
+
"op_id": "hexoverpowered:mind_stack/push",
|
|
50
|
+
"anchor": "hexoverpowered:mind_stack/push",
|
|
51
|
+
"input": "any",
|
|
52
|
+
"output": "",
|
|
53
|
+
"text": "book.descrip.hexoverpowered:mind_stack/push"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"type": "hexcasting:pattern",
|
|
57
|
+
"op_id": "hexoverpowered:mind_stack/size",
|
|
58
|
+
"anchor": "hexoverpowered:mind_stack/size",
|
|
59
|
+
"input": "",
|
|
60
|
+
"output": "num",
|
|
61
|
+
"text": "book.descrip.hexoverpowered:mind_stack/size"
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"hexdoc.hexoverpowered.title": "HexOverpowered Book", "hexdoc.hexoverpowered.description": "The HexOverpowered Book, all in one place."}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"hexcasting.action.hexoverpowered:yjsp_media": "YJSP's Charge Media", "hexcasting.action.hexoverpowered:mind_stack/push": "Brain-In Gambit", "hexcasting.action.hexoverpowered:mind_stack/pop": "Brain-Out Gambit", "hexcasting.action.hexoverpowered:mind_stack/size": "Brain Depth's Reflection", "hexcasting.action.hexoverpowered:mind_patterns": "Snapshot Reflection", "hexcasting.action.hexoverpowered:get_personal_media": "Mana Reflection", "hexcasting.action.hexoverpowered:get_personal_media_max": "Arcane Reflection", "hexop.mote.chest.title": "A Glance of the Mote Chest", "hexoverpowered.attr.personal_media": "Personal Media", "hexoverpowered.attr.personal_media_max": "Max Personal Media", "hexoverpowered.attr.personal_media_regen": "Personal Media Regeneration", "hexoverpowered.hexbook.entry": "Patterns from HexOverpowered", "book.descrip.hexoverpowered:yjsp_media": "Charges the current casting environment to an equivalent of $(bold)$(item)114514$() amethyst dust media.", "book.descrip.hexoverpowered:mind_patterns": "Gets the list of all pattern iotas in the current staff canvas, returned in the order they were drawn.", "book.descrip.hexoverpowered:mind_patterns/clear": "Clears all patterns in the staff canvas.", "book.descrip.hexoverpowered:mind_stack/pop": "Pops the top iota from the staff casting stack, and pushes into current stack.", "book.descrip.hexoverpowered:mind_stack/push": "Pops the top iota from current stack, and pushes into the staff casting stack.", "book.descrip.hexoverpowered:mind_stack/size": "Gets the size of the staff casting stack.", "book.descrip.hexoverpowered:get_personal_media": "Gets how much media exists in my personal media bar (in $(bold)$(item)0.0001$() dust).", "book.descrip.hexoverpowered:get_personal_media_max": "Gets how much media I could hold in my personal media bar at most (in $(bold)$(item)0.0001$() dust)."}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"hexcasting.action.hexoverpowered:yjsp_media": "\u6cbc\u6c14\u9a71\u52a8", "hexcasting.action.hexoverpowered:mind_stack/push": "\u5165\u8111\u4e4b\u7b56\u7565", "hexcasting.action.hexoverpowered:mind_stack/pop": "\u51fa\u8111\u4e4b\u7b56\u7565", "hexcasting.action.hexoverpowered:mind_stack/size": "\u8111\u6df1\u4e4b\u7cbe\u601d", "hexcasting.action.hexoverpowered:mind_patterns": "\u8c61\u5f62\u4e4b\u7cbe\u601d", "hexcasting.action.hexoverpowered:get_personal_media": "\u6cd5\u529b\u4e4b\u7cbe\u601d", "hexcasting.action.hexoverpowered:get_personal_media_max": "\u5965\u672f\u4e4b\u7cbe\u601d", "hexop.mote.chest.title": "\u7269\u5143\u7bb1\u4e00\u77a5", "hexoverpowered.attr.personal_media": "\u4e2a\u4eba\u5a92\u8d28", "hexoverpowered.attr.personal_media_max": "\u6700\u5927\u4e2a\u4eba\u5a92\u8d28", "hexoverpowered.attr.personal_media_regen": "\u4e2a\u4eba\u5a92\u8d28\u56de\u590d", "hexoverpowered.hexbook.entry": "HexOverpowered\u7684\u56fe\u6848", "book.descrip.hexoverpowered:yjsp_media": "\u5145\u80fd\u5f53\u524d\u65bd\u6cd5\u73af\u5883\u81f3\u7b49\u91cf\u4e8e$(bold)$(item)114514$()\u7d2b\u6c34\u6676\u7c89\u7684\u5a92\u8d28\u3002", "book.descrip.hexoverpowered:mind_patterns": "\u83b7\u53d6\u5f53\u524d\u6cd5\u6756\u753b\u5e03\u5185\u6240\u6709\u56fe\u6848\u5217\u8868\uff0c\u6309\u7ed8\u5236\u5148\u540e\u987a\u5e8f\u8fd4\u56de\u3002", "book.descrip.hexoverpowered:mind_patterns/clear": "\u6e05\u9664\u6cd5\u6756\u753b\u5e03\u5185\u6240\u6709\u56fe\u6848\u3002", "book.descrip.hexoverpowered:mind_stack/pop": "\u5f39\u51fa\u73a9\u5bb6\u6cd5\u6756\u7a7a\u95f4\u6808\u9876\u7684\u5143\u7d20\uff0c\u653e\u5165\u5f53\u524d\u6808\u9876\u3002", "book.descrip.hexoverpowered:mind_stack/push": "\u5f39\u51fa\u5f53\u524d\u6808\u9876\u7684\u5143\u7d20\uff0c\u653e\u5165\u73a9\u5bb6\u6cd5\u6756\u7a7a\u95f4\u6808\u9876\u3002", "book.descrip.hexoverpowered:mind_stack/size": "\u83b7\u53d6\u73a9\u5bb6\u6cd5\u6756\u7a7a\u95f4\u6808\u7684\u5143\u7d20\u603b\u6570\u3002", "book.descrip.hexoverpowered:get_personal_media": "\u83b7\u53d6\u6211\u7684\u4e2a\u4eba\u5a92\u8d28\u6761\u4e2d\u6709\u591a\u5c11\u5a92\u8d28\uff08\u4ee5 $(bold)$(item)0.0001$() \u7c89\u4e3a\u5355\u4f4d\uff09\u3002", "book.descrip.hexoverpowered:get_personal_media_max": "\u83b7\u53d6\u6211\u7684\u4e2a\u4eba\u5a92\u8d28\u6761\u6700\u591a\u53ef\u5bb9\u7eb3\u591a\u5c11\u5a92\u8d28\uff08\u4ee5 $(bold)$(item)0.0001$() \u7c89\u4e3a\u5355\u4f4d\uff09\u3002"}
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"values":["hexoverpowered:yjsp_media"],"replace":false}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"book_url":"https://yukkuric.github.io/HexOverpowered/v/0.8.2/1.0/en_us","asset_url":"https://raw.githubusercontent.com/YukkuriC/HexOverpowered/639f034c6a961ed211788765bd8a9becf6f6b84c","textures":{"PNGTexture":{"hexoverpowered:textures/gui/media_bar.png":{"url":"https://raw.githubusercontent.com/YukkuriC/HexOverpowered/639f034c6a961ed211788765bd8a9becf6f6b84c/common/src/main/resources/assets/hexoverpowered/textures/gui/media_bar.png","pixelated":true}}}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"patterns":[{"startdir":"NORTH_EAST","signature":"eaddaddaeaeaddaddaeaeaddaddae","is_per_world":true,"id":"hexoverpowered:yjsp_media"},{"startdir":"EAST","signature":"qqaqqea","id":"hexoverpowered:get_personal_media"},{"startdir":"EAST","signature":"qqaqqqd","id":"hexoverpowered:get_personal_media_max"},{"startdir":"SOUTH_WEST","signature":"waawweeeeedd","id":"hexoverpowered:mind_stack/push"},{"startdir":"SOUTH_WEST","signature":"wqaqwweeeee","id":"hexoverpowered:mind_stack/pop"},{"startdir":"SOUTH_WEST","signature":"waawweeeeewaa","id":"hexoverpowered:mind_stack/size"},{"startdir":"SOUTH_WEST","signature":"waawweeeeaaeaeaeaeaw","id":"hexoverpowered:mind_patterns"}]}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
from importlib.resources import Package
|
|
2
|
+
from typing_extensions import override
|
|
3
|
+
|
|
4
|
+
from hexdoc.plugin import (
|
|
5
|
+
HookReturn,
|
|
6
|
+
ModPlugin,
|
|
7
|
+
ModPluginImpl,
|
|
8
|
+
ModPluginWithBook,
|
|
9
|
+
hookimpl,
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
import hexdoc_hexoverpowered
|
|
13
|
+
|
|
14
|
+
from .__gradle_version__ import FULL_VERSION, GRADLE_VERSION
|
|
15
|
+
from .__version__ import PY_VERSION
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class HexOverpoweredPlugin(ModPluginImpl):
|
|
19
|
+
@staticmethod
|
|
20
|
+
@hookimpl
|
|
21
|
+
def hexdoc_mod_plugin(branch: str) -> ModPlugin:
|
|
22
|
+
return HexOverpoweredModPlugin(branch=branch)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class HexOverpoweredModPlugin(ModPluginWithBook):
|
|
26
|
+
@property
|
|
27
|
+
@override
|
|
28
|
+
def modid(self) -> str:
|
|
29
|
+
return "hexoverpowered"
|
|
30
|
+
|
|
31
|
+
@property
|
|
32
|
+
@override
|
|
33
|
+
def full_version(self) -> str:
|
|
34
|
+
return FULL_VERSION
|
|
35
|
+
|
|
36
|
+
@property
|
|
37
|
+
@override
|
|
38
|
+
def mod_version(self) -> str:
|
|
39
|
+
return GRADLE_VERSION
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
@override
|
|
43
|
+
def plugin_version(self) -> str:
|
|
44
|
+
return PY_VERSION
|
|
45
|
+
|
|
46
|
+
@override
|
|
47
|
+
def resource_dirs(self) -> HookReturn[Package]:
|
|
48
|
+
# lazy import because generated may not exist when this file is loaded
|
|
49
|
+
# eg. when generating the contents of generated
|
|
50
|
+
# so we only want to import it if we actually need it
|
|
51
|
+
from ._export import generated
|
|
52
|
+
|
|
53
|
+
return generated
|
|
54
|
+
|
|
55
|
+
@override
|
|
56
|
+
def jinja_template_root(self) -> tuple[Package, str]:
|
|
57
|
+
return hexdoc_hexoverpowered, "_templates"
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Done to increase the memory available to Gradle.
|
|
2
|
+
org.gradle.jvmargs=-Xmx2G
|
|
3
|
+
org.gradle.parallel=true
|
|
4
|
+
# Mod properties
|
|
5
|
+
mod_version_base=0.8.2
|
|
6
|
+
mod_version=DYNAMIC
|
|
7
|
+
maven_group=io.yukkuric
|
|
8
|
+
archives_name=HexOverpowered
|
|
9
|
+
enabled_platforms=forge,fabric
|
|
10
|
+
# Minecraft properties
|
|
11
|
+
minecraft_version=1.20.1
|
|
12
|
+
# Dependencies
|
|
13
|
+
fabric_loader_version=0.16.9
|
|
14
|
+
fabric_api_version=0.92.1+1.20.1
|
|
15
|
+
forge_version=1.20.1-47.3.6
|
|
16
|
+
clothConfigVersion=8.2.88
|
|
17
|
+
|
|
18
|
+
# mod deps
|
|
19
|
+
hexcastingVersion=0.11.2-pre-702
|
|
20
|
+
mekanism_version=1.20.1-10.4.0.14
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = [
|
|
3
|
+
"hatchling",
|
|
4
|
+
"hatch-gradle-version>=0.8.0",
|
|
5
|
+
]
|
|
6
|
+
build-backend = "hatchling.build"
|
|
7
|
+
|
|
8
|
+
# project metadata
|
|
9
|
+
|
|
10
|
+
[project]
|
|
11
|
+
name = "hexdoc-hexoverpowered"
|
|
12
|
+
description = "Python web book docgen and hexdoc plugin for HexOverpowered."
|
|
13
|
+
readme = "doc/README.md"
|
|
14
|
+
authors = [
|
|
15
|
+
{ name="YukkuriC" },
|
|
16
|
+
]
|
|
17
|
+
keywords = ["hexdoc"]
|
|
18
|
+
requires-python = ">=3.11"
|
|
19
|
+
dynamic = ["version", "dependencies", "optional-dependencies"]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://yukkuric.github.io/HexOverpowered/"
|
|
23
|
+
Source = "https://github.com/YukkuriC/HexOverpowered"
|
|
24
|
+
|
|
25
|
+
# Gradle version/deps
|
|
26
|
+
|
|
27
|
+
[tool.hatch.version]
|
|
28
|
+
scheme = "gradle"
|
|
29
|
+
source = "gradle-properties"
|
|
30
|
+
py-path = "doc/src/hexdoc_hexoverpowered/__version__.py"
|
|
31
|
+
key = "mod_version_base"
|
|
32
|
+
|
|
33
|
+
[tool.hatch.metadata.hooks.gradle-properties]
|
|
34
|
+
dependencies = [
|
|
35
|
+
{ package="hexdoc-hexcasting", op="~=", py-version="1.0", key="hexcastingVersion" },
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[tool.hatch.metadata.hooks.gradle-properties.optional-dependencies]
|
|
39
|
+
dev = [
|
|
40
|
+
"ruff~=0.11.2",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
# directory inclusion
|
|
44
|
+
|
|
45
|
+
[tool.hatch.build]
|
|
46
|
+
only-include = [
|
|
47
|
+
"doc/src/hexdoc_hexoverpowered",
|
|
48
|
+
"gradle.properties",
|
|
49
|
+
]
|
|
50
|
+
artifacts = [
|
|
51
|
+
"/doc/src/hexdoc_hexoverpowered/_export/generated",
|
|
52
|
+
"/doc/src/hexdoc_hexoverpowered/__gradle_version__.py",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[tool.hatch.build.targets.wheel]
|
|
56
|
+
sources = ["doc/src"]
|
|
57
|
+
|
|
58
|
+
# hexdoc entry points
|
|
59
|
+
|
|
60
|
+
[project.entry-points.hexdoc]
|
|
61
|
+
hexoverpowered = "hexdoc_hexoverpowered._hooks:HexOverpoweredPlugin"
|
|
62
|
+
|
|
63
|
+
# linting
|
|
64
|
+
|
|
65
|
+
[tool.pyright]
|
|
66
|
+
pythonVersion = "3.11"
|
|
67
|
+
pythonPlatform = "All"
|
|
68
|
+
|
|
69
|
+
include = ["doc/src"]
|
|
70
|
+
extraPaths = ["doc/src"]
|
|
71
|
+
|
|
72
|
+
typeCheckingMode = "standard"
|
|
73
|
+
|
|
74
|
+
strictDictionaryInference = true
|
|
75
|
+
strictListInference = true
|
|
76
|
+
strictSetInference = true
|
|
77
|
+
|
|
78
|
+
reportAssertAlwaysTrue = "error"
|
|
79
|
+
reportConstantRedefinition = "error"
|
|
80
|
+
reportDeprecated = "error"
|
|
81
|
+
reportDuplicateImport = "error"
|
|
82
|
+
reportFunctionMemberAccess = "error"
|
|
83
|
+
reportIncompatibleMethodOverride = "error"
|
|
84
|
+
reportIncompatibleVariableOverride = "error"
|
|
85
|
+
reportIncompleteStub = "error"
|
|
86
|
+
reportInconsistentConstructor = "error"
|
|
87
|
+
reportInvalidStringEscapeSequence = "error"
|
|
88
|
+
reportInvalidStubStatement = "error"
|
|
89
|
+
reportInvalidTypeVarUse = "error"
|
|
90
|
+
reportMatchNotExhaustive = "error"
|
|
91
|
+
reportMissingParameterType = "error"
|
|
92
|
+
reportMissingTypeStubs = "error"
|
|
93
|
+
reportOverlappingOverload = "error"
|
|
94
|
+
reportSelfClsParameterName = "error"
|
|
95
|
+
reportTypeCommentUsage = "error"
|
|
96
|
+
reportUnknownParameterType = "error"
|
|
97
|
+
reportUnnecessaryCast = "error"
|
|
98
|
+
reportUnnecessaryContains = "error"
|
|
99
|
+
reportUnsupportedDunderAll = "error"
|
|
100
|
+
reportUntypedBaseClass = "error"
|
|
101
|
+
reportUntypedClassDecorator = "error"
|
|
102
|
+
reportUntypedFunctionDecorator = "error"
|
|
103
|
+
reportUntypedNamedTuple = "error"
|
|
104
|
+
reportWildcardImportFromLibrary = "error"
|
|
105
|
+
|
|
106
|
+
reportMissingTypeArgument = "warning"
|
|
107
|
+
reportPrivateUsage = "warning"
|
|
108
|
+
reportUnknownArgumentType = "warning"
|
|
109
|
+
reportUnknownLambdaType = "warning"
|
|
110
|
+
reportUnknownMemberType = "warning"
|
|
111
|
+
reportUnknownVariableType = "warning"
|
|
112
|
+
reportUnnecessaryComparison = "warning"
|
|
113
|
+
reportUnnecessaryIsInstance = "warning"
|
|
114
|
+
reportUnusedClass = "warning"
|
|
115
|
+
reportUnusedExpression = "warning"
|
|
116
|
+
reportUnusedFunction = "warning"
|
|
117
|
+
reportUnusedImport = "warning"
|
|
118
|
+
reportUnusedVariable = "warning"
|