Ecosyste.ms: Issues
An open API service for providing issue and pull request metadata for open source projects.
GitHub / google/archive-patcher issues and pull requests
#100 - internal bug fix.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#99 - Revert intro of StandardCharsets in archive patcher, it can cause breakages on Android.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#98 - PUBLIC: Let TypedRange extend Range instead. It is just more natual.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#97 - Migrate PatchReaderTest to Truth.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#96 - replace @Test(expected = ... ) with assertThrows.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#95 - PUBLIC: Fix gradle autovalue dependency.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#94 - Fix memory regression.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#93 - Migrate DeltaDescriptor to use AutoValue
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#92 - PUBLIC: Replace MinimalZipEntry offset/length interfaces with Ranges.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#91 - PUBLIC: fix javadoc orphan method.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#90 - Replace TypedRange<Void> with Range.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#89 - fix typo in javadoc.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#88 - Add another property to DeltaFormat. Since we are going to apply entry-specific diffing, it is crucial for algorithms like BSDIFF that we combine adjacent entries into a big diff. But recursive FBF (any many other filetype specific algorithms) cannot be combined in similar ways.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#87 - Complete the sentence in a comment.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#86 - Rename generalPurposeFlagbit11 to useUtf8Encoding since it is pretty much what it means.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#85 - Revive MinimalZipEntryTest since getFilename is worth testing.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#84 - Delete PreDiffPlanEntryTest now that we are using AutoValues.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#83 - Create CompressionMethod enum so we don't use primitives internally.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#82 - Migrate PreDiffPlanEntry to use AutoValues.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#81 - Migrate MinimalZipEntry to use AutoValue.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#80 - Rename generatePreDiffPlan to make it clear we are also writing the delta friendly blobs.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#79 - Add method in MinimalZipEntry for tracking the total size of the local file header. This is required because we need this for computing the corresponding range after the delta friendly transformation.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#78 - Add profiler for MMAP.
Pull Request -
State: open - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#77 - Create memory mapped file implementation for ByteSource.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#76 - Add byte array implementation to profiler.
Pull Request -
State: open - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#75 - s/mXxx/xxx/ naming style.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#74 - Remove copy method and make all ByteSources able to open multiple streams.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#73 - Remove interface that uses RandomAccessFile. This is required because we might need to open the file again.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#72 - s/File/ByteSource/. Refactor to prepare for file-type specific diffing algorithm where the input could be a "section" of a file.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#71 - Add convenient method for slicing with only offset.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#70 - Add copy() method to ByteSource to deal with cases when we have to open multiple streams.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#69 - Add byte array implementation of ByteSource.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#68 - s/Google Inc/Google LLC/. Apparently this is a typo now.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#67 - Create ByteSource and an implementation based on RandomAccessFileInputStream to facilitate later refactoring.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#66 - Move MultiViewInputStreamFactory and subclasses to generator.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#65 - Replace the use of MatchingOutputStream by simple comparison between byte arrays.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#64 - Add SeekableDataInput interface for replacing File in internal logic.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 2 comments
#63 - Add a link to Andrew's email address
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#62 - Refactor RandomAccessObjectTest to use Parametrized.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#61 - Move RandomAccessObject subclasses to their own file.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#60 - Move RandomAccessObject related classes to shared so it can be used for things other than BSDIFF.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#59 - migrate to google truth
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#58 - BsPatch: Set PATCH_BUFFER_SIZE to 3xOUTPUT_STREAM_BUFFER_SIZE. The pipe operation might write the full buffer to the OutputStream so it makes sense that both buffer sizes are aligned.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#57 - fix typo (and make helper public)
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#56 - migrate to google truth
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#55 - Cleanup change generated by Refaster (go/refaster) to directories third_party/java_src/archive_patcher/... with template java/com/google/devtools/javatools/refactory/refaster/cleanups:TruthMigration
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#54 - Set DeltaFormat in PreDiffPlanner.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#53 - Deprecate useNativeBsDiff flag.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#52 - Update gradle version used to be 5.3 since we need excludeTestsMatching.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#51 - s/Entrys/Entries.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#50 - Add DeltaFormat into PreDiffPlanEntry.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#49 - Make useNativeBsDiff by default for FBF Patch generator.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#48 - Convert PreDiffPlanEntry to Builder pattern.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#47 - Rename explanation to uncompressionOptionExplanation.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#46 - Rename REC_xxx to PRE_DIFF_PLAN_ENTRY_xxx
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#45 - Fix a typo.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#44 - Make useNativeBsDiff by default for FBF Patch generator.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#43 - Update gradle version used to be 5.3 since we need excludeTestsMatching.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#42 - Make useNativeBsDiff by default for BsDiffPatchGenerator.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#41 - s/Entrys/Entries.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#40 - Convert PreDiffPlanEntry to Builder pattern.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#39 - Rename explanation to uncompressionOptionExplanation.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#38 - Rename REC_xxx to PRE_DIFF_PLAN_ENTRY_xxx
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#37 - Fix a typo.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#36 - Add guava dependencies to gradle build file, fix tests so "gradle build" passes.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#35 - Remove useNativeBsDiff flag.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#34 - Add DeltaFormat into PreDiffPlanEntry and convert to Builder.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#33 - Use Objects.hash to generate hashcode.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#32 - Propagate the supportedDeltaFormat as far as possible.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#31 - Change the constructor of FileByFile delta generator to pass lists and accept an extra argument for supported delta formats.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#30 - Remove useNativeBsDiff flag.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#29 - Make EntryExplanation.explanationIncludedIfNotNew optional.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#28 - Add convenience method to PreDiffExecutor.Builder for adding multiple modifiers.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#27 - Rename Recommendation-related stuff to be more understandable.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#26 - Add presubmit check to make sure we don't break any Phonesky stuff.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#25 - java 8 migrations
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#24 - Remove unnecessary super() call.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#23 - Sort List<> in reverse order in a single operation. Also invert a if-else to improve readability.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#22 - Sort List in reverse order from the beginning.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#21 - Rename everything to remove V1.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#20 - Create the skeleton for V2 generator.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#19 - Remove unnecessary modifiers.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#18 - Add parameter comments for Sample.
Pull Request -
State: closed - Opened by Archive-Patcher-Sync-Robot over 5 years ago
- 1 comment
#17 - Android: java.lang.IllegalStateException: setLevel cannot be called after setInput
Issue -
State: closed - Opened by lchad over 6 years ago
- 3 comments
#16 - Update README to explain that bsdiff is used without compression
Issue -
State: open - Opened by andrewhayden over 6 years ago
Labels: documentation
#15 - cpp/object-c implementation?
Issue -
State: closed - Opened by kaedea over 6 years ago
- 3 comments
Labels: question
#14 - build.gradle changes for distribution
Pull Request -
State: closed - Opened by juliantoledo about 7 years ago
- 7 comments
#13 - java.util.zip.ZipException: EOCD record not found in last 32k of archive, giving up
Issue -
State: closed - Opened by keshav0891 about 7 years ago
- 2 comments
Labels: invalid
#12 - java.lang.Exception: zlib not compatible on this system
Issue -
State: closed - Opened by qianmuxi over 7 years ago
- 11 comments
Labels: Type-Defect, Priority-High
#11 - java.lang.IllegalStateException: attempt to use Deflater after calling end
Issue -
State: closed - Opened by rotman over 7 years ago
- 7 comments
Labels: Priority-Medium, Type-Defect
#10 - Both-way dependency.
Issue -
State: closed - Opened by kaedea over 7 years ago
- 5 comments
Labels: Type-Defect, Priority-Low
#9 - Can you package it to jar or aar, then push it to the maven central or jcenter?
Issue -
State: open - Opened by snowdream almost 8 years ago
- 11 comments
Labels: enhancement, Priority-Low
#8 - Upstream changes to archive patcher:
Pull Request -
State: closed - Opened by amorris13 about 8 years ago
#7 - Bad patch generated if new archive contains multiple entries that trigger decompression of one entry in the old archive
Issue -
State: closed - Opened by andrewhayden over 8 years ago
- 1 comment
#6 - Output Stream is closed during patch apply
Issue -
State: closed - Opened by andrewhayden over 8 years ago
#5 - Memory-mapped temp files used for bsdiff delta generation are not being deleted on Windows
Issue -
State: closed - Opened by andrewhayden over 8 years ago
#4 - Better support for non-MSDOS "external" file attributes
Issue -
State: closed - Opened by GoogleCodeExporter over 9 years ago
- 1 comment
Labels: Type-Defect, auto-migrated, Priority-Low
#3 - Support variable record length control fields properly
Issue -
State: closed - Opened by GoogleCodeExporter over 9 years ago
- 1 comment
Labels: Priority-Medium, Type-Defect, auto-migrated
#2 - Need more test data with externally-generated APKs, JARs, and ZIPs of varying types
Issue -
State: closed - Opened by GoogleCodeExporter over 9 years ago
- 1 comment
Labels: Priority-Medium, Type-Defect, auto-migrated
#1 - Add support for opaque binary sections
Issue -
State: closed - Opened by GoogleCodeExporter over 9 years ago
- 1 comment
Labels: Priority-Medium, Type-Defect, auto-migrated