From 8505004f37f2fa345975b83f98203fb1eedf967d Mon Sep 17 00:00:00 2001 From: Rahul Somasunderam Date: Fri, 16 Oct 2015 20:19:12 -0700 Subject: [PATCH 1/2] Fix README documentation 1. `gradlew` on windows is `./gradlew` on linux and MacOS systems. 2. there isn't a client gradle subproject. --- README.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.adoc b/README.adoc index 5e60133..160d1a2 100644 --- a/README.adoc +++ b/README.adoc @@ -67,14 +67,14 @@ For developers only Normal users please use the download link at the top of this page. [NOTE] -Since version 0.6, FregeFX is an external dependency that you might need to `gradlew install` +Since version 0.6, FregeFX is an external dependency that you might need to `gradlew install` (`./gradlew install` on linux and macos) locally if a SNAPSHOT version is referenced. With Java 8 (update 40 or higher) start via - gradlew clean :client:run + gradlew clean run NOTE: There is no need to install gradle or anything else beside a Java 8 JDK. - It is all self-installing. \ No newline at end of file + It is all self-installing. From 93ea3a6dd35a90e8a62435efd29dcbcc77c57c7c Mon Sep 17 00:00:00 2001 From: Rahul Somasunderam Date: Fri, 16 Oct 2015 20:19:54 -0700 Subject: [PATCH 2/2] Support fixed width fonts I'm not sure if that was intentionally commented out, or just an accident. --- src/main/resources/frepl.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/frepl.css b/src/main/resources/frepl.css index 1e629ca..89c57ee 100644 --- a/src/main/resources/frepl.css +++ b/src/main/resources/frepl.css @@ -17,10 +17,10 @@ -fx-background-color: -hi-light-glow, -hi-light, -hi-light-glow; -fx-background-radius: 5,4,3; -fx-background-insets: 0, 1, 3; - /*-fx-font-family: monospace;*/ + -fx-font-family: Menlo, Consolas, monospace; /*-fx-font-weight: bold;*/ } .list-view { -fx-focus-color: -hi-light; -} \ No newline at end of file +}