mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-12 15:57:42 +07:00
Added fastlane integration
This commit is contained in:
parent
4089ee424c
commit
fb84b4b7c1
.gitignore
fastlane
AppfileFastfile
metadata/android
en-US
changelogs
full_description.txtimages
short_description.txttitle.txtvideo.txtru-RU
1
.gitignore
vendored
1
.gitignore
vendored
@ -31,6 +31,7 @@ logs/
|
||||
ios/robovm.properties
|
||||
packr-out/
|
||||
config/
|
||||
changelog
|
||||
*.gif
|
||||
|
||||
version.properties
|
||||
|
2
fastlane/Appfile
Normal file
2
fastlane/Appfile
Normal file
@ -0,0 +1,2 @@
|
||||
json_key_file(ENV["FASTLANE_KEY_FILE"])
|
||||
package_name("io.anuke.mindustry")
|
46
fastlane/Fastfile
Normal file
46
fastlane/Fastfile
Normal file
@ -0,0 +1,46 @@
|
||||
# This file contains the fastlane.tools configuration
|
||||
# You can find the documentation at https://docs.fastlane.tools
|
||||
#
|
||||
# For a list of all available actions, check out
|
||||
#
|
||||
# https://docs.fastlane.tools/actions
|
||||
#
|
||||
# For a list of all available plugins, check out
|
||||
#
|
||||
# https://docs.fastlane.tools/plugins/available-plugins
|
||||
#
|
||||
|
||||
# Uncomment the line if you want fastlane to automatically update itself
|
||||
# update_fastlane
|
||||
|
||||
default_platform(:android)
|
||||
|
||||
platform :android do
|
||||
desc "Runs all the tests"
|
||||
lane :test do
|
||||
gradle(task: "test")
|
||||
end
|
||||
|
||||
desc "Submit a new Beta Build to Crashlytics Beta"
|
||||
lane :beta do
|
||||
gradle(task: "clean assembleRelease")
|
||||
crashlytics
|
||||
|
||||
# sh "your_script.sh"
|
||||
# You can also use other beta testing services here
|
||||
end
|
||||
|
||||
desc "Deploy a new version to the Google Play"
|
||||
lane :deploy do
|
||||
gradle(task: "clean assembleRelease")
|
||||
upload_to_play_store
|
||||
end
|
||||
|
||||
#lane :playstore do
|
||||
# gradle(
|
||||
# task: 'assemble',
|
||||
# build_type: 'Release'
|
||||
# )
|
||||
# upload_to_play_store # Uploads the APK built in the gradle step above and releases it to all production users
|
||||
#end
|
||||
end
|
3
fastlane/metadata/android/en-US/changelogs/12203.txt
Normal file
3
fastlane/metadata/android/en-US/changelogs/12203.txt
Normal file
@ -0,0 +1,3 @@
|
||||
- Fixed incorrect attribution in credits; music was made by "A Drop A Day"
|
||||
- Removed unneeded 3.5 upgrade dialog that sometimes showed up in main menu
|
||||
- Added information dialog regarding v4 beta
|
4
fastlane/metadata/android/en-US/changelogs/12205.txt
Normal file
4
fastlane/metadata/android/en-US/changelogs/12205.txt
Normal file
@ -0,0 +1,4 @@
|
||||
- Fixed incorrect attribution in credits; music was made by "A Drop A Day"
|
||||
- Removed unneeded 3.5 upgrade dialog that sometimes showed up in main menu
|
||||
- Added information dialog regarding v4 beta
|
||||
- Fixed Discord link
|
1
fastlane/metadata/android/en-US/changelogs/26593.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/26593.txt
Normal file
@ -0,0 +1 @@
|
||||
sound.
|
1
fastlane/metadata/android/en-US/changelogs/27434.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/27434.txt
Normal file
@ -0,0 +1 @@
|
||||
everything
|
1
fastlane/metadata/android/en-US/changelogs/27476.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/27476.txt
Normal file
@ -0,0 +1 @@
|
||||
Fixed some minor sound/multiplayer issues
|
1
fastlane/metadata/android/en-US/changelogs/27689.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/27689.txt
Normal file
@ -0,0 +1 @@
|
||||
Bugfixes
|
1
fastlane/metadata/android/en-US/changelogs/27770.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/27770.txt
Normal file
@ -0,0 +1 @@
|
||||
Added ambient sounds for machines.
|
2
fastlane/metadata/android/en-US/changelogs/27997.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/27997.txt
Normal file
@ -0,0 +1,2 @@
|
||||
The first release of version 4.0; an update that has been in the works for over a year.
|
||||
Extensive changes, including new gamemodes, customizable rules, a new editor, new graphics, new enemies, unit production, new progression, a campaign, and more. See the in-game changelog link for specific details of what has been added and removed over the past year.
|
2
fastlane/metadata/android/en-US/changelogs/28409.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/28409.txt
Normal file
@ -0,0 +1,2 @@
|
||||
Fixed multiplayer not syncing positions and shots correctly on certain networks or situations.
|
||||
Various other bugfixes.
|
5
fastlane/metadata/android/en-US/changelogs/721.txt
Normal file
5
fastlane/metadata/android/en-US/changelogs/721.txt
Normal file
@ -0,0 +1,5 @@
|
||||
- Fixed most formatted numbers being missing from Spanish translation
|
||||
- Fixed wave timer being extremely slow at high TPS with multithreading enabled
|
||||
- Fixed scrolling on player menu causing the whole screen to pan
|
||||
- Updated Polish translation
|
||||
- Updated Russian translation with new text (Thanks to @Prosta4okua)
|
14
fastlane/metadata/android/en-US/full_description.txt
Normal file
14
fastlane/metadata/android/en-US/full_description.txt
Normal file
@ -0,0 +1,14 @@
|
||||
Create elaborate supply chains of conveyor belts to feed ammo into your turrets, produce materials to use for building, and defend your structures from waves of enemies. Play with your friends in cross-platform multiplayer co-op games, or challenge them in team-based PvP matches.
|
||||
|
||||
Feature include:
|
||||
- 24 built-in maps
|
||||
- A campaign, complete with a tech tree and unlockable areas
|
||||
- 4 powerful wave bosses to defeat
|
||||
- Energy, liquid and item transportation systems
|
||||
- 19 different types of drones, mechs and ships
|
||||
- 120+ technology blocks to master
|
||||
- 75+ different environmental blocks
|
||||
- Cross-platform multiplayer via local networks or dedicated servers
|
||||
- Custom game rules: Change block costs, enemy stats, starting items, wave timing and more
|
||||
- A powerful editor, with tools to randomly generate ores, terrain, decoration and apply symmetry to maps
|
||||
- Customizable map wave layouts
|
BIN
fastlane/metadata/android/en-US/images/featureGraphic.png
Normal file
BIN
fastlane/metadata/android/en-US/images/featureGraphic.png
Normal file
Binary file not shown.
After (image error) Size: 649 KiB |
BIN
fastlane/metadata/android/en-US/images/icon.png
Normal file
BIN
fastlane/metadata/android/en-US/images/icon.png
Normal file
Binary file not shown.
After (image error) Size: 70 KiB |
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/1.png
Normal file
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/1.png
Normal file
Binary file not shown.
After (image error) Size: 583 KiB |
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/2.png
Normal file
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/2.png
Normal file
Binary file not shown.
After (image error) Size: 1.1 MiB |
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/3.png
Normal file
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/3.png
Normal file
Binary file not shown.
After (image error) Size: 709 KiB |
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/4.png
Normal file
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/4.png
Normal file
Binary file not shown.
After (image error) Size: 952 KiB |
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/5.png
Normal file
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/5.png
Normal file
Binary file not shown.
After (image error) Size: 642 KiB |
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/6.png
Normal file
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/6.png
Normal file
Binary file not shown.
After (image error) Size: 260 KiB |
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/7.png
Normal file
BIN
fastlane/metadata/android/en-US/images/phoneScreenshots/7.png
Normal file
Binary file not shown.
After (image error) Size: 570 KiB |
Binary file not shown.
After (image error) Size: 890 KiB |
Binary file not shown.
After (image error) Size: 1.1 MiB |
Binary file not shown.
After (image error) Size: 952 KiB |
1
fastlane/metadata/android/en-US/short_description.txt
Normal file
1
fastlane/metadata/android/en-US/short_description.txt
Normal file
@ -0,0 +1 @@
|
||||
A factory-based sandbox tower defense game.
|
1
fastlane/metadata/android/en-US/title.txt
Normal file
1
fastlane/metadata/android/en-US/title.txt
Normal file
@ -0,0 +1 @@
|
||||
Mindustry
|
0
fastlane/metadata/android/en-US/video.txt
Normal file
0
fastlane/metadata/android/en-US/video.txt
Normal file
15
fastlane/metadata/android/ru-RU/full_description.txt
Normal file
15
fastlane/metadata/android/ru-RU/full_description.txt
Normal file
@ -0,0 +1,15 @@
|
||||
Создавайте сложные логистические сети для переноса боеприпасов для турелей, добывайте ресурсы для строительства, и защищайте их от различных волн врагов.
|
||||
Играйте с друзьями в кроссплатформенные кооперативные игры, или бросьте им вызов в командных PvP-матчах.
|
||||
|
||||
Особенности игры:
|
||||
- 24 встроенные карты
|
||||
- Кампания, с полноценным технологическим древом и прогрессией карт
|
||||
- 4 вида мощных боссов
|
||||
- Системы для транспорта электроэнергии, жидкостей и ресурсов
|
||||
- 19 видов дронов, кораблей и наземных боевых единиц
|
||||
- Более 120 блоков в техногическом древе
|
||||
- Более 75 видов натуральных блоков
|
||||
- Кроссплатформенный мультиплеер с поддержкой как и локальных сетей, так и серверов
|
||||
- Пользовательские настройки игры — изменяйте цену блоков, силу врагов, количество стартовых ресурсов, интервал между волнами и т.д.
|
||||
- Редактор карт с бесчисленными возможностями, инструментами для случайной генерации руд, рельефа, декораций, а также для симметрии карт
|
||||
- Настраиваемые раскладки волн для карт
|
1
fastlane/metadata/android/ru-RU/short_description.txt
Normal file
1
fastlane/metadata/android/ru-RU/short_description.txt
Normal file
@ -0,0 +1 @@
|
||||
A factory-based sandbox tower defense game.
|
1
fastlane/metadata/android/ru-RU/title.txt
Normal file
1
fastlane/metadata/android/ru-RU/title.txt
Normal file
@ -0,0 +1 @@
|
||||
Mindustry
|
0
fastlane/metadata/android/ru-RU/video.txt
Normal file
0
fastlane/metadata/android/ru-RU/video.txt
Normal file
Loading…
Reference in New Issue
Block a user