Skip to content

Commit

Permalink
New version 2016.07.12-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
skaller committed Jul 12, 2016
1 parent b769087 commit fcf437e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
6 changes: 3 additions & 3 deletions buildsystem/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
flx_version_major = "2016"
flx_version_minor = "06"
flx_version_patch = "29"
flx_version_release = "-pelican"
flx_version_minor = "07"
flx_version_patch = "12"
flx_version_release = "-rc1"
flx_version = flx_version_major+"."+flx_version_minor+"."+flx_version_patch+flx_version_release
14 changes: 9 additions & 5 deletions src/packages/flx.fdoc
Original file line number Diff line number Diff line change
Expand Up @@ -3106,11 +3106,15 @@ class Flx
var dvars = FlxDepvars::cal_depvars(toolchain,*config,control,*loopctl);
println$ f"Processing [%02d/%02d]: %S" (i, n, file);
var pe = processing_env(toolchain,*config,*control,dvars);
proc ehandler() {
eprintln("BATCH MODE ERROR HANDLER");
System::exit 1;
}
result = pe.runit(ehandler);
call_with_trap {
proc ehandler() {
eprintln("BATCH MODE ERROR HANDLER");
result = 1;
goto err;
}
result = pe.runit(ehandler);
err:>
};
if result == 0 do ++pass; else ++fail; done
if control*.NONSTOP==0 and result != 0 goto endoff;
++i;
Expand Down
3 changes: 3 additions & 0 deletions src/web/tutopt/sdlgui/gui_03_draw_01.fdoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@title basic drawing
@felix
include "gui/__init__";
open FlxGui;

Expand Down Expand Up @@ -33,4 +35,5 @@ w.update();
w.show();

Faio::sleep(clock,15.0);
@

0 comments on commit fcf437e

Please sign in to comment.