Skip to content

Commit b5a8617

Browse files
committed
Merge branch 'release/2.0.0'
2 parents e41f505 + 3728778 commit b5a8617

File tree

92 files changed

+3398
-2891
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+3398
-2891
lines changed

.clang-format

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ BreakConstructorInitializersBeforeComma: false
5858
BreakConstructorInitializers: BeforeColon
5959
BreakAfterJavaFieldAnnotations: false
6060
BreakStringLiterals: true
61-
ColumnLimit: 80
61+
ColumnLimit: 100
6262
CommentPragmas: '^ IWYU pragma:'
6363
CompactNamespaces: false
6464
ConstructorInitializerAllOnOneLineOrOnePerLine: false

.github/workflows/ci.yml

+14-12
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ jobs:
77
name: "Build"
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: Create library ZIP
1212
run: |
1313
mkdir BlenderServoAnimation
1414
cp -R src examples library.properties README.md LICENSE BlenderServoAnimation
1515
zip -r blender_servo_animation_arduino_library BlenderServoAnimation
1616
- name: Archive library ZIP
17-
uses: actions/upload-artifact@v3
17+
uses: actions/upload-artifact@v4
1818
with:
1919
name: blender_servo_animation_arduino_library.zip
2020
path: |
@@ -28,22 +28,24 @@ jobs:
2828
example:
2929
[
3030
AdafruitPCA9685,
31-
SerialLiveMode,
32-
WebSocketLiveMode,
3331
MultiplePCA9685,
34-
Show,
32+
MultipleScenes,
33+
MultipleScenesSD,
34+
SDAnimation,
35+
SerialLiveMode,
3536
StandardServoLib,
3637
SwitchModeButton,
38+
WebSocketLiveMode,
3739
]
3840
steps:
39-
- uses: actions/checkout@v3
40-
- uses: actions/cache@v3
41+
- uses: actions/checkout@v4
42+
- uses: actions/cache@v4
4143
with:
4244
path: |
4345
~/.cache/pip
4446
~/.platformio/.cache
4547
key: ${{ runner.os }}-pio
46-
- uses: actions/setup-python@v4
48+
- uses: actions/setup-python@v5
4749
with:
4850
python-version: "3.10"
4951
- name: Install PlatformIO Core
@@ -56,7 +58,7 @@ jobs:
5658
name: "Lint"
5759
runs-on: ubuntu-22.04
5860
steps:
59-
- uses: actions/checkout@v3
61+
- uses: actions/checkout@v4
6062
- name: Lint with clang-format
6163
uses: jidicula/[email protected]
6264
with:
@@ -69,14 +71,14 @@ jobs:
6971
name: "Test"
7072
runs-on: ubuntu-latest
7173
steps:
72-
- uses: actions/checkout@v3
74+
- uses: actions/checkout@v4
7375
- name: Cache PlatformIO directory
74-
uses: actions/cache@v3
76+
uses: actions/cache@v4
7577
with:
7678
path: /home/runner/.platformio
7779
key: platformio-dir
7880
- name: Set up Python 3.10
79-
uses: actions/setup-python@v4
81+
uses: actions/setup-python@v5
8082
with:
8183
python-version: "3.10"
8284
cache: "pip"

.vscode/settings.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"files.associations": {
3+
"*.tcc": "cpp",
4+
"exception": "cpp",
5+
"memory_resource": "cpp",
6+
"iosfwd": "cpp",
7+
"new": "cpp",
8+
"ostream": "cpp",
9+
"sstream": "cpp",
10+
"stop_token": "cpp",
11+
"streambuf": "cpp",
12+
"__bit_reference": "cpp",
13+
"__string": "cpp",
14+
"algorithm": "cpp",
15+
"deque": "cpp",
16+
"ios": "cpp",
17+
"string": "cpp",
18+
"type_traits": "cpp",
19+
"cstddef": "cpp",
20+
"array": "cpp",
21+
"bitset": "cpp",
22+
"vector": "cpp",
23+
"string_view": "cpp",
24+
"functional": "cpp",
25+
"iomanip": "cpp",
26+
"istream": "cpp",
27+
"limits": "cpp",
28+
"ratio": "cpp",
29+
"tuple": "cpp",
30+
"__config": "cpp",
31+
"__hash_table": "cpp",
32+
"__locale": "cpp",
33+
"iterator": "cpp",
34+
"locale": "cpp",
35+
"thread": "cpp",
36+
"memory": "cpp",
37+
"random": "cpp",
38+
"mutex": "cpp",
39+
"optional": "cpp",
40+
"__tree": "cpp",
41+
"unordered_map": "cpp",
42+
"unordered_set": "cpp",
43+
"numeric": "cpp",
44+
"utility": "cpp"
45+
}
46+
}

0 commit comments

Comments
 (0)