Compare commits

...

2 Commits
v1.0 ... master

Author SHA1 Message Date
Juhani Krekelä 6b3a9f1bdb Bump version for the bugfix 2021-02-23 08:38:57 +02:00
Juhani Krekelä b4cb199787 Fix datestamp (damn javascript and 0-indexed months) 2021-02-23 08:37:34 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ function bookmarkTabs() {
bookmarkingTabs = true;
let now = new Date();
let dateString = [now.getFullYear().toString(), now.getMonth().toString().padStart(2, '0'), now.getDate().toString().padStart(2, '0')].join('-');
let dateString = [now.getFullYear().toString(), (now.getMonth() + 1).toString().padStart(2, '0'), now.getDate().toString().padStart(2, '0')].join('-');
let timeString = [now.getHours().toString().padStart(2, '0'), now.getMinutes().toString().padStart(2, '0')].join(':');
setActionStatus('Bookmarking tabs…', 'processing', function() {
getOrCreateFolder(function(rootId) {

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Autobookmarker",
"version": "1.0",
"version": "1.0.1",
"description": "Automatically bookmarks open tabs",
"homepage_url": "https://ahti.space/git/nortti/autobookmarker",