Skip to content

Commit 79621e3

Browse files
committed
🔖 Bump version
1 parent 09812e3 commit 79621e3

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
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.9.2
4+
5+
- Enhanced Python color scheme
6+
- Enhanced General color scheme
7+
- Enhanced Progress Bar
8+
39
### 1.9.1
410

511
- Adopt a new plugin icon

azure-pipelines.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ steps:
3333

3434
- task: Gradle@2
3535
inputs:
36+
gradleWrapperFile: 'gradlew'
3637
jdkVersionOption: '1.8'
3738
tasks: 'buildPlugin'
3839
displayName: 'Build plugin'
@@ -52,6 +53,7 @@ steps:
5253
- task: Gradle@2
5354
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
5455
inputs:
56+
gradleWrapperFile: 'gradlew'
5557
jdkVersionOption: '1.8'
5658
options: '-Djetbrains.username=$(jetbrains.username) -Djetbrains.token=$(jetbrains.token)'
5759
tasks: 'publishPlugin'

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "com.draculatheme"
11-
version = "1.9.1"
11+
version = "1.9.2"
1212

1313
tasks.withType<JavaCompile> {
1414
sourceCompatibility = "1.8"

scripts/readme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def build_readme(src: str, dest: str):
2121
# Set image widths
2222
img = soup.find('h2', text='Screenshots').find_next('p').find('img')
2323
img['src'] = 'https://raw.githubusercontent.com/dracula/jetbrains/master/screenshot.png'
24-
img['width'] = '700'
24+
img['width'] = '600'
2525
# Add margin above images
2626
for img in soup.find_all('img'):
2727
img.insert_before(soup.new_tag('br'))

src/main/kotlin/com/draculatheme/jetbrains/notifications/DraculaNotifications.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ import com.intellij.openapi.util.IconLoader
1010
object DraculaNotifications {
1111
private val releaseNote = """
1212
What's New?<br>
13-
- Adopt a new plugin icon<br>
13+
- Enhanced Python color scheme<br>
14+
- Enhanced General color scheme<br>
15+
- Enhanced Progress Bar<br>
1416
Please visit the <a href="https://github.com/dracula/jetbrains/blob/master/CHANGELOG.md">Changelog</a> for more details.<br>
1517
For premium package, please explore <a href="https://gumroad.com/a/477820019">Dracula PRO</a>.<br>
1618
Thank you for choosing Dracula.

0 commit comments

Comments
 (0)