Merge pull request #1261 from glowing-bear/lorenz/default-handshake
Default to WeeChat 2.9+ handshake authentication only
This commit is contained in:
commit
700c39c0b5
|
@ -118,7 +118,7 @@
|
|||
<label class="control-label" for="compatibilityWeechat28">
|
||||
<input type="checkbox" id="compatibilityWeechat28" ng-model="settings.compatibilityWeechat28">
|
||||
Compatibility with Weechat 2.8 and older <a href="#plaintext" ng-click="toggleAccordionByName('gettingStartedAccordion')"><i class="glyphicon glyphicon-info-sign"></i></a>
|
||||
<span style="color: #888;display:block">WeeChat 2.9 was released in July 2020, so you can disable this if you're up to date.</span>
|
||||
<span style="color: #888;display:block">WeeChat 2.9 was released in July 2020, so you should not need to enable this if you're anywhere close to up to date.</span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="checkbox indent" ng-show="settings.compatibilityWeechat28">
|
||||
|
|
|
@ -60,7 +60,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
|||
'port': 9001,
|
||||
'path': 'weechat',
|
||||
'ssl': (window.location.protocol === "https:"),
|
||||
'compatibilityWeechat28': true,
|
||||
'compatibilityWeechat28': false,
|
||||
'useTotp': false,
|
||||
'savepassword': false,
|
||||
'autoconnect': false,
|
||||
|
|
Loading…
Reference in New Issue