Skip to content

Commit

Permalink
Merge pull request #17 from mogenius/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
behrangalavi authored Oct 10, 2023
2 parents 31119b6 + 1310aa8 commit 3b36fee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions operator/routes-websocket.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"strings"
)

type WindowSize struct {
type windowSize struct {
Rows uint16 `json:"rows"`
Cols uint16 `json:"cols"`
}
Expand Down Expand Up @@ -106,7 +106,7 @@ func connectWs(c *gin.Context) {
if strings.HasPrefix(string(reader), "\x04") {
str := strings.TrimPrefix(string(reader), "\x04")

var resizeMessage WindowSize
var resizeMessage windowSize
err := json.Unmarshal([]byte(str), &resizeMessage)
if err != nil {
log.Printf("%s", err.Error())
Expand Down
8 changes: 4 additions & 4 deletions punq-dev.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"version": "1.4.1",
"version": "1.4.2-develop.1",
"license": "MIT",
"homepage": "https://punq.dev",
"bin": "punq-dev.exe",
"pre_install": "Rename-Item \"$dir\\punq-dev-v1.4.1-windows-amd64\" punq-dev.exe",
"pre_install": "Rename-Item \"$dir\\punq-dev-v1.4.2-develop.1-windows-amd64\" punq-dev.exe",
"description": "A slim open-source workload manager for Kubernetes with team collaboration, WebApp, and CLI.",
"architecture": {
"64bit": {
"url": "https://github.com/mogenius/punq/releases/download/v1.4.1/punq-v1.4.1-windows-amd64",
"hash": ""
"url": "https://github.com/mogenius/punq/releases/download/v1.4.2-develop.1/punq-v1.4.2-develop.1-windows-amd64",
"hash": "c852c21767ec2f0c723c4ca26a8bd1d77c961e1fd210ad18ae0227180382ae8c"
}
}
}

0 comments on commit 3b36fee

Please sign in to comment.