Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Commit

Permalink
DISGUSTANG
Browse files Browse the repository at this point in the history
Oh my, there were some remnants of the Great Purge. They have been
removed, but I fear there could be more...

On a serious note, while there have been some remnants, these are
largely harmless after the Great Purge (the removal of the majority of
telemetry and auto updater related parts). Code-wise, this is just dead
code, although (for obvious reasons) it should be removed. Indeed, there
were some remnants found in CMake files, but those are also rather
harmless as the option to build Saucedacity with networking
functionalities is nonexistent.

Finally, on the other hand, CHANGELOG.txt has been changed to add the
upcoming 1.0 release.
  • Loading branch information
generic-pers0n committed Jul 11, 2021
1 parent e66db94 commit c4f6445
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 34 deletions.
30 changes: 25 additions & 5 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,37 @@
List of significant changes and bug fixes going back to version 1.1.0
------------------------------------------------------
SAUCEDACITY CHANGELOG

List of significant changes and bug fixes going back to version 1.0

Changes in version next:
========================================
Changes in version 1.0:
========================================

WARNING: This version hasn't been officially released, per se, but this is
going to be the base of our official release. Other things are to be worked
on before an official release is made, however.

Removals

* Removed telemetry and auto updating


Changes (Misc.)

* Some formating in the about dialog has been changed a little (e.g. at the end
towards the copyright date).

* Some strings have been changed. No particular reason :D.
* Well, there are the obvious changes, including some strings to be changed
from Audacity to both Saucedacity and/or Audacity. For example, the string
"The system has detected another copy of Audacity is running" (or something
very similar) has been changed to
"The system has detected another copy of Saucedacity (or Audacity) is
running".


------------------------------------------------------



List of significant changes and bug fixes going back to version 1.1.0

Changes in version 3.0.0:

Expand Down
5 changes: 0 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,6 @@ include( CMakePushCheckState )
include( GNUInstallDirs )
include( TestBigEndian )

set_from_env(SENTRY_DSN_KEY)
set_from_env(SENTRY_HOST)
set_from_env(SENTRY_PROJECT)
set_from_env(CRASH_REPORT_URL)

# Determine 32-bit or 64-bit target
if( CMAKE_C_COMPILER_ID MATCHES "MSVC" AND CMAKE_VS_PLATFORM_NAME MATCHES "Win64|x64" )
set( IS_64BIT ON )
Expand Down
8 changes: 0 additions & 8 deletions cmake-proxies/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,6 @@ add_conan_lib(
PKG_CONFIG "mad >= 0.15.1b"
)

if( CMAKE_SYSTEM_NAME MATCHES "Darwin" )
set( curl_ssl "darwinssl" )
elseif( CMAKE_SYSTEM_NAME MATCHES "Windows" )
set( curl_ssl "schannel")
else()
set ( curl_ssl "openssl" )
endif ()

add_conan_lib(
ThreadPool
threadpool/20140926
Expand Down
7 changes: 0 additions & 7 deletions src/AudacityApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -993,16 +993,9 @@ bool AudacityApp::OnExceptionInMainLoop()

AudacityApp::AudacityApp()
{
#if defined(USE_BREAKPAD)
InitBreakpad();
// Do not capture crashes in debug builds
#elif !defined(_DEBUG)
#if defined(HAS_CRASH_REPORT)
#if defined(wxUSE_ON_FATAL_EXCEPTION) && wxUSE_ON_FATAL_EXCEPTION
wxHandleFatalExceptions();
#endif
#endif
#endif
}

AudacityApp::~AudacityApp()
Expand Down
5 changes: 0 additions & 5 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,6 @@ list( APPEND LIBRARIES
libsoxr
portaudio-v19
sqlite
$<$<BOOL:${${_OPT}has_crashreports}>:crashreports>
$<$<BOOL:${USE_FFMPEG}>:ffmpeg>
$<$<BOOL:${USE_LIBID3TAG}>:libid3tag::libid3tag>
$<$<BOOL:${USE_LIBFLAC}>:libflac>
Expand Down Expand Up @@ -1299,10 +1298,6 @@ else()
)
endif()

if(CRASH_REPORT_URL)
list(APPEND DEFINES PRIVATE -DCRASH_REPORT_URL="${CRASH_REPORT_URL}")
endif()

set_target_property_all( ${TARGET} RUNTIME_OUTPUT_NAME ${AUDACITY_NAME} )

organize_source( "${TARGET_ROOT}/.." "include" "${HEADERS}" )
Expand Down
4 changes: 0 additions & 4 deletions src/Experimental.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,6 @@ set( EXPERIMENTAL_OPTIONS_LIST
# scrolling past zero is enabled. Perhaps that lessens confusion.
TWO_TONE_TIME_RULER

#Define to include crash reporting, if available in wxWidgets build
#This flag is used only in CrashReport.h; elsewhere use HAS_CRASH_REPORT
CRASH_REPORT

# Paul Licameli (PRL) 31 May 2015
# Zero-padding factor for spectrograms can smooth the display of spectrograms by
# interpolating in frequency domain.
Expand Down

0 comments on commit c4f6445

Please sign in to comment.