Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.0.25 - The Data Fix Update! #291

Merged
merged 32 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
955944b
Start working on more stable claim data storage system
cjburkey01 May 3, 2024
d593350
Minor cleanup
cjburkey01 May 3, 2024
2b48b5e
Quick fix
cjburkey01 May 3, 2024
cc7a72a
Merge changes from main
cjburkey01 May 3, 2024
5a514c0
Update to new chunk pos record field accessors
cjburkey01 May 3, 2024
b429fde
Increment version
cjburkey01 May 7, 2024
b045bfa
Merge branch 'main' into journal-world
cjburkey01 May 7, 2024
d6669c9
Change 0.0.24 to 0.0.25-DEV as 0.0.25 is the new 0.0.24 yay
cjburkey01 May 7, 2024
e65d60c
Progress
cjburkey01 May 8, 2024
c0ed2c4
Merge branch 'main' into journal-world
cjburkey01 May 9, 2024
3f94ff5
Merge branch 'main' into journal-world
cjburkey01 May 9, 2024
d0681fd
Merge branch 'main' into journal-world
cjburkey01 May 9, 2024
6e62267
Add untested SQLite database table initialization
cjburkey01 May 11, 2024
6cc12a4
Format
cjburkey01 May 11, 2024
9cca6f9
Create sqlite tables
cjburkey01 May 11, 2024
acb2d19
Use .sqlite3 extension for db file to be specific
cjburkey01 May 11, 2024
8eb8392
Implement almost all of it? Except for data loading
cjburkey01 May 13, 2024
fcafaf5
Clean up and make sure player online time is saved at login and logoff
cjburkey01 May 15, 2024
2b78d73
Start working on loading
cjburkey01 May 16, 2024
6dcc33a
Work on new data handler, switch player data to UUID instead of id
cjburkey01 May 16, 2024
60e84e4
Conversion work
cjburkey01 May 16, 2024
d927e74
Stop clearing stuff for a second
cjburkey01 May 19, 2024
76b09ab
Merge fix
cjburkey01 May 20, 2024
29e72cc
Fix version :P
cjburkey01 May 20, 2024
9e7f675
Add new dependency!
cjburkey01 May 20, 2024
b091558
Switch to library but now it doesn't work
cjburkey01 May 21, 2024
9952645
Remove problematic Q2O calls :/
cjburkey01 May 23, 2024
194d7be
Get conversions from old data formats working
cjburkey01 May 23, 2024
965c57b
Don't include jetbrains annotations in shaded jar
cjburkey01 May 23, 2024
afd1958
Organize and cleanup
cjburkey01 May 23, 2024
1742869
Turn SemVer class into a record
cjburkey01 May 23, 2024
8f8afc0
Finish up!
cjburkey01 May 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ jobs:
# Artifact name
name: ClaimChunk
# Upload plugin jar
path: OUT/*.jar
path: OUT/*-plugin.jar
# Fail if the output file isn't found
if-no-files-found: error
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,7 @@ OUT
# Gource
my_captions.txt
source_visual.ppm
source_visual.mp4
source_visual.mp4

# Leftover from tests
*.tmp.sqlite3
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ implementation("com.cjburkey.claimchunk:claimchunk:0.0.24-RC1")
Building
--------
[![Automatic Build](https://img.shields.io/github/actions/workflow/status/cjburkey01/ClaimChunk/gradle.yml?branch=main&style=for-the-badge)](https://claimchunk.cjburkey.com/server/Downloads.html#snapshot-downloads)
[![Version Info](https://img.shields.io/static/v1?label=Repository%20Version&message=0.0.24-RC2&color=ff5555&style=for-the-badge)](https://github.com/cjburkey01/ClaimChunk/archive/main.zip)
[![Version Info](https://img.shields.io/static/v1?label=Repository%20Version&message=0.0.25&color=ff5555&style=for-the-badge)](https://github.com/cjburkey01/ClaimChunk/archive/main.zip)

If you want to obtain a version of the plugin that isn't available yet (like a snapshot), you can do so by asking on the
Discord or building it yourself. Here's how to build it yourself:
Expand Down
Loading
Loading