Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AmplitudeService
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ source "https://rubygems.org"

# This branch uses fastlane 2.228.0 plus pr 29596
gem "fastlane", git: "https://github.com/loopandlearn/fastlane.git", ref: "a670d4b092b274d58ebb5497126e47fc6a84f533"
gem "rexml", ">=3.4.2"
31 changes: 17 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -58,25 +58,27 @@ GEM
artifactory (3.0.17)
atomos (0.1.3)
aws-eventstream (1.4.0)
aws-partitions (1.1116.0)
aws-sdk-core (3.225.2)
aws-partitions (1.1163.0)
aws-sdk-core (3.232.0)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.992.0)
aws-sigv4 (~> 1.9)
base64
bigdecimal
jmespath (~> 1, >= 1.6.1)
logger
aws-sdk-kms (1.105.0)
aws-sdk-core (~> 3, >= 3.225.0)
aws-sdk-kms (1.112.0)
aws-sdk-core (~> 3, >= 3.231.0)
aws-sigv4 (~> 1.5)
aws-sdk-s3 (1.189.1)
aws-sdk-core (~> 3, >= 3.225.0)
aws-sdk-s3 (1.199.0)
aws-sdk-core (~> 3, >= 3.231.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.5)
aws-sigv4 (1.12.1)
aws-eventstream (~> 1, >= 1.0.2)
babosa (1.0.4)
base64 (0.3.0)
bigdecimal (3.2.3)
claide (1.1.0)
colored (1.2)
colored2 (3.1.2)
Expand Down Expand Up @@ -105,10 +107,10 @@ GEM
faraday (>= 0.8.0)
http-cookie (~> 1.0.0)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-em_synchrony (1.0.1)
faraday-excon (1.1.0)
faraday-httpclient (1.0.1)
faraday-multipart (1.1.0)
faraday-multipart (1.1.1)
multipart-post (~> 2.0)
faraday-net_http (1.0.2)
faraday-net_http_persistent (1.2.0)
Expand Down Expand Up @@ -163,13 +165,13 @@ GEM
httpclient (2.9.0)
mutex_m
jmespath (1.6.2)
json (2.12.2)
jwt (2.10.1)
json (2.15.0)
jwt (2.10.2)
base64
logger (1.7.0)
mini_magick (4.13.2)
mini_mime (1.1.5)
multi_json (1.15.0)
multi_json (1.17.0)
multipart-post (2.4.1)
mutex_m (0.3.0)
nanaimo (0.4.0)
Expand All @@ -185,15 +187,15 @@ GEM
trailblazer-option (>= 0.1.1, < 0.2.0)
uber (< 0.2.0)
retriable (3.1.2)
rexml (3.4.1)
rexml (3.4.4)
rouge (3.28.0)
ruby2_keywords (0.0.5)
rubyzip (2.4.1)
security (0.1.5)
signet (0.20.0)
signet (0.21.0)
addressable (~> 2.8)
faraday (>= 0.17.5, < 3.a)
jwt (>= 1.5, < 3.0)
jwt (>= 1.5, < 4.0)
multi_json (~> 1.10)
simctl (1.6.10)
CFPropertyList
Expand Down Expand Up @@ -233,6 +235,7 @@ PLATFORMS

DEPENDENCIES
fastlane!
rexml (>= 3.4.2)

BUNDLED WITH
2.6.2
2 changes: 1 addition & 1 deletion LogglyService
2 changes: 1 addition & 1 deletion Loop
2 changes: 1 addition & 1 deletion LoopOnboarding
2 changes: 1 addition & 1 deletion OmniBLE
2 changes: 1 addition & 1 deletion OmniKit
14 changes: 13 additions & 1 deletion Scripts/manual_cleanup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ echo
echo " This deletes the xclocs, xliff_in, xliff_out folders"
echo " This deletes the file, ${MESSAGE_FILE}, with the lokalise download timestamp"
echo " This restores all submodules to their current branch (reset, clean)"
echo " If '${TRANSLATION_BRANCH}' branch exists and submodule is NOT on that branch:"
echo " then '${TRANSLATION_BRANCH}' branch is deleted"

continue_or_quit ${0}

Expand All @@ -31,9 +33,19 @@ rm -f "${MESSAGE_FILE}"

for project in ${PROJECTS}; do
IFS=":" read user dir branch <<< "$project"
echo "Reset and clean $dir"
echo
echo " *** Reset and clean $dir"
cd $dir
git reset --hard; git clean -fd;
current_branch=$(git branch --show-current 2>/dev/null)
if [[ "${current_branch}" == "${TRANSLATION_BRANCH}" ]]; then
echo " already on $TRANSLATION_BRANCH, take no action"
elif [ -n "$(git branch --list "$TRANSLATION_BRANCH")" ]; then
echo " Local branch '$TRANSLATION_BRANCH' exists, deleting it."
git branch -D "${TRANSLATION_BRANCH}"
else
echo " no branch named $TRANSLATION_BRANCH exists, take no action"
fi
cd -
done

Expand Down
2 changes: 1 addition & 1 deletion VersionOverride.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

// Version [for DIY Loop]
// configure the version number in LoopWorkspace
LOOP_MARKETING_VERSION = 3.8.0
LOOP_MARKETING_VERSION = 3.8.1
CURRENT_PROJECT_VERSION = 57