diff --git a/README.md b/README.md index 3e0e7e4..4a7afd4 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,9 @@ If English isn't your main language, it's easy to change the language Wikipedia __Wikipedia is a trademark of the Wikimedia Foundation.__ --------------------------------------------------------- +__New in Wikipedia Search 7.0.1:__ +* Added settings button to Wikipedia pages when side panel is disabled. + __New in Wikipedia Search 7.0:__ * Panel improvements: The Wikipedia Search panel (on the left side when browsing Wikipedia) has been improved and now correctly matches Wikipedia's design. * New language: Added support for the Estonian, Georgian, Chechen, and Bulgarian Wikipedias. diff --git a/js/contentscript.js b/js/contentscript.js index 73682a8..16cf7ed 100644 --- a/js/contentscript.js +++ b/js/contentscript.js @@ -23,7 +23,7 @@ chrome.runtime.sendMessage({method: "getLocalStorage", key: "contentscripts"}, f if (window.location.href.indexOf("/wiki/") > -1) { var info = document.createElement("li"); info.setAttribute("id", "wikipediasearchinfo"); - info.innerHTML = 'Wikipedia Search ' + chrome.runtime.getManifest().version + ''; + info.innerHTML = 'Wikipedia Search ' + chrome.runtime.getManifest().version + ' (Settings)'; var headerparent = document.getElementById("p-personal").getElementsByTagName("ul")[0]; console.log(headerparent); headerparent.insertBefore(info, document.getElementById("pt-userpage")); diff --git a/manifest.json b/manifest.json index ca655dc..8656a15 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Wikipedia Search", - "version": "7.0", + "version": "7.0.1", "author": "Corbin Davenport", "homepage_url": "https://github.com/corbindavenport/wikipedia-search", "description": "Search Wikipedia in every language from the address bar.", diff --git a/welcome.html b/welcome.html index 9a1e9af..4ffcdbc 100644 --- a/welcome.html +++ b/welcome.html @@ -22,6 +22,7 @@

What's New?

New language: Added support for the Estonian, Georgian, Chechen, and Bulgarian Wikipedias.

Code cleanup: Wikipedia Search 7.0's codebase has been improved, especially with content scripts being adjusted to work much better.

And lots of minor bug fixes!

+

New in Wikipedia Search 7.0.1: Added settings button to Wikipedia pages when side panel is disabled.

Getting Started