diff --git a/README.md b/README.md
index dc57277..edccbdc 100644
--- a/README.md
+++ b/README.md
@@ -18,9 +18,9 @@ To start using this plugin:
### 1. Create profiles
Set up all the fonts sizes in your IDE. Plugin supports:
- 1. Default system font size;
- 2. Editor font size;
- 3. Console font size.
+ 1. Default system font size and type;
+ 2. Editor font size and type;
+ 3. Console font size and type.
Then go to **Settings > Appearance & Behavior > HDPI profiles > Add current profile** and save your profile.
diff --git a/build.gradle b/build.gradle
index 3983d36..72ab1ef 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,12 +1,11 @@
plugins {
id 'java'
- id 'org.jetbrains.intellij' version "0.2.12"
- id 'io.franzbecker.gradle-lombok' version '1.8'
+ id 'org.jetbrains.intellij' version "0.2.17"
id "org.jetbrains.kotlin.jvm" version "1.2.0"
}
group 'ms.konovalov.idea'
-version '2017.1.2-SNAPSHOT'
+version '2017.1.2'
sourceCompatibility = 1.8
targetCompatibility = 1.8
@@ -18,7 +17,7 @@ repositories {
apply plugin: 'org.jetbrains.intellij'
intellij {
- version '2017.1'
+ version '2017.3'
pluginName 'ms.konovalov.intellij.hidpi-profiles'
updateSinceUntilBuild = false
}
@@ -28,11 +27,6 @@ publishPlugin {
password project.hasProperty('publishPassword') ? project.property('publishPassword') : ''
}
-lombok {
- version = "1.16.8"
- sha256 = "fe32b29b7b33eb2b19866cbc5345c59c9984a6036cc396856a04c0d09f99ea68"
-}
-
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib"
}
diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml
index 89dee93..96c732f 100644
--- a/src/main/resources/META-INF/plugin.xml
+++ b/src/main/resources/META-INF/plugin.xml
@@ -6,23 +6,35 @@
- This plugin will be useful for Linux users with several displays of different resolutions.
+ This plugin might be useful for Linux users with several displays of different resolutions.
To start using this plugin:
1) Set up all the fonts sizes in your IDE. Plugin supports:
- - Default system font size;
- - Editor font size;
- - Console font size.
+ - Default system font size and type;
+ - Editor font size and type;
+ - Console font size and type.
- Then go to Settings > Appearance & Behavior > HDPI profiles > Add current profile and save your profile.
+ Then go to Settings > Appearance & Behavior > HIDPI profiles > Add current profile and save your profile.
+

2) Toggle between profiles in main menu "HIDPI profiles"
+

+
+ If you like my plugin and want to thank now you can
+ by me a beer
]]>
+ Version 2017.1.2:
+
+ - Now it is possible to save font family
+ - Fixed issue with Material Theme UI plugin
+ - Now profile deactivates automatically when you change one of corresponding settings
+ - Re-written with Kotlin
+
Version 2017.1.1:
- Support for Intellij IDEA 2017.1 and above