Skip to content

Commit 927a720

Browse files
committed
Update to default setup version to 2.4.2
1 parent 79f44c0 commit 927a720

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

setup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
$current_location = Get-Location
1515

1616
$module = "github.com/webui-dev/go-webui/v2"
17-
$webui_version="v2.4.1" # TODO: fetch latest version automatically and allow to set version via flag
17+
$webui_version="v2.4.2" # TODO: fetch latest version automatically and allow to set version via flag
1818
$release_base_url = "https://github.com/webui-dev/webui/releases"
1919

2020
# Determine the release archive for the used platform and architecture.

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# like `@latest` or commit SHAs.
1414

1515
module=github.com/webui-dev/go-webui/v2
16-
webui_version=v2.4.1 # TODO: fetch latest version automatically and allow to set version via flag
16+
webui_version=v2.4.2 # TODO: fetch latest version automatically and allow to set version via flag
1717
release_base_url="https://github.com/webui-dev/webui/releases"
1818

1919
# Determine the release archive for the used platform and architecture.

v2/lib.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,9 @@ func (w Window) SetProfile(name string, path string) {
261261
}
262262

263263
// SetProxy sets the web browser proxyServer to use. Need to be called before `Show()`.
264-
/* func (w Window) SetProxy(name string, proxyServer string) {
264+
func (w Window) SetProxy(name string, proxyServer string) {
265265
C.webui_set_proxy(C.size_t(w), C.CString(proxyServer))
266-
} */
266+
}
267267

268268
// GetUrl returns the full current URL
269269
func (w Window) GetUrl() string {

0 commit comments

Comments
 (0)