Skip to content

Commit

Permalink
version 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ReDEnergy committed Apr 26, 2018
1 parent b3bcc1c commit 544850e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 65 deletions.
61 changes: 0 additions & 61 deletions TODO.txt

This file was deleted.

4 changes: 3 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "Session Sync",
"version": "3.0.0",
"version": "3.0.1",
"author": "Gabriel Ivanica",
"description": "Save sessions as bookmarks and sync them through Firefox Sync (or any other sync engine).\nPowerful session management - organize, edit, change, save, restore, etc\n",
"homepage_url": "https://github.com/ReDEnergy/SessionSync",
"manifest_version": 2,
"default_locale": "en",
"applications": {
"gecko": {
"id": "session-sync@gabrielivanica.com"
Expand All @@ -21,6 +22,7 @@
"background": {
"scripts": [
"scripts/main.js",
"scripts/session-management.js",
"scripts/session-history.js"
]
},
Expand Down
1 change: 1 addition & 0 deletions pack_addon.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ DEL %ARCHIVE%
%ZIP% a -tzip -bt -mx1 %ARCHIVE% ^
.\data ^
.\scripts ^
.\_locales ^
.\manifest.json ^
.\README.md
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "session-sync",
"author": "Gabriel Ivanica",
"url": "https://github.com/ReDEnergy/SessionSync",
"version": "3.0.0",
"version": "3.0.1",
"description": "Save sessions as bookmarks and sync them through any sync engine.\nManage sessions, edit, save, restore.\nSession-Sync will automatically update sessions across multiple machines",
"license": "MPL-2.0",
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ var Commands = {
};

browser.runtime.onInstalled.addListener(function (startInfo) {
if (startInfo.reason === 'update' || startInfo.reason === 'installed') {
if (startInfo.reason === 'installed') {
browser.tabs.create({
url: 'data/home/home.html'
});
}
});

browser.runtime.onMessage.addListener(function (message) {
browser.runtime.onMessage.addListener(function (message, sender, sendResponse) {
if (message.event == Commands.detachUI) {
SessionSync.openDetached();
}
Expand Down

0 comments on commit 544850e

Please sign in to comment.