Skip to content

Commit

Permalink
Uploaded Wikipedia Search 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
corbindavenport committed Dec 19, 2015
1 parent df73d60 commit c875c73
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion js/contentscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '<span style="color: gray;">Wikipedia Search ' + chrome.runtime.getManifest().version + '</span>';
info.innerHTML = '<span style="color: gray;">Wikipedia Search ' + chrome.runtime.getManifest().version + '</span> (<a href="' + chrome.extension.getURL('settings.html') + '" title="Open Wikipedia Search extension settings in new tab" target="_blank">Settings</a>)';
var headerparent = document.getElementById("p-personal").getElementsByTagName("ul")[0];
console.log(headerparent);
headerparent.insertBefore(info, document.getElementById("pt-userpage"));
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
1 change: 1 addition & 0 deletions welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ <h2>What's New?</h2>
<p><b>New language:</b> Added support for the Estonian, Georgian, Chechen, and Bulgarian Wikipedias.</p>
<p><b>Code cleanup:</b> Wikipedia Search 7.0's codebase has been improved, especially with content scripts being adjusted to work much better.</p>
<p><i>And lots of minor bug fixes!</i></p>
<p><b>New in Wikipedia Search 7.0.1:</b> Added settings button to Wikipedia pages when side panel is disabled.</p>
</article>
<article>
<h2>Getting Started</h2>
Expand Down

0 comments on commit c875c73

Please sign in to comment.