Skip to content

Commit

Permalink
Merge branch 'release/V0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
timurbabs committed Jun 5, 2021
2 parents d661459 + 80a54c8 commit ceb13b1
Show file tree
Hide file tree
Showing 1,271 changed files with 28,604 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Java CI with Gradle

on:
pull_request:
branches:
- '*'
push:
branches:
- 'master'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
env:
URL: ${{ secrets.URL }}
run: ./gradlew build
Binary file added .gradle/6.8/executionHistory/executionHistory.bin
Binary file not shown.
Binary file added .gradle/6.8/executionHistory/executionHistory.lock
Binary file not shown.
Binary file added .gradle/6.8/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/6.8/fileHashes/fileHashes.bin
Binary file not shown.
Binary file added .gradle/6.8/fileHashes/fileHashes.lock
Binary file not shown.
Binary file added .gradle/6.8/fileHashes/resourceHashesCache.bin
Binary file not shown.
Empty file added .gradle/6.8/gc.properties
Empty file.
Binary file added .gradle/6.8/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file added .gradle/6.8/javaCompile/jarAnalysis.bin
Binary file not shown.
Binary file added .gradle/6.8/javaCompile/javaCompile.lock
Binary file not shown.
Binary file added .gradle/6.8/javaCompile/taskHistory.bin
Binary file not shown.
Binary file added .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 2 additions & 0 deletions .gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Tue May 18 01:16:43 MSK 2021
gradle.version=6.8
Binary file added .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file added .gradle/checksums/checksums.lock
Binary file not shown.
Binary file added .gradle/checksums/md5-checksums.bin
Binary file not shown.
Binary file added .gradle/checksums/sha1-checksums.bin
Binary file not shown.
Empty file.
Empty file added .gradle/vcs-1/gc.properties
Empty file.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 65 additions & 0 deletions .idea/libraries-with-intellij-classes.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# IntelliJ-Translator
comming soon...
28 changes: 28 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.7.3'
}

group 'com.devtools.java'
version '1.0-SNAPSHOT'

repositories {
mavenCentral()
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}

test {
useJUnitPlatform()
}

intellij {
version '2021.1.1'
}

patchPluginXml {
changeNotes """ """
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added build/classes/java/main/actions/InputPopup.class
Binary file not shown.
Binary file not shown.
Binary file added build/classes/java/main/actions/Popup.class
Binary file not shown.
Binary file added build/classes/java/main/actions/Replacing.class
Binary file not shown.
Binary file added build/classes/java/main/forms/Titles.class
Binary file not shown.
Binary file not shown.
Binary file added build/classes/java/main/icons/DemoPluginIcons.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added build/classes/java/main/translators/Translator.class
Binary file not shown.
Binary file not shown.
Binary file added build/classes/java/test/APITests.class
Binary file not shown.
Binary file not shown.
5 changes: 5 additions & 0 deletions build/idea-sandbox/config/options/updates.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<application>
<component name="UpdatesConfigurable">
<option name="CHECK_NEEDED" value="false"/>
</component>
</application>
Empty file.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit ceb13b1

Please sign in to comment.