Skip to content

Commit 49275b9

Browse files
committed
release 1.2.5
1 parent 433ff53 commit 49275b9

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ WebView 可谓是每个应用必备的一个控件了 ,但是它不是一个
4343
* Gradle
4444

4545
```
46-
compile 'com.just.agentweb:agentweb:1.2.4'
46+
compile 'com.just.agentweb:agentweb:1.2.5'
4747
```
4848
* Maven
4949

5050
```
5151
<dependency>
5252
<groupId>com.just.agentweb</groupId>
5353
<artifactId>agentweb</artifactId>
54-
<version>1.2.4</version>
54+
<version>1.2.5</version>
5555
<type>pom</type>
5656
</dependency>
5757

@@ -222,6 +222,7 @@ Java 注入类不要混淆 , 例如 sample 里面的 AndroidInterface 类 ,
222222
```
223223

224224
## 更新日志
225+
* v_1.2.5 提示信息支持配置
225226
* v_1.2.4 支持传入 IWebLayout ,可以完成下拉回弹效果 。
226227
* v_1.2.3 新增下载结果回调 。
227228
* v_1.2.2 修复已知 Bug 。

README_ENGLISH.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ Support | Simplicity | Support | Concise | Yes | Security | Support |
3939
* Gradle
4040

4141
```
42-
compile 'com.just.agentweb:agentweb:1.2.4'
42+
compile 'com.just.agentweb:agentweb:1.2.5'
4343
```
4444
* Maven
4545

4646
```
4747
<dependency>
4848
<groupId>com.just.agentweb</groupId>
4949
<artifactId>agentweb</artifactId>
50-
<version>1.2.4</version>
50+
<version>1.2.5</version>
5151
<type>pom</type>
5252
</dependency>
5353

@@ -212,6 +212,7 @@ Java injection class do not confuse, such as sample inside the AndroidInterface
212212
```
213213

214214
## Update log
215+
* V_1.2.5 Prompt information support settings
215216
* V_1.2.4 support incoming IWebLayout, you can complete the pull-down effect.
216217
* V_1.2.3 Added download result callback.
217218
* V_1.2.2 Fix known bugs.
@@ -246,7 +247,7 @@ An Android developer located in Shenzhen, if you have a better job offer availab
246247
## AgentWeb
247248
AgentWeb is a WebView completely out of the Act, from the Activity, Fragment xml layout, independent of the Android Web library.
248249

249-
### Finally, if the library is helpful to you, I may be grateful to the top right corner of my support, thanks! Of course, I prefer you to become a contributor to Fork PR. [AgentWeb] (https://github.com/Justson/ AgentWeb)
250+
#### Finally, if the library is helpful to you, I may be grateful to the top right corner of my support, thanks! Of course, I prefer you to become a contributor to Fork PR. [AgentWeb] (https://github.com/Justson/ AgentWeb)
250251

251252
## License
252253
```

library/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
dirs 'libs', 'providedLibs'
3030
}
3131
}
32-
defaultPublishConfig "debug"
32+
//defaultPublishConfig "debug"
3333

3434
}
3535

@@ -51,7 +51,7 @@ publish {
5151
userOrg = 'just'
5252
groupId = 'com.just.agentweb'
5353
artifactId = 'agentweb'
54-
version = '1.2.4'
54+
version = '1.2.5'
5555
description = 'very easy to build you web page'
5656
website = "https://github.com/Justson/AgentWeb"
5757
}

sample/src/main/java/com/just/library/agentweb/AgentWebFragment.java

-5
Original file line numberDiff line numberDiff line change
@@ -190,24 +190,19 @@ public void onActivityResult(int requestCode, int resultCode, Intent data) {
190190
protected void initView(View view) {
191191
mBackImageView = (ImageView) view.findViewById(R.id.iv_back);
192192
mLineView = view.findViewById(R.id.view_line);
193-
194193
mFinishImageView = (ImageView) view.findViewById(R.id.iv_finish);
195194
mTitleTextView = (TextView) view.findViewById(R.id.toolbar_title);
196-
197195
mBackImageView.setOnClickListener(mOnClickListener);
198196
mFinishImageView.setOnClickListener(mOnClickListener);
199-
200197
mMoreImageView = (ImageView) view.findViewById(R.id.iv_more);
201198
mMoreImageView.setOnClickListener(mOnClickListener);
202-
203199
pageNavigator(View.GONE);
204200
}
205201

206202

207203

208204
private void pageNavigator(int tag) {
209205

210-
// Log.i("Info", "TAG:" + tag);
211206
mBackImageView.setVisibility(tag);
212207
mLineView.setVisibility(tag);
213208
}

0 commit comments

Comments
 (0)