Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkborderman committed Aug 26, 2024
1 parent 5db0eb8 commit 753242b
Show file tree
Hide file tree
Showing 18 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
* text eol=lf
*.jar binary
* linguist-detectable
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ build/

# artifacts
jars/
bin/
bins/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# StarSystemDesign
# Starsector-StarSystemDesign

Manage star system layout in Starsector.
Binary file not shown.
Binary file not shown.
Binary file added bin/mod/starsystemdesign/rulecmd/JSONUtils.class
Binary file not shown.
Binary file not shown.
Binary file added bin/mod/starsystemdesign/rulecmd/Utilities.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ task release(type: Zip) {
include 'jars/'
include 'mod_info.json'
archiveName archivesBaseName + '-' + cmdOutput + '.zip'
destinationDir(file('bin/'))
destinationDir(file('bins/'))
}

clean {
description 'Cleanup files'
delete fileTree('jars/') { include '*.jar' }
delete fileTree('bin/') { include '*.zip' }
delete fileTree('bins/') { include '*.zip' }
}

dependencies {
compile fileTree(dir: './lib/', include: '*.jar')
compile fileTree(dir: './libs/', include: '*.jar')
}
4 changes: 2 additions & 2 deletions mod_info.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"id":"darkborderman.startsystemdesign",
"id":"darkborderman.starsystemdesign",
"name":"Star system design",
"author":"Darkborderman",
"version":"0.0.0",
"description":"Design entities alignment of star systems.",
"description":"Manage star system layout in Starsector.",
"gameVersion":"0.96a-RC10",
"jars": ["jars/starsystemdesign.jar"]
}

0 comments on commit 753242b

Please sign in to comment.