更新版本号至0.1.1,并调整查询语句以考虑上海时区并添加iso编译环境

This commit is contained in:
Yakumo Hokori
2025-07-13 01:31:24 +08:00
parent 9dc207f81c
commit 1d66c1127a
36 changed files with 950 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
# Uncomment the next line to define a global platform for your project
target 'tms_tools_iOS' do
platform :ios, '13.0'
# Pods for tms_tools_iOS
end
target 'tms_tools_macOS' do
platform :osx, '11.0'
# Pods for tms_tools_macOS
end
# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET'
end
end
end