Compare commits

..

4 commits

Author SHA1 Message Date
KemoNine 0579b3e97d Merge branch 'master' of https://git.kemonine.info/PiFrame/piframe-go 2020-09-20 18:10:58 -04:00
KemoNine df886ff66d Update to make non existing config a soft error 2020-09-20 18:10:14 -04:00
KemoNine d5a06b79db Update changelog for next release ; cleanup broken releases
All checks were successful
continuous-integration/drone/tag Build is passing
2020-09-06 04:14:58 -04:00
KemoNine be99f9ae41 Fix GUI build 2020-09-06 04:14:44 -04:00
6 changed files with 14 additions and 12 deletions

View file

@ -1,11 +1,9 @@
# Change Log # Change Log
## 20200906-2
- Add HDMI on/off command for help with ensuring screen is on OR off at boot since systemd timers won't re-run on boot
## 20200906-1 ## 20200906-1
- Build bug fixes
- Add HDMI on/off command for help with ensuring screen is on OR off at boot since systemd timers won't re-run on boot
- Update tools to watch for config changes and restart if config has changed - Update tools to watch for config changes and restart if config has changed
## 20200905-4 ## 20200905-4

View file

@ -20,7 +20,7 @@ const (
func main() { func main() {
// Load the config file // Load the config file
pfConfig, configFileProvider := config.LoadConfig() pfConfig, configFileProvider := config.LoadConfig(false)
// Watch for config changes and re-load config if needed // Watch for config changes and re-load config if needed
configFileProvider.Watch(func(event interface{}, err error) { configFileProvider.Watch(func(event interface{}, err error) {

View file

@ -34,7 +34,7 @@ func main() {
log.Print("Loading config") log.Print("Loading config")
// Load the config file // Load the config file
pfConfig, configFileProvider := config.LoadConfig() pfConfig, configFileProvider := config.LoadConfig(false)
log.Printf("%v", pfConfig) log.Printf("%v", pfConfig)
pfConfig.Print() pfConfig.Print()

View file

@ -2,10 +2,10 @@ package main
import ( import (
"log" "log"
"os/exec"
"strconv" "strconv"
"strings" "strings"
"time" "time"
"os/exec"
"git.kemonine.info/PiFrame/config" "git.kemonine.info/PiFrame/config"
) )
@ -17,7 +17,7 @@ const (
func main() { func main() {
// Load the config file // Load the config file
pfConfig, _ := config.LoadConfig() pfConfig, _ := config.LoadConfig(false)
pfConfig.Print() pfConfig.Print()
// Read config values // Read config values

View file

@ -18,7 +18,7 @@ const (
func main() { func main() {
// Load the config file // Load the config file
pfConfig, configFileProvider := config.LoadConfig() pfConfig, configFileProvider := config.LoadConfig(false)
// Watch for config changes and re-load config if needed // Watch for config changes and re-load config if needed
configFileProvider.Watch(func(event interface{}, err error) { configFileProvider.Watch(func(event interface{}, err error) {

View file

@ -9,7 +9,7 @@ import (
kfile "github.com/knadh/koanf/providers/file" kfile "github.com/knadh/koanf/providers/file"
) )
func LoadConfig() (*koanf.Koanf, *kfile.File) { func LoadConfig(errFatalOnMissing bool) (*koanf.Koanf, *kfile.File) {
// Main config variable // Main config variable
var pfConfig = koanf.New(".") var pfConfig = koanf.New(".")
@ -30,7 +30,11 @@ func LoadConfig() (*koanf.Koanf, *kfile.File) {
configFileProvider := kfile.Provider(CONFIG_FILE_PATH) configFileProvider := kfile.Provider(CONFIG_FILE_PATH)
log.Print("========================================") log.Print("========================================")
if err := pfConfig.Load(configFileProvider, toml.Parser()); err != nil { if err := pfConfig.Load(configFileProvider, toml.Parser()); err != nil {
if errFatalOnMissing {
log.Fatalf("Error loading config : %s", err) log.Fatalf("Error loading config : %s", err)
} else {
log.Printf("Error loading config : %s", err)
}
} }
log.Print("========================================") log.Print("========================================")