Skip to content
This repository was archived by the owner on Sep 30, 2023. It is now read-only.

Commit 3d9ac5f

Browse files
committed
Release
1 parent 0992db1 commit 3d9ac5f

File tree

22 files changed

+983
-360
lines changed

22 files changed

+983
-360
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# These are explicitly windows files and should use crlf
5+
*.bat text eol=crlf
6+

.gitignore

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1+
### Gradle ###
2+
.gradle/
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
7+
18
### IntelliJ IDEA ###
29
.idea/
310
*.iws
411
*.iml
512
*.ipr
13+
out/
14+
!**/src/main/**/out/
15+
!**/src/test/**/out/
616

717
### Eclipse ###
818
.apt_generated
@@ -12,28 +22,19 @@
1222
.settings
1323
.springBeans
1424
.sts4-cache
25+
bin/
26+
!**/src/main/**/bin/
27+
!**/src/test/**/bin/
1528

1629
### NetBeans ###
1730
/nbproject/private/
1831
/nbbuild/
1932
/dist/
2033
/nbdist/
2134
/.nb-gradle/
22-
build/
23-
!**/src/main/**/build/
24-
!**/src/test/**/build/
2535

2636
### VS Code ###
2737
.vscode/
2838

2939
### Mac OS ###
30-
.DS_Store
31-
32-
### Maven ###
33-
target/
34-
!.mvn/wrapper/maven-wrapper.jar
35-
!**/src/main/**/target/
36-
!**/src/test/**/target/
37-
38-
### Gradle ###
39-
.gradle/
40+
.DS_Store

.run/Run Application.run.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

assets/legacy/icons/icon.ico

-31.3 KB
Binary file not shown.

assets/legacy/icons/icon.png

-1.99 KB
Binary file not shown.

assets/legacy/icons/options.png

-9.07 KB
Binary file not shown.

assets/legacy/preview.png

-9.71 KB
Binary file not shown.
-41.1 KB
Binary file not shown.

assets/preview.png

-10 KB
Binary file not shown.

build.gradle

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
plugins {
2+
id 'application'
3+
id 'com.github.johnrengelman.shadow' version '8.1.1'
4+
id 'java'
5+
}
6+
7+
group = 'com.hedreon'
8+
version = '1.0'
9+
10+
repositories {
11+
mavenCentral()
12+
}
13+
14+
dependencies {
15+
implementation 'org.eclipse.swt:org.eclipse.swt.win32.win32.x86_64:4.3'
16+
implementation 'org.eclipse.swt:org.eclipse.swt.gtk.linux.x86_64:4.3'
17+
implementation 'org.eclipse.swt:org.eclipse.swt.cocoa.macosx.x86_64:4.3'
18+
}
19+
20+
application {
21+
mainClass = 'com.hedreon.generator.Main'
22+
}
23+
24+
jar {
25+
manifest {
26+
attributes 'Main-Class': application.mainClass
27+
}
28+
}

0 commit comments

Comments
 (0)