Skip to content

Commit

Permalink
Released 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinber committed Apr 8, 2019
1 parent da127bb commit 4f16d37
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noaa-apt"
version = "0.9.9-dev"
version = "1.0.0"
authors = ["Martin Bernardi <[email protected]>"]
build = "src/build.rs"

Expand Down
14 changes: 14 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
noaa-apt (1.0.0-1) testing; urgency=medium

* Fixed truncation issues on Raspberry Pi and 32 bit systems.
* GUI redesign, including a progress bar.
* Improved performance.
* Added settings.toml and different profiles, so now most constants can be
edited.
* Hide terminal window on Windows.
* Export WAV as 16 bit integer when resampling so it can be used on WXtoIMG.
* Added checks against overflows when using strange sample rates.
* Added static OpenSSL as a Cargo feature.

-- Martin Bernardi <mbernardi@mbernardi-pc> Sun, 07 Apr 2019 22:48:20 -0300

noaa-apt (0.9.8-1) testing; urgency=medium

* Automatic contrast adjustment.
Expand Down
4 changes: 2 additions & 2 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ If you want to disable this you can do it from the
`/build/generate_windows_icon.sh`.
- Decode of `argentina.wav` on Raspberry Pi took approx 36s with WXtoImg
(pristine, no map, no despeckle) and 1:30s with noaa-apt. Something like 3X
slower.
(pristine, no map, no despeckle) and 46s with noaa-apt using the fast
profile.
## Acknowledgements
Expand Down
12 changes: 6 additions & 6 deletions docs/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ installed what you need:
My builds use a statically linked libssl, so you don't need libssl unless you
compiled noaa-apt yourself.

[amd64_deb]: https://github.com/martinber/noaa-apt/releases/download/v0.9.8/noaa-apt_0.9.8-1_amd64.deb
[x86_64_windows_gnu_zip]: https://github.com/martinber/noaa-apt/releases/download/v0.9.8/noaa-apt-0.9.8-x86_64-windows-gnu.zip
[x86_64_linux_gnu_zip]: https://github.com/martinber/noaa-apt/releases/download/v0.9.8/noaa-apt-0.9.8-x86_64-linux-gnu.zip
[x86_64_linux_gnu_nogui_zip]: https://github.com/martinber/noaa-apt/releases/download/v0.9.8/noaa-apt-0.9.8-x86_64-linux-gnu-nogui.zip
[armv7_linux_gnueabihf_zip]: https://github.com/martinber/noaa-apt/releases/download/v0.9.8/noaa-apt-0.9.8-armv7-linux-gnueabihf.zip
[armv7_linux_gnueabihf_nogui_zip]: https://github.com/martinber/noaa-apt/releases/download/v0.9.8/noaa-apt-0.9.8-armv7-linux-gnueabihf-nogui.zip
[amd64_deb]: https://github.com/martinber/noaa-apt/releases/download/v1.0.0/noaa-apt_1.0.0-1_amd64.deb
[x86_64_windows_gnu_zip]: https://github.com/martinber/noaa-apt/releases/download/v1.0.0/noaa-apt-1.0.0-x86_64-windows-gnu.zip
[x86_64_linux_gnu_zip]: https://github.com/martinber/noaa-apt/releases/download/v1.0.0/noaa-apt-1.0.0-x86_64-linux-gnu.zip
[x86_64_linux_gnu_nogui_zip]: https://github.com/martinber/noaa-apt/releases/download/v1.0.0/noaa-apt-1.0.0-x86_64-linux-gnu-nogui.zip
[armv7_linux_gnueabihf_zip]: https://github.com/martinber/noaa-apt/releases/download/v1.0.0/noaa-apt-1.0.0-armv7-linux-gnueabihf.zip
[armv7_linux_gnueabihf_nogui_zip]: https://github.com/martinber/noaa-apt/releases/download/v1.0.0/noaa-apt-1.0.0-armv7-linux-gnueabihf-nogui.zip
3 changes: 2 additions & 1 deletion docs/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ Here you can see a screenshot of GQRX, things to note:

If you want to decode your WAV file on WXtoIMG:

- Resample the recording to 11025Hz.
- Resample the recording to 11025Hz,
[you can use noaa-apt for that](./usage.html).

- Enable _Expert mode_, on _Options > GUI Options_.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h2>Receive and decode images from weather satellites</h2>
<em>noaa-apt</em> takes a recorded WAV file (from <em>GQRX</em>,
<em>SDR#</em>, etc.) and decodes the image. As an example,
<a href="{{ site.baseurl }}/examples/argentina.wav">
this is a WAV file I recorded using GQRX</a>,
this is a WAV file I recorded using GQRX</a>
using a RTL-SDR and a double cross antenna.
When loading that file on <em>noaa-apt</em>, you get as a result
<a href="{{ site.baseurl }}/examples/argentina.png">this image</a>.
Expand Down
14 changes: 8 additions & 6 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,17 @@ Works with WAV files of any sample rate, 32 bit float or 16 bit integer encoded.
When loading audio files with more than one channel (stereo), only the first one
is used.

### GUI
When using a Raspberry Pi, I recommend the "fast" profile, you can enable it
using `-p fast` or editing the
[configuration file](./usage.html#configuration-file).

Run by clicking the executable, or from terminal without arguments. You can do
two things:
### GUI

- Decode a WAV file into a PNG.
Run by clicking the executable, or from terminal without arguments.

- Resample a WAV into another WAV, this is useful if you want to try a program
like [atp-dec/apt-dec] that requires a specific sample rate.
On _Tools > Resample WAV_ you can resample a WAV into another WAV, this is
useful if you want to try a program like [WXtoIMG] or [atp-dec/apt-dec] that
requires a specific sample rate.

![GUI]({{ site.baseurl }}/images/gui.png)

Expand Down
2 changes: 1 addition & 1 deletion docs/version_check
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.8
1.0.0
8 changes: 4 additions & 4 deletions src/program.rc
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
id ICON "icon.ico"
1 VERSIONINFO
FILEVERSION 0,9,8,0
PRODUCTVERSION 0,9,8,0
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "Martin Bernardi"
VALUE "FileDescription", "noaa-apt image decoder"
VALUE "FileVersion", "0.9.8"
VALUE "FileVersion", "1.0.0"
VALUE "InternalName", "noaa-apt"
VALUE "LegalCopyright", "Martin Bernardi"
VALUE "OriginalFilename", "noaa-apt.exe"
VALUE "ProductName", "noaa-apt"
VALUE "ProductVersion", "0.9.8"
VALUE "ProductVersion", "1.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 4f16d37

Please sign in to comment.