fix: filter and download script
This commit is contained in:
parent
b3a9a81aef
commit
98b7fb8bff
|
@ -64,3 +64,6 @@ android/keystores/debug.keystore
|
|||
lib/
|
||||
|
||||
tmp/
|
||||
android/libs/gowaku-sources.jar
|
||||
android/libs/gowaku.aar
|
||||
ios/Gowaku.xcframework
|
|
@ -35,8 +35,8 @@ wget "https://github.com/status-im/go-waku/releases/download/v${VERSION}/${SHA_F
|
|||
if [ "$DOWNLOAD_ANDROID" = true ]; then
|
||||
rm -f ${ANDROID_TAR}
|
||||
wget "https://github.com/status-im/go-waku/releases/download/v${VERSION}/${ANDROID_TAR}"
|
||||
|
||||
if ! sha256sum --status --ignore-missing -c gowaku-0.1.0.sha256; then
|
||||
sha256sum --status --ignore-missing -c ${SHA_FILE}
|
||||
if ! sha256sum --status --ignore-missing -c ${SHA_FILE}; then
|
||||
echo "checksum failed - verify download"
|
||||
exit 1
|
||||
fi
|
||||
|
@ -49,7 +49,7 @@ if [ "$DOWNLOAD_IOS" = true ]; then
|
|||
rm -f ${IOS_TAR}
|
||||
wget "https://github.com/status-im/go-waku/releases/download/v${VERSION}/${IOS_TAR}"
|
||||
|
||||
if ! sha256sum --status --ignore-missing -c gowaku-0.1.0.sha256; then
|
||||
if ! sha256sum --status --ignore-missing -c ${SHA_FILE}; then
|
||||
echo "checksum failed - verify download"
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -1 +1 @@
|
|||
0.2.0
|
||||
0.2.1
|
|
@ -405,7 +405,7 @@ export function storeQuery(query: StoreQuery, peerID: String = "", ms: Number =
|
|||
}
|
||||
|
||||
export class FilterSubscription {
|
||||
topic: String | null = null
|
||||
pubsubTopic: String | null = null
|
||||
contentFilters: Array<ContentFilter> = Array()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue