File tree Expand file tree Collapse file tree 6 files changed +44
-7
lines changed
src/main/java/gwt/material/design/client/base/viewport Expand file tree Collapse file tree 6 files changed +44
-7
lines changed Original file line number Diff line number Diff line change 88 - $HOME/.m2
99before_install :
1010# install the gwt-material-jquery because it will depends on built in jquery
11- - git clone -b release_2.7.0 https://github.com/GwtMaterialDesign/gwt-material-jquery.git
11+ - git clone -b release_2.7.1 https://github.com/GwtMaterialDesign/gwt-material-jquery.git
1212- cd gwt-material-jquery
1313- mvn install -DskipTests=true -DdryRun=true
1414- cd ..
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -ev
3- if [ " $TRAVIS_JDK_VERSION " == " oraclejdk8" ] && [ " $TRAVIS_PULL_REQUEST " == " false" ] && [ " $TRAVIS_BRANCH " == " release_2.7.0 " ]; then
3+ if [ " $TRAVIS_JDK_VERSION " == " oraclejdk8" ] && [ " $TRAVIS_PULL_REQUEST " == " false" ] && [ " $TRAVIS_BRANCH " == " release_2.7.1 " ]; 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 -DskipTests --settings ~ /settings.xml
66fi
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ Support documentation can be found [here](https://github.com/GwtMaterialDesign/g
2020We created <a href =" http://gwtmaterialdesign.github.io/gwt-material-demo/apidocs " > Java Docs </a > for developers
2121
2222## Maven
23- ### Current Version 2.7.0
23+ ### Current Version 2.7.1
2424``` xml
2525<dependency >
2626 <groupId >com.github.gwtmaterialdesign</groupId >
2727 <artifactId >gwt-material</artifactId >
28- <version >2.7.0 </version >
28+ <version >2.7.1 </version >
2929</dependency >
3030```
3131### Snapshot Version 2.8.0-SNAPSHOT
Original file line number Diff line number Diff line change 44 <parent >
55 <artifactId >gwt-material-parent</artifactId >
66 <groupId >com.github.gwtmaterialdesign</groupId >
7- <version >2.7.0 </version >
7+ <version >2.7.1 </version >
88 </parent >
99 <modelVersion >4.0.0</modelVersion >
1010
Original file line number Diff line number Diff line change 1+ /*
2+ * #%L
3+ * GwtMaterial
4+ * %%
5+ * Copyright (C) 2015 - 2023 GwtMaterialDesign
6+ * %%
7+ * Licensed under the Apache License, Version 2.0 (the "License");
8+ * you may not use this file except in compliance with the License.
9+ * You may obtain a copy of the License at
10+ *
11+ * http://www.apache.org/licenses/LICENSE-2.0
12+ *
13+ * Unless required by applicable law or agreed to in writing, software
14+ * distributed under the License is distributed on an "AS IS" BASIS,
15+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ * See the License for the specific language governing permissions and
17+ * limitations under the License.
18+ * #L%
19+ */
20+ package gwt .material .design .client .base .viewport ;
21+
22+ public interface ViewPortZoomHandler {
23+
24+ void load ();
25+
26+ void unload ();
27+
28+ double getCurrentViewportRatio ();
29+
30+ double getMaxViewPortRatio ();
31+
32+ void scale ();
33+
34+ boolean isOutOfZoomLevel ();
35+
36+ void resetZoom ();
37+ }
Original file line number Diff line number Diff line change 55
66 <groupId >com.github.gwtmaterialdesign</groupId >
77 <artifactId >gwt-material-parent</artifactId >
8- <version >2.7.0 </version >
8+ <version >2.7.1 </version >
99 <packaging >pom</packaging >
1010 <modules >
1111 <module >gwt-material</module >
7575 <
connection >scm:git:
[email protected] :GwtMaterialDesign/gwt-material.git</
connection >
7676 <
developerConnection >scm:git:
[email protected] :GwtMaterialDesign/gwt-material.git</
developerConnection >
7777 <url >http://github.com/GwtMaterialDesign/gwt-material</url >
78- <tag >v2.7.0 </tag >
78+ <tag >v2.7.1 </tag >
7979 </scm >
8080
8181 <licenses >
You can’t perform that action at this time.
0 commit comments