Skip to content

Commit 29e1138

Browse files
committed
update
0 parents  commit 29e1138

35 files changed

+10236
-0
lines changed

.gitignore

Lines changed: 293 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,293 @@
1+
# User-specific stuff
2+
.idea/
3+
4+
*.iml
5+
*.ipr
6+
*.iws
7+
8+
# IntelliJ
9+
out/
10+
# mpeltonen/sbt-idea plugin
11+
.idea_modules/
12+
13+
# JIRA plugin
14+
atlassian-ide-plugin.xml
15+
16+
# Compiled class file
17+
*.class
18+
19+
# Log file
20+
*.log
21+
22+
# BlueJ files
23+
*.ctxt
24+
25+
# Package Files #
26+
*.jar
27+
*.war
28+
*.nar
29+
*.ear
30+
*.zip
31+
*.tar.gz
32+
*.rar
33+
34+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
35+
hs_err_pid*
36+
37+
*~
38+
39+
# temporary files which can be created if a process still has a handle open of a deleted file
40+
.fuse_hidden*
41+
42+
# KDE directory preferences
43+
.directory
44+
45+
# Linux trash folder which might appear on any partition or disk
46+
.Trash-*
47+
48+
# .nfs files are created when an open file is removed but is still being accessed
49+
.nfs*
50+
51+
# General
52+
.DS_Store
53+
.AppleDouble
54+
.LSOverride
55+
56+
# Icon must end with two \r
57+
Icon
58+
59+
# Thumbnails
60+
._*
61+
62+
# Files that might appear in the root of a volume
63+
.DocumentRevisions-V100
64+
.fseventsd
65+
.Spotlight-V100
66+
.TemporaryItems
67+
.Trashes
68+
.VolumeIcon.icns
69+
.com.apple.timemachine.donotpresent
70+
71+
# Directories potentially created on remote AFP share
72+
.AppleDB
73+
.AppleDesktop
74+
Network Trash Folder
75+
Temporary Items
76+
.apdisk
77+
78+
# Windows thumbnail cache files
79+
Thumbs.db
80+
Thumbs.db:encryptable
81+
ehthumbs.db
82+
ehthumbs_vista.db
83+
84+
# Dump file
85+
*.stackdump
86+
87+
# Folder config file
88+
[Dd]esktop.ini
89+
90+
# Recycle Bin used on file shares
91+
$RECYCLE.BIN/
92+
93+
# Windows Installer files
94+
*.cab
95+
*.msi
96+
*.msix
97+
*.msm
98+
*.msp
99+
100+
# Windows shortcuts
101+
*.lnk
102+
103+
.gradle
104+
build/
105+
106+
# Ignore Gradle GUI config
107+
gradle-app.setting
108+
109+
# Cache of project
110+
.gradletasknamecache
111+
112+
**/build/
113+
114+
# Common working directory
115+
run/
116+
117+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
118+
!gradle-wrapper.jar
119+
120+
121+
# Local Test Launch point
122+
src/test/kotlin/RunTerminal.kt
123+
124+
# Mirai console files with direct bootstrap
125+
/config
126+
/data
127+
/plugins
128+
/bots
129+
130+
# Local Test Launch Point working directory
131+
/debug-sandbox
132+
### Java template
133+
# Compiled class file
134+
*.class
135+
136+
# Log file
137+
*.log
138+
139+
# BlueJ files
140+
*.ctxt
141+
142+
# Mobile Tools for Java (J2ME)
143+
.mtj.tmp/
144+
145+
# Package Files #
146+
*.jar
147+
*.war
148+
*.nar
149+
*.ear
150+
*.zip
151+
*.tar.gz
152+
*.rar
153+
154+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
155+
hs_err_pid*
156+
replay_pid*
157+
158+
### JetBrains template
159+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
160+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
161+
162+
# User-specific stuff
163+
.idea/**/workspace.xml
164+
.idea/**/tasks.xml
165+
.idea/**/usage.statistics.xml
166+
.idea/**/dictionaries
167+
.idea/**/shelf
168+
169+
# AWS User-specific
170+
.idea/**/aws.xml
171+
172+
# Generated files
173+
.idea/**/contentModel.xml
174+
175+
# Sensitive or high-churn files
176+
.idea/**/dataSources/
177+
.idea/**/dataSources.ids
178+
.idea/**/dataSources.local.xml
179+
.idea/**/sqlDataSources.xml
180+
.idea/**/dynamic.xml
181+
.idea/**/uiDesigner.xml
182+
.idea/**/dbnavigator.xml
183+
184+
# Gradle
185+
.idea/**/gradle.xml
186+
.idea/**/libraries
187+
188+
# Gradle and Maven with auto-import
189+
# When using Gradle or Maven with auto-import, you should exclude module files,
190+
# since they will be recreated, and may cause churn. Uncomment if using
191+
# auto-import.
192+
# .idea/artifacts
193+
# .idea/compiler.xml
194+
# .idea/jarRepositories.xml
195+
# .idea/modules.xml
196+
# .idea/*.iml
197+
# .idea/modules
198+
# *.iml
199+
# *.ipr
200+
201+
# CMake
202+
cmake-build-*/
203+
204+
# Mongo Explorer plugin
205+
.idea/**/mongoSettings.xml
206+
207+
# File-based project format
208+
*.iws
209+
210+
# IntelliJ
211+
out/
212+
213+
# mpeltonen/sbt-idea plugin
214+
.idea_modules/
215+
216+
# JIRA plugin
217+
atlassian-ide-plugin.xml
218+
219+
# Cursive Clojure plugin
220+
.idea/replstate.xml
221+
222+
# SonarLint plugin
223+
.idea/sonarlint/
224+
225+
# Crashlytics plugin (for Android Studio and IntelliJ)
226+
com_crashlytics_export_strings.xml
227+
crashlytics.properties
228+
crashlytics-build.properties
229+
fabric.properties
230+
231+
# Editor-based Rest Client
232+
.idea/httpRequests
233+
234+
# Android studio 3.1+ serialized cache file
235+
.idea/caches/build_file_checksums.ser
236+
237+
### Example user template template
238+
### Example user template
239+
240+
# IntelliJ project files
241+
.idea
242+
*.iml
243+
out
244+
gen
245+
### Gradle template
246+
.gradle
247+
**/build/
248+
!src/**/build/
249+
250+
# Ignore Gradle GUI config
251+
gradle-app.setting
252+
253+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
254+
!gradle-wrapper.jar
255+
256+
# Avoid ignore Gradle wrappper properties
257+
!gradle-wrapper.properties
258+
259+
# Cache of project
260+
.gradletasknamecache
261+
262+
# Eclipse Gradle plugin generated files
263+
# Eclipse Core
264+
.project
265+
# JDT-specific (Eclipse Java Development Tools)
266+
.classpath
267+
268+
### Kotlin template
269+
# Compiled class file
270+
*.class
271+
272+
# Log file
273+
*.log
274+
275+
# BlueJ files
276+
*.ctxt
277+
278+
# Mobile Tools for Java (J2ME)
279+
.mtj.tmp/
280+
281+
# Package Files #
282+
*.jar
283+
*.war
284+
*.nar
285+
*.ear
286+
*.zip
287+
*.tar.gz
288+
*.rar
289+
290+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
291+
hs_err_pid*
292+
replay_pid*
293+

.run/Run Mirai Console.run.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Run Mirai Console" type="GradleRunConfiguration" factoryName="Gradle" folderName="Mirai">
3+
<ExternalSystemSettings>
4+
<option name="env">
5+
<map>
6+
<entry key="--Dfile.encoding" value="UTF-8" />
7+
</map>
8+
</option>
9+
<option name="executionName" />
10+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
11+
<option name="externalSystemIdString" value="GRADLE" />
12+
<option name="scriptParameters" value="" />
13+
<option name="taskDescriptions">
14+
<list />
15+
</option>
16+
<option name="taskNames">
17+
<list>
18+
<option value=":runConsole" />
19+
</list>
20+
</option>
21+
<option name="vmOptions" />
22+
</ExternalSystemSettings>
23+
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
24+
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
25+
<DebugAllEnabled>false</DebugAllEnabled>
26+
<RunAsTest>false</RunAsTest>
27+
<method v="2" />
28+
</configuration>
29+
</component>

0 commit comments

Comments
 (0)