Skip to content

Commit

Permalink
euddraft 0.10.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
armoha committed Sep 25, 2024
1 parent cf71525 commit a89d7b4
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 14 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.10.0.2] - 2024.09.26
### Bugfix
- Fixed bug in fixed line print functions; `StringBuffer.printfAt`, `DisplayTextAt`, etc. (reported by 고래밥은맛있어, 맛있는건못참아)
- scdata: Fix compilation error in 2 byte member `+=` (reported by 텔)
- Fid compilation error in `f_epdread_cp` function (reported by 맛있는건못참아)
- Fix compilation error when assigning 0 to `CUnit` variable (reported by @Chromowolf)

### Improved
- Add stack trace to warning messages (reported by 콤)
- Optimized the number of triggers in `EUDByteReader.readbyte()`, `f_raise_CCMU()`, `f_getcurpl()`

## [0.10.0.1] - 2024.09.23
### Bugfix
- [MSQC] Fix mouse button event compilation error (reported by 텔)
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG_ko.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# 변경 사항 (한국어)

## [0.10.0.2] - 2024.09.26
### 버그 수정
- `StringBuffer.printfAt`, `DisplayTextAt` 등 텍스트 줄 출력 버그 수정 (고래밥은맛있어, 맛있는건못참아님 제보)
- scdata: 2바이트 멤버 `+=` 컴파일 오류 수정 (텔님 제보)
- `f_epdread_cp` 함수 컴파일 오류 수정 (맛있는건못참아님 제보)
- CUnit 변수에 0 대입시 컴파일 오류 수정 (@Chromowolf 님 제보)

### 기능 개선
- 경고 메시지에 스택 트레이스 추가 (콤님 제보)
- `EUDByteReader.readbyte()`, `f_raise_CCMU()`, `f_getcurpl()` 트리거 개수 최적화

## [0.10.0.1] - 2024.09.23
### 버그 수정
- [MSQC] 마우스 버튼 인식 컴파일 오류 수정 (텔님 제보)
Expand Down
2 changes: 1 addition & 1 deletion euddraft.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from pluginLoader import getGlobalPluginDirectory
from readconfig import readconfig

version = "0.10.0.1"
version = "0.10.0.2"


def applylib():
Expand Down
2 changes: 1 addition & 1 deletion latest/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.0.1
0.10.0.2
18 changes: 8 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "euddraft"
version = "0.10.0.1"
version = "0.10.0.2"
description = "Framework for creating & applying various plugins to StarCraft map."
authors = ["armoha <kein0011@naver.com>", "Park Hyun Woo <phu54321@naver.com>"]
license = "MIT"
Expand All @@ -9,7 +9,7 @@ readme = "README.md"
[tool.poetry.dependencies]
python = ">= 3.10, < 3.12"
cx-Freeze = "^7.2.0"
eudplib = {path = "../eudplib"}
eudplib = "^0.78.4"
rich = "^13.8.1"
openpyxl = "^3.1.3"
typing_extensions = "^4.12.2"
Expand Down

0 comments on commit a89d7b4

Please sign in to comment.