Skip to content

Commit c6c0601

Browse files
Complete rewrite of Odometer
1 parent 39f2187 commit c6c0601

File tree

974 files changed

+1377
-389299
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

974 files changed

+1377
-389299
lines changed

.gitattributes

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

.gitignore

Lines changed: 98 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
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+
116
# Compiled class file
217
*.class
318

@@ -7,18 +22,6 @@
722
# BlueJ files
823
*.ctxt
924

10-
/run
11-
12-
./run
13-
run
14-
run/*
15-
*.mca
16-
/.gradle
17-
/build
18-
19-
# Mobile Tools for Java (J2ME)
20-
.mtj.tmp/
21-
2225
# Package Files #
2326
*.jar
2427
*.war
@@ -28,18 +31,88 @@ run/*
2831
*.tar.gz
2932
*.rar
3033

31-
32-
#ignore runs
33-
/run/*
34-
3534
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
3635
hs_err_pid*
37-
replay_pid*
38-
.idea/runConfigurations/Minecraft_Server.xml
39-
.gradle/loom-cache/launch.cfg
40-
.gradle/7.6/fileHashes/fileHashes.lock
41-
.gradle/7.6/fileHashes/fileHashes.bin
42-
.gradle/7.6/executionHistory/executionHistory.lock
43-
.gradle/7.6/executionHistory/executionHistory.bin
44-
.gradle/7.6/checksums/sha1-checksums.bin
45-
.gradle/7.6/checksums/md5-checksums.bin
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

.gradle/7.6/checksums/checksums.lock

-40 Bytes
Binary file not shown.
-81.6 KB
Binary file not shown.
-307 KB
Binary file not shown.
Binary file not shown.
-1010 KB
Binary file not shown.
-23 Bytes
Binary file not shown.

.gradle/7.6/fileHashes/fileHashes.bin

-33.4 KB
Binary file not shown.
-40 Bytes
Binary file not shown.
-65.5 KB
Binary file not shown.
-23 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Sat Dec 17 20:51:57 AEST 2022
2-
gradle.version=7.6
1+
#Wed Jul 03 15:25:41 AEST 2024
2+
gradle.version=8.7
108 Bytes
Binary file not shown.

.gradle/file-system.probe

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)