1
0
mirror of https://gitcode.com/gh_mirrors/re/react-native-pushy.git synced 2025-09-17 18:56:09 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

Compare commits

..

7 Commits

Author SHA1 Message Date
sunnylqm
20a21ae894 v5.5.9 2020-04-14 22:59:19 +08:00
sunnylqm
5abe7b181b Fix ios script path 2020-04-14 22:58:53 +08:00
Sunny Luo
e859238d97 Update changelog.md 2020-04-07 16:38:06 +08:00
sunnylqm
7796090e72 v5.5.8 2020-04-02 12:09:38 +08:00
sunnylqm
f07be8cf0b Merge branch 'customInstanceManager' 2020-04-02 12:09:13 +08:00
Sunny Luo
4a84622c04 Update domains.json 2020-04-02 00:44:18 +08:00
Sunny Luo
cf812eacda Update domains.json 2020-04-02 00:43:21 +08:00
7 changed files with 15 additions and 16 deletions

View File

@@ -182,15 +182,15 @@ PODS:
- React-cxxreact (= 0.61.4)
- React-jsi (= 0.61.4)
- React-jsinspector (0.61.4)
- react-native-update (5.5.0):
- react-native-update (5.5.8):
- React
- react-native-update/BSDiff (= 5.5.0)
- react-native-update/RCTPushy (= 5.5.0)
- react-native-update/BSDiff (= 5.5.8)
- react-native-update/RCTPushy (= 5.5.8)
- SSZipArchive
- react-native-update/BSDiff (5.5.0):
- react-native-update/BSDiff (5.5.8):
- React
- SSZipArchive
- react-native-update/RCTPushy (5.5.0):
- react-native-update/RCTPushy (5.5.8):
- React
- SSZipArchive
- React-RCTActionSheet (0.61.4):
@@ -337,7 +337,7 @@ SPEC CHECKSUMS:
React-jsi: ca921f4041505f9d5197139b2d09eeb020bb12e8
React-jsiexecutor: 8dfb73b987afa9324e4009bdce62a18ce23d983c
React-jsinspector: d15478d0a8ada19864aa4d1cc1c697b41b3fa92f
react-native-update: 0696134a23c2ad1be899c12b33f9d3521284d458
react-native-update: 491cb5902a18f1ebeeb903f1a619df94662fc52a
React-RCTActionSheet: 7369b7c85f99b6299491333affd9f01f5a130c22
React-RCTAnimation: d07be15b2bd1d06d89417eb0343f98ffd2b099a7
React-RCTBlob: 8e0b23d95c9baa98f6b0e127e07666aaafd96c34
@@ -353,4 +353,4 @@ SPEC CHECKSUMS:
PODFILE CHECKSUM: 244ba888c650d3945bf72a8d01516fb0f1b3b097
COCOAPODS: 1.8.4
COCOAPODS: 1.9.1

View File

@@ -21,7 +21,7 @@ public class UpdateContext {
private File rootDir;
private Executor executor;
public static boolean DEBUG = true;
public static boolean DEBUG = false;
private static ReactInstanceManager mReactInstanceManager;
public UpdateContext(Context context) {

View File

@@ -1,5 +1,9 @@
### 最近更新
## 5.5.8 (2020-04-02)
1. 提供setCustomInstanceManager方法方便自己集成RN的用户调用
## 5.5.6 (2020-02-11)
1. bundle时清除缓存

View File

@@ -1 +1 @@
["update.reactnative.cn"]
["update.react-native.cn", "update.reactnative.cn"]

View File

@@ -1,6 +1,6 @@
{
"name": "react-native-update",
"version": "5.5.7",
"version": "5.5.9",
"description": "react-native hot update",
"main": "lib/index.js",
"scripts": {

View File

@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
s.vendored_libraries = 'RCTPushy/libRCTPushy.a'
s.pod_target_xcconfig = { 'USER_HEADER_SEARCH_PATHS' => '"$(SRCROOT)/../node_modules/react-native-update/ios"' }
s.resource = 'ios/pushy_build_time.txt'
s.script_phase = { :name => 'Generate build time', :script => '"$(SRCROOT)/../node_modules/react-native-update/scripts/generateiOSBuildTime.sh"', :execution_position => :before_compile }
s.script_phase = { :name => 'Generate build time', :script => 'set -x;date +%s > ${PODS_ROOT}/../../node_modules/react-native-update/ios/pushy_build_time.txt', :execution_position => :before_compile }
s.dependency 'React'
s.dependency 'SSZipArchive'

View File

@@ -1,5 +0,0 @@
#!/bin/bash
set -x
DEST="../../node_modules/react-native-update/ios"
date +%s > "$DEST/pushy_build_time.txt"