[bug] fix link item display order value

This commit is contained in:
zombieFox 2020-06-15 17:49:16 +01:00
parent b0d283c852
commit f66bc64dac
5 changed files with 12 additions and 4 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "nightTab",
"version": "5.42.0",
"version": "5.42.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "nightTab",
"version": "5.42.0",
"version": "5.42.1",
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
"main": "index.js",
"scripts": {

View File

@ -1086,6 +1086,14 @@ var update = (function() {
size: 0
};
return data;
},
"5.42.1": function(data) {
if (data.state.link.item.display.order == "letconname") {
data.state.link.item.display.order = "visualname";
} else if (data.state.link.item.display.order == "nameletcon") {
data.state.link.item.display.order = "namevisual";
};
return data;
}
};

View File

@ -1,6 +1,6 @@
var version = (function() {
var current = "5.42.0";
var current = "5.42.1";
var name = "Macabre Caterpillar";

View File

@ -2,7 +2,7 @@
"name": "nightTab",
"short_name": "nightTab",
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
"version": "5.42.0",
"version": "5.42.1",
"manifest_version": 2,
"chrome_url_overrides": {
"newtab": "index.html"