Skip to content

Commit 28dfbff

Browse files
authored
Merge pull request #38 from GwtMaterialDesign/release_2.7.0
Release 2.7.0
2 parents 23f38ab + 4607724 commit 28dfbff

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.utility/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -ev
3-
if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "release_2.6.1" ]; then
3+
if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "release_2.7.0" ]; then
44
echo "<settings><servers><server><id>ossrh</id><username>\${env.OSSRH_USER}</username><password>\${env.OSSRH_PASS}</password></server></servers></settings>" > ~/settings.xml
55
mvn deploy --settings ~/settings.xml
66
fi

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ JQuery interface maintained by GWT Material Design.
1111
Documentation on the JQuery can be found here: https://api.jquery.com/
1212

1313
## Maven
14-
Current Version 2.6.1
14+
Current Version 2.7.0
1515
```xml
1616
<dependency>
1717
<groupId>com.github.gwtmaterialdesign</groupId>
1818
<artifactId>gwt-material-jquery</artifactId>
19-
<version>2.6.1</version>
19+
<version>2.7.0</version>
2020
</dependency>
2121
```
22-
Snapshot Version 2.6.1
22+
Snapshot Version 2.8.0
2323
```xml
2424
<dependency>
2525
<groupId>com.github.gwtmaterialdesign</groupId>
2626
<artifactId>gwt-material-jquery</artifactId>
27-
<version>2.6.1-SNAPSHOT</version>
27+
<version>2.8.0-SNAPSHOT</version>
2828
</dependency>
2929
```
3030

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.github.gwtmaterialdesign</groupId>
77
<artifactId>gwt-material-jquery</artifactId>
88
<packaging>gwt-lib</packaging>
9-
<version>2.6.1</version>
9+
<version>2.7.0</version>
1010

1111
<properties>
1212
<gwt.version>2.9.0</gwt.version>
@@ -38,7 +38,7 @@
3838
<connection>scm:git:[email protected]:GwtMaterialDesign/gwt-material-jquery.git</connection>
3939
<developerConnection>scm:git:[email protected]:GwtMaterialDesign/gwt-material-jquery.git</developerConnection>
4040
<url>http://github.com/GwtMaterialDesign/gwt-material-jquery</url>
41-
<tag>v2.6.1</tag>
41+
<tag>v2.7.0</tag>
4242
</scm>
4343

4444
<distributionManagement>

src/main/java/gwt/material/design/jscore/client/api/Console.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package gwt.material.design.jscore.client.api;
1717

18+
import jsinterop.annotations.JsMethod;
1819
import jsinterop.annotations.JsProperty;
1920
import jsinterop.annotations.JsType;
2021

@@ -24,12 +25,18 @@
2425
* @author Cristian Rinaldi
2526
* <a href="mailto:[email protected]?Subject=JsCore">[email protected]</a>
2627
*/
27-
@JsType(isNative = true)
28+
@JsType(isNative = true, namespace = "console")
2829
public class Console {
2930

3031
@JsProperty
3132
public native MemoryInfo getMemory();
3233

34+
@JsMethod
3335
public native void log(Object... obj);
3436

37+
@JsMethod
38+
public native void table(Object obj);
39+
40+
@JsMethod
41+
public native void clear();
3542
}

0 commit comments

Comments
 (0)