File tree Expand file tree Collapse file tree 4 files changed +10
-13
lines changed Expand file tree Collapse file tree 4 files changed +10
-13
lines changed Original file line number Diff line number Diff line change
1
+ Version 0.5.1 (2022-09-08)
2
+ - Bugfix: Disable Ace-internal yaml-linting (Issue #226)
3
+ - Disable internal check for new releases
4
+
1
5
Version 0.5.0 (2022-08-22)
2
6
- Add Generate UUID menu item @javawizard
3
7
- Harmonize Home Assistant term @salim-b
Original file line number Diff line number Diff line change 110
110
SO .setFormatter (
111
111
logging .Formatter ('%(levelname)s:%(asctime)s:%(name)s:%(message)s' ))
112
112
LOG .addHandler (SO )
113
- RELEASEURL = "https://api.github.com/repos/danielperna84/hass-configurator/releases/latest"
114
- VERSION = "0.5.0"
113
+ VERSION = "0.5.1"
115
114
BASEDIR = "."
116
115
DEV = False
117
116
LISTENPORT = None
@@ -834,14 +833,6 @@ def do_GET(self):
834
833
LOG .warning (err )
835
834
836
835
color = ""
837
- try :
838
- response = urllib .request .urlopen (RELEASEURL )
839
- latest = json .loads (response .read ().decode ('utf-8' ))['tag_name' ]
840
- if VERSION != latest :
841
- color = "red-text"
842
- except Exception as err :
843
- LOG .warning ("Exception getting release" )
844
- LOG .warning (err )
845
836
ws_api = ""
846
837
if HASS_API :
847
838
protocol , uri = HASS_API .split ("//" )
Original file line number Diff line number Diff line change @@ -2873,7 +2873,8 @@ <h4 class="grey-text text-darken-3"><a class="black-text" href="https://github.c
2873
2873
editor . setOptions ( JSON . parse ( localStorage . pochass ) ) ;
2874
2874
editor . setOptions ( {
2875
2875
enableBasicAutocompletion : true ,
2876
- enableSnippets : true
2876
+ enableSnippets : true ,
2877
+ useWorker : false
2877
2878
} )
2878
2879
editor . $blockScrolling = Infinity ;
2879
2880
}
@@ -2885,7 +2886,8 @@ <h4 class="grey-text text-darken-3"><a class="black-text" href="https://github.c
2885
2886
displayIndentGuides : true ,
2886
2887
highlightSelectedWord : true ,
2887
2888
enableBasicAutocompletion : true ,
2888
- enableSnippets : true
2889
+ enableSnippets : true ,
2890
+ useWorker : false
2889
2891
} )
2890
2892
editor . $blockScrolling = Infinity ;
2891
2893
}
Original file line number Diff line number Diff line change 4
4
5
5
NAME = "hass-configurator"
6
6
PACKAGE_NAME = "hass_configurator"
7
- VERSION = "0.5.0 "
7
+ VERSION = "0.5.1 "
8
8
9
9
setup (name = NAME ,
10
10
version = VERSION ,
You can’t perform that action at this time.
0 commit comments