Skip to content

Commit ff9f6a7

Browse files
author
seal
committed
release version 1.2
1 parent c5d938a commit ff9f6a7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ I am a plugin for Kotlin generate Kotlin data class code from a json string
66
I am a plugin for Kotlin to convert Json String into Kotlin data class code (Json to Kotlin)
77

88
### Update Log
9+
#### 1.2
10+
* Add support for generate anotations for target json lib --gson
11+
* Add Comment option to switch the comment content to append
12+
913
#### 1.1
1014
* Add property keyword config setting like ('var' or 'val'),the default keyword changed to 'val'.
1115

@@ -48,7 +52,6 @@ I am a plugin for Kotlin to convert Json String into Kotlin data class code (Jso
4852
* example with gson option on
4953

5054
```kotlin
51-
5255
data class FD(
5356
@SerializedName("214123addre++/-*ssbook") val addressbook: List<addressbook>
5457
)
@@ -64,7 +67,6 @@ I am a plugin for Kotlin to convert Json String into Kotlin data class code (Jso
6467
@SerializedName("*-/32432-*/4street") val street: List<String>,
6568
@SerializedName("zip") val zip: List<Int>
6669
)
67-
6870
```
6971

7072
### More Detail Document

resources/META-INF/plugin.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>wu.seal.tool.jsontokotlin</id>
33
<name>JsonToKotlinClass</name>
4-
<version>1.1.1</version>
4+
<version>1.2</version>
55
<vendor email="[email protected]" url="https://www.github.com/wuseal">Seal</vendor>
66

77
<description><![CDATA[
@@ -11,7 +11,8 @@
1111
]]></description>
1212

1313
<change-notes><![CDATA[
14-
Add property keyword config setting like ('var' or 'val'),the default keyword changed to 'val'.<br>
14+
* Add support for generate anotations for target json lib --gson<br>
15+
* Add Comment option to switch the comment content to append<br>
1516
]]>
1617
</change-notes>
1718

0 commit comments

Comments
 (0)