Skip to content

Commit

Permalink
refactoring [v0.3.5]
Browse files Browse the repository at this point in the history
 fix WIN
  • Loading branch information
SUNsung committed Sep 11, 2024
1 parent 5fba1ab commit 9214f86
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions 0_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ func TestConnect(t *testing.T) {
})
}

if len(ports[0]) < 11 || ports[0][:11] != "/dev/ttyUSB" {
t.Log("Invalid COM-port")
return
}

fmt.Println("Connect to:\t\t" + ports[0])
a.Open(ports[0], enum.PowerUpE)

Expand Down
2 changes: 1 addition & 1 deletion _run/values/ver.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.3.4
v0.3.5
6 changes: 3 additions & 3 deletions const.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package mpost
const (
GlobalName string = "mpost"
GlobalDateUpdate string = "09-11-2024"
GlobalHash string = "296eaa2c4dc50bdbf02cb112029b266d7920b8fa"
GlobalHash string = "5fba1ab3752006e09b39412d9e23149158c00a59"

GlobalVersion string = "v0.3.4"
GlobalVersion string = "v0.3.5"
GlobalVersionMajor string = "v0"
GlobalVersionMinor uint16 = 3
GlobalVersionPatch uint16 = 4
GlobalVersionPatch uint16 = 5
)

0 comments on commit 9214f86

Please sign in to comment.