Skip to content

Commit

Permalink
1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vvatanabe committed Feb 19, 2021
1 parent 577de98 commit eb00275
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [1.4.0](https://github.com/nulab/zxcvbn4j/compare/1.3.6...1.4.0) (2021-02-18)

* Additional french translations [#89](https://github.com/nulab/zxcvbn4j/pull/89) ([er1c](https://github.com/er1c) and [vvatanabe](https://github.com/vvatanabe))
* added german translation [#88](https://github.com/nulab/zxcvbn4j/pull/88) ([echox](https://github.com/echox))

## [1.3.6](https://github.com/nulab/zxcvbn4j/compare/1.3.5...1.3.6) (2021-02-09)

* fix NumberFormatException in DateMatcher (#78) [#87](https://github.com/nulab/zxcvbn4j/pull/87) ([vvatanabe](https://github.com/vvatanabe))
Expand Down
15 changes: 12 additions & 3 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ zxcvbn4j は、JavaScriptのパスワード強度ジェネレータである[zxc

以下のバージョンは[zxcvbn 4.4.2](https://github.com/dropbox/zxcvbn/releases/tag/v4.4.2)をポーティング

* 2021/02/19 1.4.0 リリース.
* 2021/02/09 1.3.6 リリース.
* 2021/02/02 1.3.5 リリース.
* 2021/01/26 1.3.4 リリース.
Expand Down Expand Up @@ -62,7 +63,7 @@ zxcvbn4j は、JavaScriptのパスワード強度ジェネレータである[zxc
### gradle を利用する場合

```
compile 'com.nulab-inc:zxcvbn:1.3.6'
compile 'com.nulab-inc:zxcvbn:1.4.0'
```

### maven を利用する場合
Expand All @@ -71,7 +72,7 @@ compile 'com.nulab-inc:zxcvbn:1.3.6'
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.3.6</version>
<version>1.4.0</version>
</dependency>
```

Expand Down Expand Up @@ -181,6 +182,14 @@ String localizedWarning = localizedFeedback.getWarning();

プロパティファイルに定義するキーとメッセージは、[messages.properties](https://github.com/nulab/zxcvbn4j/blob/master/src/main/resources/com/nulabinc/zxcvbn/messages.properties) を参考に作成してください。

デフォルトでサポートしている言語:

- English ([default](./src/main/resources/com/nulabinc/zxcvbn/messages.properties))
- Japanese ([ja](./src/main/resources/com/nulabinc/zxcvbn/messages_ja.properties))
- Dutch ([nl](./src/main/resources/com/nulabinc/zxcvbn/messages_nl.properties))
- German ([de](./src/main/resources/com/nulabinc/zxcvbn/messages_de.properties))
- French ([fr](./src/main/resources/com/nulabinc/zxcvbn/messages_fr.properties))

## バグ報告やご意見

バグ報告, ご意見、ご質問等は [Github Issues](https://github.com/nulab/zxcvbn4j/issues) にお願い致します。
Expand All @@ -201,6 +210,6 @@ MIT License
- [Cacoo](https://cacoo.com/)
- [Typetalk](https://typetalk.com/)
- [JetBrains Hub](https://www.jetbrains.com/hub/)
- And many Open Source Softwares
- And many Open Source Software
- https://github.com/search?q=com.nulab-inc+zxcvbn&type=code
- https://mvnrepository.com/artifact/com.nulab-inc/zxcvbn/usages
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Through pattern matching and conservative estimation, it recognizes and weighs 3

The following version is a port of [zxcvbn 4.4.2](https://github.com/dropbox/zxcvbn/releases/tag/v4.4.2)

* 2021/02/19 1.4.0 released.
* 2021/02/09 1.3.6 released.
* 2021/02/02 1.3.5 released.
* 2021/01/26 1.3.4 released.
Expand Down Expand Up @@ -63,7 +64,7 @@ The following version is a port of [zxcvbn 4.2.0](https://github.com/dropbox/zxc
### gradle

```
compile 'com.nulab-inc:zxcvbn:1.3.6'
compile 'com.nulab-inc:zxcvbn:1.4.0'
```

### maven
Expand All @@ -72,7 +73,7 @@ compile 'com.nulab-inc:zxcvbn:1.3.6'
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>zxcvbn</artifactId>
<version>1.3.6</version>
<version>1.4.0</version>
</dependency>
```

Expand Down Expand Up @@ -196,6 +197,14 @@ String localizedWarning = localizedFeedback.getWarning();

Defined Key and the message in the properties file. Reference the [messages.properties](https://github.com/nulab/zxcvbn4j/blob/master/src/main/resources/com/nulabinc/zxcvbn/messages.properties).

Supported languages by default:

- English ([default](./src/main/resources/com/nulabinc/zxcvbn/messages.properties))
- Japanese ([ja](./src/main/resources/com/nulabinc/zxcvbn/messages_ja.properties))
- Dutch ([nl](./src/main/resources/com/nulabinc/zxcvbn/messages_nl.properties))
- German ([de](./src/main/resources/com/nulabinc/zxcvbn/messages_de.properties))
- French ([fr](./src/main/resources/com/nulabinc/zxcvbn/messages_fr.properties))

## Bugs and Feedback

For bugs, questions and discussions please use the [Github Issues](https://github.com/nulab/zxcvbn4j/issues).
Expand All @@ -217,6 +226,6 @@ MIT License
- [Typetalk](https://typetalk.com/)
- [JetBrains Hub](https://www.jetbrains.com/hub/)
- [Cryptomator](https://cryptomator.org/)
- And many Open Source Softwares
- And many Open Source Software
- https://github.com/search?q=com.nulab-inc+zxcvbn&type=code
- https://mvnrepository.com/artifact/com.nulab-inc/zxcvbn/usages
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'com.github.kt3k.coveralls'
apply from: 'dictionary.gradle'

group = 'com.nulab-inc'
version = '1.3.6'
version = '1.4.0'
archivesBaseName = 'zxcvbn'
sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down

0 comments on commit eb00275

Please sign in to comment.