Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor edits #38

Merged
merged 6 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: weekly
time: "01:30"
open-pull-requests-limit: 10
target-branch: dev
assignees:
- "sadrasabouri"
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Bug report template modified
- `NavaThread.stop` method bug fixed
- Test system modified
- `README.md` modified
## [0.3] - 2024-01-31
### Added
- `NavaThread` class
Expand Down
40 changes: 34 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* [Overview](https://github.com/openscilab/nava#overview)
* [Installation](https://github.com/openscilab/nava#installation)
* [Usage](https://github.com/openscilab/nava#usage)
* [Engine](https://github.com/openscilab/nava#engine)
* [Issues & Bug Reports](https://github.com/openscilab/nava#issues--bug-reports)
* [Contribution](https://github.com/openscilab/nava/blob/main/.github/CONTRIBUTING.md)
* [Authors](https://github.com/openscilab/nava/blob/main/AUTHORS.md)
Expand Down Expand Up @@ -63,18 +64,18 @@ Nava is a Python library that allows users to play sound in Python without any d
</tr>
<tr>
<td align="center">Linux CI</td>
<td align="center"><img src="https://github.com/openscilab/nava/workflows/Linux/badge.svg?branch=main"></td>
<td align="center"><img src="https://github.com/openscilab/nava/workflows/Linux/badge.svg?branch=dev"></td>
<td align="center"><img src="https://github.com/openscilab/nava/actions/workflows/linux_test.yml/badge.svg?branch=main"></td>
<td align="center"><img src="https://github.com/openscilab/nava/actions/workflows/linux_test.yml/badge.svg?branch=dev"></td>
</tr>
<tr>
<td align="center">Windows CI</td>
<td align="center"><img src="https://github.com/openscilab/nava/workflows/Windows/badge.svg?branch=main"></td>
<td align="center"><img src="https://github.com/openscilab/nava/workflows/Windows/badge.svg?branch=dev"></td>
<td align="center"><img src="https://github.com/openscilab/nava/actions/workflows/windows_test.yml/badge.svg?branch=main"></td>
<td align="center"><img src="https://github.com/openscilab/nava/actions/workflows/windows_test.yml/badge.svg?branch=dev"></td>
</tr>
<tr>
<td align="center">macOS CI</td>
<td align="center"><img src="https://github.com/openscilab/nava/workflows/macOS/badge.svg?branch=main"></td>
<td align="center"><img src="https://github.com/openscilab/nava/workflows/macOS/badge.svg?branch=dev"></td>
<td align="center"><img src="https://github.com/openscilab/nava/actions/workflows/macOS_test.yml/badge.svg?branch=main"></td>
<td align="center"><img src="https://github.com/openscilab/nava/actions/workflows/macOS_test.yml/badge.svg?branch=dev"></td>
</tr>
</table>

Expand Down Expand Up @@ -136,6 +137,33 @@ except NavaBaseError as e:
print(str(e))
```

## Engine

List of different platforms and the corresponding engines that are used for sound playing.

<table>
<tr>
<th align="center">Platform</th>
<th align="center">Engine</th>
<th align="center">Supported Formats</th>
</tr>
<tr>
<td align="center">Linux</td>
<td align="center"><a href="https://www.alsa-project.org/wiki/Main_Page">Advanced Linux Sound Architecture</a></td>
<td align="center"><code>.wav</code></td>
</tr>
<tr>
<td align="center">Windows</td>
<td align="center"><a href="https://docs.python.org/3/library/winsound.html">Winsound</a></td>
<td align="center"><code>.wav</code></td>
</tr>
<tr>
<td align="center">macOS</td>
<td align="center"><a href="https://ss64.com/mac/afplay.html">Audio File Play</a></td>
<td align="center"><code>.wav</code>,<code>.mp3</code></td>
</tr>
</table>


## Issues & bug reports

Expand Down
4 changes: 2 additions & 2 deletions others/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Nava Release Instructions

#### Last Update: 2024-02-06
#### Last Update: 2024-02-12

1. Create the `release` branch under `dev`
2. Update all version tags
Expand All @@ -21,7 +21,7 @@
5. Wait for all CI pass
6. Need review
6. Merge `dev` branch into `main`
1. Checkout to `main`
1. `git checkout main`
2. `git merge dev`
3. `git push origin main`
4. Wait for all CI pass
Expand Down
Loading