File tree 5 files changed +10
-4
lines changed 5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 3.0.0] (2023-03-24)
8
+
7
9
### Added
8
10
- Supported OpenAI ChatGPT translator. [ #118 ] ( https://github.com/Airsaid/AndroidLocalizePlugin/pull/118 )
9
11
140
142
## [ 1.0.0] (2018-09-24)
141
143
- Initial release of the plugin.
142
144
143
- [ Unreleased ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.9.0...HEAD
145
+ [ Unreleased ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v3.0.0...HEAD
146
+ [ 3.0.0 ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.9.0...v3.0.0
144
147
[ 2.9.0 ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.8.0...v2.9.0
145
148
[ 2.8.0 ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.7.0...v2.8.0
146
149
[ 2.7.0 ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.6.1...v2.7.0
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Android localization plugin. supports multiple languages and multiple translator
18
18
- Youdao translator.
19
19
- Ali translator.
20
20
- DeepL translator.
21
+ - OpenAI ChatGPT translator.
21
22
- Supports up to 100+ languages.
22
23
- One key generates all translation files.
23
24
- Support no translation of existing string.
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ Android 本地化插件,支持多种语言和翻译器。
17
17
- 有道翻译。
18
18
- 阿里翻译。
19
19
- DeepL 翻译。
20
+ - OpenAI ChatGPT 翻译。
20
21
- 支持最多 100+ 语言。
21
22
- 一键生成所有翻译文件。
22
23
- 支持不翻译已经存在的 string。
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ intellij {
33
33
34
34
// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
35
35
changelog {
36
- groups.set(emptyList() )
37
- version .set(properties( " pluginVersion " ) )
38
- header .set(" [ ${version.get()} ] ( ${date()} ) " )
36
+ groups.empty( )
37
+ header .set(provider { " ${version.get()} ( ${date()} ) " } )
38
+ repositoryUrl .set(properties( " pluginRepositoryUrl " ) )
39
39
}
40
40
41
41
tasks {
Original file line number Diff line number Diff line change 3
3
4
4
pluginGroup = com.airsaid
5
5
pluginName = AndroidLocalize
6
+ pluginRepositoryUrl = https://github.com/Airsaid/AndroidLocalizePlugin
6
7
# SemVer format -> https://semver.org
7
8
pluginVersion = 3.0.0
8
9
You can’t perform that action at this time.
0 commit comments