Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<artifactItem>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
<version>2.12.1</version>
<version>2.12.2</version>
<classifier>javadoc</classifier>
</artifactItem>
</artifactItems>
Expand Down
4 changes: 2 additions & 2 deletions src/main/markdown/articles/superdevmode.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ needed to compile your GWT app (most likely gwt-user.jar).
* The main method is in com.google.gwt.dev.codeserver.CodeServer

If you run CodeServer without any arguments, it will print out its
command line arguments. For 2.12.1, here is the output:
command line arguments. For 2.12.2, here is the output:

```text
Google Web Toolkit 2.12.1
Google Web Toolkit 2.12.2
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]

where
Expand Down
4 changes: 2 additions & 2 deletions src/main/markdown/doc/latest/DevGuideCompilingAndDebugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ There are many options you can pass to the development mode process to control h
```text
$ java -cp gwt-dev.jar com.google.gwt.dev.DevMode
Missing required argument 'module[s]'
Google Web Toolkit 2.12.1
Google Web Toolkit 2.12.2
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]

where
Expand Down Expand Up @@ -542,7 +542,7 @@ There are many options you can pass to the GWT compiler process to control how y
```text
> java -cp gwt-dev.jar com.google.gwt.dev.Compiler
Missing required argument 'module[s]'
Google Web Toolkit 2.12.1
Google Web Toolkit 2.12.2
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]

where
Expand Down
2 changes: 1 addition & 1 deletion src/main/markdown/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Download
<b style="color: #444;">Note</b> - This download contains the standalone GWT SDK and tools only. If you're using Eclipse, we suggest that you download and install the GWT Eclipse Plugin instead.
</p>
<div class='moreinfo'>
<a class='download-button' href="https://github.com/gwtproject/gwt/releases/download/2.12.1/gwt-2.12.1.zip">Download GWT SDK</a> <br />
<a class='download-button' href="https://github.com/gwtproject/gwt/releases/download/2.12.2/gwt-2.12.2.zip">Download GWT SDK</a> <br />
<p style='font-size: 85%;'>
<a href="versions.html">[Old versions]</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/main/markdown/gettingstarted-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ the plugin generates a Maven project with separate modules for

## Prerequisites<a id="prereqs"></a>

1. GWT 2.12.1 runs on Java 11+. If necessary, download and install the Java SE Development Kit (JDK)
1. GWT 2.12.2 runs on Java 11+. If necessary, download and install the Java SE Development Kit (JDK)
<a href="https://adoptium.net/de/temurin/releases/" rel="nofollow">from Eclipse Temurin</a> for
your platform. Install the JDK by following the installation instructions.
2. Apache Maven is also necessary to run the gwt-maven-archetype. In this sample the Maven CLI is used. If
Expand Down
2 changes: 1 addition & 1 deletion src/main/markdown/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Overview

GWT is a development toolkit for building and optimizing complex browser-based applications. Its goal is to enable productive development of high-performance web applications without the developer having to be an expert in browser quirks, XMLHttpRequest, and JavaScript. It's open source, completely free, and used by thousands of developers around the world.

[What's New in GWT 2.12.1](release-notes.html#Release_Notes_2_12_1)
[What's New in GWT 2.12.2](release-notes.html#Release_Notes_2_12_2)

## What's inside the toolbox?

Expand Down
8 changes: 8 additions & 0 deletions src/main/markdown/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
The GWT Release Notes
=====================
* [2.12.2](#Release_Notes_2_12_2) March 3, 2025
* [2.12.1](#Release_Notes_2_12_1) November 12, 2024
* [2.12.0](#Release_Notes_2_12_0) October 29, 2024
* [2.11.0](#Release_Notes_2_11_0) January 9, 2024
Expand Down Expand Up @@ -68,6 +69,13 @@ The GWT Release Notes
* * *

<a id="Release_Notes_Current"></a>
## <a id="Release_Notes_2_12_2"></a> Release Notes for 2.12.2
### Bug fixes:
- Fixed a regression in Window.onClosing() that prevented the event from being fired in some cases
- Support JDT's implicit yield in switch statements

For more detail, see the [commit log](https://github.com/gwtproject/gwt/compare/2.12.1...2.12.2).

## <a id="Release_Notes_2_12_1"></a> Release Notes for 2.12.1
### Bug fixes:
- Switch statements can correctly compile without being contained in braces
Expand Down
21 changes: 21 additions & 0 deletions src/main/markdown/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@ Versions

GWT is licensed under the [Apache 2.0 open source license](terms.html) (since version 1.3).

### Version 2.12.2

Build 2.12.1 - March 3, 2025 - [Release notes](release-notes.html#Release_Notes_2_12_2)

<table class="downloads" style="width:500px">
<tbody>
<tr>
<th>Platform</th>
<th>Package</th>
<th>Size</th>
<th>SHA1 Sum</th>
</tr>
<tr>
<td>Windows, Mac OS X, and Linux</td>
<td><a href="https://github.com/gwtproject/gwt/releases/download/2.12.2/gwt-2.12.2.zip">gwt-2.12.2.zip</a></td>
<td>109 MB</td>
<td>968dbfffab4f43fcc70a05ce2378ca8013f12af3</td>
</tr>
</tbody>
</table>

### Version 2.12.1

Build 2.12.1 - November 12, 2024 - [Release notes](release-notes.html#Release_Notes_2_12_1)
Expand Down
Loading