From a3eef45b3b45547d3631ac7381beaedf98fd50aa Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Sun, 13 Feb 2011 22:44:06 +0100 Subject: [PATCH] Import http://conkeror.org/BreakingChanges into debian/NEWS --- debian/NEWS | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/debian/NEWS b/debian/NEWS index 95c5b8b..8983826 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,3 +1,55 @@ +conkeror (0.9.3+git110213-1) unstable; urgency=low + + * In the new-tabs module, the widgets that show the buffer index in each + tab now have the class "tab2-index" instead of "tab2-icon". This + change affects anybody who has written a theme which styles the + new-tabs tab bar. + + * The variable edit_field_in_external_editor_extension has been removed, + and superseded by a mime-type table + external_editor_extension_overrides which maps mime types to + extensions. If you previously used this variable to set the temp file + extension to "foo", for example, you would update your rc to now do + the following: + + external_editor_extension_overrides.set("text/plain", "foo"); + + * The function get_filename_for_current_textfield has been superseded by + external_editor_make_base_filename, which takes as its arguments the + root element being edited and the top document of the buffer + containing the element. The top document is more useful than the + element's own ownerDocument in some cases, such as when about:blank is + used for the document of an editable iframe. The new function returns + only the base filename, with no extension, as the extension is + generated by means described above. + + * buffer_favicon_change_hook renamed to buffer_icon_change_hook + + * current_buffer_favicon_change_hook renamed to + current_buffer_icon_change_hook + + * reddit-mode is no longer loaded by default. Consensus was that it is a + confusing mode, mainly because of how it overrides several default + browser objects. If you use this mode, you will now need to load it by + putting the following in your rc: + + require("reddit"); + + * Module search-engine.js replaced by opensearch.js. API for defining + opensearch webjumps has changed to be more conventional. Opensearch + webjumps can now be defined like either of the following: + + define_opensearch_webjump("foo", make_file("/opensearch/files/foo.xml")); + + opensearch_load_paths.unshift(make_file("/opensearch/files/")); + define_opensearch_webjump("foo", "foo.xml"); + + * The browser object browser-object-links, which is used by follow, + copy, etc, no longer matches anchors which do not have an href + attribute. + + -- Axel Beckert Sun, 13 Feb 2011 18:47:03 +0100 + conkeror (0.9.3+git101015-1) experimental; urgency=low * The eval-expression command (M-:) now evaluates directly in -- 2.11.4.GIT