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: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,8 @@ jobs:
echo 'github.com ssh-rsa SHA256:Z4bsDPFhTv8vuTERTBcs6b5RHFRspyI77b7tQUsju1g' >> ~/.ssh/known_hosts
ssh-add -D
ssh-add ~/.ssh/id_rsa_*
git submodule sync --recursive
git submodule update --init --recursive --jobs=4 --filter=blob:none -- ':(exclude)Private/ios-games'
git submodule init && git submodule update --init Modules/core

# Setup environment files (MUST be before build)
Expand Down
2 changes: 2 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
[submodule "Private/ios-games"]
path = Private/ios-games
url = https://github.com/gruntsoftware/ios-games.git
update = none
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is the update value is none?

Copy link
Collaborator Author

@kcw-grunt kcw-grunt Aug 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Special trick here @josikie !
This is a flag that keeps the system from automatically updating the submodule in git submodule update. In this case, we dont want it to update because it is private and sensitive.

Also, we are running CI/CD separately for that submodule.

Thanks for asking!

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the explanation! That's make sense @kcw-grunt

ignore = all
168 changes: 168 additions & 0 deletions BrainwalletHybrid.xcworkspace/xcshareddata/swiftpm/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Private/ios-games
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@ The open source code section of Brainwallet iOS

## Release Notes

### v3.6.0 Latest

#### What's Changed
🚀[Release v3.5.0] Merge into Main by @kcw-grunt in #51
Full Changelog: v3.4.2...v3.6.0\

#### Updates:
- using bundle exec fastlane single_unit_test_all
- downgrade firebase to 11.12.0
- polsih ci config
- 🦾 Chore/migrate ready onboarding
- Fix/login view crash
- 🧰 fix: Removed the thread blocking seen in the lock screen trx. loading
- Epic/settings migration (#50)
- Chore/refactor firebase analytics
- Chore/activate test coverage

### v3.3.1
- Added locale filter
- Made improvements to UI
Expand Down