Select Git revision
existing-simulations.component.ts
-
zdenko.vuk@ijs.si authored
css update wip update update removed temporary content made some changes on setlegend. Page currently loads cpu at 100% for a while, dunno why also removed two logs
zdenko.vuk@ijs.si authoredcss update wip update update removed temporary content made some changes on setlegend. Page currently loads cpu at 100% for a while, dunno why also removed two logs
version.go 440 B
package version
import (
"fmt"
"strings"
)
var (
Version = "0.16.2-gitlab.15-rc2"
// GitCommit will be overwritten automatically by the build system
GitCommit = "HEAD"
)
// FullVersion formats the version to be printed
func FullVersion() string {
return fmt.Sprintf("%s, build %s", Version, GitCommit)
}
// RC checks if the Machine version is a release candidate or not
func RC() bool {
return strings.Contains(Version, "rc")
}