From 5dda799eeaee2199bd409dba38bc2768752f67a9 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Jan 2021 01:32:32 +0100 Subject: [PATCH 1/8] Create FUNDING.yml --- .github/FUNDING.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..ff08b41 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: ['https://paypal.me/AugustinBegue'] From 69f375f38f6aa52b167e3fc5ee85238eed3489c1 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Jan 2021 11:31:01 +0100 Subject: [PATCH 2/8] Create build.node.js.yml --- .github/workflows/build.node.js.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/build.node.js.yml diff --git a/.github/workflows/build.node.js.yml b/.github/workflows/build.node.js.yml new file mode 100644 index 0000000..80c4e09 --- /dev/null +++ b/.github/workflows/build.node.js.yml @@ -0,0 +1,29 @@ +# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: Node.js CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [15.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: npm ci + - run: npm run dist From a79c4f0efbde7d61450418c95a9bcbe0bed0ce72 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Jan 2021 11:31:12 +0100 Subject: [PATCH 3/8] Delete node.js.yml --- .github/workflows/node.js.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml deleted file mode 100644 index a6f19e7..0000000 --- a/.github/workflows/node.js.yml +++ /dev/null @@ -1,28 +0,0 @@ -# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - -name: Node.js CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [10.x, 12.x, 14.x] - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: npm ci - - run: npm run dist From 812bd5bb0c9f2550c3413bf6065e7ce0265fb771 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Jan 2021 11:33:02 +0100 Subject: [PATCH 4/8] Update build.node.js.yml --- .github/workflows/build.node.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.node.js.yml b/.github/workflows/build.node.js.yml index 80c4e09..837eb9f 100644 --- a/.github/workflows/build.node.js.yml +++ b/.github/workflows/build.node.js.yml @@ -25,5 +25,5 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - run: npm ci + - run: npm ci --dev - run: npm run dist From d27025e2b82287d9f9799c8a9345c3dbd8ed990a Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Jan 2021 11:35:08 +0100 Subject: [PATCH 5/8] Delete build.node.js.yml --- .github/workflows/build.node.js.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/build.node.js.yml diff --git a/.github/workflows/build.node.js.yml b/.github/workflows/build.node.js.yml deleted file mode 100644 index 837eb9f..0000000 --- a/.github/workflows/build.node.js.yml +++ /dev/null @@ -1,29 +0,0 @@ -# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - -name: Node.js CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [15.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: npm ci --dev - - run: npm run dist From f9a59355f0aab70b7cde6771eb753abae85163fe Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Jan 2021 11:59:50 +0100 Subject: [PATCH 6/8] badges POG --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5b7bb3b..1e55e8a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ +![GitHub release (latest by date)](https://img.shields.io/github/v/release/Tagueo/icue-ambilight?style=flat-square) +![GitHub all releases](https://img.shields.io/github/downloads/Tagueo/icue-ambilight/total?style=flat-square) +![GitHub](https://img.shields.io/github/license/Tagueo/icue-ambilight?style=flat-square) +![GitHub issues](https://img.shields.io/github/issues/Tagueo/icue-ambilight?style=flat-square) +![GitHub closed issues](https://img.shields.io/github/issues-closed/Tagueo/icue-ambilight?color=green&style=flat-square) + # icue-ambilight Synchronise your iCue compatible devices with the content displayed on your screen. From 37eb5d3f10f9ac0a02727372638f810001f12080 Mon Sep 17 00:00:00 2001 From: Augustin Date: Tue, 5 Jan 2021 12:07:07 +0100 Subject: [PATCH 7/8] more badges pog --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e55e8a..128011f 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ ![GitHub release (latest by date)](https://img.shields.io/github/v/release/Tagueo/icue-ambilight?style=flat-square) ![GitHub all releases](https://img.shields.io/github/downloads/Tagueo/icue-ambilight/total?style=flat-square) +![GitHub release (latest by date)](https://img.shields.io/github/downloads/Tagueo/icue-ambilight/latest/total?style=flat-square) ![GitHub](https://img.shields.io/github/license/Tagueo/icue-ambilight?style=flat-square) -![GitHub issues](https://img.shields.io/github/issues/Tagueo/icue-ambilight?style=flat-square) -![GitHub closed issues](https://img.shields.io/github/issues-closed/Tagueo/icue-ambilight?color=green&style=flat-square) # icue-ambilight Synchronise your iCue compatible devices with the content displayed on your screen. @@ -27,6 +26,10 @@ Open iCue, then go into the settings tab. Check the highlighted box and then, restart icue-ambilight for your changes to be taken into account ### For developpers : +![GitHub issues](https://img.shields.io/github/issues/Tagueo/icue-ambilight?style=flat-square) +![GitHub closed issues](https://img.shields.io/github/issues-closed/Tagueo/icue-ambilight?color=green&style=flat-square) +![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/Tagueo/icue-ambilight/latest?style=flat-square) + #### Build instructions : - Make sure you have installed the prerequisites for the [cue-sdk](https://github.com/CorsairOfficial/cue-sdk-node) to work properly. - Install the required packages with ``npm i --dev`` From 58c3e646167e977dba6fbe87dd6c9f85cbdae237 Mon Sep 17 00:00:00 2001 From: Augustin Date: Wed, 6 Jan 2021 19:17:18 +0100 Subject: [PATCH 8/8] Update bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 8c967a7..6cfa518 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -10,6 +10,8 @@ assignees: '' **Describe the bug** A clear and concise description of what the bug is. +**Please check that you have enabled the SDK in _ICUE_ (see the readme) before posting an issue** + **To Reproduce** Steps to reproduce the behavior: 1. Go to '...'