1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-14 14:41:11 +02:00

Rename project in many places; Replace Most Project Logos; Refactor About Tenacity... Dialog (#276)

Add `locale/en.po` file.
Add English to `locale/LINGUAS` list.
Partially duplicate `msgid`s to `msgstr`s in English locale enable eventual key `msgid` changes
Replace former project name with Tenacity in English locale.
Replace former project website with Tenacity compatible usages in English locale.
Modify `AboutDialog.h` by renaming variables.
Modify `AboutDialog.cpp` by replacing usage of pre-fork name in Strings.
Modify AddBuildInfoRow methods to be static in About dialog.
Make License text const in About dialog.
Make pre-fork credits different in About dialog.
Begin adding Tenacity specific credits
Macros starting with `__` are reserved, so I removed the `__` on the About Dialog guard macro.
Remove `AboutDialog::` from usage of `Role` in `AboutDialog.h`
Refactor overly long generator method into separate methods in `AboutDialog.(h|cpp)`
Begin adding Tenacity developer information
Cleanup layout of `AboutDialog.h` and `AboutDialog.cpp`
Add `safedelete` macro to compliment odd `safenew` macro
Add `enum` to `ShuttleGui.cpp` to make it more clear what `Prop` method is doing.
Remove a ton of pointless and/or redunant `#ifdef` usage
Remove pointless singleton in AboutDialog
Make AboutDialog modal on MacOS
Fix reference type use of `auto` in `AudacityApp` b/c it makes unintentional copy.
Update XPM and PNG images using Tenacity assets
Update ICO images using Tenacity assets.
Fix Windows resource script that improperly used `winuser.h` import.
Add `*.aps` to gitignore to prevent IDE RC pre-load file from being committed.
Add default values for pre-processor constants in `tenacity.rc`.
Make changes needed for `Tenacity.exe` binary
Add 8x8 PNG to Windows ICO files
Replace project name in various CMake and CPack file.
Replace project name in various directory structures.
Replace project name in various OS-specific build files.
Replace project name in various documentation files.
Update the PO and POT files using the script.
Fix places where a `.desktop` file was used on Linux.
Replace title of project windows.
Make splash screen click through to `tenacityaudio.org`.
Remove ® from `AboutDialog.cpp`
Modify copyright message in `AboutDialog.cpp`

Signed-off-by: Emily Mabrey <emilymabrey93@gmail.com>
This commit is contained in:
Emily Mabrey
2021-07-20 19:46:29 -04:00
committed by GitHub
parent 75c93c68d1
commit 2f316d5bc4
164 changed files with 72836 additions and 78160 deletions

View File

@@ -1,13 +1,13 @@
* To install or reinstall Audacity, drag the "Audacity.app" icon in the
* To install or reinstall Tenacity, drag the "Tenacity.app" icon in the
DMG window to the /Applications folder icon on the right. Alternatively,
drag the "Audacity.app" icon to any other location of your choosing.
drag the "Tenacity.app" icon to any other location of your choosing.
* Do not double-click the "Audacity" icon in the DMG to launch Audacity
from there.
* If you still have an "Audacity" installation folder for a version before
2.1.3, you will see working duplicates of Audacity's shipped Nyquist
plug-ins in the Generate, Effect or Analyze Menu. You may also see
* Do not double-click the "Tenacity" icon in the DMG to launch Tenacity
from there.
* If you still have an "Tenacity" installation folder for a version before
2.1.3, you will see working duplicates of Tenacity's shipped Nyquist
plug-ins in the Generate, Effect or Analyze Menu. You may also see
non-working duplicates of other previously shipped plug-ins. To clean
up the duplicates please see:
http://manual.audacityteam.org/man/installing_and_updating_audacity_on_mac_os_x.html .

View File

@@ -1,10 +1,9 @@
/**********************************************************************
Audacity: A Digital Audio Editor
Tenacity: A Digital Audio Editor
Wrapper.c
Audacity(R) is copyright (c) 2020-2020 Audacity Team.
License: GPL v2. See License.txt.
*******************************************************************//**
@@ -28,7 +27,7 @@ executable.
#include <string.h>
#include <unistd.h>
static const char audacity[] = "Audacity";
static const char audacity[] = "Tenacity";
extern char **environ;
int main(int argc, char *argv[])