-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f325fe0
commit 0905726
Showing
4 changed files
with
138 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,78 @@ | ||
# | ||
# https://help.github.com/articles/dealing-with-line-endings/ | ||
# | ||
# Linux start script should use lf | ||
/gradlew text eol=lf | ||
* text=auto eol=lf | ||
*.[cC][mM][dD] text eol=crlf | ||
*.[bB][aA][tT] text eol=crlf | ||
*.[pP][sS]1 text eol=crlf | ||
*.[sS][hH] text eol=lf | ||
|
||
# These are Windows script files and should use crlf | ||
*.bat text eol=crlf | ||
*.patch text eol=lf | ||
|
||
*.png binary | ||
*.lzma binary | ||
*.zip binary | ||
*.gzip binary | ||
*.exe binary | ||
*.ico binary | ||
*.eot binary | ||
*.ttf binary | ||
*.woff binary | ||
*.woff2 binary | ||
*.a binary | ||
*.lib binary | ||
*.icns binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mp3 binary | ||
*.flv binary | ||
*.fla binary | ||
*.swf binary | ||
*.gz binary | ||
*.tar binary | ||
*.tar.gz binary | ||
*.7z binary | ||
*.pyc binary | ||
*.gpg binary | ||
*.bin binary | ||
|
||
*.gitattributes text | ||
.gitignore text | ||
|
||
# Java sources | ||
*.java text diff=java | ||
*.kt text diff=kotlin | ||
*.groovy text diff=java | ||
*.scala text diff=java | ||
*.gradle text diff=java | ||
*.gradle.kts text diff=kotlin | ||
|
||
# These files are text and should be normalized (Convert crlf => lf) | ||
*.css text diff=css | ||
*.scss text diff=css | ||
*.sass text | ||
*.df text | ||
*.htm text diff=html | ||
*.html text diff=html | ||
*.js text | ||
*.jsp text | ||
*.jspf text | ||
*.jspx text | ||
*.properties text | ||
*.tld text | ||
*.tag text | ||
*.tagx text | ||
*.xml text | ||
|
||
# These files are binary and should be left untouched | ||
# (binary is a macro for -text -diff) | ||
*.class binary | ||
*.dll binary | ||
*.ear binary | ||
*.jar binary | ||
*.so binary | ||
*.war binary | ||
*.jks binary | ||
|
||
mvnw text eol=lf | ||
gradlew text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
This file is part of ${name}, licensed under the MIT License. | ||
|
||
Copyright (c) ${year} powercas_gamer | ||
Copyright (c) ${year} contributors | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
# imagery | ||
# imagery | ||
|
||
A WIPShareX file server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# build-logic stuff | ||
javadocPublishRoot=https://jd.mizule.dev/minelimit/rift/ | ||
githubOrg=powercasgamer | ||
projectAuthor=powercasgamer | ||
githubRepo=Imagery | ||
projectName=Imagery | ||
disableJavadoc=false | ||
createdYear=2023 | ||
|
||
# project stuff | ||
group=dev.mizule.imagery | ||
version=0.0.1-SNAPSHOT | ||
description=ShareX File Server | ||
|
||
# kotlin stuff | ||
kotlin.code.style=official | ||
kotlin.caching.enabled=true | ||
kotlin.incremental=true | ||
kotlin.incremental.js=true | ||
kapt.use.worker.api=true | ||
kapt.incremental.apt=true | ||
kotlin.incremental.useClasspathSnapshot=true | ||
kotlin.stdlib.default.dependency=false | ||
kotlin.native.disableCompilerDaemon=false | ||
|
||
# gradle stuff | ||
org.gradle.cache=true | ||
org.gradle.caching=true | ||
org.gradle.configuration-cache=false | ||
org.gradle.unsafe.configuration-cache=false | ||
org.gradle.parallel=true | ||
org.gradle.configureondemand=true | ||
org.gradle.jvmargs=-Xmx4048m -Dfile.encoding=UTF-8 | ||
org.gradle.unsafe.configuration-cache.max-problems=5 | ||
org.gradle.daemon=true | ||
org.gradle.unsafe.configuration-cache-problems=warn | ||
org.gradle.vfs.watch=true |