Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [2.1.6] - 14.10.2020
### Fixed
* update bindings to match new atom version

## [2.1.5] - 20.05.2020
### Fixed
* Invisible close icon
Expand Down Expand Up @@ -26,7 +30,7 @@
* Pymakr colors (minor changes), better matching with Atom's color.
* Terminal left padding.
### Fixed
* Buggy artifact behind the terminal with a light theme selected.
* Buggy artifact behind the terminal with a light theme selected.
* Connection tab hover color.
* Active connection tab is now draggable.
* Placeholder background color now matches the terminal color.
Expand Down Expand Up @@ -56,7 +60,7 @@

## [2.0.1] - 13.2.2020
### Added
* The connection tabs are now scrollable.
* The connection tabs are now scrollable.
### Changed
* Changing the font size no longer requires restarting Atom.
* Improved terminal responsiveness.
Expand All @@ -66,14 +70,14 @@


## [2.0.0]
* Improved UI: The interface has been completely rearranged, providing an objective, clear and beautiful layout.
* Multiple device connections: Now it’s possible to connect to multiple devices simultaneously, with one independent terminal for each one.
* Improved UI: The interface has been completely rearranged, providing an objective, clear and beautiful layout.
* Multiple device connections: Now it’s possible to connect to multiple devices simultaneously, with one independent terminal for each one.
* Dynamic workspace: The current project is now selected on Pymakr (projects dropdown) and not on the Atom file-tree.
* Font size customizable: Now it’s possible to change the terminal font size.
* Theme support: Now Pymakr supports current Atom's theme, matching with its color scheme.
* Font size customizable: Now it’s possible to change the terminal font size.
* Theme support: Now Pymakr supports current Atom's theme, matching with its color scheme.

## 1.5.6 - User experience improvements
* Now Pymakr shows a post-install notification if it failed to load Serialport library, asking the user to reload Atom.
* Now Pymakr shows a post-install notification if it failed to load Serialport library, asking the user to reload Atom.

## 1.5.5 - Compatibility update
* Updated supported Atom versions (>=1.41.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/features/sync/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ export default class Sync {

_this.pyboard.stopWaitingForSilent();
this.exit(() => {
_this.pyboard.enterFriendlyRepl_non_blocking(() => {
_this.pyboard.enterFriendlyReplNonBlocking(() => {
// do nothing, this might work or not based on what went wrong when synchronizing.
});
});
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Native module binding
@serialport/bindings@8.0.4

# Target
runtime : electron
version : 6.1.12
platform : darwin
arch : x64
abi : 73
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Native module binding
@serialport/bindings@8.0.4

# Target
runtime : electron
version : 6.1.12
platform : linux
arch : ia32
abi : 73
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Native module binding
@serialport/bindings@8.0.4

# Target
runtime : electron
version : 6.1.12
platform : linux
arch : x64
abi : 73
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Native module binding
@serialport/bindings@8.0.4

# Target
runtime : electron
version : 6.1.12
platform : win32
arch : ia32
abi : 73
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Native module binding
@serialport/bindings@8.0.4

# Target
runtime : electron
version : 6.1.12
platform : win32
arch : x64
abi : 73
7 changes: 7 additions & 0 deletions native_modules/included_runtimes.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,10 @@ Includes support for electron/node versions:
- darwin , x64
- linux , x64
- linux , ia32
Includes support for electron/node versions:
* electron 6.1.12 uses ABI 73
- win32 , x64
- win32 , ia32
- darwin , x64
- linux , x64
- linux , ia32
43 changes: 31 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pymakr",
"main": "./lib/main.js",
"version": "2.1.5",
"version": "2.1.6",
"description": "Adds a REPL console to Atom that connects to your Pycom board. It can run code on the board or synchronize your project files to it.",
"keywords": [
"Pycom",
Expand Down