Skip to content

Commit 65f36bf

Browse files
authored
Merge pull request #2 from AleksandrSl/dev
1.0.0-eap-2
2 parents 0be00e1 + b83dce3 commit 65f36bf

File tree

3 files changed

+28
-21
lines changed

3 files changed

+28
-21
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
## [Unreleased]
66

7+
## [1.0.0-eap-2]
8+
### Added
9+
- Lowercase browser names in completion
10+
11+
### Fixed
12+
- Fix supported ides' version range
13+
714
## [1.0.0-eap-1]
815
### Fixed
916
- Fixed parsing of compare queries, when there are directly followed by numbers

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
pluginGroup = com.github.aleksandrsl.intellijbrowserslist
55
pluginName = intellij-browserslist
66
# SemVer format -> https://semver.org
7-
pluginVersion = 1.0.0-eap-1
7+
pluginVersion = 1.0.0-eap-2
88
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
# for insight into build numbers and IntelliJ Platform versions.
1010
pluginSinceBuild = 211
11-
pluginUntilBuild = 213.*
11+
pluginUntilBuild = 223.*
1212
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
1313
# See https://jb.gg/intellij-platform-builds-list for available build versions
1414
pluginVerifierIdeVersions = IC-2021.1.1, WS-2022.1.3

src/main/kotlin/com/github/aleksandrsl/intellijbrowserslist/completion/BrowserslistKeywordCompletionContributor.kt

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -36,26 +36,26 @@ class BrowserslistKeywordCompletionContributor : CompletionContributor(), DumbAw
3636
}
3737

3838
val TARGET_NAMES = listOf(
39-
"Android",
40-
"Baidu",
41-
"BlackBerry", "bb",
42-
"Chrome",
43-
"ChromeAndroid", "and_chr",
44-
"Edge",
39+
"Android", "android",
40+
"Baidu", "baidu",
41+
"BlackBerry", "blackberry", "bb",
42+
"Chrome", "chrome",
43+
"ChromeAndroid", "chromeandroid", "and_chr",
44+
"Edge", "edge",
4545
"electron",
46-
"Explorer", "ie",
47-
"ExplorerMobile", "ie_mob",
48-
"Firefox", "ff", "fx",
49-
"FirefoxAndroid", "and_ff",
50-
"iOS", "ios_saf",
51-
"Node",
52-
"Opera",
53-
"OperaMini", "op_mini",
54-
"OperaMobile", "op_mob",
55-
"QQAndroid", "and_qq",
56-
"Safari",
57-
"Samsung",
58-
"UCAndroid", "and_uc",
46+
"Explorer", "explorer", "ie",
47+
"ExplorerMobile", "explorermobile", "ie_mob",
48+
"Firefox", "firefox", "ff", "fx",
49+
"FirefoxAndroid", "firefoxandroid", "and_ff",
50+
"iOS", "ios", "ios_saf",
51+
"Node", "node",
52+
"Opera", "opera",
53+
"OperaMini", "operamini", "op_mini",
54+
"OperaMobile", "operamobile", "op_mob",
55+
"QQAndroid", "qqandroid", "and_qq",
56+
"Safari", "safari",
57+
"Samsung", "samsung",
58+
"UCAndroid", "ucandroid", "and_uc",
5959
"kaios"
6060
)
6161

0 commit comments

Comments
 (0)