Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

UPGRADE_GUIDE.md 1.3 KiB

12345678910111213141516171819202122232425262728293031323334
  1. # Upgrading from aptdec 1.8.0 to 2.0.0
  2. # `aptdec` (now `aptdec-cli`)
  3. ## Removed
  4. - The `-d` (output directory) flag
  5. - The `-g` (gamma) flag
  6. - Map overlays/MCIR
  7. - Reading raw PNG images
  8. (Some of these features have been moved into `aptdec_post.py`)
  9. ## Changes
  10. - "palettes" are now called "luts"
  11. - Image type and effects are now full English words (separated by commas) instead of letters
  12. - Output format of realtime images is now `CURRENT_TIME.png` instead of `CURRENT_TIME-r.png`
  13. - Channel A/B images include telemetry
  14. ## Examples
  15. | v1.8 | v2.0.0 |
  16. |---------------------------------------|-------------------------------------------|
  17. | `aptdec file.wav` | `aptdec-cli file.wav` |
  18. | `aptdec -i rt file.wav` | `aptdec-cli -i raw,thermal file.wav` |
  19. | `aptdec -i ab file.wav` | `aptdec-cli -i a,b -e strip file.wav` |
  20. | `aptdec -i p -p palette.png file.wav` | `aptdec-cli -i lut -l lut.png file.wav` |
  21. | `aptdec -d out *.wav` | `mkdir out; cd out; aptdec-cli ../*.wav` |
  22. # `libapt` (now `libaptdec`)
  23. To avoid confusion with `apt` (the Debian package manager) the name of the aptdec library has been changed to `libaptdec`.