From e7aa488bcb15302949c0f65fb1b9c0a2ecd45e81 Mon Sep 17 00:00:00 2001 From: PatSki123 Date: Mon, 20 Apr 2020 18:33:41 -0400 Subject: [PATCH 1/8] Update Projects.md Added link on how to enable/disable pi-hole from your iphone home screen. --- docs/main/projects.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/main/projects.md b/docs/main/projects.md index f74bb76..710674d 100755 --- a/docs/main/projects.md +++ b/docs/main/projects.md @@ -1,7 +1,7 @@ --- title: Community Projects description: Things built with Pi-hole -last_updated: Sun Jan 13 19:45:40 2019 UTC +last_updated: Mon Apr 20 19:45:40 2019 UTC --- - [The Big Blocklist Collection](https://firebog.net/) @@ -20,3 +20,4 @@ last_updated: Sun Jan 13 19:45:40 2019 UTC - [Pi-hole Droid: Android client](https://github.com/friimaind/pi-hole-droid) - [Windows DNS Swapper](https://github.com/tryallthethings/DNS-Swapper), see [#1400](https://github.com/pi-hole/pi-hole/issues/1400) - [Pi-hole Visualizer](https://www.reddit.com/r/pihole/comments/82ikgb/pihole_visualizer_update/) +- [Enable/Disable Pi-Hole from your iPhone Home Screen](http://codeopolis.com/disable-pihole-from-your-phone) From a3fdb4e924abcc9eb018f73cfb6621b7781d06cc Mon Sep 17 00:00:00 2001 From: PatSki123 Date: Tue, 21 Apr 2020 16:55:03 -0400 Subject: [PATCH 2/8] Update projects.md Fixed link --- docs/main/projects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/main/projects.md b/docs/main/projects.md index 710674d..e27214b 100755 --- a/docs/main/projects.md +++ b/docs/main/projects.md @@ -20,4 +20,4 @@ last_updated: Mon Apr 20 19:45:40 2019 UTC - [Pi-hole Droid: Android client](https://github.com/friimaind/pi-hole-droid) - [Windows DNS Swapper](https://github.com/tryallthethings/DNS-Swapper), see [#1400](https://github.com/pi-hole/pi-hole/issues/1400) - [Pi-hole Visualizer](https://www.reddit.com/r/pihole/comments/82ikgb/pihole_visualizer_update/) -- [Enable/Disable Pi-Hole from your iPhone Home Screen](http://codeopolis.com/disable-pihole-from-your-phone) +- [Enable/Disable Pi-Hole from your iPhone Home Screen](https://codeopolis.com/posts/how-to-control-pi-hole-from-your-iphone/) From 71a3fd902b299c617416820624c830b51caac6a2 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 28 Apr 2020 22:38:43 +0300 Subject: [PATCH 3/8] CI: remove no longer needed steps (#294) The latest `actions/setup-node` prints this info by default --- .github/workflows/test.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5320871..faed76f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,9 +16,6 @@ jobs: with: node-version: '12' - - run: node --version - - run: npm --version - - name: Install npm dependencies run: npm ci From 3acc5bfa604c976adea55c5c6f90053e81e482e0 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2020 16:21:03 +0300 Subject: [PATCH 4/8] Bump mkdocs-material from 5.1.1 to 5.1.4 (#296) Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 5.1.1 to 5.1.4. - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](https://github.com/squidfunk/mkdocs-material/compare/5.1.1...5.1.4) Signed-off-by: dependabot-preview[bot] Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f304723..fb4baaf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ markdown-include==0.5.1 mkdocs==1.1 mkdocs-git-revision-date-localized-plugin==0.5.0 -mkdocs-material==5.1.1 +mkdocs-material==5.1.4 From 41abe92e24124cf34dc055709074396de9d7d999 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 30 Apr 2020 20:31:38 +0300 Subject: [PATCH 5/8] CI: add a `PYTHON_VERSION` environment variable (#297) This way the pip cache will be invalidate when we change the Python version. --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dfaf505..aa8fbb6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,6 +2,7 @@ name: Build and Deploy env: CI: true + PYTHON_VERSION: '3.7' on: [push, pull_request] @@ -16,15 +17,15 @@ jobs: - name: Set up Python uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '${{ env.PYTHON_VERSION }}' architecture: 'x64' - name: Cache dependencies uses: actions/cache@v1 with: path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - restore-keys: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + key: ${{ runner.os }}-pip-${{ env.PYTHON_VERSION }}-${{ hashFiles('**/requirements.txt') }} + restore-keys: ${{ runner.os }}-pip-${{ env.PYTHON_VERSION }}-${{ hashFiles('**/requirements.txt') }} - name: Install Python dependencies run: python3 -m pip install -r requirements.txt From 468aecd9c87a3fde71ced2a2c4be5dcffac9bef5 Mon Sep 17 00:00:00 2001 From: Micah Abbott Date: Fri, 1 May 2020 17:25:23 -0400 Subject: [PATCH 6/8] mkdocs: bump copyright to 2020 --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index d64f199..d94b502 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: 'Pi-hole documentation' site_url: 'https://docs.pi-hole.net/' repo_url: 'https://github.com/pi-hole/pi-hole' edit_uri: '../docs/blob/master/docs/' -copyright: 'Copyright © 2019 Pi-hole LLC' +copyright: 'Copyright © 2020 Pi-hole LLC' remote_branch: gh-pages theme: name: 'material' From 923c81da89499caa8f3e014be361dd1bd8945571 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 5 May 2020 12:17:09 +0000 Subject: [PATCH 7/8] Bump mkdocs-material from 5.1.4 to 5.1.5 Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 5.1.4 to 5.1.5. - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](https://github.com/squidfunk/mkdocs-material/compare/5.1.4...5.1.5) Signed-off-by: dependabot-preview[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fb4baaf..4424ff2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ markdown-include==0.5.1 mkdocs==1.1 mkdocs-git-revision-date-localized-plugin==0.5.0 -mkdocs-material==5.1.4 +mkdocs-material==5.1.5 From 7c99741db188410946f800cc731929027aa8d4f5 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 5 May 2020 15:18:56 +0300 Subject: [PATCH 8/8] Update mkdocs.yml Specify `name` for the social links --- mkdocs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mkdocs.yml b/mkdocs.yml index d64f199..dd3a8cd 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -115,8 +115,10 @@ extra: social: - icon: fontawesome/solid/globe-americas link: https://pi-hole.net/ + name: Website - icon: fontawesome/brands/github link: https://github.com/pi-hole + name: GitHub extra_css: - extra.css