fiatjaf
49bd7c27fd
negentropy: add format.
2024-09-18 16:39:40 -03:00
Mattias Wadman
7b6d8532fd
go,lint: Update to go 1.22 and fix some lint warnings
2024-09-12 11:44:38 +02:00
twystd
2f2070eca2
midi: fixed lint warnings
2024-08-25 17:09:12 -07:00
bump
2c38cf1324
Update github-golangci-lint to 1.60.1 from 1.59.1
...
Release notes https://github.com/golangci/golangci-lint/releases/tag/v1.60.1
Require go 1.21 and fix various lint warnings and use new features
2024-08-14 20:05:40 +02:00
Mattias Wadman
7fca1970dc
Merge pull request #975 from mrcook/tzx
...
tzx: Add suport for ZX Spectrum TZX and TAP files
2024-08-08 10:22:06 +02:00
Mattias Wadman
64b0523256
Add PBS tidbit 8 episode
2024-08-07 12:30:59 +02:00
Michael R. Cook
81b23041af
tzx: Add suport for ZX Spectrum TZX and TAP files
2024-08-01 11:57:51 +02:00
Mattias Wadman
175661d349
doc: Add kodsnack 585 - Polymorfisk JSON
2024-05-22 09:44:05 +02:00
Mattias Wadman
ebf063d1c0
doc: Cleanup and improve texts a bit
2024-04-30 14:16:13 +02:00
Mattias Wadman
ebffb3be7b
jp2c: Add jpeg2000 codestream format
2024-04-10 16:24:14 +02:00
Mattias Wadman
bf7fa07c41
fq: Use go 1.20 and cleanup
...
Also rename *ex packages to *x
2024-04-01 19:14:10 +02:00
Mattias Wadman
36e8287c2b
doc: Regenerate after nes and new ansisvg
2024-03-17 13:45:38 +01:00
Mattias Wadman
e741ca7888
doc: Add ImHex to related tools
2024-02-15 10:31:54 +01:00
Mattias Wadman
55470deb99
doc: Update docs to include fit format
...
Also new version of ansisvg
2024-02-10 01:36:05 +01:00
Mattias Wadman
63e0aa3c9d
doc: Fix weird wording in README.md
2024-02-06 15:32:43 +01:00
Mattias Wadman
41226f48d8
readline: Switch to ergochat/readline
...
All fq changes merged.
2023-12-24 20:35:15 +01:00
Michael B.
cc0d5a8b9b
leveldb: update docs
2023-12-07 13:02:55 +01:00
Michael B.
b05aa997ab
leveldb: address PR comments
2023-12-05 11:31:30 +01:00
Jakob Voß
6c3914aad6
Add DFDL acronym to README.md
2023-12-03 10:42:46 +01:00
fiatjaf
976a7564c7
opentimestamps: one last make doc.
2023-09-26 15:42:02 -03:00
fiatjaf
5e7c01a013
opentimestamps: address comments and improve things.
2023-09-26 12:35:18 -03:00
Mattias Wadman
f15f9bc1a4
doc,moc3,caff: Add author and regenerate docs
2023-08-21 10:04:37 +02:00
Ronsor
441fcd09c8
moc3, caff: update tests and README
2023-08-18 07:41:17 -07:00
Mattias Wadman
23b9eeab1f
luajit: make doc
2023-06-22 23:54:49 +02:00
Harshad Yelpale
d02b70f7b6
Update README.md
...
Thanks for suggestion added dashesh it looks better.
let me know still i missed or need to add anything i am happy to add.
2023-06-06 00:49:38 +05:30
Harshad Yelpale
47b90603a3
Improved README.md
...
Added some Punctuations , spaces , some words in order make Readme file user friendly.
2023-06-06 00:01:36 +05:30
aquova
fd2cb6f841
doc: Fix broken link in README
...
Arch Linux recently merged all entries in its 'community' repository
into 'extra' (https://archlinux.org/news/git-migration-announcement/ ).
This commit updates the README to reflect this change.
2023-06-03 08:05:37 -05:00
Kian-Meng Ang
dd4fa26867
doc: fix typos
...
Found via `codespell -S format -L bu,ue,trys,nd,tbe,te,trun,actuall`
2023-05-14 21:45:15 +08:00
Pavel Safonov
7a89234b13
postgres: update doc
2023-05-04 08:34:32 +03:00
Pavel Safonov
bb2659d442
Merge remote-tracking branch 'master' into postgres_merge_master_0
2023-05-03 09:44:02 +03:00
Mattias Wadman
dc4a82eeed
aiff: Add basic decoder
2023-03-09 15:16:52 +01:00
Mattias Wadman
9852f56b74
tls: Add TLS 1.0, 1.1, 1.2 decode and decryption
...
What it can do:
- Decodes records and most standard messages and extensions.
- Decryptes records and reassemples application data stream if a keylog is provided
and the cipher suite is supported.
- Supports most recommended and used ciphers and a bunch of older ones.
What it can't do:
- SSL v3 maybe supported, is similar to TLS 1.0, not tested.
- Decryption and renegotiation/cipher change.
- Record defragmentation not supported, seems rare over TCP.
- TLS 1.3
- SSL v2 but v2 compat header is supported.
- Some key exchange messages not decoded yet
Decryption code is heavly based on golang crypto/tls and zmap/zcrypto.
Will be base for decoding http2 and other TLS based on protocols.
Fixes #587
2023-03-05 13:52:12 +01:00
Mattias Wadman
156aeecacd
doc: Add FOSDEM 2023 talk
2023-02-06 16:50:49 +01:00
Mattias Wadman
ca27e4266e
doc: Add _parent for decode values and clenaup doc a bit
2023-01-03 11:21:09 +01:00
Mattias Wadman
e3ae1440c9
interp: Rename to/from<format> functions to to_/from_<format>
...
Feels less cluttered, easier to read and more consistent.
Still keep tovalue, tobytes etc that are more basic functions this
only renamed format related functions.
Also there is an exceptin for to/fromjson as it comes from jq.
Also fixes lots of spelling errors while reading thru.
2022-12-21 17:48:39 +01:00
Jakob Voß
7fa8b63518
Add related file format projects to README
2022-12-19 11:40:13 +01:00
Mattias Wadman
9e5a072e50
mp3_frame_tags: Covert to decode group and split to mp3_frame_{xing,vbri} decoders
2022-12-15 12:10:06 +01:00
David McDonald
34c560c2f5
Merge branch 'master' of https://github.com/wader/fq into macos_bookmark
2022-12-05 22:01:44 -06:00
Mattias Wadman
2c4862c9fb
Merge pull request #498 from bitbears-dev/master
...
support tzif (time zone information format)
2022-12-04 13:21:19 +01:00
@0xb17bea125
2ee6360b97
support tzif (time zone information format)
2022-12-04 21:02:39 +09:00
Mattias Wadman
42debe5871
dev,doc,make: Cleanup makefile and have proper targets for *.md and *.svg
...
Update format dev docs to only generate README.md and doc/foramts.md to not
cause formats.svg conflicts.
2022-12-04 12:37:10 +01:00
David McDonald
4a28e44f44
changes decoder package name from bookmark to apple_bookmark
2022-12-01 23:31:57 -06:00
David McDonald
34db9d7fea
regenerated docs, added tests, fixed torepr
2022-12-01 23:31:57 -06:00
Pavel Safonov
6fe61cd634
Merge branch 'wader_master' into postgres_wal_removed
2022-11-23 13:57:50 +03:00
Mattias Wadman
c93301fc70
raw,bits,bytes: Replace raw format with bits and bytes format that decode to a binary
...
raw format was a hack to skip decoding to be able to get a binary using tobyte etc.
Now you can do fq -d bytes ... instead of fq -d raw 'tobytes | ...'
2022-11-20 19:51:12 +01:00
Mattias Wadman
0cf46e1196
wav,avi,avc_au: Add avi decoder and refactor wav decoder
...
avi and wav now share common riff decode code
avc_au decoder can now handle annexb format
2022-11-19 13:11:27 +01:00
Mattias Wadman
7b6492eed0
Improve README.md a bit, one more demo and move up usage
2022-11-17 11:10:08 +01:00
Mattias Wadman
c3a0686c9e
mp3_frame_tags: Refactor and rename xing format to mp3_frame_tags
...
Make more sense to use a more general name when there is both info and xing
and possibly vbri in the future. Also both xing and info seems to have extension
fields
Remove some old tests that are not really needed anymore.
2022-11-16 17:32:03 +01:00
Pavel Safonov
cdf283101f
Merge branch 'wader_master' into postgres
2022-11-01 08:25:07 +03:00
Mattias Wadman
4bfd9d8119
doc: Add link to nttw6 presentation video and slides
...
Also clarify install instructions a bit
2022-10-30 13:28:46 +01:00