Skip to content

Commit 76efe3c

Browse files
committed
v0.0.9, renamed next to forward and prev to rewind
1 parent c31f31a commit 76efe3c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fsapi/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ def play(self):
169169
def pause(self):
170170
return self.play_control(2)
171171

172-
def next(self):
172+
def forward(self):
173173
return self.play_control(3)
174174

175-
def prev(self):
175+
def rewind(self):
176176
return self.play_control(4)
177177

178178
# Volume

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929

3030
setup(name='fsapi',
31-
version='0.0.8',
31+
version='0.0.9',
3232
description='Implementation of the Frontier Silicon API for Python',
3333
author='Krasimir Zhelev',
3434
author_email='[email protected]',

0 commit comments

Comments
 (0)