fix: remove build info from lib
parent
12db987421
commit
3c40c2396e
1
app.go
1
app.go
|
@ -71,7 +71,6 @@ func (cui *ConfigUI) App(w http.ResponseWriter, r *http.Request) {
|
||||||
HideConfig: cui.HideConfig,
|
HideConfig: cui.HideConfig,
|
||||||
ResultBellow: cui.ResultBellow,
|
ResultBellow: cui.ResultBellow,
|
||||||
Version: version,
|
Version: version,
|
||||||
Build: build,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
content := ""
|
content := ""
|
||||||
|
|
|
@ -14,7 +14,6 @@ var UNIX_SHELL = "sh"
|
||||||
var WIN_SHELL = "cmd"
|
var WIN_SHELL = "cmd"
|
||||||
|
|
||||||
const version = "0.1.2-rc1"
|
const version = "0.1.2-rc1"
|
||||||
const build = "1a9e4c8"
|
|
||||||
|
|
||||||
//go:embed templates
|
//go:embed templates
|
||||||
var tmplFS embed.FS
|
var tmplFS embed.FS
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<div class="content has-text-right">
|
<div class="content has-text-right">
|
||||||
<p>
|
<p>
|
||||||
<strong>Configui</strong> {{.Version}}-{{.Build}} by <a href="https://kumoly.io/evanchen">Evan Chen</a>.
|
<strong>Configui</strong> {{.Version}} by <a href="https://kumoly.io/evanchen">Evan Chen</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
Loading…
Reference in New Issue