pymud 0.19.3.post1__tar.gz → 0.19.3.post2__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.
Files changed (21) hide show
  1. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/PKG-INFO +4 -1
  2. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/README.md +4 -1
  3. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/pyproject.toml +1 -1
  4. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/pymud.py +2 -2
  5. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/settings.py +1 -1
  6. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud.egg-info/PKG-INFO +4 -1
  7. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/LICENSE.txt +0 -0
  8. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/setup.cfg +0 -0
  9. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/__init__.py +0 -0
  10. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/__main__.py +0 -0
  11. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/dialogs.py +0 -0
  12. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/extras.py +0 -0
  13. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/objects.py +0 -0
  14. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/pkuxkx.py +0 -0
  15. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/protocol.py +0 -0
  16. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud/session.py +0 -0
  17. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud.egg-info/SOURCES.txt +0 -0
  18. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud.egg-info/dependency_links.txt +0 -0
  19. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud.egg-info/entry_points.txt +0 -0
  20. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud.egg-info/requires.txt +0 -0
  21. {pymud-0.19.3.post1 → pymud-0.19.3.post2}/src/pymud.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pymud
3
- Version: 0.19.3.post1
3
+ Version: 0.19.3.post2
4
4
  Summary: a MUD Client written in Python
5
5
  Author-email: "newstart@pkuxkx" <crapex@crapex.cc>
6
6
  Maintainer-email: "newstart@pkuxkx" <crapex@crapex.cc>
@@ -960,3 +960,6 @@ Requires-Dist: prompt-toolkit
960
960
  + 功能增加: 新增一个exec_async函数,是exec函数的异步形式。可以在其他会话中异步执行一段代码
961
961
  + 帮助完善: 帮助文档逻辑完善,已完成整个包的内置文档的编写和修改
962
962
  + 注: 由于我没弄太明白 readthedocs.io 网站对于读取github源代码的逻辑,目前只能通过新发布正式版本的形式来使 readthedocs.io 网站的文档中的类参考自动更新。
963
+
964
+ ### 0.19.3post2 (2024-04-05)
965
+ + 问题修复: 修复退出程序时的小bug
@@ -254,4 +254,7 @@
254
254
  ### 0.19.3post1 (2024-04-03)
255
255
  + 功能增加: 新增一个exec_async函数,是exec函数的异步形式。可以在其他会话中异步执行一段代码
256
256
  + 帮助完善: 帮助文档逻辑完善,已完成整个包的内置文档的编写和修改
257
- + 注: 由于我没弄太明白 readthedocs.io 网站对于读取github源代码的逻辑,目前只能通过新发布正式版本的形式来使 readthedocs.io 网站的文档中的类参考自动更新。
257
+ + 注: 由于我没弄太明白 readthedocs.io 网站对于读取github源代码的逻辑,目前只能通过新发布正式版本的形式来使 readthedocs.io 网站的文档中的类参考自动更新。
258
+
259
+ ### 0.19.3post2 (2024-04-05)
260
+ + 问题修复: 修复退出程序时的小bug
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
 
3
3
  name = "pymud" # Required
4
- version = "0.19.3post1" # Required
4
+ version = "0.19.3post2" # Required
5
5
  description = "a MUD Client written in Python" # Optional
6
6
  readme = "README.md" # Optional
7
7
  requires-python = ">=3.7"
@@ -697,8 +697,8 @@ class PyMudApp:
697
697
  if isinstance(plugin, Plugin):
698
698
  plugin.onSessionDestroy(ss)
699
699
 
700
- else:
701
- return
700
+ else:
701
+ return
702
702
 
703
703
  self.app.exit()
704
704
 
@@ -13,7 +13,7 @@ class Settings:
13
13
  "APP 简要描述"
14
14
  __version__ = "0.19.3"
15
15
  "APP 当前版本"
16
- __release__ = "2024-04-03"
16
+ __release__ = "2024-04-05"
17
17
  "APP 当前版本发布日期"
18
18
  __author__ = "本牛(newstart)@北侠"
19
19
  "APP 作者"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pymud
3
- Version: 0.19.3.post1
3
+ Version: 0.19.3.post2
4
4
  Summary: a MUD Client written in Python
5
5
  Author-email: "newstart@pkuxkx" <crapex@crapex.cc>
6
6
  Maintainer-email: "newstart@pkuxkx" <crapex@crapex.cc>
@@ -960,3 +960,6 @@ Requires-Dist: prompt-toolkit
960
960
  + 功能增加: 新增一个exec_async函数,是exec函数的异步形式。可以在其他会话中异步执行一段代码
961
961
  + 帮助完善: 帮助文档逻辑完善,已完成整个包的内置文档的编写和修改
962
962
  + 注: 由于我没弄太明白 readthedocs.io 网站对于读取github源代码的逻辑,目前只能通过新发布正式版本的形式来使 readthedocs.io 网站的文档中的类参考自动更新。
963
+
964
+ ### 0.19.3post2 (2024-04-05)
965
+ + 问题修复: 修复退出程序时的小bug
File without changes
File without changes