mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 04:42:00 +08:00

* WIP
* Generation of index.js
* Add RelativeToCwd
* Add JSDoc comments
* Convert to ES6 syntax
* Fix typo
* Initial generation of typescript declarations
* Typescript improvements
* Improved @returns jsdoc
* Improved declaration files
* Simplified output
* Rename file
* Tidy up
* Revert "Simplified output"
This reverts commit 15cdf7382b
.
* Now parsing actual code
* Support Array types
* Reimagined parser
* Wrap parsing in Parser
* Rewritten module generator (TS Only)
* Final touches
* Slight refactor to improve output
* Struct comments. External struct literal binding
* Reworked project parser *working*
* remove debug info
* Refactor of parser
* remove the spew
* Better Ts support
* Better project generation logic
* Support local functions in bind()
* JS Object generation. Linting.
* Support json tags in module generation
* Updated mod files
* Support vscode file generation
* Better global.d.ts
* add ts-check to templates
* Support TS declaration files
* improved 'generate' command for module
30 lines
636 B
Go
30 lines
636 B
Go
package operatingsystem
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"golang.org/x/sys/windows/registry"
|
|
)
|
|
|
|
func platformInfo() (*OS, error) {
|
|
// Default value
|
|
var result OS
|
|
result.ID = "Unknown"
|
|
result.Name = "Windows"
|
|
result.Version = "Unknown"
|
|
|
|
// Credit: https://stackoverflow.com/a/33288328
|
|
// Ignore errors as it isn't a showstopper
|
|
key, _ := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\Microsoft\Windows NT\CurrentVersion`, registry.QUERY_VALUE)
|
|
|
|
defer key.Close()
|
|
|
|
fmt.Printf("%+v\n", key)
|
|
|
|
// Ignore errors as it isn't a showstopper
|
|
productName, _, _ := key.GetStringValue("ProductName")
|
|
fmt.Println(productName)
|
|
|
|
return nil, nil
|
|
}
|