Skip to content

Commit

Permalink
in setup.py use version from thonnycontrib/ev3dev/version.py
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
harcokuppens committed Feb 28, 2020
1 parent 05227ef commit 8c45429
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [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.

### Fixed
- fixed cleanup of files on EV3 by switching to new ev3devcmd library


## [1.0.3] - 2020-02-08

### Removed
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
import os.path
import sys

from thonnycontrib.ev3dev.version import __version__ as pluginversion

setupdir = os.path.dirname(__file__)



setup(
name="thonny-ev3dev",
version="1.0.3",
version=pluginversion,
description="A plug-in which adds EV3 support for Thonny",
long_description="""
The thonny-ev3dev package is a plug-in which adds EV3 support for Thonny.
Expand Down Expand Up @@ -58,7 +60,7 @@
keywords="IDE education programming EV3 mindstorms lego",
platforms=["Windows", "macOS", "Linux"],
python_requires=">=3.6",
install_requires=['ev3devcmd==1.0.1','ev3dev2simulator'],
install_requires=['ev3devcmd==1.0.2','ev3dev2simulator'],
packages=["thonnycontrib.ev3dev"],
package_data={'thonnycontrib.ev3dev': ['res/*']}
)
2 changes: 1 addition & 1 deletion thonnycontrib/ev3dev/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.3'
__version__ = '1.0.4'

0 comments on commit 8c45429

Please sign in to comment.