Skip to content

Commit

Permalink
Ready for ea+6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias-Kohn committed Sep 24, 2020
1 parent 94d9c88 commit 3f6217d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog


### 3.0 Early Access Preview 6 (coming soon)
### 3.0 Early Access Preview 6 (24 September 2020)

Implemented:
- Simple notebooks to work with Python interactively;
Expand All @@ -19,6 +19,13 @@ Changes:
Bug fixes:
- Correctly handles text sizes beyond 8 KB;

Known issues:
- Starting a TigerJython instance for execution is slow and should be done ahead of time to make it
more responsive;
- Documents should not be synchronised with files on the disc automatically;
- TigerJython's special functions are not yet fully supported;
- Missing support for executing programs on external devices;


### 3.0 Early Access Preview 5 (30 May 2020)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

TigerJython is an educational development environment for Python with enhanced error messages. It runs on the Java
Virtual Machine and already includes [Jython](https://www.jython.org/). If you have JRE installed, just download
the [JAR-file](https://github.com/Tiger-Jython/TigerJython/releases/download/v3.0-ea%2B5/TigerJython3-ea+5.jar) under
the [JAR-file](https://github.com/Tiger-Jython/TigerJython/releases/download/v3.0-ea%2B5/TigerJython3-ea+6.jar) under
[**release**](https://github.com/Tiger-Jython/TigerJython/releases/latest).

> This is an early access version that is not yet ready for classroom use!!!
Expand Down
4 changes: 3 additions & 1 deletion src/main/scala/tigerjython/ui/notebook/NotebookTab.scala
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ class NotebookTab extends TabFrame with ExecutionController {
def appendToErrorOutput(s: String): Unit = {}

protected def createOutputPane: TextArea = {
new TextArea()
val result = new TextArea()
result.getStyleClass.add("output-pane")
result
}

protected def createTargetMenuItem(name: String, img: Image, factory: ExecutorFactory): MenuItem = {
Expand Down

0 comments on commit 3f6217d

Please sign in to comment.