9 Commits

Author SHA1 Message Date
jiwonRepair
29e6e56846 fix: Ensure both MsgBox messages are shown sequentially 2025-07-24 16:44:13 +09:00
jiwonRepair
de87e8c42d chore: edit release note 2025-07-24 11:35:47 +09:00
jiwonRepair
c8128ee586 chore: remove unused comment 2025-07-24 11:30:04 +09:00
jiwonRepair
a724e836d8 fix: handle exception when ShotSearch returns timeout message
Problem:
- Unhandled exception occurs during ShotSearch execution.
- Error message: "Conversion from string 'The operation has timed out.'
  to type 'Double' is not valid."

Reproduction:
- Occurs when the communication port is disconnected during the
  "Information Input" state.

Cause:
- ShotSearch returns a timeout message as a string.
- Comparing this string directly to an integer (e.g., If ShotSearch() = 0)
  causes a runtime type conversion exception.

Fix:
- Updated condition from:
    If ShotSearch() = 0 Then
  to:
    If ShotSearch() = "False" Then
- Prevents runtime error by avoiding invalid comparison between string and integer.
2025-07-24 11:21:32 +09:00
jiwonRepair
d44e15e03b fix: Effect V3 Color list & serial number error message fixed 2025-07-21 16:18:44 +09:00
jiwonRepair
e5e9509217 feat: EFFECT model split cartridge color code V2 & V3 2025-07-17 16:34:47 +09:00
jiwonRepair
28abdd019d fix: Model name length 10 >> 13 in DataBase 2025-07-16 15:25:55 +09:00
jiwonRepair
af0aa16041 feat: MAXIMUM ALPHA 2025-07-16 10:39:32 +09:00
9e7a310be9 초기 커밋. 2025-06-25 11:19:00 +09:00