Skip to content

Commit c5ae8a9

Browse files
authored
Player profile cache and name resolution (#59)
2 parents 657329c + ccaca11 commit c5ae8a9

26 files changed

+1099
-520
lines changed

.gitignore

Lines changed: 0 additions & 115 deletions
Original file line numberDiff line numberDiff line change
@@ -1,116 +1 @@
1-
# User-specific stuff
2-
.idea/
3-
4-
*.iml
5-
*.ipr
6-
*.iws
7-
8-
# IntelliJ
9-
out/
10-
11-
# Compiled class file
12-
*.class
13-
14-
# Log file
15-
*.log
16-
17-
# BlueJ files
18-
*.ctxt
19-
20-
# Mobile Tools for Java (J2ME)
21-
.mtj.tmp/
22-
23-
# Package Files #
24-
*.jar
25-
*.war
26-
*.nar
27-
*.ear
28-
*.zip
29-
*.tar.gz
30-
*.rar
31-
32-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
33-
hs_err_pid*
34-
35-
*~
36-
37-
# temporary files which can be created if a process still has a handle open of a deleted file
38-
.fuse_hidden*
39-
40-
# KDE directory preferences
41-
.directory
42-
43-
# Linux trash folder which might appear on any partition or disk
44-
.Trash-*
45-
46-
# .nfs files are created when an open file is removed but is still being accessed
47-
.nfs*
48-
49-
# General
50-
.DS_Store
51-
.AppleDouble
52-
.LSOverride
53-
54-
# Icon must end with two \r
55-
Icon
56-
57-
# Thumbnails
58-
._*
59-
60-
# Files that might appear in the root of a volume
61-
.DocumentRevisions-V100
62-
.fseventsd
63-
.Spotlight-V100
64-
.TemporaryItems
65-
.Trashes
66-
.VolumeIcon.icns
67-
.com.apple.timemachine.donotpresent
68-
69-
# Directories potentially created on remote AFP share
70-
.AppleDB
71-
.AppleDesktop
72-
Network Trash Folder
73-
Temporary Items
74-
.apdisk
75-
76-
# Windows thumbnail cache files
77-
Thumbs.db
78-
Thumbs.db:encryptable
79-
ehthumbs.db
80-
ehthumbs_vista.db
81-
82-
# Dump file
83-
*.stackdump
84-
85-
# Folder config file
86-
[Dd]esktop.ini
87-
88-
# Recycle Bin used on file shares
89-
$RECYCLE.BIN/
90-
91-
# Windows Installer files
92-
*.cab
93-
*.msi
94-
*.msix
95-
*.msm
96-
*.msp
97-
98-
# Windows shortcuts
99-
*.lnk
100-
1011
target/
102-
103-
pom.xml.tag
104-
pom.xml.releaseBackup
105-
pom.xml.versionsBackup
106-
pom.xml.next
107-
108-
release.properties
109-
dependency-reduced-pom.xml
110-
buildNumber.properties
111-
.mvn/timing.properties
112-
.mvn/wrapper/maven-wrapper.jar
113-
.flattened-pom.xml
114-
115-
# Common working directory
116-
run/

.idea/.gitignore

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/compiler.xml

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

.idea/dataSources.xml

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

.idea/data_source_mapping.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/encodings.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/inspectionProfiles/Project_Default.xml

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

.idea/jarRepositories.xml

Lines changed: 35 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: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)