File tree Expand file tree Collapse file tree 5 files changed +180
-70
lines changed
src/main/resources/META-INF Expand file tree Collapse file tree 5 files changed +180
-70
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ### 1.6.3
4+
5+ - Improve Language Default color scheme
6+ - Add ScrollBar color (only for macOS)
7+ - Use thinner Tab Underline
8+
39### 1.6.2
410
511- Fix Kotlin color scheme
Original file line number Diff line number Diff line change @@ -17,9 +17,8 @@ All instructions can be found at [draculatheme.com/jetbrains](https://draculathe
1717
1818## Tips
1919
20- - For fancy icons, install plugin [ Atom Material Icons] ( https://plugins.jetbrains.com/plugin/10044-atom-material-icons/ ) .
21- - Font recommendation: [ Cascadia Code] ( https://github.com/microsoft/cascadia-code )
22- - Legacy JetBrains IDEs(** 2018 or earlier** ) support: [ legacy theme] ( https://github.com/dracula/jetbrains-legacy ) .
20+ - Font Recommendation: [ Cascadia Code] ( https://github.com/microsoft/cascadia-code )
21+ - For Legacy JetBrains IDEs(** 2018 or earlier** ): [ Legacy Theme] ( https://github.com/dracula/jetbrains-legacy ) .
2322
2423## Contribution
2524
Original file line number Diff line number Diff line change 11plugins {
2- id ' org.jetbrains.intellij' version ' 0.4.17 '
2+ id ' org.jetbrains.intellij' version ' 0.4.18 '
33}
44
55group ' com.vermouthx'
6- version ' 1.6.2 '
6+ version ' 1.6.3 '
77
88repositories {
99 mavenCentral()
1010}
1111
1212intellij {
13- version ' 2019.3.4 '
13+ version ' 2020.1 '
1414}
1515
1616patchPluginXml {
Original file line number Diff line number Diff line change 1313 soup = BeautifulSoup (html , 'html.parser' )
1414 # Reconstruct title
1515 new_title = soup .new_tag ('p' )
16- new_title .string = "😱 A dark theme for JetBrains IDEs"
16+ new_title .string = 'A Dark Theme for JetBrains IDEs'
1717 soup .find ('h1' ).replace_with (new_title )
1818 # Remove badges
1919 blockquote_h2 = soup .find ('blockquote' )
3535 for p in team_h2 .find_all_next ('p' , limit = 2 ):
3636 p .decompose ()
3737 team_h2 .decompose ()
38+ # Replace Contribution Guide URL
39+ contribution_h2 = soup .find ('h2' , text = "Contribution" )
40+ contribution_guide_link = contribution_h2 .find_next ('p' ).find ('a' )
41+ contribution_guide_link ['href' ] = 'https://github.com/dracula/jetbrains/blob/master/CONTRIBUTING.md'
3842 # Remove license
3943 license_h2 = soup .find ('h2' , text = 'License' )
4044 license_h2 .find_next ('p' ).decompose ()
You can’t perform that action at this time.
0 commit comments