Skip to content

Commit

Permalink
Working on a new file management system
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias-Kohn committed May 30, 2020
1 parent c222c3c commit 8951787
Show file tree
Hide file tree
Showing 44 changed files with 1,213 additions and 226 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Changelog

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

Implemented:
- Support for `repeat` loops;
- TigerJython specific libraries (only as part of the release, no sources);
- New file management that allows reopening previously edited files;
- "+"/"Add" tab to create a new document or reopen a previous one;

Big fixes:
- Error messages on JRE 8 are displayed too large;


### 3.0 Early Access Preview 3 (25 May 2020)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ val buildDate = "%d %s %d".format(

val buildTag = "-SNAPSHOT"

val buildVersion = "ea+04"
val buildVersion = "ea+05"

// This is needed to run/test the project without having to restart SBT afterwards
fork in run := true
Expand Down
37 changes: 37 additions & 0 deletions src/main/resources/themes/chrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,43 @@
-fx-text-fill: maroon;
}

.document-item {
-fx-padding: 10;
}

.document-item:hover {
-fx-background-color: skyblue;
-fx-border-style: solid;
-fx-border-color: navy;
}

.document-item .title {
-fx-font-size: 150%;
-fx-font-weight: bold;
}

.document-item .paper {
-fx-fill: silver;
}

.document-item .description {
-fx-font-family: monospaced;
-fx-font-size: 90%;
-fx-text-fill: gray;
}

.document-item:hover .title {
-fx-text-fill: blue;
}

.document-item:hover .description {
-fx-text-fill: navy;
}

.document-item:hover .paper {
-fx-fill: white;
}

.lineno {
-fx-fill: #ebebeb;
-fx-background-color: -fx-fill;
Expand Down
37 changes: 37 additions & 0 deletions src/main/resources/themes/cobalt.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,43 @@
-fx-background-color: #002240;
}

.document-item {
-fx-padding: 10;
}

.document-item:hover {
-fx-background-color: skyblue;
-fx-border-style: solid;
-fx-border-color: navy;
}

.document-item .title {
-fx-font-size: 150%;
-fx-font-weight: bold;
}

.document-item .paper {
-fx-fill: silver;
}

.document-item .description {
-fx-font-family: monospaced;
-fx-font-size: 90%;
-fx-text-fill: gray;
}

.document-item:hover .title {
-fx-text-fill: blue;
}

.document-item:hover .description {
-fx-text-fill: navy;
}

.document-item:hover .paper {
-fx-fill: white;
}

.lineno {
-fx-fill: #011e3a;
-fx-background-color: -fx-fill;
Expand Down
37 changes: 37 additions & 0 deletions src/main/resources/themes/github.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,43 @@
-fx-text-fill: maroon;
}

.document-item {
-fx-padding: 10;
}

.document-item:hover {
-fx-background-color: skyblue;
-fx-border-style: solid;
-fx-border-color: navy;
}

.document-item .title {
-fx-font-size: 150%;
-fx-font-weight: bold;
}

.document-item .paper {
-fx-fill: silver;
}

.document-item .description {
-fx-font-family: monospaced;
-fx-font-size: 90%;
-fx-text-fill: gray;
}

.document-item:hover .title {
-fx-text-fill: blue;
}

.document-item:hover .description {
-fx-text-fill: navy;
}

.document-item:hover .paper {
-fx-fill: white;
}

.lineno {
-fx-fill: #e8e8e8;
-fx-background-color: -fx-fill;
Expand Down
37 changes: 37 additions & 0 deletions src/main/resources/themes/idle.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,43 @@
-fx-text-fill: maroon;
}

.document-item {
-fx-padding: 10;
}

.document-item:hover {
-fx-background-color: skyblue;
-fx-border-style: solid;
-fx-border-color: navy;
}

.document-item .title {
-fx-font-size: 150%;
-fx-font-weight: bold;
}

.document-item .paper {
-fx-fill: silver;
}

.document-item .description {
-fx-font-family: monospaced;
-fx-font-size: 90%;
-fx-text-fill: gray;
}

.document-item:hover .title {
-fx-text-fill: blue;
}

.document-item:hover .description {
-fx-text-fill: navy;
}

.document-item:hover .paper {
-fx-fill: white;
}

.lineno {
-fx-fill: #e8e8e8;
-fx-background-color: -fx-fill;
Expand Down
37 changes: 37 additions & 0 deletions src/main/resources/themes/jem.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,43 @@
-fx-padding: 5;
}

.document-item {
-fx-padding: 10;
}

.document-item:hover {
-fx-background-color: skyblue;
-fx-border-style: solid;
-fx-border-color: navy;
}

.document-item .title {
-fx-font-size: 150%;
-fx-font-weight: bold;
}

.document-item .paper {
-fx-fill: silver;
}

.document-item .description {
-fx-font-family: monospaced;
-fx-font-size: 90%;
-fx-text-fill: gray;
}

.document-item:hover .title {
-fx-text-fill: blue;
}

.document-item:hover .description {
-fx-text-fill: navy;
}

.document-item:hover .paper {
-fx-fill: white;
}

.lineno {
-fx-fill: #FFDDAA;
-fx-background-color: -fx-fill;
Expand Down
37 changes: 37 additions & 0 deletions src/main/resources/themes/monokai.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,43 @@
-fx-background-color: #202020;
}

.document-item {
-fx-padding: 10;
}

.document-item:hover {
-fx-background-color: skyblue;
-fx-border-style: solid;
-fx-border-color: navy;
}

.document-item .title {
-fx-font-size: 150%;
-fx-font-weight: bold;
}

.document-item .paper {
-fx-fill: silver;
}

.document-item .description {
-fx-font-family: monospaced;
-fx-font-size: 90%;
-fx-text-fill: gray;
}

.document-item:hover .title {
-fx-text-fill: blue;
}

.document-item:hover .description {
-fx-text-fill: navy;
}

.document-item:hover .paper {
-fx-fill: white;
}

.lineno {
-fx-fill: #2F3129;
-fx-background-color: -fx-fill;
Expand Down
71 changes: 0 additions & 71 deletions src/main/resources/themes/python-keywords.css

This file was deleted.

Loading

0 comments on commit 8951787

Please sign in to comment.