mirror of
https://github.com/yairm210/Unciv.git
synced 2025-08-03 00:29:18 +07:00
Little documentation cleanup (#9226)
This commit is contained in:
17
.gitignore
vendored
17
.gitignore
vendored
@ -126,15 +126,11 @@ Thumbs.db
|
|||||||
!/ios-moe/xcode/*.xcodeproj/xcshareddata
|
!/ios-moe/xcode/*.xcodeproj/xcshareddata
|
||||||
!/ios-moe/xcode/*.xcodeproj/project.pbxproj
|
!/ios-moe/xcode/*.xcodeproj/project.pbxproj
|
||||||
/ios-moe/xcode/native/
|
/ios-moe/xcode/native/
|
||||||
SaveFiles/
|
|
||||||
android/android-release.apk
|
android/android-release.apk
|
||||||
android/assets/GameSettings.json
|
|
||||||
android/release/output.json
|
android/release/output.json
|
||||||
android/release/android-release.apk
|
android/release/android-release.apk
|
||||||
android/release/release/android.aab
|
android/release/release/android.aab
|
||||||
android/assets/fonts/
|
|
||||||
android/release/android.aab
|
android/release/android.aab
|
||||||
android/assets/maps/
|
|
||||||
android/release/android.aab.sig
|
android/release/android.aab.sig
|
||||||
android/release/android-release.aab
|
android/release/android-release.aab
|
||||||
tests/build/
|
tests/build/
|
||||||
@ -145,11 +141,17 @@ server/packrCache/
|
|||||||
deploy/
|
deploy/
|
||||||
android/release/
|
android/release/
|
||||||
|
|
||||||
|
# Transient Unciv files
|
||||||
|
android/assets/GameSettings.json
|
||||||
|
android/assets/lasterror.txt
|
||||||
|
android/assets/fonts/
|
||||||
|
android/assets/maps/
|
||||||
android/assets/mods/
|
android/assets/mods/
|
||||||
android/assets/SaveFiles/
|
|
||||||
android/assets/scenarios/
|
|
||||||
android/assets/MultiplayerGames/
|
android/assets/MultiplayerGames/
|
||||||
android/assets/music/
|
android/assets/music/
|
||||||
|
android/assets/SaveFiles/
|
||||||
|
android/assets/scenarios/
|
||||||
|
SaveFiles/
|
||||||
|
|
||||||
# Visual Studio Code
|
# Visual Studio Code
|
||||||
.vscode/
|
.vscode/
|
||||||
@ -159,4 +161,5 @@ android/assets/music/
|
|||||||
node_modules/
|
node_modules/
|
||||||
package-lock.json
|
package-lock.json
|
||||||
package.json
|
package.json
|
||||||
/android/assets/lasterror.txt
|
|
||||||
|
# Unsorted additions
|
||||||
|
@ -38,8 +38,10 @@ So first things first - the initial "No assumptions" setup to have Unciv run fro
|
|||||||

|

|
||||||
- Settings > Editor > General > On Save > Uncheck Remove trailing spaces on: [...] to prevent it from removing necessary trailing whitespace in template.properties for translation files
|
- Settings > Editor > General > On Save > Uncheck Remove trailing spaces on: [...] to prevent it from removing necessary trailing whitespace in template.properties for translation files
|
||||||

|

|
||||||
- Right-click the `android/assets/SaveFiles` folder, "Mark directory as" > Excluded, to [disable indexing on mods](https://www.jetbrains.com/help/idea/indexing.html#exclude) for performance.
|
- Right-click the `android/assets/SaveFiles` folder, "Mark directory as" > Excluded
|
||||||
- If you download mods do the same for the `android/assets/mods` folder,
|
- If you download mods do the same for the `android/assets/mods` folder and any other files you may create while testing that do not belong in the public project.
|
||||||
|
- This [disables indexing](https://www.jetbrains.com/help/idea/indexing.html#exclude) for performance.
|
||||||
|
|
||||||
Unciv uses Gradle to specify dependencies and how to run. In the background, the Gradle gnomes will be off fetching the packages (a one-time effort) and, once that's done, will build the project!
|
Unciv uses Gradle to specify dependencies and how to run. In the background, the Gradle gnomes will be off fetching the packages (a one-time effort) and, once that's done, will build the project!
|
||||||
|
|
||||||
Unciv uses Gradle 7.5 and the Android Gradle Plugin 7.3.1. Can check in File > Project Structure > Project
|
Unciv uses Gradle 7.5 and the Android Gradle Plugin 7.3.1. Can check in File > Project Structure > Project
|
||||||
|
Reference in New Issue
Block a user