Skip to content

Commit 4ff50dc

Browse files
authored
build: release 0.0.4 (#37)
* build: release 0.0.4 * docs: update docs
1 parent 40beb2e commit 4ff50dc

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README-en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The python implementation of the [DanmakuFactory](https://github.com/hihkm/Danma
2222
- Supports different colors of superchat and time distinction.
2323
- Supports different OS, implemented by Python.
2424
- No third-party libraries. No need to consider the compatibility between dependencies.
25-
- Supports mobile native live room rendering(dev).
25+
- Supports mobile native live room rendering(testing).
2626
- More features will be added in the future, if you have any suggestions, welcome to [open an issue](https://github.com/timerring/DanmakuConvert/issues).
2727

2828
## The result display
@@ -71,7 +71,7 @@ dmconvert -h
7171
### Source Version
7272

7373
```python
74-
from dmconvert.convert import convert_xml_to_ass
74+
from dmconvert import convert_xml_to_ass
7575

7676
# eg.
7777
# xml_file = "sample.xml"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
- 支持不同金额的 superchat 颜色及时间区分。
2121
- 支持不同操作系统,通过Python实现跨平台。
2222
- 没有任何第三方依赖库,无需考虑版本兼容(Python >= 3.6)。
23-
- 支持移动端原生直播间渲染(dev)。
23+
- 支持移动端原生直播间渲染(testing)。
2424
- 未来将添加更多功能,如果您有任何优化或者改进建议,欢迎 [提交 issue](https://github.com/timerring/DanmakuConvert/issues)
2525

2626
## 成果展示
@@ -69,7 +69,7 @@ dmconvert -h
6969
### 直接引用
7070

7171
```python
72-
from dmconvert.convert import convert_xml_to_ass
72+
from dmconvert import convert_xml_to_ass
7373

7474
# 例如
7575
# xml_file = "sample.xml"

dmconvert/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def cli():
2626
"-V",
2727
"--version",
2828
action="version",
29-
version="dmconvert 0.0.3 and source code at https://github.com/timerring/DanmakuConvert",
29+
version="dmconvert 0.0.4 and source code at https://github.com/timerring/DanmakuConvert",
3030
help="Print version information",
3131
)
3232
parser.add_argument(

dmconvert/convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
def convert_xml_to_ass(font_size, sc_font_size, resolution_x, resolution_y, xml_file, ass_file):
1515
# Parse XML
16-
print("DanmakuConvert v0.0.3", flush=True)
16+
print("DanmakuConvert v0.0.4", flush=True)
1717
print("https://github.com/timerring/DanmakuConvert", flush=True)
1818
tree = ET.parse(xml_file)
1919
root = tree.getroot()

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "dmconvert"
7-
version = "0.0.3"
7+
version = "0.0.4"
88
authors = [
99
{ name="timerring"},
1010
]

0 commit comments

Comments
 (0)