Skip to content

Commit 8c45429

Browse files
committed
in setup.py use version from thonnycontrib/ev3dev/version.py
new version [1.0.4] - 2020-02-28 ### Added - improved Options menu by adding label "Warning: to use the simulated bluetooth in the simulator make sure you have PyBluez uninstalled!!" - improved Options menu for windows we only have option "show simulator fullscreen on second screen" because on windows for none fullscreen mode the simulator is always opened on the default screen. - improved Options menu for macos where we only have two options "show simulator fullscreen" and "show simulator on second screen". Latter option is added because when dragging window to other screen sometimes messes up the resolution of the window. By drawing the window already at startup at the second screen prevents this problem. - improved Options menu by adding caption which explains the rpyc timeout you can configure under advanced options.
1 parent 05227ef commit 8c45429

3 files changed

Lines changed: 23 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11+
## [1.0.4] - 2020-02-28
12+
13+
### Added
14+
- improved Options menu by adding label "Warning: to use the simulated bluetooth in the simulator make sure you have PyBluez uninstalled!!"
15+
- improved Options menu for windows we only have option "show simulator
16+
fullscreen on second screen" because on windows for none fullscreen mode the
17+
simulator is always opened on the default screen.
18+
- improved Options menu for macos where we only have two options "show simulator
19+
fullscreen" and "show simulator on second screen". Latter option is added because
20+
when dragging window to other screen sometimes messes up the resolution of
21+
the window. By drawing the window already at startup at the second screen
22+
prevents this problem.
23+
- improved Options menu by adding caption which explains the rpyc timeout you can configure under advanced options.
24+
25+
### Fixed
26+
- fixed cleanup of files on EV3 by switching to new ev3devcmd library
27+
28+
1129
## [1.0.3] - 2020-02-08
1230

1331
### Removed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
import os.path
33
import sys
44

5+
from thonnycontrib.ev3dev.version import __version__ as pluginversion
6+
57
setupdir = os.path.dirname(__file__)
68

79

810

911
setup(
1012
name="thonny-ev3dev",
11-
version="1.0.3",
13+
version=pluginversion,
1214
description="A plug-in which adds EV3 support for Thonny",
1315
long_description="""
1416
The thonny-ev3dev package is a plug-in which adds EV3 support for Thonny.
@@ -58,7 +60,7 @@
5860
keywords="IDE education programming EV3 mindstorms lego",
5961
platforms=["Windows", "macOS", "Linux"],
6062
python_requires=">=3.6",
61-
install_requires=['ev3devcmd==1.0.1','ev3dev2simulator'],
63+
install_requires=['ev3devcmd==1.0.2','ev3dev2simulator'],
6264
packages=["thonnycontrib.ev3dev"],
6365
package_data={'thonnycontrib.ev3dev': ['res/*']}
6466
)

thonnycontrib/ev3dev/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.3'
1+
__version__ = '1.0.4'

0 commit comments

Comments
 (0)