Skip to content

Commit

Permalink
Merge pull request #35 from mayconsgs/main
Browse files Browse the repository at this point in the history
Fix issues #33 and #34
  • Loading branch information
mayconsgs committed Aug 13, 2021
2 parents f9d001b + aaa596c commit e172f64
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 10 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ jobs:
steps:
# Setup Java 1.8 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
java-version: '11'

# Check out current repository
- name: Fetch Sources
Expand Down Expand Up @@ -81,9 +82,10 @@ jobs:
steps:
# Setup Java 1.8 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
java-version: '11'

# Check out current repository
- name: Fetch Sources
Expand Down Expand Up @@ -142,9 +144,10 @@ jobs:
steps:
# Setup Java 1.8 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
java-version: '11'

# Check out current repository
- name: Fetch Sources
Expand Down
11 changes: 8 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
pluginGroup=com.github.getomni.jetbrains
pluginName=Omni Theme
pluginVersion=0.1.3
pluginVersion=0.1.4
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild=201.6668.113
pluginUntilBuild=212.*
pluginVerifierIdeVersions=201.8743.12, 202.8194.7, 203.7148.57, 211.6693.111
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions.
pluginVerifierIdeVersions=203.7148.57, 211.6693.111, 212.4746.92
# Plugin Build Platform
platformType=IC
platformVersion=2020.2.4
platformVersion=2020.2
platformDownloadSources=true
platformPlugins=
# Opt-out flag for bundling Kotlin standard library.
Expand Down
24 changes: 23 additions & 1 deletion src/main/resources/Omni.xml
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,28 @@
<option name="FOREGROUND" value="565666" />
</value>
</option>
<option name="PHP_CONSTANT">
<value>
<option name="FOREGROUND" value="988BC7" />
</value>
</option>
<option name="PHP_EXEC_COMMAND_ID">
<value>
<option name="FOREGROUND" value="E7DE79" />
</value>
</option>
<option name="PHP_HEREDOC_CONTENT">
<value>
<option name="FOREGROUND" value="988BC7" />
</value>
</option>
<option name="PHP_IDENTIFIER">
<value>
<option name="FOREGROUND" value="78D1E1" />
</value>
</option>
<option name="PHP_PARAMETER" baseAttributes="DEFAULT_PARAMETER" />
<option name="PHP_VAR" baseAttributes="DEFAULT_LOCAL_VARIABLE" />
<option name="PROPERTIES.INVALID_STRING_ESCAPE" baseAttributes="DEFAULT_INVALID_STRING_ESCAPE" />
<option name="PROPERTIES.KEY" baseAttributes="DEFAULT_KEYWORD" />
<option name="PROPERTIES.KEY_VALUE_SEPARATOR" baseAttributes="DEFAULT_OPERATION_SIGN" />
Expand Down Expand Up @@ -749,4 +771,4 @@
<option name="XPATH.XPATH_VARIABLE" baseAttributes="DEFAULT_LOCAL_VARIABLE" />
<option name="YAML_ANCHOR" baseAttributes="DEFAULT_IDENTIFIER" />
</attributes>
</scheme>
</scheme>

0 comments on commit e172f64

Please sign in to comment.