1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-22 07:16:38 +02:00

Merge branch 'release-1.0'

This commit is contained in:
Antelle 2016-02-14 19:32:30 +03:00
commit 387f8a4840
4 changed files with 7 additions and 5 deletions

View File

@ -66,9 +66,6 @@ var Updater = {
},
check: function(startedByUser) {
if (!startedByUser) {
return;
}
if (!this.enabled || this.updateInProgress()) {
return;
}

View File

@ -66,7 +66,7 @@ var FieldViewTags = FieldViewText.extend({
return '<div class="details__tags-autocomplete-tag">' + _.escape(tag) + '</div>';
}).join('');
this.tagsAutocomplete.html(tagsHtml);
this.tagsAutocomplete.toggle(tagsHtml);
this.tagsAutocomplete.toggle(!!tagsHtml);
},
tagsAutocompleteClick: function(e) {

View File

@ -85,7 +85,7 @@ var FieldViewText = FieldView.extend({
},
setInputHeight: function() {
var MinHeight = 20;
var MinHeight = 18;
this.input.height(MinHeight);
var newHeight = this.input[0].scrollHeight;
if (newHeight <= MinHeight) {

View File

@ -1,5 +1,10 @@
Release notes
-------------
##### v1.0.1 (2016-02-14)
Bugfixes
`-` fixed tags selection
`-` fixed updater bug
##### v1.0.0 (2016-02-12)
Performance, stability and quality improvements
`+` track changes in local files