Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [2.2.1]

- fix: IDE error: Cannot read field "x" because "nd" is null ([#149](https://github.com/crowdin/android-studio-plugin/pull/149))

## [2.2.0]

- feat: option to skip special chars escape ([#144](https://github.com/crowdin/android-studio-plugin/pull/144))
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'com.crowdin.crowdin-idea'
version '2.2.0'
version '2.2.1'

sourceCompatibility = '17'

Expand Down Expand Up @@ -40,7 +40,7 @@ intellij {
}
patchPluginXml {
changeNotes = """
- Add escape_special_characters option support"""
- Bug fixes"""
}

wrapper {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin>
<id>com.crowdin.crowdin-idea</id>
<name>Crowdin</name>
<version>2.2.0</version>
<version>2.2.1</version>
<!-- https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#platformVersions-->
<!-- https://www.jetbrains.com/idea/download/other.html-->
<idea-version since-build="222.*"/>
Expand Down