diff --git a/service/watch.go b/service/watch.go index 6d90f0af..fdd7ed51 100644 --- a/service/watch.go +++ b/service/watch.go @@ -24,6 +24,10 @@ func Watch(cfg config.Config) { WatchTable(cfg.RootTable, "") WatchChart(cfg.RootChart, "") WatchPage(cfg.RootPage, "") + + // 看板大屏 + WatchPage(filepath.Join(cfg.Root, "/kanban"), "") + WatchPage(filepath.Join(cfg.Root, "/screen"), "") } // WatchEngine 监听监听引擎内建数据变更 diff --git a/share/const.go b/share/const.go index a79ae27b..45fac60b 100644 --- a/share/const.go +++ b/share/const.go @@ -5,7 +5,7 @@ import ( ) // VERSION 版本号 -const VERSION = "0.8.20" +const VERSION = "0.8.21" // DOMAIN 许可域 const DOMAIN = "*.iqka.com"