Skip to content

Commit

Permalink
Minor edits (#38)
Browse files Browse the repository at this point in the history
* doc : RELEASE.md updated

* fix : dependabot.yml config added

* doc : Engine section added to README.md

* doc : Engine section updated

* doc : CHANGELOG.md updated

* doc : README.md badges section bug fixed
  • Loading branch information
sepandhaghighi committed Feb 13, 2024
1 parent 3840172 commit e50f881
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 8 deletions.
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

0 comments on commit e50f881

Please sign in to comment.