Skip to content

Commit

Permalink
Bump version number from 1.4 to 1.5
Browse files Browse the repository at this point in the history
Bugs fixed, New keys added, removed debug console.logs.
  • Loading branch information
SohanChy committed Jul 22, 2016
1 parent ea538e3 commit 9854834
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,9 @@
chrome.runtime.onMessage.addListener(
function (request, sender, sendResponse) {
'use strict';
console.log(request);

switch(request.method) {
case 'handleStatus':
console.log("here");
if (!!request.status) {
chrome.pageAction.setIcon({tabId: sender.tab.id, path: 'images/icon-16.png'});
} else {
Expand Down
2 changes: 1 addition & 1 deletion js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ function save_options() {
var select = document.getElementById("hotkey");
var hotkey = select.children[select.selectedIndex].value;
localStorage["hotkey"] = hotkey;
console.log(hotkey);

noty({
text: "Setting Saved",
layout: "top",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Avro Keyboard",
"version": "1.4",
"version": "1.5",
"manifest_version": 2,
"description": "Official Avro Keyboard for Google Chrome",
"background": {
Expand Down

0 comments on commit 9854834

Please sign in to comment.