Skip to content

Commit

Permalink
docs: change Assembla links to GitHub
Browse files Browse the repository at this point in the history
Fixes #298
  • Loading branch information
philburk authored and RossBencina committed Oct 7, 2020
1 parent 7db1230 commit e90b19e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 12 deletions.
18 changes: 10 additions & 8 deletions doc/src/mainpage.dox
Original file line number Diff line number Diff line change
Expand Up @@ -34,28 +34,30 @@ Documentation for non-portable platform-specific host API extensions

- <a href="http://www.portaudio.com">The PortAudio website</a>

- <a href="http://lists.columbia.edu/mailman/listinfo/portaudio/">Our mailing list for users and developers</a><br>
- <a href="http://www.portaudio.com/contacts.html">Our mailing list for users and developers</a><br>

- <a href="http://www.assembla.com/spaces/portaudio/wiki">The PortAudio wiki</a>
- <a href="https://github.com/PortAudio/portaudio/wiki">The PortAudio wiki</a>

@section developer_resources Developer Resources

@if INTERNAL
- @ref srcguide
@endif

- <a href="http://www.assembla.com/spaces/portaudio/wiki">Our wiki and issue tracking system</a>
- <a href="https://github.com/PortAudio/portaudio/">Our repository on GitHub</a>

- <a href="https://www.assembla.com/spaces/portaudio/wiki/DeveloperGuidelines">Developer guidelines</a>
- <a href="https://github.com/PortAudio/portaudio/wiki/DeveloperGuidelines">Developer guidelines</a>

- <a href="https://www.assembla.com/spaces/portaudio/wiki/ImplementationStyleGuidelines">Implementation style guidelines</a>

If you're interested in helping out with PortAudio development we're more than happy for you to be involved. Just drop by the PortAudio mailing list and ask how you can help. Or <a href="http://www.assembla.com/spaces/portaudio/tickets">check out the starter tickets</a>.
- <a href="https://github.com/PortAudio/portaudio/wiki/ImplementationStyleGuidelines">Implementation style guidelines</a>

If you're interested in helping out with PortAudio development we're more than happy for you to be involved.
Just drop by the PortAudio mailing list and ask how you can help.
Or check out these <a href="https://github.com/PortAudio/portaudio/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22">
recommended starter issues</a>.

@section older_api_versions Older API Versions

This documentation covers the current API version: PortAudio V19, API version 2.0. API 2.0 differs in a number of ways from previous versions (most often encountered in PortAudio V18), please consult the enhancement proposals for details of what was added/changed for V19:
http://www.portaudio.com/docs/proposals/index.html

*/
*/
7 changes: 5 additions & 2 deletions doc/src/tutorial/compile_windows_mingw.dox
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

@section comp_mingw1 Portaudio for Windows With MinGW

<strong>This document contains old or out-of-date information. Please see a draft of new MinGW information on our Wiki: <a href="https://app.assembla.com/spaces/portaudio/wiki/Notes_about_building_PortAudio_with_MinGW">PortAudio Wiki: Notes about building PortAudio with MinGW</a></strong>
<strong>This document contains old or out-of-date information. Please see
a draft of new MinGW information on our
Wiki: <a href="https://github.com/PortAudio/portaudio/wiki/Notes_about_building_PortAudio_with_MinGW">
PortAudio Wiki: Notes about building PortAudio with MinGW</a></strong>

= MinGW/MSYS =

Expand Down Expand Up @@ -50,4 +53,4 @@ To update your copy or check out a fresh copy of the source

Back to the Tutorial: \ref tutorial_start

*/
*/
6 changes: 4 additions & 2 deletions doc/src/tutorial/tutorial_start.dox
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ Below are the steps to writing a PortAudio application using the callback techni

In addition to this "Callback" architecture, V19 also supports a "Blocking I/O" model which uses read and write calls which may be more familiar to non-audio programmers. Note that at this time, not all APIs support this functionality.

In this tutorial, we'll show how to use the callback architecture to play a sawtooth wave. Much of the tutorial is taken from the file paex_saw.c, which is part of the PortAudio distribution. When you're done with this tutorial, you'll be armed with the basic knowledge you need to write an audio program. If you need more sample code, look in the "examples" and "test" directory of the PortAudio distribution. Another great source of info is the portaudio.h Doxygen page, which documents the entire V19 API. Also see the page for <a href="http://www.assembla.com/spaces/portaudio/wiki/Tips">tips on programming PortAudio</a> on the PortAudio wiki.
In this tutorial, we'll show how to use the callback architecture to play a sawtooth wave. Much of the tutorial is taken from the file paex_saw.c, which is part of the PortAudio distribution. When you're done with this tutorial, you'll be armed with the basic knowledge you need to write an audio program. If you need more sample code, look in the "examples" and "test" directory of the PortAudio distribution. Another great source of info is the portaudio.h Doxygen page, which documents the entire V19 API.
Also see the page for <a href="https://github.com/PortAudio/portaudio/wiki/Tips">tips on programming PortAudio</a>
on the PortAudio wiki.

@section tut_start4 Programming Tutorial Contents

Expand All @@ -56,4 +58,4 @@ Once you have a basic understanding of how to use PortAudio, you might be intere

Next: \ref writing_a_callback

*/
*/

0 comments on commit e90b19e

Please sign in to comment.