Skip to content

Commit 704348d

Browse files
maciejmakowski2003Maciej Makowski
andauthored
chore: updated repo and docs url (#358)
* chore: updated repo and docs url * ci: formatting --------- Co-authored-by: Maciej Makowski <maciej.makowski2608@gmail.com>
1 parent 3dded19 commit 704348d

File tree

20 files changed

+249
-136
lines changed

20 files changed

+249
-136
lines changed

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919

2020
jobs:
2121
publish:
22-
if: github.repository == 'software-mansion-labs/react-native-audio-api'
22+
if: github.repository == 'software-mansion/react-native-audio-api'
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout repo

.github/workflows/spelling.yml

Lines changed: 54 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ name: Check Spelling
33
on:
44
push:
55
branches:
6-
- "**"
6+
- '**'
77
tags-ignore:
8-
- "**"
8+
- '**'
99
pull_request_target:
1010
branches:
11-
- "**"
11+
- '**'
1212
types:
13-
- 'opened'
14-
- 'reopened'
15-
- 'synchronize'
13+
- 'opened'
14+
- 'reopened'
15+
- 'synchronize'
1616
issue_comment:
1717
types:
18-
- 'created'
18+
- 'created'
1919

2020
jobs:
2121
spelling:
@@ -34,32 +34,31 @@ jobs:
3434
# note: If you use only_check_changed_files, you do not want cancel-in-progress
3535
cancel-in-progress: true
3636
steps:
37-
- name: check-spelling
38-
id: spelling
39-
uses: check-spelling/check-spelling@main
40-
with:
41-
config: .github/actions/spelling
42-
suppress_push_for_open_pull_request: ${{ github.actor != 'dependabot[bot]' && 1 }}
43-
checkout: true
44-
check_file_names: 1
45-
spell_check_this: software-mansion-labs/react-native-audio-api@main
46-
post_comment: 0
47-
use_magic_file: 1
48-
report-timing: 1
49-
warnings: bad-regex,binary-file,deprecated-feature,large-file,limited-references,no-newline-at-eof,noisy-file,non-alpha-in-dictionary,token-is-substring,unexpected-line-ending,whitespace-in-dictionary,minified-file,unsupported-configuration,no-files-to-check
50-
experimental_apply_changes_via_bot: 1
51-
use_sarif: ${{ (!github.event.pull_request || (github.event.pull_request.head.repo.full_name == github.repository)) && 1 }}
52-
extra_dictionary_limit: 20
53-
extra_dictionaries:
54-
cspell:software-terms/dict/softwareTerms.txt
55-
cspell:typescript/dict/typescript.txt
56-
cspell:cpp/src/stdlib-cpp.txt
57-
cspell:java/src/java.txt
58-
cspell:cpp/src/stdlib-c.txt
59-
cspell:html/dict/html.txt
60-
cspell:npm/dict/npm.txt
61-
cspell:css/dict/css.txt
62-
cspell:golang/dict/go.txt
37+
- name: check-spelling
38+
id: spelling
39+
uses: check-spelling/check-spelling@main
40+
with:
41+
config: .github/actions/spelling
42+
suppress_push_for_open_pull_request: ${{ github.actor != 'dependabot[bot]' && 1 }}
43+
checkout: true
44+
check_file_names: 1
45+
spell_check_this: software-mansion/react-native-audio-api@main
46+
post_comment: 0
47+
use_magic_file: 1
48+
report-timing: 1
49+
warnings: bad-regex,binary-file,deprecated-feature,large-file,limited-references,no-newline-at-eof,noisy-file,non-alpha-in-dictionary,token-is-substring,unexpected-line-ending,whitespace-in-dictionary,minified-file,unsupported-configuration,no-files-to-check
50+
experimental_apply_changes_via_bot: 1
51+
use_sarif: ${{ (!github.event.pull_request || (github.event.pull_request.head.repo.full_name == github.repository)) && 1 }}
52+
extra_dictionary_limit: 20
53+
extra_dictionaries: cspell:software-terms/dict/softwareTerms.txt
54+
cspell:typescript/dict/typescript.txt
55+
cspell:cpp/src/stdlib-cpp.txt
56+
cspell:java/src/java.txt
57+
cspell:cpp/src/stdlib-c.txt
58+
cspell:html/dict/html.txt
59+
cspell:npm/dict/npm.txt
60+
cspell:css/dict/css.txt
61+
cspell:golang/dict/go.txt
6362

6463
comment-push:
6564
name: Report (Push)
@@ -70,12 +69,12 @@ jobs:
7069
contents: write
7170
if: (success() || failure()) && needs.spelling.outputs.followup && github.event_name == 'push'
7271
steps:
73-
- name: comment
74-
uses: check-spelling/check-spelling@main
75-
with:
76-
checkout: true
77-
spell_check_this: software-mansion-labs/react-native-audio-api@main
78-
task: ${{ needs.spelling.outputs.followup }}
72+
- name: comment
73+
uses: check-spelling/check-spelling@main
74+
with:
75+
checkout: true
76+
spell_check_this: software-mansion/react-native-audio-api@main
77+
task: ${{ needs.spelling.outputs.followup }}
7978

8079
comment-pr:
8180
name: Report (PR)
@@ -87,13 +86,13 @@ jobs:
8786
pull-requests: write
8887
if: (success() || failure()) && needs.spelling.outputs.followup && contains(github.event_name, 'pull_request')
8988
steps:
90-
- name: comment
91-
uses: check-spelling/check-spelling@main
92-
with:
93-
checkout: true
94-
spell_check_this: software-mansion-labs/react-native-audio-api@main
95-
task: ${{ needs.spelling.outputs.followup }}
96-
experimental_apply_changes_via_bot: 1
89+
- name: comment
90+
uses: check-spelling/check-spelling@main
91+
with:
92+
checkout: true
93+
spell_check_this: software-mansion/react-native-audio-api@main
94+
task: ${{ needs.spelling.outputs.followup }}
95+
experimental_apply_changes_via_bot: 1
9796

9897
update:
9998
name: Update PR
@@ -103,17 +102,17 @@ jobs:
103102
actions: read
104103
runs-on: ubuntu-latest
105104
if: ${{
106-
github.event_name == 'issue_comment' &&
107-
github.event.issue.pull_request &&
108-
contains(github.event.comment.body, '@check-spelling-bot apply')
105+
github.event_name == 'issue_comment' &&
106+
github.event.issue.pull_request &&
107+
contains(github.event.comment.body, '@check-spelling-bot apply')
109108
}}
110109
concurrency:
111110
group: spelling-update-${{ github.event.issue.number }}
112111
cancel-in-progress: false
113112
steps:
114-
- name: apply spelling updates
115-
uses: check-spelling/check-spelling@main
116-
with:
117-
experimental_apply_changes_via_bot: 1
118-
checkout: true
119-
ssh_key: "${{ secrets.CHECK_SPELLING }}"
113+
- name: apply spelling updates
114+
uses: check-spelling/check-spelling@main
115+
with:
116+
experimental_apply_changes_via_bot: 1
117+
checkout: true
118+
ssh_key: '${{ secrets.CHECK_SPELLING }}'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ To learn more about expo development builds, please check out [Development Build
3333
## Documentation
3434

3535
Check out our dedicated documentation page for info about this library, API reference and more:
36-
[https://software-mansion-labs.github.io/react-native-audio-api/](https://software-mansion-labs.github.io/react-native-audio-api/)
36+
[https://software-mansion.github.io/react-native-audio-api/](https://software-mansion.github.io/react-native-audio-api/)
3737

3838
You can also check out [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API) for fully detailed description of the audio api.
3939

4040
## Coverage
4141

42-
Our current coverage of Web Audio API specification can be found here: [Web Audio API coverage](https://software-mansion-labs.github.io/react-native-audio-api/other/web-audio-api-coverage).
42+
Our current coverage of Web Audio API specification can be found here: [Web Audio API coverage](https://software-mansion.github.io/react-native-audio-api/other/web-audio-api-coverage).
4343

4444
## Examples
4545

apps/common-app/src/examples/AudioFile/AudioFile.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import { Container, Button, Spacer, Slider } from '../../components';
1010

1111
const URL =
12-
'https://software-mansion-labs.github.io/react-native-audio-api/audio/voice/example-voice-01.mp3';
12+
'https://software-mansion.github.io/react-native-audio-api/audio/voice/example-voice-01.mp3';
1313

1414
const LOOP_START = 0;
1515
const LOOP_END = 10;
@@ -60,7 +60,9 @@ const AudioFile: FC = () => {
6060
fetchAudioBuffer();
6161
}
6262

63-
bufferSourceRef.current = audioContextRef.current.createBufferSource({pitchCorrection: true});
63+
bufferSourceRef.current = audioContextRef.current.createBufferSource({
64+
pitchCorrection: true,
65+
});
6466
bufferSourceRef.current.buffer = audioBuffer;
6567
bufferSourceRef.current.loop = true;
6668
bufferSourceRef.current.onended = (stopTime?: number) => {

apps/common-app/src/examples/AudioVisualizer/AudioVisualizer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { layout } from '../../styles';
1414
const FFT_SIZE = 512;
1515

1616
const URL =
17-
'https://software-mansion-labs.github.io/react-native-audio-api/audio/music/example-music-02.mp3';
17+
'https://software-mansion.github.io/react-native-audio-api/audio/music/example-music-02.mp3';
1818

1919
const AudioVisualizer: React.FC = () => {
2020
const [isPlaying, setIsPlaying] = useState(false);

apps/common-app/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
3+
"compilerOptions": {
4+
"moduleSuffixes": [".ios", ".android", ".native", ""]
5+
}
36
}

apps/fabric-example/Gemfile.lock

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
CFPropertyList (3.0.7)
5+
base64
6+
nkf
7+
rexml
8+
activesupport (6.1.7.10)
9+
concurrent-ruby (~> 1.0, >= 1.0.2)
10+
i18n (>= 1.6, < 2)
11+
minitest (>= 5.1)
12+
tzinfo (~> 2.0)
13+
zeitwerk (~> 2.3)
14+
addressable (2.8.7)
15+
public_suffix (>= 2.0.2, < 7.0)
16+
algoliasearch (1.27.5)
17+
httpclient (~> 2.8, >= 2.8.3)
18+
json (>= 1.5.1)
19+
atomos (0.1.3)
20+
base64 (0.2.0)
21+
claide (1.1.0)
22+
cocoapods (1.15.2)
23+
addressable (~> 2.8)
24+
claide (>= 1.0.2, < 2.0)
25+
cocoapods-core (= 1.15.2)
26+
cocoapods-deintegrate (>= 1.0.3, < 2.0)
27+
cocoapods-downloader (>= 2.1, < 3.0)
28+
cocoapods-plugins (>= 1.0.0, < 2.0)
29+
cocoapods-search (>= 1.0.0, < 2.0)
30+
cocoapods-trunk (>= 1.6.0, < 2.0)
31+
cocoapods-try (>= 1.1.0, < 2.0)
32+
colored2 (~> 3.1)
33+
escape (~> 0.0.4)
34+
fourflusher (>= 2.3.0, < 3.0)
35+
gh_inspector (~> 1.0)
36+
molinillo (~> 0.8.0)
37+
nap (~> 1.0)
38+
ruby-macho (>= 2.3.0, < 3.0)
39+
xcodeproj (>= 1.23.0, < 2.0)
40+
cocoapods-core (1.15.2)
41+
activesupport (>= 5.0, < 8)
42+
addressable (~> 2.8)
43+
algoliasearch (~> 1.0)
44+
concurrent-ruby (~> 1.1)
45+
fuzzy_match (~> 2.0.4)
46+
nap (~> 1.0)
47+
netrc (~> 0.11)
48+
public_suffix (~> 4.0)
49+
typhoeus (~> 1.0)
50+
cocoapods-deintegrate (1.0.5)
51+
cocoapods-downloader (2.1)
52+
cocoapods-plugins (1.0.0)
53+
nap
54+
cocoapods-search (1.0.1)
55+
cocoapods-trunk (1.6.0)
56+
nap (>= 0.8, < 2.0)
57+
netrc (~> 0.11)
58+
cocoapods-try (1.2.0)
59+
colored2 (3.1.2)
60+
concurrent-ruby (1.3.3)
61+
escape (0.0.4)
62+
ethon (0.16.0)
63+
ffi (>= 1.15.0)
64+
ffi (1.17.1)
65+
fourflusher (2.3.1)
66+
fuzzy_match (2.0.4)
67+
gh_inspector (1.1.3)
68+
httpclient (2.9.0)
69+
mutex_m
70+
i18n (1.14.7)
71+
concurrent-ruby (~> 1.0)
72+
json (2.7.6)
73+
minitest (5.25.4)
74+
molinillo (0.8.0)
75+
mutex_m (0.3.0)
76+
nanaimo (0.3.0)
77+
nap (1.1.0)
78+
netrc (0.11.0)
79+
nkf (0.2.0)
80+
public_suffix (4.0.7)
81+
rexml (3.4.1)
82+
ruby-macho (2.5.1)
83+
typhoeus (1.4.1)
84+
ethon (>= 0.9.0)
85+
tzinfo (2.0.6)
86+
concurrent-ruby (~> 1.0)
87+
xcodeproj (1.25.1)
88+
CFPropertyList (>= 2.3.3, < 4.0)
89+
atomos (~> 0.1.3)
90+
claide (>= 1.0.2, < 2.0)
91+
colored2 (~> 3.1)
92+
nanaimo (~> 0.3.0)
93+
rexml (>= 3.3.6, < 4.0)
94+
zeitwerk (2.6.18)
95+
96+
PLATFORMS
97+
ruby
98+
99+
DEPENDENCIES
100+
activesupport (>= 6.1.7.5, != 7.1.0)
101+
cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
102+
concurrent-ruby (< 1.3.4)
103+
xcodeproj (< 1.26.0)
104+
105+
RUBY VERSION
106+
ruby 2.6.10p210
107+
108+
BUNDLED WITH
109+
1.17.2

0 commit comments

Comments
 (0)