mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-06-30 22:30:38 +02:00
[design] change export timestamp to largest to smallest unit of time for better sorting
This commit is contained in:
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nightTab",
|
"name": "nightTab",
|
||||||
"version": "5.22.1",
|
"version": "5.23.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nightTab",
|
"name": "nightTab",
|
||||||
"version": "5.22.1",
|
"version": "5.23.0",
|
||||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -25,7 +25,7 @@ var data = (function() {
|
|||||||
timeStamp.date = _timeStampPrefix(timeStamp.date);
|
timeStamp.date = _timeStampPrefix(timeStamp.date);
|
||||||
timeStamp.month = _timeStampPrefix(timeStamp.month + 1);
|
timeStamp.month = _timeStampPrefix(timeStamp.month + 1);
|
||||||
timeStamp.year = _timeStampPrefix(timeStamp.year);
|
timeStamp.year = _timeStampPrefix(timeStamp.year);
|
||||||
timeStamp = timeStamp.hours + " " + timeStamp.minutes + " " + timeStamp.seconds + " - " + timeStamp.date + "." + timeStamp.month + "." + timeStamp.year;
|
timeStamp = timeStamp.year + "." + timeStamp.month + "." + timeStamp.date + " - " + timeStamp.hours + " " + timeStamp.minutes + " " + timeStamp.seconds;
|
||||||
var fileName = _saveName + " backup - " + timeStamp + ".json";
|
var fileName = _saveName + " backup - " + timeStamp + ".json";
|
||||||
var data = "data:text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(load()));
|
var data = "data:text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(load()));
|
||||||
var link = document.createElement("a");
|
var link = document.createElement("a");
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
var version = (function() {
|
var version = (function() {
|
||||||
|
|
||||||
var current = "5.22.1";
|
var current = "5.23.0";
|
||||||
|
|
||||||
var name = "Zonked Tarsier";
|
var name = "Zonked Tarsier";
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"name": "nightTab",
|
"name": "nightTab",
|
||||||
"short_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.",
|
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||||
"version": "5.22.1",
|
"version": "5.23.0",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"chrome_url_overrides": {
|
"chrome_url_overrides": {
|
||||||
"newtab": "index.html"
|
"newtab": "index.html"
|
||||||
|
Reference in New Issue
Block a user