Telegram-стиль затемнение сверху в ChatDetailView (iOS < 26)

This commit is contained in:
2026-03-09 18:24:52 +05:00
parent b1f71c43f0
commit fd948991f3
14 changed files with 596 additions and 35 deletions

69
fastlane/Fastfile Normal file
View File

@@ -0,0 +1,69 @@
default_platform(:ios)
platform :ios do
# ─── Автоинкремент build number ───
desc "Increment build number (CURRENT_PROJECT_VERSION)"
lane :bump_build do
increment_build_number(
xcodeproj: "Rosetta.xcodeproj"
)
end
# ─── Инкремент версии (patch/minor/major) ───
desc "Increment version number. Usage: fastlane bump_version type:patch"
lane :bump_version do |options|
type = options[:type] || "patch"
increment_version_number(
xcodeproj: "Rosetta.xcodeproj",
bump_type: type
)
end
# ─── Билд для TestFlight ───
desc "Build and upload to TestFlight"
lane :beta do
increment_build_number(
xcodeproj: "Rosetta.xcodeproj"
)
build_app(
project: "Rosetta.xcodeproj",
scheme: "Rosetta",
export_method: "app-store",
clean: true
)
upload_to_testflight(
skip_waiting_for_build_processing: true
)
end
# ─── Release в App Store ───
desc "Build and upload to App Store"
lane :release do |options|
type = options[:type] || "patch"
increment_version_number(
xcodeproj: "Rosetta.xcodeproj",
bump_type: type
)
increment_build_number(
xcodeproj: "Rosetta.xcodeproj"
)
build_app(
project: "Rosetta.xcodeproj",
scheme: "Rosetta",
export_method: "app-store",
clean: true
)
upload_to_app_store(
force: true,
skip_screenshots: true
)
end
end