Skip to content

Commit

Permalink
documentation: final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mzuther committed Sep 6, 2012
1 parent 9b57744 commit 0aff008
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 15 deletions.
9 changes: 8 additions & 1 deletion doc/CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
Contributors
============
Martin Zuther a.k.a. radix
Bob Katz
bram@smartelectronix
Raiden
and the K-Meter users...


Beta testing
============
Rickard (Interfearing Sounds)


(note: do not forget to update "src/window_about.cpp"!)
Binary file modified doc/kmeter.pdf
Binary file not shown.
17 changes: 8 additions & 9 deletions doc/kmeter.tex
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ \section{Stereo meter}
hearing, wrong placement of your monitors or similar problems.

But please don't get the false notion that the needle should stay in
the middle all time in order to achieve a good mix. Quite the
the middle all the time in order to achieve a good mix. Quite the
contrary! As I said, you should not mix by your eyes \dots

\chapter{Validation}
Expand All @@ -438,10 +438,10 @@ \chapter{Validation}
source code. The directory \path{validation} contains instructions
and FLAC-compressed wave files. To validate \textbf{ITU-R} mode,
please download \href{http://www.itu.int/pub/R-REP-BS.2217}{ITU-R
BS.2217} and follow the instructions (at the time being, the gate
tests should be ignored). A word of warning: these audio files may
\textbf{damage your ears} and speakers, so please watch your monitor
levels!
BS.2217} and follow the instructions (at the time being, the tests
for loudness gating should be ignored). A word of warning: these
audio files may \textbf{damage your ears} and speakers, so please
watch your monitor levels!

\begin{wrapfigure}{r}{0.395\linewidth}
\includegraphics[scale=\screenshotscale,clip]{include/images/dialog_validation.png}
Expand All @@ -454,8 +454,7 @@ \chapter{Validation}
and the audio file match, otherwise the results will not be correct.

Now, select which \textbf{variables} (if any) should be dumped. You
may also restrict the dumped data to a specific audio
\textbf{channel}.
may also restrict dumped data to a specific audio \textbf{channel}.

Finally, click on the \textbf{validate} button to reset all meters and
start playback of the selected audio file. All audio input will be
Expand Down Expand Up @@ -634,8 +633,8 @@ \chapter{Final words}
thank \textbf{bram@smartelectronix} for his code to calculate
logarithmic rise and fall times, and \textbf{Raiden} for working out
the ITU-R BS.1770-1 filter specifications. I must also thank the
\textbf{users of K-Meter} for sending kind words and bug reports,
offering suggestions and testing things. Finally, I want to thank the
\textbf{beta testers} and \textbf{users of K-Meter} for sending kind
words, suggestions and bug reports. Finally, I want to thank the
\textbf{open source community} for making all of this possible.

Although coding K-Meter has been a lot of fun, it has also been a lot
Expand Down
35 changes: 30 additions & 5 deletions src/window_about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ WindowAbout::WindowAbout(int nWidth, int nHeight)
String(JucePlugin_Desc) + ".\n\n"
);

// display copyright notice
TextEditorAbout->setFont(fontHeadline);
TextEditorAbout->insertTextAtCaret(
"Copyright\n"
);

TextEditorAbout->setFont(fontRegular);
TextEditorAbout->insertTextAtCaret(
"(c) 2010-2012 Martin Zuther\n\n"
);

// display the contributors
TextEditorAbout->setFont(fontHeadline);
TextEditorAbout->insertTextAtCaret(
Expand All @@ -88,19 +99,33 @@ WindowAbout::WindowAbout(int nWidth, int nHeight)
L"Martin Zuther\n"
L"Bob Katz\n"
L"bram@smartelectronix\n"
L"Raiden\n"
L"and the K-Meter users...\n\n"
L"Raiden\n\n"
);

// display copyright notice
// display the beta testers
TextEditorAbout->setFont(fontHeadline);
TextEditorAbout->insertTextAtCaret(
"Copyright\n"
"Beta testing\n"
);

TextEditorAbout->setFont(fontRegular);
TextEditorAbout->insertTextAtCaret(
L"Rickard (Interfearing Sounds)\n\n"
);

// display thanks
TextEditorAbout->setFont(fontHeadline);
TextEditorAbout->insertTextAtCaret(
"Thanks\n"
);

TextEditorAbout->setFont(fontRegular);
TextEditorAbout->insertTextAtCaret(
"(c) 2010-2012 Contributors\n\n"
L"I want to thank Bob Katz, all "
L"contributors and beta testers, "
L"the open source community – and "
L"the users of K-Meter for using "
L"free software!\n\n"
);

// display used libraries
Expand Down

0 comments on commit 0aff008

Please sign in to comment.