Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mskonovalov committed Dec 18, 2017
1 parent 72f54bd commit 3be1ba8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
12 changes: 3 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
}
Expand All @@ -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"
}
22 changes: 17 additions & 5 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,35 @@

<description><![CDATA[
Plugin provides possibility to create several UI profiles for different screen resolutions and easily toggle between them.<br/>
This plugin will be useful for Linux users with several displays of different resolutions.<br/>
This plugin might be useful for Linux users with several displays of different resolutions.<br/>
<br/>
To start using this plugin:<br/>
1) Set up all the fonts sizes in your IDE. Plugin supports:<br/>
<ul>
<li>Default system font size;</li>
<li>Editor font size;</li>
<li>Console font size.</li>
<li>Default system font size and type;</li>
<li>Editor font size and type;</li>
<li>Console font size and type.</li>
</ul>
Then go to <b>Settings > Appearance & Behavior > HDPI profiles > Add current profile</b> and save your profile.<br/>
Then go to <b>Settings > Appearance & Behavior > HIDPI profiles > Add current profile</b> and save your profile.<br/>
<br/>
<img src="https://github.com/mskonovalov/intellij-hidpi-profiles/raw/2017.1/_preview/create_profile.gif"/><br/>
<br/>
2) Toggle between profiles in main menu "HIDPI profiles"<br/>
<br/>
<img src="https://github.com/mskonovalov/intellij-hidpi-profiles/raw/2017.1/_preview/switch_profile.gif"/><br/>
<br/>
If you like my plugin and want to thank now you can
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=A4M96N5FM5GGY&lc=US&item_name=HIDPI+Profiles+Development&no_note=0&curency_code=USD&bn=PP-DonationsBF:btn_donateCC_LG.gif:NonHosted">by me a beer</a>
]]></description>

<change-notes><![CDATA[<html>
<b>Version 2017.1.2:</b>
<ul>
<li>Now it is possible to save font family</li>
<li>Fixed issue with Material Theme UI plugin</li>
<li>Now profile deactivates automatically when you change one of corresponding settings</li>
<li>Re-written with Kotlin</li>
</ul>
<b>Version 2017.1.1:</b>
<ul>
<li>Support for Intellij IDEA 2017.1 and above</li>
Expand Down

0 comments on commit 3be1ba8

Please sign in to comment.