From 3240609a7f8dca320b839cf724b5d9a5b87595f3 Mon Sep 17 00:00:00 2001 From: Reese Date: Sat, 16 May 2020 09:47:30 -0500 Subject: [PATCH 1/4] Grammar --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3fdf6aa..2b40dc1 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Yes, you can sign the extension with your own unique signature and use it person [Here's](https://github.com/deepjyoti30/startpage/wiki/How-to-sign-the-extension-for-Personal-Use-on-Firefox) how to do it. ->NOTE: Above is only necessary for Firefox users since Chrome let's you use without signing. +>NOTE: Above is only necessary for Firefox users since Chrome lets you use without signing. ## Settings From 193d326ed0e3fe04cf12d1451832f93ce522183d Mon Sep 17 00:00:00 2001 From: Reese Date: Sat, 16 May 2020 09:56:14 -0500 Subject: [PATCH 2/4] Why build & sign for firefox --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2b40dc1..9768096 100644 --- a/README.md +++ b/README.md @@ -33,13 +33,16 @@ Available on the Mozilla Add On Store. Get it [here](https://addons.mozilla.org/en-US/firefox/addon/minimal-startpage/). -## Signing the extension for Personal Use +### Installing & Signing the extension manually (for personal use) for access to css/js files. -Yes, you can sign the extension with your own unique signature and use it personally. +If you would like access to css/js to change them you must build and sign the extension yourself. -[Here's](https://github.com/deepjyoti30/startpage/wiki/How-to-sign-the-extension-for-Personal-Use-on-Firefox) how to do it. +- Get the latest release (zip) or clone this repo and extract it. +- Change the config to your liking +- Follow [these](https://github.com/deepjyoti30/startpage/wiki/How-to-sign-the-extension-for-Personal-Use-on-Firefox) instructions on building and signing for personal use. ->NOTE: Above is only necessary for Firefox users since Chrome lets you use without signing. +>NOTE: Building/Signing is only necessary for Firefox users since Chrome lets you use without signing. +>NOTE: You must re-build and sign every time you need to update your config. Steps for updating are outlined in the instructions. ## Settings From 105cf985e6f43c3c746bb35aa8991766434a9994 Mon Sep 17 00:00:00 2001 From: Matias Date: Mon, 18 May 2020 22:17:39 +0300 Subject: [PATCH 3/4] Update main.css --- css/main.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/css/main.css b/css/main.css index de2ad3f..e67cb9b 100644 --- a/css/main.css +++ b/css/main.css @@ -57,8 +57,7 @@ body { .main #other-content .sqr { vertical-align: top; display: inline-block; - margin-left: 5px; - margin-right: 5px; + margin: 5px; width: 170px; background: #2e2e2e; padding: 15px 15px; From d09cb3971b2d626208914e7c3acde9da99952a10 Mon Sep 17 00:00:00 2001 From: Danny Herstell Date: Mon, 25 May 2020 22:01:10 +0200 Subject: [PATCH 4/4] add Ecosia as searchengine extend version to semver 0.1.1 --- js/main.js | 3 ++- manifest.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/js/main.js b/js/main.js index 4eccdf8..f98f7ba 100644 --- a/js/main.js +++ b/js/main.js @@ -30,7 +30,8 @@ searchEngines = { "Google": "https://www.google.com/search?q=", "DuckDuckGo": "https://duckduckgo.com/?q=", "Bing": "https://www.bing.com/search?q=", - "Yahoo": "https://search.yahoo.com/search?p=" + "Yahoo": "https://search.yahoo.com/search?p=", + "Ecosia": "https://www.ecosia.org/search?q=" } validWeatherUnit = [ "fah", "cel" diff --git a/manifest.json b/manifest.json index 98b0dd4..6026fd9 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "minimal-startpage", "short_name": "minimal-startpage", - "version": "0.1", + "version": "0.1.1", "description": "Overrides the browsers newtab page with a custom startpage.", "author": "deepjyoti30",