diff --git a/Config/nexus_upload.sh b/Config/nexus_upload.sh new file mode 100755 index 000000000..abf044d5c --- /dev/null +++ b/Config/nexus_upload.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash +NEXUS_BASE_URL=$1 +VARIANT=$2 +EXT=$3 +VERSION=$4 +DATE_STR=$5 +GITHASH=$6 +SUBDIR=$7 + +echo "params: $NEXUS_BASE_URL $VARIANT $EXT $VERSION $DATE_STR $GITHASH" +echo "dir: $PWD" + +find ../out-sim -name "*$VARIANT*.$EXT" -print0 | while read -d $'\0' file +do + echo "Source: $file" + BASENAME=$(basename $file .$EXT)-$VERSION-$DATE_STR-$GITHASH.$EXT$SUBDIR.$EXT + echo "Destination $NEXUS_BASE_URL/$VERSION/$BASENAME" + curl --fail -u $S_BWMESSENGER_ID:$S_BWMESSENGER_PASSWORD -v --upload-file $file $NEXUS_BASE_URL/$VERSION/$BASENAME +done \ No newline at end of file diff --git a/Riot/SupportingFiles/Info.plist b/Riot/SupportingFiles/Info.plist index 49ca212e6..c9fe98392 100644 --- a/Riot/SupportingFiles/Info.plist +++ b/Riot/SupportingFiles/Info.plist @@ -6,6 +6,21 @@ en CFBundleDisplayName $(BUNDLE_DISPLAY_NAME) + CFBundleDocumentTypes + + + CFBundleTypeName + Mention Pills + CFBundleTypeRole + Viewer + LSHandlerRank + Owner + LSItemContentTypes + + im.vector.app.pills + + + CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -17,7 +32,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - $(MARKETING_VERSION) + 1.23.0 CFBundleSignature ???? CFBundleURLTypes @@ -46,6 +61,8 @@ LSRequiresIPhoneOS + LSSupportsOpeningDocumentsInPlace + NSAppTransportSecurity NSAllowsArbitraryLoads @@ -59,16 +76,16 @@ The contact book is used to send room invitation to your contacts with their emails. NSFaceIDUsageDescription Face ID is used to access your app. + NSLocationAlwaysAndWhenInUseUsageDescription + When you share your location to people, the messenger needs access to show them a map. + NSLocationWhenInUseUsageDescription + When you share your location to people, the messenger needs access to show them a map. NSMicrophoneUsageDescription The microphone is used to take videos, make calls. NSPhotoLibraryUsageDescription The photo library is used to send photos and videos. NSSiriUsageDescription Siri is used to perform calls even from the lock screen. - NSLocationWhenInUseUsageDescription - When you share your location to people, the messenger needs access to show them a map. - NSLocationAlwaysAndWhenInUseUsageDescription - When you share your location to people, the messenger needs access to show them a map. UIBackgroundModes remote-notification @@ -106,29 +123,6 @@ UIViewControllerBasedStatusBarAppearance - UserDefaults - ${PRODUCT_NAME}-Defaults - applicationGroupIdentifier - $(APPLICATION_GROUP_IDENTIFIER) - baseBundleIdentifier - $(BASE_BUNDLE_IDENTIFIER) - keychainAccessGroup - $(KEYCHAIN_ACCESS_GROUP) - CFBundleDocumentTypes - - - CFBundleTypeName - Mention Pills - CFBundleTypeRole - Viewer - LSHandlerRank - Owner - LSItemContentTypes - - im.vector.app.pills - - - UTExportedTypeDeclarations @@ -142,7 +136,13 @@ im.vector.app.pills - LSSupportsOpeningDocumentsInPlace - + UserDefaults + ${PRODUCT_NAME}-Defaults + applicationGroupIdentifier + $(APPLICATION_GROUP_IDENTIFIER) + baseBundleIdentifier + $(BASE_BUNDLE_IDENTIFIER) + keychainAccessGroup + $(KEYCHAIN_ACCESS_GROUP)