Skip to content

Commit 4f16d37

Browse files
committed
Released 1.0.0
1 parent da127bb commit 4f16d37

File tree

10 files changed

+40
-23
lines changed

10 files changed

+40
-23
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noaa-apt"
3-
version = "0.9.9-dev"
3+
version = "1.0.0"
44
authors = ["Martin Bernardi <martinber.710@gmail.com>"]
55
build = "src/build.rs"
66

debian/changelog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
noaa-apt (1.0.0-1) testing; urgency=medium
2+
3+
* Fixed truncation issues on Raspberry Pi and 32 bit systems.
4+
* GUI redesign, including a progress bar.
5+
* Improved performance.
6+
* Added settings.toml and different profiles, so now most constants can be
7+
edited.
8+
* Hide terminal window on Windows.
9+
* Export WAV as 16 bit integer when resampling so it can be used on WXtoIMG.
10+
* Added checks against overflows when using strange sample rates.
11+
* Added static OpenSSL as a Cargo feature.
12+
13+
-- Martin Bernardi <mbernardi@mbernardi-pc> Sun, 07 Apr 2019 22:48:20 -0300
14+
115
noaa-apt (0.9.8-1) testing; urgency=medium
216

317
* Automatic contrast adjustment.

docs/development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ If you want to disable this you can do it from the
306306
`/build/generate_windows_icon.sh`.
307307
308308
- Decode of `argentina.wav` on Raspberry Pi took approx 36s with WXtoImg
309-
(pristine, no map, no despeckle) and 1:30s with noaa-apt. Something like 3X
310-
slower.
309+
(pristine, no map, no despeckle) and 46s with noaa-apt using the fast
310+
profile.
311311
312312
## Acknowledgements
313313

docs/download.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ installed what you need:
7272
My builds use a statically linked libssl, so you don't need libssl unless you
7373
compiled noaa-apt yourself.
7474

75-
[amd64_deb]: https://github.com/martinber/noaa-apt/releases/download/v0.9.8/noaa-apt_0.9.8-1_amd64.deb
76-
[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
77-
[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
78-
[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
79-
[armv7_linux_gnueabihf_zip]: https://github.com/martinber/noaa-apt/releases/download/v0.9.8/noaa-apt-0.9.8-armv7-linux-gnueabihf.zip
80-
[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
75+
[amd64_deb]: https://github.com/martinber/noaa-apt/releases/download/v1.0.0/noaa-apt_1.0.0-1_amd64.deb
76+
[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
77+
[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
78+
[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
79+
[armv7_linux_gnueabihf_zip]: https://github.com/martinber/noaa-apt/releases/download/v1.0.0/noaa-apt-1.0.0-armv7-linux-gnueabihf.zip
80+
[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

docs/guide.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ Here you can see a screenshot of GQRX, things to note:
143143

144144
If you want to decode your WAV file on WXtoIMG:
145145

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

148149
- Enable _Expert mode_, on _Options > GUI Options_.
149150

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h2>Receive and decode images from weather satellites</h2>
3535
<em>noaa-apt</em> takes a recorded WAV file (from <em>GQRX</em>,
3636
<em>SDR#</em>, etc.) and decodes the image. As an example,
3737
<a href="{{ site.baseurl }}/examples/argentina.wav">
38-
this is a WAV file I recorded using GQRX</a>,
38+
this is a WAV file I recorded using GQRX</a>
3939
using a RTL-SDR and a double cross antenna.
4040
When loading that file on <em>noaa-apt</em>, you get as a result
4141
<a href="{{ site.baseurl }}/examples/argentina.png">this image</a>.

docs/usage.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,17 @@ Works with WAV files of any sample rate, 32 bit float or 16 bit integer encoded.
2222
When loading audio files with more than one channel (stereo), only the first one
2323
is used.
2424

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

27-
Run by clicking the executable, or from terminal without arguments. You can do
28-
two things:
29+
### GUI
2930

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

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

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

docs/version_check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.8
1+
1.0.0

src/program.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
id ICON "icon.ico"
22
1 VERSIONINFO
3-
FILEVERSION 0,9,8,0
4-
PRODUCTVERSION 0,9,8,0
3+
FILEVERSION 1,0,0,0
4+
PRODUCTVERSION 1,0,0,0
55
BEGIN
66
BLOCK "StringFileInfo"
77
BEGIN
88
BLOCK "040904E4"
99
BEGIN
1010
VALUE "CompanyName", "Martin Bernardi"
1111
VALUE "FileDescription", "noaa-apt image decoder"
12-
VALUE "FileVersion", "0.9.8"
12+
VALUE "FileVersion", "1.0.0"
1313
VALUE "InternalName", "noaa-apt"
1414
VALUE "LegalCopyright", "Martin Bernardi"
1515
VALUE "OriginalFilename", "noaa-apt.exe"
1616
VALUE "ProductName", "noaa-apt"
17-
VALUE "ProductVersion", "0.9.8"
17+
VALUE "ProductVersion", "1.0.0"
1818
END
1919
END
2020
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)