nonebot-plugin-fishing2 0.1.1__tar.gz → 1.0.1__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.
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/LICENSE +21 -21
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/PKG-INFO +8 -8
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/README.md +1 -2
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/__init__.py +601 -591
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/config.py +301 -301
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/data_source.py +920 -895
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/fish_helper.py +157 -157
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/7609e6d106dd_init_db.py +43 -43
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/c5ab992c9af3_add_achievements.py +38 -38
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/model.py +20 -20
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/pyproject.toml +8 -4
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/68463f3e5f33_.py +0 -0
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/e9015df43907_add_special_fishes_field.py +0 -0
- {nonebot_plugin_fishing2-0.1.1 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/f70bdeaec7a4_add_specialfishes_table.py +0 -0
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Polaris_Light
|
|
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 all
|
|
13
|
-
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 THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Polaris_Light
|
|
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 all
|
|
13
|
+
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 THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: nonebot-plugin-fishing2
|
|
3
|
-
Version: 0.1
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: 更好的电子钓鱼
|
|
5
|
-
License: MIT
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Keywords: fishing
|
|
7
|
-
Author:
|
|
8
|
-
Author-email:
|
|
8
|
+
Author: Polaris_Light
|
|
9
|
+
Author-email: 995905922@qq.com
|
|
9
10
|
Requires-Python: >=3.8
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.8
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
18
19
|
Requires-Dist: nonebot-adapter-onebot (>=2.0.0-beta.1)
|
|
19
20
|
Requires-Dist: nonebot-plugin-localstore (>=0.6.0)
|
|
20
21
|
Requires-Dist: nonebot-plugin-orm (>=0.7.1)
|
|
@@ -33,7 +34,7 @@ Description-Content-Type: text/markdown
|
|
|
33
34
|
_✨ 更好的电子钓鱼 ✨_
|
|
34
35
|
|
|
35
36
|
<a href="./LICENSE">
|
|
36
|
-
<img src="https://img.shields.io/github/license/
|
|
37
|
+
<img src="https://img.shields.io/github/license/GLDYM/nonebot-plugin-fishing2.svg" alt="license">
|
|
37
38
|
</a>
|
|
38
39
|
<a href="https://pypi.python.org/pypi/nonebot-plugin-fishing2">
|
|
39
40
|
<img src="https://img.shields.io/pypi/v/nonebot-plugin-fishing2.svg" alt="pypi">
|
|
@@ -161,5 +162,4 @@ FISHES='
|
|
|
161
162
|
- [x] 买装备!
|
|
162
163
|
- [x] 支持卖与普通鱼同名的特殊鱼
|
|
163
164
|
- [x] 管理员命令:捞鱼
|
|
164
|
-
- [ ] 屏蔽词库
|
|
165
165
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
_✨ 更好的电子钓鱼 ✨_
|
|
8
8
|
|
|
9
9
|
<a href="./LICENSE">
|
|
10
|
-
<img src="https://img.shields.io/github/license/
|
|
10
|
+
<img src="https://img.shields.io/github/license/GLDYM/nonebot-plugin-fishing2.svg" alt="license">
|
|
11
11
|
</a>
|
|
12
12
|
<a href="https://pypi.python.org/pypi/nonebot-plugin-fishing2">
|
|
13
13
|
<img src="https://img.shields.io/pypi/v/nonebot-plugin-fishing2.svg" alt="pypi">
|
|
@@ -135,4 +135,3 @@ FISHES='
|
|
|
135
135
|
- [x] 买装备!
|
|
136
136
|
- [x] 支持卖与普通鱼同名的特殊鱼
|
|
137
137
|
- [x] 管理员命令:捞鱼
|
|
138
|
-
- [ ] 屏蔽词库
|