Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
Add Chrome 27. Unsupport Chrome 28+ since it moved Blink.
Browse files Browse the repository at this point in the history
  • Loading branch information
myakura committed Apr 9, 2013
1 parent 4adee69 commit dd5ff62
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
{ {
"name": "Dicentra", "name": "Dicentra",
"version": "0.5.5", "version": "0.6.0",
"description": "enhances WebKit changeset page.", "description": "enhances WebKit changeset page.",
"manifest_version": 2, "manifest_version": 2,


Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Dicentra
While reading through [WebKit Changesets](http://trac.webkit.org/timeline), I often: While reading through [WebKit Changesets](http://trac.webkit.org/timeline), I often:


* be frustrated with non-descriptive title (“Changeset /revision/” isn't helpful at all) * be frustrated with non-descriptive title (“Changeset /revision/” isn't helpful at all)
* wonder when this change will be or had been made into Chrome/Safari * wonder when this change will be or had been made into Safari and Chrome


Here comes Dicentra, a Chrome extension which adds such minor, but helpful bits into WebKit changeset entry. Here comes Dicentra, a Chrome extension which adds such minor, but helpful bits to WebKit changeset entries.
3 changes: 2 additions & 1 deletion wkversion.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
var findChromeVersion = function (version) { var findChromeVersion = function (version) {


var chrome = [ var chrome = [
{ "product": "27", "branch": "1453", "webkit": "537.36" },
{ "product": "26", "branch": "1410", "webkit": "537.31" }, { "product": "26", "branch": "1410", "webkit": "537.31" },
{ "product": "25", "branch": "1364", "webkit": "537.22" }, { "product": "25", "branch": "1364", "webkit": "537.22" },
{ "product": "24", "branch": "1312", "webkit": "537.17" }, { "product": "24", "branch": "1312", "webkit": "537.17" },
Expand Down Expand Up @@ -201,7 +202,7 @@
var safariVersion = findSafariVersion(version); var safariVersion = findSafariVersion(version);
var chromeVersion = findChromeVersion(version); var chromeVersion = findChromeVersion(version);
document.querySelector('h1').textContent += document.querySelector('h1').textContent +=
' (' + version + ' | Safari ' + safariVersion + ' | Chrome ' + chromeVersion + ')'; ' (' + version + ' | Safari ' + safariVersion + ((chromeVersion !== 'Nightly') ? ' | Chrome ' + chromeVersion : '') + ')';
}; };




Expand Down

0 comments on commit dd5ff62

Please sign in to comment.