From 8bdfbd9b6778fbfac51adc13de9db9202fbaa587 Mon Sep 17 00:00:00 2001 From: Sebastian Delmont Date: Sat, 25 Dec 2021 12:26:36 -0500 Subject: [PATCH 1/2] missing "run" in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d608588..f0f75159 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Run `npm install` and then `npm start` Phoenix does not support ARM-based macs, so we have to explicitly tell it to use Intel-based versions of NWJS. -Run `npm install` and then `npm start-x64` +Run `npm install` and then `npm run start-x64` ## ARM-based Raspberry From 10b4d78717be6f635339dd5d856b3297fe4f5dd1 Mon Sep 17 00:00:00 2001 From: Sebastian Delmont Date: Sun, 26 Dec 2021 08:11:43 -0500 Subject: [PATCH 2/2] Don't highlight 'CQ' rows if filtering to "CQ Only" --- package.nw/lib/roster/processRosterHunting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.nw/lib/roster/processRosterHunting.js b/package.nw/lib/roster/processRosterHunting.js index 68059692..eb81d15f 100644 --- a/package.nw/lib/roster/processRosterHunting.js +++ b/package.nw/lib/roster/processRosterHunting.js @@ -652,7 +652,7 @@ function processRosterHunting(callRoster, rosterSettings) callingBg = "#0000FF" + inversionAlpha; calling = "#FFFF00;text-shadow: 0px 0px 2px #FFFF00"; } - else if (callObj.CQ == true) + else if (callObj.CQ == true && !g_rosterSettings.cqOnly) { callingBg = calling + inversionAlpha; calling = bold;