Skip to content

Commit e172f64

Browse files
authored
Merge pull request #35 from mayconsgs/main
Fix issues #33 and #34
2 parents f9d001b + aaa596c commit e172f64

File tree

3 files changed

+40
-10
lines changed

3 files changed

+40
-10
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ jobs:
3737
steps:
3838
# Setup Java 1.8 environment for the next steps
3939
- name: Setup Java
40-
uses: actions/setup-java@v1
40+
uses: actions/setup-java@v2
4141
with:
42-
java-version: 1.8
42+
distribution: 'zulu'
43+
java-version: '11'
4344

4445
# Check out current repository
4546
- name: Fetch Sources
@@ -81,9 +82,10 @@ jobs:
8182
steps:
8283
# Setup Java 1.8 environment for the next steps
8384
- name: Setup Java
84-
uses: actions/setup-java@v1
85+
uses: actions/setup-java@v2
8586
with:
86-
java-version: 1.8
87+
distribution: 'zulu'
88+
java-version: '11'
8789

8890
# Check out current repository
8991
- name: Fetch Sources
@@ -142,9 +144,10 @@ jobs:
142144
steps:
143145
# Setup Java 1.8 environment for the next steps
144146
- name: Setup Java
145-
uses: actions/setup-java@v1
147+
uses: actions/setup-java@v2
146148
with:
147-
java-version: 1.8
149+
distribution: 'zulu'
150+
java-version: '11'
148151

149152
# Check out current repository
150153
- name: Fetch Sources

gradle.properties

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
33
pluginGroup=com.github.getomni.jetbrains
44
pluginName=Omni Theme
5-
pluginVersion=0.1.3
5+
pluginVersion=0.1.4
6+
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
7+
# for insight into build numbers and IntelliJ Platform versions.
68
pluginSinceBuild=201.6668.113
79
pluginUntilBuild=212.*
8-
pluginVerifierIdeVersions=201.8743.12, 202.8194.7, 203.7148.57, 211.6693.111
10+
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
11+
# See https://jb.gg/intellij-platform-builds-list for available build versions.
12+
pluginVerifierIdeVersions=203.7148.57, 211.6693.111, 212.4746.92
13+
# Plugin Build Platform
914
platformType=IC
10-
platformVersion=2020.2.4
15+
platformVersion=2020.2
1116
platformDownloadSources=true
1217
platformPlugins=
1318
# Opt-out flag for bundling Kotlin standard library.

src/main/resources/Omni.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,6 +632,28 @@
632632
<option name="FOREGROUND" value="565666" />
633633
</value>
634634
</option>
635+
<option name="PHP_CONSTANT">
636+
<value>
637+
<option name="FOREGROUND" value="988BC7" />
638+
</value>
639+
</option>
640+
<option name="PHP_EXEC_COMMAND_ID">
641+
<value>
642+
<option name="FOREGROUND" value="E7DE79" />
643+
</value>
644+
</option>
645+
<option name="PHP_HEREDOC_CONTENT">
646+
<value>
647+
<option name="FOREGROUND" value="988BC7" />
648+
</value>
649+
</option>
650+
<option name="PHP_IDENTIFIER">
651+
<value>
652+
<option name="FOREGROUND" value="78D1E1" />
653+
</value>
654+
</option>
655+
<option name="PHP_PARAMETER" baseAttributes="DEFAULT_PARAMETER" />
656+
<option name="PHP_VAR" baseAttributes="DEFAULT_LOCAL_VARIABLE" />
635657
<option name="PROPERTIES.INVALID_STRING_ESCAPE" baseAttributes="DEFAULT_INVALID_STRING_ESCAPE" />
636658
<option name="PROPERTIES.KEY" baseAttributes="DEFAULT_KEYWORD" />
637659
<option name="PROPERTIES.KEY_VALUE_SEPARATOR" baseAttributes="DEFAULT_OPERATION_SIGN" />
@@ -749,4 +771,4 @@
749771
<option name="XPATH.XPATH_VARIABLE" baseAttributes="DEFAULT_LOCAL_VARIABLE" />
750772
<option name="YAML_ANCHOR" baseAttributes="DEFAULT_IDENTIFIER" />
751773
</attributes>
752-
</scheme>
774+
</scheme>

0 commit comments

Comments
 (0)