File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1111//
1212
1313// default version used by build scripts
14- buildVersion=1.0.78
14+ buildVersion=1.0.79
1515
1616// Must be configured boot build in substitute/release installation
1717//devHome=/work/fan/
Original file line number Diff line number Diff line change @@ -171,6 +171,9 @@ abstract class BuildPod : BuildScript
171171 log.unindent
172172 }
173173
174+ **
175+ ** Compile to all classes to JavaScript
176+ **
174177 @Target { help = "Compile to javascript" }
175178 virtual Void js()
176179 {
@@ -224,7 +227,7 @@ abstract class BuildPod : BuildScript
224227 }
225228 }
226229
227- protected CompilerInput stdFanCompilerInput()
230+ @NoDoc protected CompilerInput stdFanCompilerInput()
228231 {
229232 // add my own meta
230233 meta := this .meta.dup
Original file line number Diff line number Diff line change 66** license: Licensed under the Academic Free License version 3.0
77**************************************************************************
88
9- *Build 1.0.79 (working )*
9+ *Build 1.0.79 (17 Jul 2023 )*
1010- New yaml API
1111- Zip.readEach, Zip.unzipInto
1212- StrBuf.reverse
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ const class Java2DGraphicsEnv : GraphicsEnv
4242 {
4343 style := f.style.isNormal ? AwtFont.PLAIN : AwtFont.ITALIC
4444 awt := AwtFont(name, style, size)
45+ // echo("-> $f.name => $awt.getName")
4546 return awt
4647 }
4748
@@ -105,7 +106,6 @@ const class Java2DGraphicsEnv : GraphicsEnv
105106 try
106107 {
107108 fonts := GraphicsEnvironment.getLocalGraphicsEnvironment.getAvailableFontFamilyNames
108- // echo(fonts.sort.join("\n"))
109109 fonts.each |Str n| { acc[n.lower] = n }
110110 }
111111 catch (Err e) e.trace
@@ -119,6 +119,7 @@ const class Java2DGraphicsEnv : GraphicsEnv
119119
120120 // try to use decent default for sans-serf
121121 sans := acc["inter" ]
122+ if (sans != null ) sans = "inter regular" // so we don't use light
122123 if (sans == null ) sans = "roboto"
123124 if (sans == null ) sans = "helvetica neue"
124125 if (sans == null ) sans = "arial"
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ static void cleanup()
218218 static void version (String progName )
219219 {
220220 println (progName );
221- println ("Copyright (c) 2006-2021 , Brian Frank and Andy Frank" );
221+ println ("Copyright (c) 2006-2023 , Brian Frank and Andy Frank" );
222222 println ("Licensed under the Academic Free License version 3.0" );
223223 println ("" );
224224 println ("Java Runtime:" );
You can’t perform that action at this time.
0 commit comments