Skip to content

Commit

Permalink
New version - second refactoring checkpoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
MER-C committed Feb 8, 2019
1 parent f6ac26a commit 5978b05
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ https://wikipediatools.appspot.com and other Wikipedia-related bits and pieces.
Requires JDK >= 1.8. For those using Java 9, only the java.base and java.logging
modules are required.

Latest stable version: [0.35](https://github.com/MER-C/wiki-java/releases/tag/0.35) --
Latest stable version: [0.36](https://github.com/MER-C/wiki-java/releases/tag/0.36) --
MediaWiki versions 1.31+

## Dependencies
Expand Down
11 changes: 10 additions & 1 deletion nbproject/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,24 @@ javac.classpath=\
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=false
javac.external.vm=false
javac.modulepath=
javac.processormodulepath=
javac.processorpath=\
${javac.classpath}
javac.source=1.8
javac.target=1.8
javac.test.classpath=\
${javac.classpath}:\
${build.classes.dir}:\
${libs.junit_4.classpath}
${libs.junit_5.classpath}
javac.test.modulepath=
javac.test.processorpath=\
${javac.test.classpath}
javadoc.additionalparam=
javadoc.author=false
javadoc.encoding=${source.encoding}
javadoc.html5=false
javadoc.noindex=false
javadoc.nonavbar=false
javadoc.notree=false
Expand All @@ -58,6 +63,8 @@ javadoc.splitindex=true
javadoc.use=true
javadoc.version=true
javadoc.windowtitle=
jlink.launcher=false
jlink.launcher.name=wiki-java
jnlp.codebase.type=no.codebase
jnlp.descriptor=application
jnlp.enabled=false
Expand All @@ -79,9 +86,11 @@ run.classpath=\
# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
# or test-sys-prop.name=value to set system properties for unit tests):
run.jvmargs=
run.modulepath=
run.test.classpath=\
${javac.test.classpath}:\
${build.test.classes.dir}
run.test.modulepath=
source.encoding=UTF-8
src.dir=src
test.test.dir=test
8 changes: 4 additions & 4 deletions src/org/wikipedia/Wiki.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @(#)Wiki.java 0.35 20/05/2018
* Copyright (C) 2007 - 2018 MER-C and contributors
* @(#)Wiki.java 0.36 08/02/2019
* Copyright (C) 2007 - 2019 MER-C and contributors
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -55,7 +55,7 @@
* tracker</a>.
*
* @author MER-C and contributors
* @version 0.35
* @version 0.36
*/
public class Wiki implements Comparable<Wiki>
{
Expand Down Expand Up @@ -383,7 +383,7 @@ public enum Gender
unknown;
}

private static final String version = "0.35";
private static final String version = "0.36";

// fundamental URL strings
private final String protocol, domain, scriptPath;
Expand Down
4 changes: 2 additions & 2 deletions test/org/wikipedia/WikiTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @(#)WikiTest.java 0.35 20/05/2018
* Copyright (C) 2014-2018 MER-C
* @(#)WikiTest.java 0.36 08/02/2019
* Copyright (C) 2014-2019 MER-C
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down

0 comments on commit 5978b05

Please sign in to comment.