Skip to content

Commit 14308a2

Browse files
committed
Release: bump to v1.6.3
1 parent ef55cfb commit 14308a2

File tree

5 files changed

+180
-70
lines changed

5 files changed

+180
-70
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
plugins {
2-
id 'org.jetbrains.intellij' version '0.4.17'
2+
id 'org.jetbrains.intellij' version '0.4.18'
33
}
44

55
group 'com.vermouthx'
6-
version '1.6.2'
6+
version '1.6.3'
77

88
repositories {
99
mavenCentral()
1010
}
1111

1212
intellij {
13-
version '2019.3.4'
13+
version '2020.1'
1414
}
1515

1616
patchPluginXml {

scripts/readme.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
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')
@@ -35,6 +35,10 @@
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()
Lines changed: 164 additions & 63 deletions
Loading

0 commit comments

Comments
 (0)