Skip to content

Commit

Permalink
ci(release): publish latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-happy-puppy committed Dec 20, 2023
1 parent 6609a78 commit e295be7
Show file tree
Hide file tree
Showing 482 changed files with 4,242 additions and 15,115 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ node_modules
# testing
coverage

# utility script output
scripts/dist

# next.js
.next/
out/
Expand Down
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,54 +17,3 @@ index 4b5b90b7b478668fdff3fd12d5e028d423ada057..af30dc6f700b3b3cfde5c149bf1f8657
});
}

diff --git a/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuManager.java b/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuManager.java
index 81f7b4b58c946d1b2e14301f9b52ecffa1cd0643..403dac6450be24a8c4d26ffb8293b51a1485f6a8 100644
--- a/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuManager.java
+++ b/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuManager.java
@@ -45,6 +45,11 @@ public class ContextMenuManager extends ViewGroupManager<ContextMenuView> {
view.setDropdownMenuMode(enabled);
}

+ @ReactProp(name = "disabled")
+ public void setDisabled(ContextMenuView view, @Nullable boolean disabled) {
+ view.setDisabled(disabled);
+ }
+
@androidx.annotation.Nullable
@Override
public Map<String, Object> getExportedCustomDirectEventTypeConstants() {
diff --git a/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuView.java b/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuView.java
index af30dc6f700b3b3cfde5c149bf1f865786df3e27..aa04fe6d9458601fdcb9bb44f89e16bbc1ad9d39 100644
--- a/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuView.java
+++ b/android/src/main/java/com/mpiannucci/reactnativecontextmenu/ContextMenuView.java
@@ -43,6 +43,8 @@ public class ContextMenuView extends ReactViewGroup implements PopupMenu.OnMenuI

boolean cancelled = true;

+ private boolean disabled = false;
+
protected boolean dropdownMenuMode = false;

public ContextMenuView(final Context context) {
@@ -87,13 +89,18 @@ public class ContextMenuView extends ReactViewGroup implements PopupMenu.OnMenuI

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
- return true;
+ return disabled ? false : true;
}

@Override
public boolean onTouchEvent(MotionEvent ev) {
- gestureDetector.onTouchEvent(ev);
- return true;
+ if (disabled) return false;
+ gestureDetector.onTouchEvent(ev);
+ return true;
+ }
+
+ public void setDisabled(boolean disabled) {
+ this.disabled = disabled;
}

public void setActions(@Nullable ReadableArray actions) {
1 change: 0 additions & 1 deletion CODEOWNERS

This file was deleted.

43 changes: 4 additions & 39 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,40 +1,5 @@
IPFS hash of the deployment:
- CIDv0: `QmYMiHUXKwbifsieRsk6jexS5sS321rZtsoEtu5s266ewa`
- CIDv1: `bafybeieu3j7cdq5nz4r6z7qnoxcyqq7bk4wjiyxmelpzprkvoaedcb4uze`

The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).

You can also access the Uniswap Interface from an IPFS gateway.
**BEWARE**: The Uniswap interface uses [`localStorage`](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage) to remember your settings, such as which tokens you have imported.
**You should always use an IPFS gateway that enforces origin separation**, or our hosted deployment of the latest release at [app.uniswap.org](https://app.uniswap.org).
Your Uniswap settings are never remembered across different URLs.

IPFS gateways:
- https://bafybeieu3j7cdq5nz4r6z7qnoxcyqq7bk4wjiyxmelpzprkvoaedcb4uze.ipfs.dweb.link/
- https://bafybeieu3j7cdq5nz4r6z7qnoxcyqq7bk4wjiyxmelpzprkvoaedcb4uze.ipfs.cf-ipfs.com/
- [ipfs://QmYMiHUXKwbifsieRsk6jexS5sS321rZtsoEtu5s266ewa/](ipfs://QmYMiHUXKwbifsieRsk6jexS5sS321rZtsoEtu5s266ewa/)

## 5.3.0 (2023-12-19)


### Features

* **web:** [info] add volume charts (#5235) 80c3996
* **web:** [info] hide About and Address section with flag on (#5464) 61d0397
* **web:** add info tables (#5274) adf64bd
* **web:** Add moonpay text to account drawer and moonpay modal (#5478) 0a09ce3
* **web:** updated page titles (#5390) 4b39985
* **web:** use cumulative value for unhovered bar chart header (#5432) 304c761


### Bug Fixes

* **web:** center confirmation modal icons (#5492) fe3688a
* **web:** disambiguate 3P ProviderRpcErrors (#5481) ca912dd
* **web:** fix fadepresence typecheck (#5466) 9d39fa6
* **web:** fix vercel ignore to actually ignore if no web changes (#5420) 45e0ee2
* **web:** fixes and improvements to token sorting / filtering (#5388) 8f740ce
* **web:** optional address for multichainmap (#5393) 6eb015f
* **web:** show default list tokens when searched (#5494) (#5498) d28e298

Here again with a new (sparse) update to our app! Check out what is new below:

- Bug fixes
- Performance improvements on home and swap
- Improvements in language support
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.3.0
mobile/1.17.1
1 change: 1 addition & 0 deletions apps/mobile/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @Uniswap/mobile-release-admins
3 changes: 0 additions & 3 deletions apps/mobile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,6 @@ Set this as your default version:
Install cocoapods:
`gem install cocoapods -v 1.13.0`

If you hit ruby errors around `ActiveSupport.deprecator`, downgrade your `activesupport` package by running:
`gem uninstall activesupport && gem install activesupport -v 7.0.8`

### Add Xcode Command Line Tools

Open Xcode and go to:
Expand Down
6 changes: 3 additions & 3 deletions apps/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -125,17 +125,17 @@ android {
dev {
isDefault(true)
applicationIdSuffix ".dev"
versionName "1.18"
versionName "1.17"
dimension "variant"
}
beta {
applicationIdSuffix ".beta"
versionName "1.18"
versionName "1.17.1"
dimension "variant"
}
prod {
dimension "variant"
versionName "1.18"
versionName "1.17.1"
}
}

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<item name="android:itemBackground">@color/item_background</item>
<item name="android:windowLightStatusBar">false</item>
<item name="android:windowSplashScreenAnimatedIcon">@drawable/splashscreen_icon</item>
<item name="android:editTextBackground">@android:color/transparent</item>
</style>

</resources>
1 change: 0 additions & 1 deletion apps/mobile/android/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<item name="android:windowLightStatusBar">true</item>
<item name="android:windowSplashScreenAnimatedIcon">@drawable/splashscreen_icon</item>
<item name="android:navigationBarColor">@color/background_material_light</item>
<item name="android:editTextBackground">@android:color/transparent</item>
</style>

</resources>
8 changes: 4 additions & 4 deletions apps/mobile/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ PODS:
- EXAV (13.4.1):
- ExpoModulesCore
- ReactCommon/turbomodule/core
- EXBarCodeScanner (12.7.0):
- EXBarCodeScanner (12.3.2):
- EXImageLoader
- ExpoModulesCore
- ZXingObjC/OneD
Expand All @@ -660,7 +660,7 @@ PODS:
- ExpoModulesCore
- EXFont (11.1.1):
- ExpoModulesCore
- EXImageLoader (4.4.0):
- EXImageLoader (4.1.1):
- ExpoModulesCore
- React-Core
- EXLocalAuthentication (13.0.2):
Expand Down Expand Up @@ -1689,10 +1689,10 @@ SPEC CHECKSUMS:
EthersRS: 56b70e73d22d4e894b7e762eef1129159bcd3135
EXApplication: d8f53a7eee90a870a75656280e8d4b85726ea903
EXAV: f393dfc0b28214d62855a31e06eb21d426d6e2da
EXBarCodeScanner: 296dd50f6c03928d1d71d37ea17473b304cfdb00
EXBarCodeScanner: 8e23fae8d267dbef9f04817833a494200f1fce35
EXFileSystem: 0b4a2c08c2dc92146849772145d61c1773144283
EXFont: 6ea3800df746be7233208d80fe379b8ed74f4272
EXImageLoader: 03063370bc06ea1825713d3f55fe0455f7c88d04
EXImageLoader: fd053169a8ee932dd83bf1fe5487a50c26d27c2b
EXLocalAuthentication: 78cc5a00b13745b41d16d189ab332b61a01299f9
Expo: 8448e3a2aa1b295f029c81551e1ab6d986517fdb
ExpoBlur: fac3c6318fdf409dd5740afd3313b2bd52a35bac
Expand Down
Loading

0 comments on commit e295be7

Please sign in to comment.