Skip to content

Commit 3f6217d

Browse files
committed
Ready for ea+6 release
1 parent 94d9c88 commit 3f6217d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22

33

4-
### 3.0 Early Access Preview 6 (coming soon)
4+
### 3.0 Early Access Preview 6 (24 September 2020)
55

66
Implemented:
77
- Simple notebooks to work with Python interactively;
@@ -19,6 +19,13 @@ Changes:
1919
Bug fixes:
2020
- Correctly handles text sizes beyond 8 KB;
2121

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

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

88
> This is an early access version that is not yet ready for classroom use!!!

src/main/scala/tigerjython/ui/notebook/NotebookTab.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ class NotebookTab extends TabFrame with ExecutionController {
111111
def appendToErrorOutput(s: String): Unit = {}
112112

113113
protected def createOutputPane: TextArea = {
114-
new TextArea()
114+
val result = new TextArea()
115+
result.getStyleClass.add("output-pane")
116+
result
115117
}
116118

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

0 commit comments

Comments
 (0)