├── .github └── workflows │ └── release.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── assets ├── darwin │ ├── Info.plist │ └── icon.icns └── windows │ ├── icon.ico │ └── manifest.xml ├── go.mod ├── go.sum ├── main.go └── src ├── app.go ├── bindings ├── app.go ├── bindings.go ├── browser-ext.go ├── browser.go ├── connect.go ├── crypto-helper.go ├── crypto-id.go ├── crypto-lock.go ├── data.go ├── file.go ├── http.go ├── os-dialog.go ├── os-native.go ├── os-screenshot.go ├── proxy.go ├── server.go ├── steam.go └── url.go ├── browser ├── browser.go ├── ext.go ├── find.go └── launch.go ├── file ├── file.go ├── key.go └── pack.go ├── helper ├── crypto.go ├── crypto_aes.go ├── crypto_rsa.go ├── open.go └── password.go ├── identity └── id.go ├── isadmin ├── check_default.go ├── check_unix.go └── check_windows.go ├── options ├── open.go ├── options.go ├── realm.go ├── storage.go ├── ui.go ├── webview_default.go ├── webview_linux.go └── webview_windows.go ├── steam ├── close.go ├── find.go └── run.go └── ui ├── scripts.go ├── ui.go ├── ui_playwright.go └── ui_webview.go /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/darwin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/assets/darwin/Info.plist -------------------------------------------------------------------------------- /assets/darwin/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/assets/darwin/icon.icns -------------------------------------------------------------------------------- /assets/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/assets/windows/icon.ico -------------------------------------------------------------------------------- /assets/windows/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/assets/windows/manifest.xml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/main.go -------------------------------------------------------------------------------- /src/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/app.go -------------------------------------------------------------------------------- /src/bindings/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/app.go -------------------------------------------------------------------------------- /src/bindings/bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/bindings.go -------------------------------------------------------------------------------- /src/bindings/browser-ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/browser-ext.go -------------------------------------------------------------------------------- /src/bindings/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/browser.go -------------------------------------------------------------------------------- /src/bindings/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/connect.go -------------------------------------------------------------------------------- /src/bindings/crypto-helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/crypto-helper.go -------------------------------------------------------------------------------- /src/bindings/crypto-id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/crypto-id.go -------------------------------------------------------------------------------- /src/bindings/crypto-lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/crypto-lock.go -------------------------------------------------------------------------------- /src/bindings/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/data.go -------------------------------------------------------------------------------- /src/bindings/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/file.go -------------------------------------------------------------------------------- /src/bindings/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/http.go -------------------------------------------------------------------------------- /src/bindings/os-dialog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/os-dialog.go -------------------------------------------------------------------------------- /src/bindings/os-native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/os-native.go -------------------------------------------------------------------------------- /src/bindings/os-screenshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/os-screenshot.go -------------------------------------------------------------------------------- /src/bindings/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/proxy.go -------------------------------------------------------------------------------- /src/bindings/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/server.go -------------------------------------------------------------------------------- /src/bindings/steam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/steam.go -------------------------------------------------------------------------------- /src/bindings/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/bindings/url.go -------------------------------------------------------------------------------- /src/browser/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/browser/browser.go -------------------------------------------------------------------------------- /src/browser/ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/browser/ext.go -------------------------------------------------------------------------------- /src/browser/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/browser/find.go -------------------------------------------------------------------------------- /src/browser/launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/browser/launch.go -------------------------------------------------------------------------------- /src/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/file/file.go -------------------------------------------------------------------------------- /src/file/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/file/key.go -------------------------------------------------------------------------------- /src/file/pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/file/pack.go -------------------------------------------------------------------------------- /src/helper/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/helper/crypto.go -------------------------------------------------------------------------------- /src/helper/crypto_aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/helper/crypto_aes.go -------------------------------------------------------------------------------- /src/helper/crypto_rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/helper/crypto_rsa.go -------------------------------------------------------------------------------- /src/helper/open.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/helper/open.go -------------------------------------------------------------------------------- /src/helper/password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/helper/password.go -------------------------------------------------------------------------------- /src/identity/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/identity/id.go -------------------------------------------------------------------------------- /src/isadmin/check_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/isadmin/check_default.go -------------------------------------------------------------------------------- /src/isadmin/check_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/isadmin/check_unix.go -------------------------------------------------------------------------------- /src/isadmin/check_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/isadmin/check_windows.go -------------------------------------------------------------------------------- /src/options/open.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/options/open.go -------------------------------------------------------------------------------- /src/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/options/options.go -------------------------------------------------------------------------------- /src/options/realm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/options/realm.go -------------------------------------------------------------------------------- /src/options/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/options/storage.go -------------------------------------------------------------------------------- /src/options/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/options/ui.go -------------------------------------------------------------------------------- /src/options/webview_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/options/webview_default.go -------------------------------------------------------------------------------- /src/options/webview_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/options/webview_linux.go -------------------------------------------------------------------------------- /src/options/webview_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/options/webview_windows.go -------------------------------------------------------------------------------- /src/steam/close.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/steam/close.go -------------------------------------------------------------------------------- /src/steam/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/steam/find.go -------------------------------------------------------------------------------- /src/steam/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/steam/run.go -------------------------------------------------------------------------------- /src/ui/scripts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/ui/scripts.go -------------------------------------------------------------------------------- /src/ui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/ui/ui.go -------------------------------------------------------------------------------- /src/ui/ui_playwright.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/ui/ui_playwright.go -------------------------------------------------------------------------------- /src/ui/ui_webview.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sag-enhanced/native-app/HEAD/src/ui/ui_webview.go --------------------------------------------------------------------------------