Colored Diffs Version History
19 versions
Be careful with old versions!
These versions are displayed for reference and testing purposes. You should always use the latest version of an add-on.
Version 2.3.1
- Fix a bug, introduced in v2.3.0, that prevented the add-on to visually display white spaces
- Source code released under Mozilla Public License, version 2.0
Version 2.3.0
- Fix compatibility for Thunderbird 91 and newer
- Keep existing links on highlighted fragments (thanks @laggarcia)
- Update for hightlight.js 11.8 and add new styles: IntelliJ Light, Tokyo Night Dark/Light, Panda Syntax Dark/Light
- Update style for options page
- Keep existing links on highlighted fragments (thanks @laggarcia)
- Update for hightlight.js 11.8 and add new styles: IntelliJ Light, Tokyo Night Dark/Light, Panda Syntax Dark/Light
- Update style for options page
- Source code released under Mozilla Public License, version 2.0
Version 2.2.0
- Update compatibility for Thunderbird 91 (thanks @fbezdeka)
- Update highlight.js to v1.11 (thanks @fbezdeka)
Also: internal changes and improvements, addition of a linter (and CI action), and a few other things that won't show from a user's perspective.
- Update highlight.js to v1.11 (thanks @fbezdeka)
Also: internal changes and improvements, addition of a linter (and CI action), and a few other things that won't show from a user's perspective.
- Source code released under Mozilla Public License, version 2.0
Version 2.1.1
- Fix a bug where HTML-like tags (HTML, XML, etc.) in a diff would not be rendered correctly (https://github.com/Qeole/colorediffs/issues/99)
- Embed highlight.js v10.5.0 (No visible change expected)
- Embed highlight.js v10.5.0 (No visible change expected)
- Source code released under Mozilla Public License, version 2.0
Version 2.1.0
This version embeds highlight.js v10.4.0, which comes with improved support for the diff language, in particular for patches generated with Git.
It also adds two new color themes, StackOverflow Light and Dark.
It also adds two new color themes, StackOverflow Light and Dark.
- Source code released under Mozilla Public License, version 2.0
Version 2.0.1
Fix the minimal version number required for using the add-on, now that 78.4.0 can be used [0].
[0] https://github.com/thundernest/addons-server/issues/153
[0] https://github.com/thundernest/addons-server/issues/153
- Source code released under Mozilla Public License, version 2.0
Version 2.0.0
v2: Port to TB 78.4+/82+, rewrite add-on from scratch, use highlight.js
The new version of the add-on is a pure MailExtension that should be compatible with new Thunderbird versions. It relies on the messagesModify API that appeared in Thunderbird 82, but has since been backported to version 78.4 [0].
The add-on was entirely rewritten from scratch, and with a different approach. We no longer parse and reformat the diffs: Instead, we embed and inject the highlight.js library that takes care of coloring the diff [1].
Consequences and main changes:
- We loose some accuracy, because we do not rely on "what part of the diff we are in". Concretely, all lines starting with "+" or "-" will be colored, even if in the commit log.
- We gain in stability, with less parsing susceptible to break.
- We loose the different modes, unified / context / side-by-side. The diffs are not rewritten, we simply add colors.
- We keep the ability to replace tabs and spaces, but loose the line numbers.
- It is not possible at this time to specify custom colors for the diffs, but we can pick a style amongst the hundred or so that are supported by highlight.js.
[0] https://bugzilla.mozilla.org/show_bug.cgi?id=1504475
[1] https://highlightjs.org/
The new version of the add-on is a pure MailExtension that should be compatible with new Thunderbird versions. It relies on the messagesModify API that appeared in Thunderbird 82, but has since been backported to version 78.4 [0].
The add-on was entirely rewritten from scratch, and with a different approach. We no longer parse and reformat the diffs: Instead, we embed and inject the highlight.js library that takes care of coloring the diff [1].
Consequences and main changes:
- We loose some accuracy, because we do not rely on "what part of the diff we are in". Concretely, all lines starting with "+" or "-" will be colored, even if in the commit log.
- We gain in stability, with less parsing susceptible to break.
- We loose the different modes, unified / context / side-by-side. The diffs are not rewritten, we simply add colors.
- We keep the ability to replace tabs and spaces, but loose the line numbers.
- It is not possible at this time to specify custom colors for the diffs, but we can pick a style amongst the hundred or so that are supported by highlight.js.
[0] https://bugzilla.mozilla.org/show_bug.cgi?id=1504475
[1] https://highlightjs.org/
- Source code released under Mozilla Public License, version 2.0
Version 1.9
Compatibility for Thunderbird 68.
Note that the pop-up dialog for the settings has been temporarily deactivated (it has not been fixed for the latest Thunderbird yet). Use the default options, or edit them through Thunderbird's config editor (search for “extensions.diffColorer”).
Note that the pop-up dialog for the settings has been temporarily deactivated (it has not been fixed for the latest Thunderbird yet). Use the default options, or edit them through Thunderbird's config editor (search for “extensions.diffColorer”).
- Source code released under Mozilla Public License, version 2.0
Version 0.9
- Enhancement: the add-on should now work with email coming from Microsoft Exchange accounts.
Thanks to Piotr Piórkowski for the patch!
Thanks to Piotr Piórkowski for the patch!
- Source code released under Mozilla Public License, version 2.0
Version 0.8
* Upgrade add-on for compatibility with Thunderbird 57~60.
* Change license (MPL v2 instead of MPL v1)
* Minor fixes:
* Fix handling for Git send-mail “information” line
* Fix (somewhat) patches with blockquotes
* Fix printing of whitespaces characters
Known issues:
* Blockquotes in patches look weird with a big line spacing length (are they preformatted?)
* Settings menu for choosing colors for diffs is broken on Thunderbird 59+
* Change license (MPL v2 instead of MPL v1)
* Minor fixes:
* Fix handling for Git send-mail “information” line
* Fix (somewhat) patches with blockquotes
* Fix printing of whitespaces characters
Known issues:
* Blockquotes in patches look weird with a big line spacing length (are they preformatted?)
* Settings menu for choosing colors for diffs is broken on Thunderbird 59+
- Source code released under Mozilla Public License Version 1.1
Version 0.7
Add-on changed maintainer, and so this new version has a number of changes.
Summary for main differences:
- Compatibility with recent Thunderbird versions (38.*, 45.*).
- Changed packaging process. No more omni.jar file.
- Drop support for Seamonkey suite, at least for now. Should be easy to add again if some Seamonkey user can test compatibility.
Minor differences include:
- Fix a couple of bugs.
- Change default color theme.
- Add preferences for symbols for drawing tabs and spaces.
- Some file / code cleanup.
See individual commits for details (https://github.com/Qeole/colorediffs/pull/83).
Summary for main differences:
- Compatibility with recent Thunderbird versions (38.*, 45.*).
- Changed packaging process. No more omni.jar file.
- Drop support for Seamonkey suite, at least for now. Should be easy to add again if some Seamonkey user can test compatibility.
Minor differences include:
- Fix a couple of bugs.
- Change default color theme.
- Add preferences for symbols for drawing tabs and spaces.
- Some file / code cleanup.
See individual commits for details (https://github.com/Qeole/colorediffs/pull/83).
- Source code released under Mozilla Public License, version 2.0
Version 0.5.171
Support for Thunderbird 3 and SeaMonkey 2.
Couple of new corner cases working now.
Ability to change tab size.
Generally just a little bit better.
Couple of new corner cases working now.
Ability to change tab size.
Generally just a little bit better.
Version 0.4.2
it's working with multipart messages from now on,
fixed small issues with parsing if log message has series of --- or === chars,
restore links and smileys in log message
fixed small issues with parsing if log message has series of --- or === chars,
restore links and smileys in log message
Version 0.4
This version is a lot better than previous one in parsing all the kinds of mail with patches inside and it also has some new usability enhancements as an ability to show line number in front of each code line for example.
To create your own collections, you must have a Mozilla Add-ons account.