Finally managed to close the staging repository for 0.7. Merging into main devel line.
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 30 Apr 2013 16:40:16 +0200
changeset 10712894b9a9dbfc
parent 1068 16820486d63d
parent 1070 ce01215a6d57
child 1072 3800d11c0bdb
child 1076 892dcb178737
Finally managed to close the staging repository for 0.7. Merging into main devel line.
.hgtags
     1.1 --- a/.hgtags	Tue Apr 30 16:26:49 2013 +0200
     1.2 +++ b/.hgtags	Tue Apr 30 16:40:16 2013 +0200
     1.3 @@ -7,3 +7,4 @@
     1.4  0000000000000000000000000000000000000000 release-${releaseVersion}
     1.5  52a4a5f868bccc67d50ad17f793b9ebabdf75d88 release-0.6
     1.6  6792dc0bafb9c76a099e45bfc9e967d6a2823827 release-0.7
     1.7 +623816269b75e53fffb4b19960df7040a3c20056 release-0.7
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/launcher/fx/src/main/java/org/apidesign/bck2brwsr/launcher/fx/LauncherFX.java	Tue Apr 30 16:40:16 2013 +0200
     2.3 @@ -0,0 +1,32 @@
     2.4 +/**
     2.5 + * Back 2 Browser Bytecode Translator
     2.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     2.7 + *
     2.8 + * This program is free software: you can redistribute it and/or modify
     2.9 + * it under the terms of the GNU General Public License as published by
    2.10 + * the Free Software Foundation, version 2 of the License.
    2.11 + *
    2.12 + * This program is distributed in the hope that it will be useful,
    2.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.15 + * GNU General Public License for more details.
    2.16 + *
    2.17 + * You should have received a copy of the GNU General Public License
    2.18 + * along with this program. Look for COPYING file in the top folder.
    2.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    2.20 + */
    2.21 +package org.apidesign.bck2brwsr.launcher.fx;
    2.22 +
    2.23 +import org.apidesign.bck2brwsr.launcher.Launcher;
    2.24 +
    2.25 +/** This is a launcher for the <a href="http://bck2brwsr.apidesign.org">Bck2Brwsr</a>
    2.26 + * project that is using <b>JavaFX</b>'s WebView to display the browser inside
    2.27 + * real Java virtual machine. Use {@link Launcher} methods to access this
    2.28 + * functionality via public, supported methods.
    2.29 + *
    2.30 + * @author Jaroslav Tulach
    2.31 + */
    2.32 +public final class LauncherFX {
    2.33 +    private LauncherFX() {
    2.34 +    }
    2.35 +}