Skip to content

Commit 1f311bb

Browse files
isturdyisturdy
authored andcommitted
Initial commit
0 parents  commit 1f311bb

30 files changed

+838
-0
lines changed

.gitignore

Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
2+
# SS-specific stuff
3+
releases/**
4+
5+
# OS X
6+
.DS_Store
7+
8+
# Created by https://www.gitignore.io/api/java,kotlin,intellij
9+
# Edit at https://www.gitignore.io/?templates=java,kotlin,intellij
10+
11+
### Intellij ###
12+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
13+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
14+
15+
# User-specific stuff
16+
.idea/**/workspace.xml
17+
.idea/**/tasks.xml
18+
.idea/**/usage.statistics.xml
19+
.idea/**/dictionaries
20+
.idea/**/shelf
21+
22+
# Generated files
23+
.idea/**/contentModel.xml
24+
25+
# Sensitive or high-churn files
26+
.idea/**/dataSources/
27+
.idea/**/dataSources.ids
28+
.idea/**/dataSources.local.xml
29+
.idea/**/sqlDataSources.xml
30+
.idea/**/dynamic.xml
31+
.idea/**/uiDesigner.xml
32+
.idea/**/dbnavigator.xml
33+
34+
# Gradle
35+
.idea/**/gradle.xml
36+
.idea/**/libraries
37+
38+
# Gradle and Maven with auto-import
39+
# When using Gradle or Maven with auto-import, you should exclude module files,
40+
# since they will be recreated, and may cause churn. Uncomment if using
41+
# auto-import.
42+
# .idea/modules.xml
43+
# .idea/*.iml
44+
# .idea/modules
45+
46+
# CMake
47+
cmake-build-*/
48+
49+
# Mongo Explorer plugin
50+
.idea/**/mongoSettings.xml
51+
52+
# File-based project format
53+
*.iws
54+
55+
# IntelliJ
56+
out/
57+
58+
# mpeltonen/sbt-idea plugin
59+
.idea_modules/
60+
61+
# JIRA plugin
62+
atlassian-ide-plugin.xml
63+
64+
# Cursive Clojure plugin
65+
.idea/replstate.xml
66+
67+
# Crashlytics plugin (for Android Studio and IntelliJ)
68+
com_crashlytics_export_strings.xml
69+
crashlytics.properties
70+
crashlytics-build.properties
71+
fabric.properties
72+
73+
# Editor-based Rest Client
74+
.idea/httpRequests
75+
76+
# Android studio 3.1+ serialized cache file
77+
.idea/caches/build_file_checksums.ser
78+
79+
### Intellij Patch ###
80+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
81+
82+
# *.iml
83+
# modules.xml
84+
# .idea/misc.xml
85+
# *.ipr
86+
87+
# Sonarlint plugin
88+
.idea/sonarlint
89+
90+
### Java ###
91+
# Compiled class file
92+
*.class
93+
94+
# Log file
95+
*.log
96+
97+
# BlueJ files
98+
*.ctxt
99+
100+
# Mobile Tools for Java (J2ME)
101+
.mtj.tmp/
102+
103+
# Package Files #
104+
*.jar
105+
*.war
106+
*.nar
107+
*.ear
108+
*.zip
109+
*.tar.gz
110+
*.rar
111+
112+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
113+
hs_err_pid*
114+
115+
### Kotlin ###
116+
# Compiled class file
117+
118+
# Log file
119+
120+
# BlueJ files
121+
122+
# Mobile Tools for Java (J2ME)
123+
124+
# Package Files #
125+
126+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
127+
128+
# End of https://www.gitignore.io/api/java,kotlin,intellij
129+
130+
131+
# Created by https://www.gitignore.io/api/gradle
132+
# Edit at https://www.gitignore.io/?templates=gradle
133+
134+
### Gradle ###
135+
.gradle
136+
/build/
137+
138+
# Ignore Gradle GUI config
139+
gradle-app.setting
140+
141+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
142+
!gradle-wrapper.jar
143+
144+
# Cache of project
145+
.gradletasknamecache
146+
147+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
148+
# gradle/wrapper/gradle-wrapper.properties
149+
150+
### Gradle Patch ###
151+
**/build/
152+
153+
# End of https://www.gitignore.io/api/gradle
154+
155+
# Let's NOT commit Starsector's jar files...
156+
starfarer-api-1.0.jar
157+
starfarer-api-1.0-sources.jar

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/automatic-orders.iml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/google-java-format.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 Ian Sturdy
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)