We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31f31a commit 76efe3cCopy full SHA for 76efe3c
fsapi/__init__.py
@@ -169,10 +169,10 @@ def play(self):
169
def pause(self):
170
return self.play_control(2)
171
172
- def next(self):
+ def forward(self):
173
return self.play_control(3)
174
175
- def prev(self):
+ def rewind(self):
176
return self.play_control(4)
177
178
# Volume
setup.py
@@ -28,7 +28,7 @@
28
29
30
setup(name='fsapi',
31
- version='0.0.8',
+ version='0.0.9',
32
description='Implementation of the Frontier Silicon API for Python',
33
author='Krasimir Zhelev',
34
author_email='[email protected]',
0 commit comments