Skip to content

Commit 1e7852e

Browse files
committed
bump version to 0.1.6
1 parent b847daf commit 1e7852e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ playback = Playback() # creates an object for managing playback of a single audi
1717
playback.load_file('music-files/sample.mp3')
1818
# or just pass the filename directly to the constructor
1919

20-
playback.play() # plays loaded file from the beginning
20+
playback.play() # plays loaded audio file from the beginning
2121
playback.pause() # pauses playback. Has no effect if playback is already paused
2222
playback.resume() # resumes playback. Has no effect if playback is playing
2323
playback.stop() # stops playback. Has no effect if playback is not active
@@ -27,11 +27,11 @@ playback.set_volume(0.5) # sets the playback volume to 50% of the audio file's o
2727

2828
playback.loop_at_end(True) # since 0.1.5. Causes playback to automatically restart when it completes.
2929

30-
playback.active # checks if playback is active i.e playing or paused
31-
playback.curr_pos # returns the current absolute playback position in seconds from
30+
playback.active # True if playback is active i.e playing or paused
31+
playback.curr_pos # current absolute playback position in seconds from
3232
# the start of the audio file (unlike pygame.mixer.get_pos).
33-
playback.paused # checks if playback is paused.
34-
playback.duration # returns the length of the audio file in seconds.
35-
playback.volume # returns current playback volume
36-
playback.loops_at_end # checks if playback is set to restart when it completes.
33+
playback.paused # True if playback is paused.
34+
playback.duration # length of the audio file in seconds.
35+
playback.volume # current playback volume
36+
playback.loops_at_end # True if playback is set to restart when it completes.
3737
```

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
setup(
88
name = 'just_playback',
99
packages = find_packages(),
10-
version = '0.1.5',
10+
version = '0.1.6',
1111
author = 'Cheo Fusi',
1212
author_email = 'fusibrandon13@gmail.com',
1313
url = 'https://github.com/cheofusi/just_playback',

0 commit comments

Comments
 (0)