From 3f7453f5b03fa5b83693fb0ff1abaae65550f95e Mon Sep 17 00:00:00 2001 From: Erlend Storsve Date: Sun, 8 Sep 2024 13:00:49 +0200 Subject: [PATCH 1/6] fix: updated category in library.properties Co-authored-by: Tobias Domaas --- library.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library.properties b/library.properties index eed9847..2d8e62d 100644 --- a/library.properties +++ b/library.properties @@ -1,10 +1,10 @@ -name=deploii-library +name=deploii version=0.0.0 author=Tobias Domaas maintainer=Tobias Domaas sentence=Library for enabling communication between a MCU and deploii paragraph= -category=communication +category=Communication url=https://github.com/Company-of-Things/deploii-library -architectures= +architectures=* includes=deploii.h \ No newline at end of file From e6d5cd3eef143f41c30d8a4aa61c45b7aef798a2 Mon Sep 17 00:00:00 2001 From: Erlend Storsve Date: Sun, 8 Sep 2024 13:01:06 +0200 Subject: [PATCH 2/6] feat: arduino-lint CI workflow --- .github/workflows/CI.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c98cf12..d6c1ab7 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,7 +12,16 @@ env: - name: Ethernet - name: MsgPack -jobs: +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: arduino/arduino-lint-action@v1 + with: + library-manager: submit + compliance: strict + build-for-arduino: runs-on: ubuntu-latest From acf3fa40172f361fe620926eeb78416eded2cade Mon Sep 17 00:00:00 2001 From: Erlend Storsve Date: Sun, 8 Sep 2024 13:01:45 +0200 Subject: [PATCH 3/6] fix: add .vscode to .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0b0eb1d..a5a061a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .development -ignore \ No newline at end of file +ignore +.vscode \ No newline at end of file From 88d9427384635b5d835dc9fc1881da3c405110f0 Mon Sep 17 00:00:00 2001 From: Erlend Storsve Date: Sun, 8 Sep 2024 13:05:30 +0200 Subject: [PATCH 4/6] chore: update arduino-lint workflow name --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d6c1ab7..ca56f7c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,7 +13,7 @@ env: - name: MsgPack jobs: - lint: + arduino-lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 From 0bcfa96d9263f328ce56ce513dcd4cbd47ab10dc Mon Sep 17 00:00:00 2001 From: Erlend Storsve Date: Sun, 8 Sep 2024 13:09:37 +0200 Subject: [PATCH 5/6] chore: add .vscode folder back --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a5a061a..0b0eb1d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ .development -ignore -.vscode \ No newline at end of file +ignore \ No newline at end of file From 7ec056969644c0e2e48983670b013ebcb7c52468 Mon Sep 17 00:00:00 2001 From: Erlend Storsve Date: Sun, 8 Sep 2024 13:22:11 +0200 Subject: [PATCH 6/6] feat: add MIT lisence --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d38ac52 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Company of Things + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.