Skip to content

Commit

Permalink
update version to 0.60
Browse files Browse the repository at this point in the history
  • Loading branch information
dipoo committed Mar 25, 2015
1 parent f30a66d commit 9551092
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/org/arong/egdownloader/model/Setting.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Setting {

private String id = UUID.randomUUID().toString();
private String defaultSaveDir = "save";//默认保存路劲
private boolean saveAsName;//是否以真实名称保存
private boolean saveAsName = true;//是否以真实名称保存
private boolean autoDownload;//创建任务后是否自动下载
private int maxThread = 5;
private String cookieInfo = "igneous=4baadb8381b3bb5c20257b33b725e4ec93f51b4fe2ab7e97621c9fe260bbda7de47a44d6394b31783a0af329a20197c80d2ab687ccf0b667ca5c558ee1b9310b;ipb_member_id=1059070;ipb_pass_hash=e8e36f507753214279ee9df5d98c476c;";
Expand Down
2 changes: 1 addition & 1 deletion src/org/arong/egdownloader/ui/ComponentConst.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public final class ComponentConst {
Version.AUTHOR + "</b><br>版&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;本:<b>" +
Version.VERSION +"</b><br>更新时间:<b>" + Version.MODIFLIED +
"</b><br>项目地址:<a href='https://github.com/dipoo/egdownloader'>https://github.com/dipoo/egdownloader</a>" +
"<br/><font color='blue'>有任何问题,请到项目托管地址发issue。</font>";
"<br/><font color='blue'>有任何问题,请到项目托管地址发issue。如果eh网页改版,请通知我更新脚本^_^</font>";
public final static String SCRIPT_DESC_TEXT = "<div style='font-size:10px;color:#666;'>目前脚本解析系统只支持javascript脚本,共需要三个脚本文件,分别用于任务信息解析,图片列表解析和图片真实地址解析," +
"可以在上面指定具体的脚本路径。系统提供给js脚本中一个参数:<font color='red'>htmlSource</font>,代表网页源码(任务解析,图片列表解析的是主页面源码,真实地址解析的是图片浏览页面源码,搜索漫画的是首页源码),你需要" +
"返回各自所需的信息:<br>" +
Expand Down
2 changes: 1 addition & 1 deletion src/org/arong/egdownloader/ui/window/AboutMenuWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AboutMenuWindow extends JDialog {
*/
public AboutMenuWindow(final JFrame mainWindow) {
// 设置主窗口
this.setSize(340, 200);
this.setSize(340, 250);
this.setIconImage(new ImageIcon(getClass().getResource(ComponentConst.ICON_PATH + ComponentConst.SKIN_NUM + ComponentConst.SKIN_ICON.get("user"))).getImage());
this.setTitle("about");
this.setVisible(true);
Expand Down
6 changes: 3 additions & 3 deletions src/org/arong/egdownloader/version/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ public final class Version {
// 程序名
public final static String NAME = "EG下载器";
// 程序版本号
public final static String VERSION = "0.55";
public final static String VERSION = "0.60";
// 程序作者
public final static String AUTHOR = "阿荣";
public final static String AUTHOR = "dipoo";
// 程序最后修改时间
public final static String MODIFLIED = "2015-01-13";
public final static String MODIFLIED = "2015-03-25";

}

0 comments on commit 9551092

Please sign in to comment.