├── AutoDiff ├── AutoDiff.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── newfun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── newfun.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── AutoDiff.xcscheme │ │ └── xcschememanagement.plist ├── AutoDiff │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 256-1.png │ │ │ ├── 256.png │ │ │ ├── 32-1.png │ │ │ ├── 32.png │ │ │ ├── 512-1.png │ │ │ ├── 512.png │ │ │ ├── 64.png │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── bsdiff.h │ ├── exchange.png │ ├── libbsdiff.lib │ └── main.m ├── AutoDiffTests │ ├── AutoDiffTests.m │ └── Info.plist ├── AutoDiffUITests │ ├── AutoDiffUITests.m │ └── Info.plist └── diffpatch │ ├── DiffPatch.h │ ├── DiffPatch.m │ └── bsdiff │ ├── bspatch.c │ ├── bspatch.h │ └── libbsdiff.lib ├── README.md ├── demo ├── index.ios.js ├── ios │ ├── 0.1.jsbundle │ ├── config.plist │ ├── diffpatch.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── newfun.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── diffpatch.xcscheme │ │ └── xcuserdata │ │ │ └── newfun.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── diffpatch │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── diffpatch │ │ │ ├── DiffPatch.h │ │ │ ├── DiffPatch.m │ │ │ ├── bsdiff.o │ │ │ └── bsdiff │ │ │ │ ├── bsdiff.c │ │ │ │ ├── bsdiff.h │ │ │ │ ├── bsdiff.o │ │ │ │ ├── bspatch.c │ │ │ │ ├── bspatch.h │ │ │ │ ├── libbsdiff.a │ │ │ │ ├── libbsdiff.lib │ │ │ │ └── libbsdiff.so │ │ └── main.m │ ├── diffpatchTests │ │ ├── Info.plist │ │ └── diffpatchTests.m │ ├── newmain.jsbundle │ ├── patchClass.h │ └── patchClass.m └── package.json ├── diffmatchpatch ├── .gitignore ├── .travis.yml ├── COPYING ├── Configurations │ ├── Base+SnowLeopard.xcconfig │ ├── Base.xcconfig │ └── Version.xcconfig ├── DiffMatchPatch.h ├── DiffMatchPatch.m ├── DiffMatchPatch.podspec ├── DiffMatchPatch.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── DiffMatchPatch-OSX.xcscheme │ │ └── DiffMatchPatch.xcscheme ├── DiffMatchPatchCFUtilities.c ├── DiffMatchPatchCFUtilities.h ├── DiffMatchPatch_Prefix.pch ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── MinMaxMacros.h ├── NSDictionary+DMPExtensions.h ├── NSDictionary+DMPExtensions.m ├── NSMutableDictionary+DMPExtensions.h ├── NSMutableDictionary+DMPExtensions.m ├── NSString+JavaSubstring.h ├── NSString+JavaSubstring.m ├── NSString+UnicharUtilities.h ├── NSString+UnicharUtilities.m ├── NSString+UriCompatibility.h ├── NSString+UriCompatibility.m ├── README.md └── Tests │ ├── DiffMatchPatchTest-Info.plist │ ├── DiffMatchPatchTest.h │ ├── DiffMatchPatchTest.m │ └── speedtest.m ├── diffpatch ├── DiffPatch.h ├── DiffPatch.m └── bsdiff │ ├── bsdiff.c │ ├── bsdiff.h │ ├── bspatch.c │ └── bspatch.h └── img ├── gif.gif └── mac.png /AutoDiff/AutoDiff.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AutoDiff/AutoDiff.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AutoDiff/AutoDiff.xcodeproj/project.xcworkspace/xcuserdata/newfun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff.xcodeproj/project.xcworkspace/xcuserdata/newfun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AutoDiff/AutoDiff.xcodeproj/xcuserdata/newfun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff.xcodeproj/xcuserdata/newfun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /AutoDiff/AutoDiff.xcodeproj/xcuserdata/newfun.xcuserdatad/xcschemes/AutoDiff.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff.xcodeproj/xcuserdata/newfun.xcuserdatad/xcschemes/AutoDiff.xcscheme -------------------------------------------------------------------------------- /AutoDiff/AutoDiff.xcodeproj/xcuserdata/newfun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff.xcodeproj/xcuserdata/newfun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/AppDelegate.h -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/AppDelegate.m -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/256-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/256-1.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/32-1.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/512-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/512-1.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/Info.plist -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/ViewController.h -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/ViewController.m -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/bsdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/bsdiff.h -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/exchange.png -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/libbsdiff.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/libbsdiff.lib -------------------------------------------------------------------------------- /AutoDiff/AutoDiff/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiff/main.m -------------------------------------------------------------------------------- /AutoDiff/AutoDiffTests/AutoDiffTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiffTests/AutoDiffTests.m -------------------------------------------------------------------------------- /AutoDiff/AutoDiffTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiffTests/Info.plist -------------------------------------------------------------------------------- /AutoDiff/AutoDiffUITests/AutoDiffUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiffUITests/AutoDiffUITests.m -------------------------------------------------------------------------------- /AutoDiff/AutoDiffUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/AutoDiffUITests/Info.plist -------------------------------------------------------------------------------- /AutoDiff/diffpatch/DiffPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/diffpatch/DiffPatch.h -------------------------------------------------------------------------------- /AutoDiff/diffpatch/DiffPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/diffpatch/DiffPatch.m -------------------------------------------------------------------------------- /AutoDiff/diffpatch/bsdiff/bspatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/diffpatch/bsdiff/bspatch.c -------------------------------------------------------------------------------- /AutoDiff/diffpatch/bsdiff/bspatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/diffpatch/bsdiff/bspatch.h -------------------------------------------------------------------------------- /AutoDiff/diffpatch/bsdiff/libbsdiff.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/AutoDiff/diffpatch/bsdiff/libbsdiff.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/index.ios.js -------------------------------------------------------------------------------- /demo/ios/0.1.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/0.1.jsbundle -------------------------------------------------------------------------------- /demo/ios/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/config.plist -------------------------------------------------------------------------------- /demo/ios/diffpatch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demo/ios/diffpatch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demo/ios/diffpatch.xcodeproj/project.xcworkspace/xcuserdata/newfun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch.xcodeproj/project.xcworkspace/xcuserdata/newfun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /demo/ios/diffpatch.xcodeproj/xcshareddata/xcschemes/diffpatch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch.xcodeproj/xcshareddata/xcschemes/diffpatch.xcscheme -------------------------------------------------------------------------------- /demo/ios/diffpatch.xcodeproj/xcuserdata/newfun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch.xcodeproj/xcuserdata/newfun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /demo/ios/diffpatch.xcodeproj/xcuserdata/newfun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch.xcodeproj/xcuserdata/newfun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /demo/ios/diffpatch/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/AppDelegate.h -------------------------------------------------------------------------------- /demo/ios/diffpatch/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/AppDelegate.m -------------------------------------------------------------------------------- /demo/ios/diffpatch/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /demo/ios/diffpatch/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/ios/diffpatch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/Info.plist -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/DiffPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/DiffPatch.h -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/DiffPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/DiffPatch.m -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/bsdiff.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/bsdiff.o -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/bsdiff/bsdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/bsdiff/bsdiff.c -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/bsdiff/bsdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/bsdiff/bsdiff.h -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/bsdiff/bsdiff.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/bsdiff/bsdiff.o -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/bsdiff/bspatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/bsdiff/bspatch.c -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/bsdiff/bspatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/bsdiff/bspatch.h -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/bsdiff/libbsdiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/bsdiff/libbsdiff.a -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/bsdiff/libbsdiff.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/bsdiff/libbsdiff.lib -------------------------------------------------------------------------------- /demo/ios/diffpatch/diffpatch/bsdiff/libbsdiff.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/diffpatch/bsdiff/libbsdiff.so -------------------------------------------------------------------------------- /demo/ios/diffpatch/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatch/main.m -------------------------------------------------------------------------------- /demo/ios/diffpatchTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatchTests/Info.plist -------------------------------------------------------------------------------- /demo/ios/diffpatchTests/diffpatchTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/diffpatchTests/diffpatchTests.m -------------------------------------------------------------------------------- /demo/ios/newmain.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/newmain.jsbundle -------------------------------------------------------------------------------- /demo/ios/patchClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/patchClass.h -------------------------------------------------------------------------------- /demo/ios/patchClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/ios/patchClass.m -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/demo/package.json -------------------------------------------------------------------------------- /diffmatchpatch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/.gitignore -------------------------------------------------------------------------------- /diffmatchpatch/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/.travis.yml -------------------------------------------------------------------------------- /diffmatchpatch/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/COPYING -------------------------------------------------------------------------------- /diffmatchpatch/Configurations/Base+SnowLeopard.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Base.xcconfig" 2 | 3 | SDKROOT = macosx10.6 4 | -------------------------------------------------------------------------------- /diffmatchpatch/Configurations/Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/Configurations/Base.xcconfig -------------------------------------------------------------------------------- /diffmatchpatch/Configurations/Version.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/Configurations/Version.xcconfig -------------------------------------------------------------------------------- /diffmatchpatch/DiffMatchPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/DiffMatchPatch.h -------------------------------------------------------------------------------- /diffmatchpatch/DiffMatchPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/DiffMatchPatch.m -------------------------------------------------------------------------------- /diffmatchpatch/DiffMatchPatch.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/DiffMatchPatch.podspec -------------------------------------------------------------------------------- /diffmatchpatch/DiffMatchPatch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/DiffMatchPatch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /diffmatchpatch/DiffMatchPatch.xcodeproj/xcshareddata/xcschemes/DiffMatchPatch-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/DiffMatchPatch.xcodeproj/xcshareddata/xcschemes/DiffMatchPatch-OSX.xcscheme -------------------------------------------------------------------------------- /diffmatchpatch/DiffMatchPatch.xcodeproj/xcshareddata/xcschemes/DiffMatchPatch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/DiffMatchPatch.xcodeproj/xcshareddata/xcschemes/DiffMatchPatch.xcscheme -------------------------------------------------------------------------------- /diffmatchpatch/DiffMatchPatchCFUtilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/DiffMatchPatchCFUtilities.c -------------------------------------------------------------------------------- /diffmatchpatch/DiffMatchPatchCFUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/DiffMatchPatchCFUtilities.h -------------------------------------------------------------------------------- /diffmatchpatch/DiffMatchPatch_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/DiffMatchPatch_Prefix.pch -------------------------------------------------------------------------------- /diffmatchpatch/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /diffmatchpatch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/Info.plist -------------------------------------------------------------------------------- /diffmatchpatch/MinMaxMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/MinMaxMacros.h -------------------------------------------------------------------------------- /diffmatchpatch/NSDictionary+DMPExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSDictionary+DMPExtensions.h -------------------------------------------------------------------------------- /diffmatchpatch/NSDictionary+DMPExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSDictionary+DMPExtensions.m -------------------------------------------------------------------------------- /diffmatchpatch/NSMutableDictionary+DMPExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSMutableDictionary+DMPExtensions.h -------------------------------------------------------------------------------- /diffmatchpatch/NSMutableDictionary+DMPExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSMutableDictionary+DMPExtensions.m -------------------------------------------------------------------------------- /diffmatchpatch/NSString+JavaSubstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSString+JavaSubstring.h -------------------------------------------------------------------------------- /diffmatchpatch/NSString+JavaSubstring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSString+JavaSubstring.m -------------------------------------------------------------------------------- /diffmatchpatch/NSString+UnicharUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSString+UnicharUtilities.h -------------------------------------------------------------------------------- /diffmatchpatch/NSString+UnicharUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSString+UnicharUtilities.m -------------------------------------------------------------------------------- /diffmatchpatch/NSString+UriCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSString+UriCompatibility.h -------------------------------------------------------------------------------- /diffmatchpatch/NSString+UriCompatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/NSString+UriCompatibility.m -------------------------------------------------------------------------------- /diffmatchpatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/README.md -------------------------------------------------------------------------------- /diffmatchpatch/Tests/DiffMatchPatchTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/Tests/DiffMatchPatchTest-Info.plist -------------------------------------------------------------------------------- /diffmatchpatch/Tests/DiffMatchPatchTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/Tests/DiffMatchPatchTest.h -------------------------------------------------------------------------------- /diffmatchpatch/Tests/DiffMatchPatchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/Tests/DiffMatchPatchTest.m -------------------------------------------------------------------------------- /diffmatchpatch/Tests/speedtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffmatchpatch/Tests/speedtest.m -------------------------------------------------------------------------------- /diffpatch/DiffPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffpatch/DiffPatch.h -------------------------------------------------------------------------------- /diffpatch/DiffPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffpatch/DiffPatch.m -------------------------------------------------------------------------------- /diffpatch/bsdiff/bsdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffpatch/bsdiff/bsdiff.c -------------------------------------------------------------------------------- /diffpatch/bsdiff/bsdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffpatch/bsdiff/bsdiff.h -------------------------------------------------------------------------------- /diffpatch/bsdiff/bspatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffpatch/bsdiff/bspatch.c -------------------------------------------------------------------------------- /diffpatch/bsdiff/bspatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/diffpatch/bsdiff/bspatch.h -------------------------------------------------------------------------------- /img/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/img/gif.gif -------------------------------------------------------------------------------- /img/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfun1994/React-Native-DiffPatch/HEAD/img/mac.png --------------------------------------------------------------------------------