Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions common/components/protocols.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ const nsIProtocolHandler = Ci.nsIProtocolHandler;

const ioService = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);

let channel = Components.classesByID["{61ba33c0-3031-11d3-8cd0-0060b0fc14a3}"]
.getService(Ci.nsIProtocolHandler)
.newChannel(ioService.newURI("chrome://liberator/content/data", null, null))
let channel = ioService.newChannel("chrome://liberator/content/data", null, null)
.QueryInterface(Ci.nsIRequest);
const systemPrincipal = channel.owner;
channel.cancel(NS_BINDING_ABORTED);
Expand Down
4 changes: 2 additions & 2 deletions vimperator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
VERSION = 3.16.0
NAME = vimperator
UUID = vimperator@mozdev.org
MIN_VERSION = 38.0
MAX_VERSION = 51.0
MIN_VERSION = 52.0
MAX_VERSION = 56.0

-include private.properties

Expand Down
11 changes: 4 additions & 7 deletions vimperator/NEWS
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
201x-xx-xx:
* create README.md
* new: support <label> for <input type=file>
* new: fire 'change' event on file upload
* fix search highlighting (hlsearch) in firefox 51
* allow passing a <directory> to `:w` instead of a complete <file>
* fix ssl icon in statusbar
* fix "preferences" button in Firefox add-ons page
* disable urlseparator by default as its unexpected behaviour irritates users
* new: allow passing a <directory> to `:w` instead of a complete <file>
* change: disable urlseparator by default as its unexpected behaviour irritates users
* fix: preferences button in Firefox add-ons page not working
* fix: various compatibility fixes for Firefox 52 to 56

2017-02-01:
* add option 'newtaburl' to set default URL in new tabs
Expand All @@ -24,7 +22,6 @@
* fix <P> by initializing nsITransferable before usage
* remove uriIsPrefix, unsupported


2016-10-05:
* update and fix css related issues
* fix some mispellings
Expand Down