فهرست منبع

HUE-3281 [core] Turn on Hue 4 new interface by default

Romain Rigaux 8 سال پیش
والد
کامیت
db0e580f07
3فایلهای تغییر یافته به همراه8 افزوده شده و 2 حذف شده
  1. 3 0
      desktop/conf.dist/hue.ini
  2. 3 0
      desktop/conf/pseudo-distributed.ini.tmpl
  3. 2 2
      desktop/core/src/desktop/conf.py

+ 3 - 0
desktop/conf.dist/hue.ini

@@ -28,6 +28,9 @@
   http_host=0.0.0.0
   http_port=8888
 
+  # Choose whether to enable the new Hue 4 interface.
+  ## is_hue_4=true
+
   # A comma-separated list of available Hue load balancers
   ## hue_load_balancer=
 

+ 3 - 0
desktop/conf/pseudo-distributed.ini.tmpl

@@ -32,6 +32,9 @@
   http_host=0.0.0.0
   http_port=8000
 
+  # Choose whether to enable the new Hue 4 interface.
+  ## is_hue_4=true
+
   # A comma-separated list of available Hue load balancers
   ## hue_load_balancer=
 

+ 2 - 2
desktop/core/src/desktop/conf.py

@@ -1328,9 +1328,9 @@ USE_DEFAULT_CONFIGURATION = Config(
 
 IS_HUE_4 = Config( # To remove in Hue 5
   key='is_hue_4',
-  default=False,
+  default=True,
   type=coerce_bool,
-  help=_('Choose whether to enable the new interface.')
+  help=_('Choose whether to enable the new Hue 4 interface.')
 )