Skip to content

Commit

Permalink
Default-setting for "pause between tracks" changed to "false"
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielGausi committed Mar 27, 2021
1 parent c89aaf1 commit 430531b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/PlayerClass.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ procedure TNempPlayer.LoadSettings;
DoSilenceDetection := NempSettingsManager.ReadBool('Player', 'DoSilenceDetection', True);
SilenceThreshold := NempSettingsManager.ReadInteger('Player', 'SilenceThreshold', -40);

DoPauseBetweenTracks := NempSettingsManager.ReadBool('Player', 'DoPauseBetweenTracks', True);
DoPauseBetweenTracks := NempSettingsManager.ReadBool('Player', 'DoPauseBetweenTracks', False);
PauseBetweenTracksDuration := NempSettingsManager.ReadInteger('Player', 'PauseBetweenTracksDuration', 2000);

ApplyReplayGain := NempSettingsManager.ReadBool('Player', 'ApplyReplayGain', True);
Expand Down
4 changes: 2 additions & 2 deletions src/nemp.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
<VerInfo_MajorVer>4</VerInfo_MajorVer>
<VerInfo_MinorVer>15</VerInfo_MinorVer>
<VerInfo_Build>703</VerInfo_Build>
<VerInfo_Build>704</VerInfo_Build>
<VerInfo_AutoIncVersion>true</VerInfo_AutoIncVersion>
<VerInfo_Locale>1033</VerInfo_Locale>
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=4.15.0.703;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=4.15.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=4.15.0.704;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=4.15.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
<DCC_Define>madExcept;$(DCC_Define)</DCC_Define>
<DCC_MapFile>3</DCC_MapFile>
<DCC_DebugInformation>2</DCC_DebugInformation>
Expand Down

0 comments on commit 430531b

Please sign in to comment.