Skip to content

Commit 5e8b25e

Browse files
authored
Merge pull request #425 from gwtproject/release-2-13
Website update for 2.13.0 release
2 parents f8a82f7 + c9722a3 commit 5e8b25e

13 files changed

Lines changed: 1283 additions & 597 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<artifactItem>
102102
<groupId>org.gwtproject</groupId>
103103
<artifactId>gwt-dev</artifactId>
104-
<version>2.12.2</version>
104+
<version>2.13.0</version>
105105
<classifier>javadoc</classifier>
106106
</artifactItem>
107107
</artifactItems>

src/main/markdown/articles/superdevmode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ needed to compile your GWT app (most likely gwt-user.jar).
7575
* The main method is in com.google.gwt.dev.codeserver.CodeServer
7676

7777
If you run CodeServer without any arguments, it will print out its
78-
command line arguments. For 2.12.2, here is the output:
78+
command line arguments. For 2.13.0, here is the output:
7979

8080
```text
81-
Google Web Toolkit 2.12.2
81+
Google Web Toolkit 2.13.0
8282
CodeServer [-[no]allowMissingSrc] [-[no]compileTest] [-compileTestRecompiles count] [-[no]failOnError] [-[no]precompile] [-port port] [-src dir] [-workDir dir] [-launcherDir] [-bindAddress host-name-or-address] [-style (DETAILED|OBFUSCATED|PRETTY)] [-setProperty name=value,value...] [-[no]incremental] [-sourceLevel [auto, 1.8, 9, 10, 11, 17]] [-logLevel (ERROR|WARN|INFO|TRACE|DEBUG|SPAM|ALL)] [-[no]generateJsInteropExports] [-includeJsInteropExports/excludeJsInteropExports regex] [-XmethodNameDisplayMode (NONE|ONLY_METHOD_NAME|ABBREVIATED|FULL)] [-X[no]closureFormattedOutput] [module]
8383

8484
where

src/main/markdown/doc/latest/DevGuideCompilingAndDebugging.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ There are many options you can pass to the development mode process to control h
314314
```text
315315
$ java -cp gwt-dev.jar com.google.gwt.dev.DevMode
316316
Missing required argument 'module[s]'
317-
Google Web Toolkit 2.12.2
317+
Google Web Toolkit 2.13.0
318318
DevMode [-[no]startServer] [-port port-number | "auto"] [-logdir directory] [-logLevel (ERROR|WARN|INFO|TRACE|DEBUG|SPAM|ALL)] [-gen dir] [-bindAddress host-name-or-address] [-codeServerPort port-number | "auto"] [-[no]superDevMode] [-server servletContainerLauncher[:args]] [-startupUrl url] [-war dir] [-deploy dir] [-extra dir] [-modulePathPrefix ] [-workDir dir] [-XmethodNameDisplayMode (NONE|ONLY_METHOD_NAME|ABBREVIATED|FULL)] [-sourceLevel [auto, 1.8, 9, 10, 11, 17]] [-[no]generateJsInteropExports] [-includeJsInteropExports/excludeJsInteropExports regex] [-[no]incremental] [-style (DETAILED|OBFUSCATED|PRETTY)] [-[no]failOnError] [-setProperty name=value,value...] module[s]
319319

320320
where
@@ -326,7 +326,7 @@ where
326326
-bindAddress Specifies the bind address for the code server and web server (defaults to 127.0.0.1)
327327
-codeServerPort Specifies the TCP port for the code server (defaults to 9997 for classic Dev Mode or 9876 for Super Dev Mode)
328328
-[no]superDevMode Runs Super Dev Mode instead of classic Development Mode. (defaults to ON)
329-
-server Specify a different embedded web server to run (must implement ServletContainerLauncher)
329+
-server Specify a different embedded web server to run (must implement ServletContainerLauncher). May be specified by fully qualified class name, or if provided by a ServiceLoader, by the service name.
330330
-startupUrl Automatically launches the specified URL
331331
-war The directory into which deployable output files will be written (defaults to 'war')
332332
-deploy The directory into which deployable but not servable output files will be written (defaults to 'WEB-INF/deploy' under the -war directory/jar, and may be the same as the -extra directory/jar)
@@ -542,7 +542,7 @@ There are many options you can pass to the GWT compiler process to control how y
542542
```text
543543
> java -cp gwt-dev.jar com.google.gwt.dev.Compiler
544544
Missing required argument 'module[s]'
545-
Google Web Toolkit 2.12.2
545+
Google Web Toolkit 2.13.0
546546
Compiler [-logLevel (ERROR|WARN|INFO|TRACE|DEBUG|SPAM|ALL)] [-workDir dir] [-X[no]closureFormattedOutput] [-[no]compileReport] [-X[no]checkCasts] [-X[no]classMetadata] [-[no]draftCompile] [-[no]checkAssertions] [-XfragmentCount numFragments] [-gen dir] [-[no]generateJsInteropExports] [-includeJsInteropExports/excludeJsInteropExports regex] [-XmethodNameDisplayMode (NONE|ONLY_METHOD_NAME|ABBREVIATED|FULL)] [-Xnamespace (NONE|PACKAGE)] [-optimize level] [-[no]saveSource] [-setProperty name=value,value...] [-style (DETAILED|OBFUSCATED|PRETTY)] [-[no]failOnError] [-[no]validateOnly] [-sourceLevel [auto, 1.8, 9, 10, 11, 17]] [-localWorkers count] [-[no]incremental] [-war dir] [-deploy dir] [-extra dir] [-saveSourceOutput dir] module[s]
547547

548548
where

src/main/markdown/doc/latest/RefGuide.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ The GWT reference guide provides javadoc for GWT and related libraries, and tech
55

66
1. [GWT API Reference](RefGWTClassAPI.html)
77
2. [JRE Emulation Reference](RefJreEmulation.html)
8-
3. [Widget Gallery](RefWidgetGallery.html)
8+
3. [Missing parts of JRE Emulation](RefJreMissingEmulation.html)
9+
4. [Widget Gallery](RefWidgetGallery.html)

0 commit comments

Comments
 (0)