aboutsummaryrefslogtreecommitdiff
path: root/core/compress/gzip
Commit message (Collapse)AuthorAgeFilesLines
* core:os -> core:os/old && core:os/os2 -> core:osJeroen van Rijn6 days2-11/+11
|
* gzip -> os2Jeroen van Rijn7 days2-42/+34
|
* Change Odin's LICENSE to zlib from BSD 3-clausegingerBill2025-10-282-2/+2
| | | | This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form.
* Render examples.Jeroen van Rijn2025-10-101-12/+13
|
* Further overhaul of package line comments.Jeroen van Rijn2025-10-091-1/+1
|
* More package linesJeroen van Rijn2025-10-091-1/+1
|
* Add more package lines for the docsJeroen van Rijn2025-10-091-2/+3
|
* core: improve package doc comments for the documentation generatorLaytan Laats2024-09-032-89/+90
|
* Update numerous package declaration namesgingerBill2024-04-182-2/+2
|
* Minor cleanups to the core librarygingerBill2023-09-301-4/+2
|
* Use positional and named arguments within the core librarygingerBill2023-06-211-1/+1
|
* Merge pull request #1544 from FancyKillerPanda/build_ignoregingerBill2022-11-031-1/+1
|\ | | | | Changed `//+ignore` to `//+build ignore` and emit a warning for unknown tags
| * Changed //+ignore to //+build ignore.FancyKillerPanda2022-02-241-1/+1
| |
* | Rename `load_from_slice` to `load_from_bytes` across `core`gingerBill2022-05-142-5/+5
| |
* | [compress] 32-bit cleanness.Jeroen van Rijn2022-03-031-2/+2
|/
* Add `#partial [Enum]Type{...}` support to check for missing enumerated array ↵gingerBill2022-02-051-0/+1
| | | | fields
* Fix `#sparse` usagegingerBill2022-02-051-1/+1
|
* Make sure to `delete` on the right allocator.Jeroen van Rijn2021-09-191-2/+5
|
* compress: Update BSD-3 license + remove semicolons from compressed example.Jeroen van Rijn2021-09-062-2/+2
|
* Remove unneeded semicolons from the core librarygingerBill2021-08-311-1/+1
|
* Remove unneeded semicolons from the core librarygingerBill2021-08-312-125/+125
|
* ZLIB: cleanup.Jeroen van Rijn2021-06-271-14/+9
|
* PNG: Let PNG use the new compress I/O routines.Jeroen van Rijn2021-06-271-244/+7
|
* ZLIB: Split up input from stream and memory into own code paths.Jeroen van Rijn2021-06-272-21/+251
|
* Refactor compress.Context struct.Jeroen van Rijn2021-06-261-1/+0
|
* ZLIB: Moar faster.Jeroen van Rijn2021-06-261-22/+19
|
* ZLIB: Remove superfluous code.Jeroen van Rijn2021-06-261-3/+6
|
* ZLIB: If output size is known, reserve that much.Jeroen van Rijn2021-06-262-11/+71
|
* All reads now skip stream if in memory.Jeroen van Rijn2021-06-232-37/+40
|
* Refactor ZLIB structs.Jeroen van Rijn2021-06-232-11/+13
|
* ZLIB: Start optimization.Jeroen van Rijn2021-06-212-6/+26
|
* GZIP defer diverging fix in gzip example.Jeroen van Rijn2021-06-201-2/+3
|
* Core library clean up: Make range expressions more consistent and replace ↵gingerBill2021-06-141-2/+2
| | | | uses of `..` with `..=`
* Change General_Error.OK to nilJeroen van Rijn2021-05-032-4/+4
|
* Convert `core:compress` and `core:image` error checks to new union comparison.Jeroen van Rijn2021-05-032-5/+4
| | | | No more need for `is_kind(err, Error_Value)`, just test err == Error_Value.
* Minor stylistic code changes to compress and image packagesgingerBill2021-04-302-43/+41
|
* Use regular allocator from png+gzip's `load_from_file`.Jeroen van Rijn2021-04-301-1/+3
| | | | | | | | | | | | I would've used `os.stream_from_handle`, but: - Parts of it seem to be implemented for Windows only at the moment. - PNG's `peek_data` using that stream didn't manage to rewind and thus tried to parse the data after the header as the header. Two things must happen: - The `os.stream_from_handle` implementation needs to be fixed. - PNG and GZIP's parsers need to be able to handle streams that can't rewind or seek (backward). Those fixes are on my TODO list but are exceed the scope of this patch.
* Add `compress` and `image` to core.Jeroen van Rijn2021-04-302-0/+384