Skip to content

Commit dbce40b

Browse files
ci(release): publish latest release
1 parent e295be7 commit dbce40b

File tree

469 files changed

+15296
-4317
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

469 files changed

+15296
-4317
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ node_modules
88
# testing
99
coverage
1010

11+
# utility script output
12+
scripts/dist
13+
1114
# next.js
1215
.next/
1316
out/

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.2.2

.yarn/patches/react-native-context-menu-view-npm-1.6.0-f5f5410f50.patch

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,54 @@ index 4b5b90b7b478668fdff3fd12d5e028d423ada057..af30dc6f700b3b3cfde5c149bf1f8657
1717
});
1818
}
1919

20+
diff --git a/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuManager.java b/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuManager.java
21+
index 81f7b4b58c946d1b2e14301f9b52ecffa1cd0643..403dac6450be24a8c4d26ffb8293b51a1485f6a8 100644
22+
--- a/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuManager.java
23+
+++ b/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuManager.java
24+
@@ -45,6 +45,11 @@ public class ContextMenuManager extends ViewGroupManager<ContextMenuView> {
25+
view.setDropdownMenuMode(enabled);
26+
}
27+
28+
+ @ReactProp(name = "disabled")
29+
+ public void setDisabled(ContextMenuView view, @Nullable boolean disabled) {
30+
+ view.setDisabled(disabled);
31+
+ }
32+
+
33+
@androidx.annotation.Nullable
34+
@Override
35+
public Map<String, Object> getExportedCustomDirectEventTypeConstants() {
36+
diff --git a/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuView.java b/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuView.java
37+
index af30dc6f700b3b3cfde5c149bf1f865786df3e27..aa04fe6d9458601fdcb9bb44f89e16bbc1ad9d39 100644
38+
--- a/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuView.java
39+
+++ b/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuView.java
40+
@@ -43,6 +43,8 @@ public class ContextMenuView extends ReactViewGroup implements PopupMenu.OnMenuI
41+
42+
boolean cancelled = true;
43+
44+
+ private boolean disabled = false;
45+
+
46+
protected boolean dropdownMenuMode = false;
47+
48+
public ContextMenuView(final Context context) {
49+
@@ -87,13 +89,18 @@ public class ContextMenuView extends ReactViewGroup implements PopupMenu.OnMenuI
50+
51+
@Override
52+
public boolean onInterceptTouchEvent(MotionEvent ev) {
53+
- return true;
54+
+ return disabled ? false : true;
55+
}
56+
57+
@Override
58+
public boolean onTouchEvent(MotionEvent ev) {
59+
- gestureDetector.onTouchEvent(ev);
60+
- return true;
61+
+ if (disabled) return false;
62+
+ gestureDetector.onTouchEvent(ev);
63+
+ return true;
64+
+ }
65+
+
66+
+ public void setDisabled(boolean disabled) {
67+
+ this.disabled = disabled;
68+
}
69+
70+
public void setActions(@Nullable ReadableArray actions) {

.yarn/patches/react-native-npm-0.71.13-e260a84bbf.patch

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,18 @@ index 3738bd2c61e516fa431f61fda47f2474f72dba42..2b3266007b3c9412d99e7ceee205ee52
1717

1818
global.requestAnimationFrame = function (callback) {
1919
return setTimeout(callback, 0);
20+
diff --git a/third-party-podspecs/boost.podspec b/third-party-podspecs/boost.podspec
21+
index 3d9331c95d1217682a0b820a0d9440fdff074ae0..8276eb1a5854f945462363fe8db917e8270b3b6a 100644
22+
--- a/third-party-podspecs/boost.podspec
23+
+++ b/third-party-podspecs/boost.podspec
24+
@@ -10,8 +10,8 @@ Pod::Spec.new do |spec|
25+
spec.homepage = 'http://www.boost.org'
26+
spec.summary = 'Boost provides free peer-reviewed portable C++ source libraries.'
27+
spec.authors = 'Rene Rivera'
28+
- spec.source = { :http => 'https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2',
29+
- :sha256 => 'f0397ba6e982c4450f27bf32a2a83292aba035b827a5623a14636ea583318c41' }
30+
+ spec.source = { :http => 'https://sourceforge.net/projects/boost/files/boost/1.83.0/boost_1_83_0.tar.bz2',
31+
+ :sha256 => '6478edfe2f3305127cffe8caf73ea0176c53769f4bf1585be237eb30798c3b8e' }
32+
33+
# Pinning to the same version as React.podspec.
34+
spec.platforms = { :ios => '11.0' }

RELEASE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Here again with a new (sparse) update to our app! Check out what is new below:
1+
Here again with a new update to our app! Check out what is new below
22

3-
- Bug fixes
4-
- Performance improvements on home and swap
5-
- Improvements in language support
3+
- Editing Favorite Tokens — We added the ability to drag, drop, and rearrange your favorited tokens. Keep your most important watched tokens close!
4+
5+
- Hidden Token Balances — We updated our wallet to not include the value of hidden tokens in the total wallet balance. Toggle specific tokens to be hidden or shown, and your overall wallet balance will reflect the changes immediately. Out of sight, out of mind.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
mobile/1.17.1
1+
mobile/1.18

apps/mobile/CODEOWNERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/mobile/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ Set this as your default version:
8585
Install cocoapods:
8686
`gem install cocoapods -v 1.13.0`
8787

88+
If you hit ruby errors around `ActiveSupport.deprecator`, downgrade your `activesupport` package by running:
89+
`gem uninstall activesupport && gem install activesupport -v 7.0.8`
90+
8891
### Add Xcode Command Line Tools
8992

9093
Open Xcode and go to:

apps/mobile/android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,17 +125,17 @@ android {
125125
dev {
126126
isDefault(true)
127127
applicationIdSuffix ".dev"
128-
versionName "1.17"
128+
versionName "1.18"
129129
dimension "variant"
130130
}
131131
beta {
132132
applicationIdSuffix ".beta"
133-
versionName "1.17.1"
133+
versionName "1.18"
134134
dimension "variant"
135135
}
136136
prod {
137137
dimension "variant"
138-
versionName "1.17.1"
138+
versionName "1.18"
139139
}
140140
}
141141

7.44 KB
Loading

0 commit comments

Comments
 (0)