forked from faiface/beep
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request faiface#117 from gopxl/dev
- Loading branch information
Showing
11 changed files
with
335 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
- Added a changelog file ([#7](https://github.com/gopxl/beep/pull/7)) | ||
- Support for single channel ogg/vorbis ([#10](https://github.com/gopxl/beep/pull/10)) | ||
|
||
### Fixed | ||
- Fix FileSize for saving .wav ([#6](https://github.com/gopxl/beep/pull/6)) | ||
|
||
### Changed | ||
- Upgrade Go version to 1.21 ([#2](https://github.com/gopxl/beep/pull/2)) | ||
- Upgrade Oto version to 3.1 ([#3](https://github.com/gopxl/beep/pull/3)) | ||
|
||
## [v1.0.0] 2023-10-07 | ||
- Forked [faiface/beep](https://github.com/faiface/beep) to [gopxl/beep](https://github.com/gopxl/beep). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,29 @@ | ||
module github.com/gopxl/beep | ||
|
||
go 1.14 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/ebitengine/oto/v3 v3.1.0 | ||
github.com/gdamore/tcell v1.3.0 | ||
github.com/hajimehoshi/go-mp3 v0.3.0 | ||
github.com/hajimehoshi/oto v0.7.1 | ||
github.com/jfreymuth/oggvorbis v1.0.1 | ||
github.com/mewkiz/flac v1.0.7 | ||
github.com/orcaman/writerseeker v0.0.0-20200621085525-1d3f536ff85e | ||
github.com/pkg/errors v0.9.1 | ||
github.com/stretchr/testify v1.8.4 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/ebitengine/purego v0.5.0 // indirect | ||
github.com/gdamore/encoding v1.0.0 // indirect | ||
github.com/icza/bitio v1.0.0 // indirect | ||
github.com/jfreymuth/vorbis v1.0.0 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.0.2 // indirect | ||
github.com/mattn/go-runewidth v0.0.4 // indirect | ||
github.com/mewkiz/pkg v0.0.0-20190919212034-518ade7978e2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/sys v0.12.0 // indirect | ||
golang.org/x/text v0.3.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.