From 72e9c6f7998e5052827ab4701cc585bc9c70a2a0 Mon Sep 17 00:00:00 2001 From: Pelle Wessman Date: Sat, 29 Dec 2012 11:43:16 +0100 Subject: [PATCH] Initial support for Mozilla's Add-on SDK 1.13b1 --- README.md | 4 ++++ lib/urlbarbutton.js | 2 +- package.json | 5 ++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 536387a..7b68e83 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,10 @@ Follow the Add-on SDK's documentation for [third party packages](https://addons. ## Changelog +### 0.4.1 + +* Support for Mozilla's Add-on SDK version 1.13b1 + ### 0.4.0 * No longer handling the decision of whether a button should be shown or not. Moved the `onLocationChange` and `onPageShow` listeners, that were called when a new page was loaded, into a new module, [ShowForPage](https://github.com/voxpelli/moz-showforpage), and removed support for those listeners along with removing the callbacks that were used in them. diff --git a/lib/urlbarbutton.js b/lib/urlbarbutton.js index 6037752..d99f7b4 100644 --- a/lib/urlbarbutton.js +++ b/lib/urlbarbutton.js @@ -1,7 +1,7 @@ /*global require: false, exports: false */ /*jslint forin: true, indent: 2 */ -var winUtils = require("window-utils"), +var winUtils = require("sdk/deprecated/window-utils"), UrlbarButton; UrlbarButton = function (options) { diff --git a/package.json b/package.json index ec499b4..43dbb60 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,6 @@ "description": "URLBar Buttons for Jetpacks", "keywords": ["urlbar", "urlbarbutton", "button", "ui"], "author": "Pelle Wessman (http://kodfabrik.se/) ", - "version": "0.4.0", - "license": "The MIT License (http://www.opensource.org/licenses/mit-license.php)", - "dependencies": ["api-utils"] + "version": "0.4.1", + "license": "The MIT License (http://www.opensource.org/licenses/mit-license.php)" }