Skip to content

Commit c5b5428

Browse files
authored
Merge pull request #1985 from peternewman/0.10-clang-latest
Update OSC links
2 parents df08473 + f84704f commit c5b5428

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ jobs:
119119
if: always()
120120
run: sha256sum ola-*.tar.gz
121121
- name: Upload source tree artifact
122-
uses: actions/upload-artifact@v3
122+
uses: actions/upload-artifact@v4
123123
if: always()
124124
with:
125125
name: ola-${{ matrix.id }}-source-tree
126126
path: ola-${{ matrix.id }}-source-tree.tar.gz
127127
- name: Upload built artifact
128128
if: matrix.task == 'distcheck' || matrix.task == 'dist'
129-
uses: actions/upload-artifact@v3
129+
uses: actions/upload-artifact@v4
130130
with:
131131
name: ola-${{ matrix.id }}-dist
132132
path: |
@@ -147,7 +147,7 @@ jobs:
147147
flag-name: ${{ matrix.id }}
148148
- name: Upload coverage artifacts
149149
if: always() && matrix.task == 'coverage'
150-
uses: actions/upload-artifact@v3
150+
uses: actions/upload-artifact@v4
151151
with:
152152
name: ola-${{ matrix.id }}-coverage
153153
path: coverage/
@@ -165,7 +165,7 @@ jobs:
165165
- id: "distcheck-debian-stable-amd64-clang"
166166
steps:
167167
- name: Download built source tree archive
168-
uses: actions/download-artifact@v3
168+
uses: actions/download-artifact@v4
169169
with:
170170
name: ola-${{ matrix.id }}-source-tree
171171
path: .

.github/workflows/debian.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
shell: bash
5454
run: find . -type f -exec sha256sum {} \;
5555
working-directory: built
56-
- uses: actions/upload-artifact@v3
56+
- uses: actions/upload-artifact@v4
5757
if: always()
5858
with:
5959
name: ola-built-debian-${{ matrix.image_tag }}-${{ matrix.architecture }}
@@ -72,7 +72,7 @@ jobs:
7272
steps:
7373
- uses: actions/checkout@master
7474
- name: Download build artifact
75-
uses: actions/download-artifact@v3
75+
uses: actions/download-artifact@v4
7676
with:
7777
name: ola-built-debian-${{ matrix.image_tag }}-${{ matrix.architecture }}
7878
path: built
@@ -85,7 +85,7 @@ jobs:
8585
run: apt-get -y install autopkgtest
8686
- name: Test
8787
run: autopkgtest --output-dir=test-output built/*ges -- null
88-
- uses: actions/upload-artifact@v3
88+
- uses: actions/upload-artifact@v4
8989
if: always() # Always upload the test output, even on failed tests
9090
with:
9191
name: ola-test-output-debian-${{ matrix.image_tag }}-${{ matrix.architecture }}

.github/workflows/lint.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
tar --exclude=ola-debian-stable-built-source-tree.tar.gz -cvzf ola-debian-stable-built-source-tree.tar.gz .
5757
- name: SHA256 artifact archive
5858
run: sha256sum ola-debian-stable-built-source-tree.tar.gz
59-
- uses: actions/upload-artifact@v3
59+
- uses: actions/upload-artifact@v4
6060
with:
6161
name: ola-debian-stable-built-source-tree
6262
path: ola-debian-stable-built-source-tree.tar.gz
@@ -67,7 +67,7 @@ jobs:
6767
needs: build
6868
steps:
6969
- name: Download built source tree archive
70-
uses: actions/download-artifact@v3
70+
uses: actions/download-artifact@v4
7171
with:
7272
name: ola-debian-stable-built-source-tree
7373
path: .
@@ -97,7 +97,7 @@ jobs:
9797
needs: build
9898
steps:
9999
- name: Download built source tree archive
100-
uses: actions/download-artifact@v3
100+
uses: actions/download-artifact@v4
101101
with:
102102
name: ola-debian-stable-built-source-tree
103103
path: .
@@ -123,7 +123,7 @@ jobs:
123123
needs: build
124124
steps:
125125
- name: Download built source tree archive
126-
uses: actions/download-artifact@v3
126+
uses: actions/download-artifact@v4
127127
with:
128128
name: ola-debian-stable-built-source-tree
129129
path: .
@@ -160,7 +160,7 @@ jobs:
160160
needs: build
161161
steps:
162162
- name: Download built source tree archive
163-
uses: actions/download-artifact@v3
163+
uses: actions/download-artifact@v4
164164
with:
165165
name: ola-debian-stable-built-source-tree
166166
path: .
@@ -197,7 +197,7 @@ jobs:
197197
needs: build
198198
steps:
199199
- name: Download built source tree archive
200-
uses: actions/download-artifact@v3
200+
uses: actions/download-artifact@v4
201201
with:
202202
name: ola-debian-stable-built-source-tree
203203
path: .
@@ -226,7 +226,7 @@ jobs:
226226
needs: build
227227
steps:
228228
- name: Download built source tree archive
229-
uses: actions/download-artifact@v3
229+
uses: actions/download-artifact@v4
230230
with:
231231
name: ola-debian-stable-built-source-tree
232232
path: .

plugins/osc/OSCPlugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ string OSCPlugin::Description() const {
134134
"--------------------------------\n"
135135
"\n"
136136
"This plugin allows OLA to send and receive OSC\n"
137-
"( http://www.opensoundcontrol.org/ ) messages.\n"
137+
"( https://opensoundcontrol.stanford.edu/ ) messages.\n"
138138
"\n"
139139
"OLA uses the blob type for transporting DMX data.\n"
140140
"\n"

plugins/osc/README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Before we begin you should do the following:
1414
* Have an understanding of the map & vector classes from the STL -
1515
http://www.sgi.com/tech/stl/ or http://www.cplusplus.com/reference/stl/ .
1616
* Know something about the OSC specification:
17-
http://opensoundcontrol.org/spec-1_0 . You don't need to know the wire format
18-
for the OSC messages. but you should at least recognize OSC addresses and
19-
know the different data types in a message.
17+
https://opensoundcontrol.stanford.edu/spec-1_0.html . You don't need to know
18+
the wire format for the OSC messages. but you should at least recognize OSC
19+
addresses and know the different data types in a message.
2020
* Look at the liblo site (http://liblo.sourceforge.net/ ) and read the
2121
examples.
2222
* Get familiar with the string class

0 commit comments

Comments
 (0)