File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
src/main/scala/tigerjython/ui/notebook Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
33
4- ### 3.0 Early Access Preview 6 (coming soon )
4+ ### 3.0 Early Access Preview 6 (24 September 2020 )
55
66Implemented:
77- Simple notebooks to work with Python interactively;
@@ -19,6 +19,13 @@ Changes:
1919Bug 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
Original file line number Diff line number Diff line change 22
33TigerJython is an educational development environment for Python with enhanced error messages. It runs on the Java
44Virtual 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!!!
Original file line number Diff line number Diff 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 = {
You can’t perform that action at this time.
0 commit comments