Skip to content

Commit

Permalink
Build 1.0.79
Browse files Browse the repository at this point in the history
  • Loading branch information
briansfrank committed Jul 17, 2023
1 parent 25e2130 commit 5b5ddc7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion etc/build/config.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//

// default version used by build scripts
buildVersion=1.0.78
buildVersion=1.0.79

// Must be configured boot build in substitute/release installation
//devHome=/work/fan/
Expand Down
5 changes: 4 additions & 1 deletion src/build/fan/BuildPod.fan
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,9 @@ abstract class BuildPod : BuildScript
log.unindent
}

**
** Compile to all classes to JavaScript
**
@Target { help = "Compile to javascript" }
virtual Void js()
{
Expand Down Expand Up @@ -224,7 +227,7 @@ abstract class BuildPod : BuildScript
}
}

protected CompilerInput stdFanCompilerInput()
@NoDoc protected CompilerInput stdFanCompilerInput()
{
// add my own meta
meta := this.meta.dup
Expand Down
2 changes: 1 addition & 1 deletion src/doc/docIntro/doc/ChangeLog.fandoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
** license: Licensed under the Academic Free License version 3.0
**************************************************************************

*Build 1.0.79 (working)*
*Build 1.0.79 (17 Jul 2023)*
- New yaml API
- Zip.readEach, Zip.unzipInto
- StrBuf.reverse
Expand Down
3 changes: 2 additions & 1 deletion src/graphicsJava/fan/java2D/Java2DGraphicsEnv.fan
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ const class Java2DGraphicsEnv : GraphicsEnv
{
style := f.style.isNormal ? AwtFont.PLAIN : AwtFont.ITALIC
awt := AwtFont(name, style, size)
// echo("-> $f.name => $awt.getName")
return awt
}

Expand Down Expand Up @@ -105,7 +106,6 @@ const class Java2DGraphicsEnv : GraphicsEnv
try
{
fonts := GraphicsEnvironment.getLocalGraphicsEnvironment.getAvailableFontFamilyNames
// echo(fonts.sort.join("\n"))
fonts.each |Str n| { acc[n.lower] = n }
}
catch (Err e) e.trace
Expand All @@ -119,6 +119,7 @@ const class Java2DGraphicsEnv : GraphicsEnv

// try to use decent default for sans-serf
sans := acc["inter"]
if (sans != null) sans = "inter regular" // so we don't use light
if (sans == null) sans = "roboto"
if (sans == null) sans = "helvetica neue"
if (sans == null) sans = "arial"
Expand Down
2 changes: 1 addition & 1 deletion src/sys/java/fanx/tools/Fan.java
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ static void cleanup()
static void version(String progName)
{
println(progName);
println("Copyright (c) 2006-2021, Brian Frank and Andy Frank");
println("Copyright (c) 2006-2023, Brian Frank and Andy Frank");
println("Licensed under the Academic Free License version 3.0");
println("");
println("Java Runtime:");
Expand Down

0 comments on commit 5b5ddc7

Please sign in to comment.