mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2025-02-03 02:47:36 +01:00
Fix spelling and typos
This commit is contained in:
parent
57312e29e2
commit
cd82b0a669
4
3rdparty/macdeployqt/main.cpp
vendored
4
3rdparty/macdeployqt/main.cpp
vendored
@ -198,7 +198,7 @@ int main(int argc, char **argv)
|
||||
LogDebug() << "Argument found:" << argument;
|
||||
appstoreCompliant = true;
|
||||
|
||||
// Undocumented option, may not work as intented
|
||||
// Undocumented option, may not work as intended
|
||||
} else if (argument == QByteArray("-deploy-framework")) {
|
||||
LogDebug() << "Argument found:" << argument;
|
||||
deployFramework = true;
|
||||
@ -231,7 +231,7 @@ int main(int argc, char **argv)
|
||||
if (deployFramework && deploymentInfo.isFramework)
|
||||
fixupFramework(appBundlePath);
|
||||
|
||||
// Convenience: Look for .qml files in the current directoty if no -qmldir specified.
|
||||
// Convenience: Look for .qml files in the current directory if no -qmldir specified.
|
||||
if (qmlDirs.isEmpty()) {
|
||||
QDir dir;
|
||||
if (!dir.entryList(QStringList() << QStringLiteral("*.qml")).isEmpty()) {
|
||||
|
6
3rdparty/macdeployqt/shared.cpp
vendored
6
3rdparty/macdeployqt/shared.cpp
vendored
@ -752,7 +752,7 @@ QString copyDylib(const FrameworkInfo &framework, const QString path)
|
||||
return QString();
|
||||
}
|
||||
|
||||
// Retrun if the dylib has aleardy been deployed
|
||||
// Return if the dylib has aleardy been deployed
|
||||
if (QFileInfo(dylibDestinationBinaryPath).exists() && !alwaysOwerwriteEnabled)
|
||||
return dylibDestinationBinaryPath;
|
||||
|
||||
@ -786,13 +786,13 @@ QString copyFramework(const FrameworkInfo &framework, const QString path)
|
||||
|
||||
// Now copy the framework. Some parts should be left out (headers/, .prl files).
|
||||
// Some parts should be included (Resources/, symlink structure). We want this
|
||||
// function to make as few assumtions about the framework as possible while at
|
||||
// function to make as few assumptions about the framework as possible while at
|
||||
// the same time producing a codesign-compatible framework.
|
||||
|
||||
// Copy framework binary
|
||||
copyFilePrintStatus(framework.sourceFilePath, frameworkDestinationBinaryPath);
|
||||
|
||||
// Copy Resouces/, Libraries/ and Helpers/
|
||||
// Copy Resources/, Libraries/ and Helpers/
|
||||
const QString resourcesSourcePath = framework.frameworkPath + "/Resources";
|
||||
const QString resourcesDestianationPath = frameworkDestinationDirectory + "/Versions/" + framework.version + "/Resources";
|
||||
recursiveCopy(resourcesSourcePath, resourcesDestianationPath);
|
||||
|
@ -234,7 +234,7 @@ QString SingleApplication::currentUser() {
|
||||
* Sends message to the Primary Instance.
|
||||
* @param message The message to send.
|
||||
* @param timeout the maximum timeout in milliseconds for blocking functions.
|
||||
* @return true if the message was sent successfuly, false otherwise.
|
||||
* @return true if the message was sent successfully, false otherwise.
|
||||
*/
|
||||
bool SingleApplication::sendMessage(const QByteArray &message, const int timeout) {
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
||||
class SingleApplicationPrivate;
|
||||
|
||||
/**
|
||||
* @brief The SingleApplication class handles multipe instances of the same Application
|
||||
* @brief The SingleApplication class handles multiple instances of the same Application
|
||||
* @see QApplication
|
||||
*/
|
||||
class SingleApplication : public QApplication { // clazy:exclude=ctor-missing-parent-argument
|
||||
|
@ -234,7 +234,7 @@ QString SingleCoreApplication::currentUser() {
|
||||
* Sends message to the Primary Instance.
|
||||
* @param message The message to send.
|
||||
* @param timeout the maximum timeout in milliseconds for blocking functions.
|
||||
* @return true if the message was sent successfuly, false otherwise.
|
||||
* @return true if the message was sent successfully, false otherwise.
|
||||
*/
|
||||
bool SingleCoreApplication::sendMessage(const QByteArray &message, const int timeout) {
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
||||
class SingleCoreApplicationPrivate;
|
||||
|
||||
/**
|
||||
* @brief The SingleCoreApplication class handles multipe instances of the same Application
|
||||
* @brief The SingleCoreApplication class handles multiple instances of the same Application
|
||||
* @see QCoreApplication
|
||||
*/
|
||||
class SingleCoreApplication : public QCoreApplication {
|
||||
|
12
Changelog
12
Changelog
@ -137,8 +137,8 @@ Unreleased:
|
||||
* Add support for native global shortcuts on KDE.
|
||||
* Add track progress in system tray icon as an option.
|
||||
* Only strip problematic characters in suggested filename when saving a playlist to file.
|
||||
* Change star/unstar playlist to doubleclick instead of singleclick.
|
||||
* Don't edit playlist name on doubleclick in playlists view.
|
||||
* Change star/unstar playlist to double-click instead of singleclick.
|
||||
* Don't edit playlist name on double-click in playlists view.
|
||||
* Make context view top label text selectable.
|
||||
* Add setting to change Qt style.
|
||||
* Clear ID3v3 tags that are empty, and clear ID3v1 tags when setting ID3v3 tags.
|
||||
@ -333,7 +333,7 @@ Unreleased:
|
||||
0.6.10:
|
||||
|
||||
Bugfixes:
|
||||
* Fixed Subsonic album covers not working for albums with non ASCII charcters.
|
||||
* Fixed Subsonic album covers not working for albums with non ASCII characters.
|
||||
* Fixed reading date and genre from individual tracks in CUE sheets.
|
||||
* Fixed resume playback on startup for CUE songs.
|
||||
* Fixed album cover manager not showing complete album titles in the list of album covers.
|
||||
@ -342,7 +342,7 @@ Unreleased:
|
||||
* Fixed engine and device in context using too large icons when icons were loaded from the system theme.
|
||||
* Fixed "Secure connection setup failed" problem on Windows when playing streams.
|
||||
* Fixed margin for song title text in context.
|
||||
* Fixed UNC paths with non ASCII charcters not working.
|
||||
* Fixed UNC paths with non ASCII characters not working.
|
||||
|
||||
Enhancements:
|
||||
* Allowing all characters except slash and backslash when organising music unless options to strip characters is checked.
|
||||
@ -357,9 +357,9 @@ Unreleased:
|
||||
* Only showing song length in context when available.
|
||||
* Sort album cover search results by score and pick the best 3 first before trying others to improve album cover search speed.
|
||||
* Make scrobbler work for streams.
|
||||
* Added search for lyrics as a seperate option in context.
|
||||
* Added search for lyrics as a separate option in context.
|
||||
* Made font and font sizes in context configurable.
|
||||
* Splitting artist and song title to the relevant metadata when artist and song title is sent as title seperated by a dash in streams.
|
||||
* Splitting artist and song title to the relevant metadata when artist and song title is sent as title separated by a dash in streams.
|
||||
* Added label to show collection pixmap disk cache used in settings.
|
||||
* Icreased default collection pixmap disk cache to 360.
|
||||
|
||||
|
@ -37,8 +37,8 @@
|
||||
|
||||
const int BlockAnalyzer::kHeight = 2;
|
||||
const int BlockAnalyzer::kWidth = 4;
|
||||
const int BlockAnalyzer::kMinRows = 3; // arbituary
|
||||
const int BlockAnalyzer::kMinColumns = 32; // arbituary
|
||||
const int BlockAnalyzer::kMinRows = 3; // arbitrary
|
||||
const int BlockAnalyzer::kMinColumns = 32; // arbitrary
|
||||
const int BlockAnalyzer::kMaxColumns = 256; // must be 2**n
|
||||
const int BlockAnalyzer::kFadeSize = 90;
|
||||
|
||||
|
@ -217,7 +217,7 @@ void AlbumCoverFetcherSearch::ProviderSearchResults(CoverProvider *provider, con
|
||||
results_copy[i].score_match -= 0.5;
|
||||
}
|
||||
|
||||
// Set the initial image quality score besed on the size returned by the API, this is recalculated when the image is received.
|
||||
// Set the initial image quality score based on the size returned by the API, this is recalculated when the image is received.
|
||||
results_copy[i].score_quality += ScoreImage(results_copy[i].image_size);
|
||||
|
||||
}
|
||||
|
@ -107,7 +107,7 @@ class Udisks2Lister : public DeviceLister {
|
||||
quint64 capacity;
|
||||
QString dbus_drive_path;
|
||||
|
||||
// Paritition
|
||||
// Partition
|
||||
QString label;
|
||||
QString uuid;
|
||||
quint64 free_space;
|
||||
|
@ -65,7 +65,7 @@ SnapDialog::SnapDialog(QWidget *parent) : QDialog(parent), ui_(new Ui_SnapDialog
|
||||
text += QString("</p>");
|
||||
|
||||
text += QString("<p>");
|
||||
text += tr("Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configration before you uninstall the snap:");
|
||||
text += tr("Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:");
|
||||
text += QString("<br />");
|
||||
text += QString("cp ~/snap/strawberry/current/.config/strawberry/strawberry.conf ~/.config/strawberry/strawberry.conf<br />");
|
||||
text += QString("cp ~/snap/strawberry/current/.local/share/strawberry/strawberry/strawberry.db ~/.local/share/strawberry/strawberry/strawberry.db<br />");
|
||||
|
@ -1236,7 +1236,7 @@ void GstEnginePipeline::FaderTimelineFinished() {
|
||||
|
||||
fader_.reset();
|
||||
|
||||
// Wait a little while longer before emitting the finished signal (and probably distroying the pipeline) to account for delays in the audio server/driver.
|
||||
// Wait a little while longer before emitting the finished signal (and probably destroying the pipeline) to account for delays in the audio server/driver.
|
||||
if (use_fudge_timer_) {
|
||||
fader_fudge_timer_.start(kFaderFudgeMsec, this);
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ class ParserBase : public QObject {
|
||||
virtual bool TryMagic(const QByteArray &data) const = 0;
|
||||
|
||||
// Loads all songs from playlist found at path 'playlist_path' in directory 'dir'.
|
||||
// The 'device' argument is an opened and ready to read from represantation of this playlist.
|
||||
// The 'device' argument is an opened and ready to read from representation of this playlist.
|
||||
// This method might not return all of the songs found in the playlist.
|
||||
// Any playlist parser may decide to leave out some entries if it finds them incomplete or invalid.
|
||||
// This means that the final resulting SongList should be considered valid (at least from the parser's point of view).
|
||||
|
@ -304,7 +304,7 @@ void LastFMImport::GetRecentTracksRequestFinished(QNetworkReply *reply, const in
|
||||
}
|
||||
|
||||
if (!json_obj["recenttracks"].isObject()) {
|
||||
Error("Failed to pase JSON: recenttracks is not an object!", json_obj);
|
||||
Error("Failed to parse JSON: recenttracks is not an object!", json_obj);
|
||||
return;
|
||||
}
|
||||
json_obj = json_obj["recenttracks"].toObject();
|
||||
@ -320,27 +320,27 @@ void LastFMImport::GetRecentTracksRequestFinished(QNetworkReply *reply, const in
|
||||
}
|
||||
|
||||
if (!json_obj["@attr"].isObject()) {
|
||||
Error("Failed to pase JSON: @attr is not an object.", json_obj);
|
||||
Error("Failed to parse JSON: @attr is not an object.", json_obj);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!json_obj["track"].isArray()) {
|
||||
Error("Failed to pase JSON: track is not an object.", json_obj);
|
||||
Error("Failed to parse JSON: track is not an object.", json_obj);
|
||||
return;
|
||||
}
|
||||
|
||||
QJsonObject obj_attr = json_obj["@attr"].toObject();
|
||||
|
||||
if (!obj_attr.contains("page")) {
|
||||
Error("Failed to pase JSON: attr object is missing page.", json_obj);
|
||||
Error("Failed to parse JSON: attr object is missing page.", json_obj);
|
||||
return;
|
||||
}
|
||||
if (!obj_attr.contains("totalPages")) {
|
||||
Error("Failed to pase JSON: attr object is missing totalPages.", json_obj);
|
||||
Error("Failed to parse JSON: attr object is missing totalPages.", json_obj);
|
||||
return;
|
||||
}
|
||||
if (!obj_attr.contains("total")) {
|
||||
Error("Failed to pase JSON: attr object is missing total.", json_obj);
|
||||
Error("Failed to parse JSON: attr object is missing total.", json_obj);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -467,7 +467,7 @@ void LastFMImport::GetTopTracksRequestFinished(QNetworkReply *reply, const int p
|
||||
}
|
||||
|
||||
if (!json_obj["toptracks"].isObject()) {
|
||||
Error("Failed to pase JSON: toptracks is not an object!", json_obj);
|
||||
Error("Failed to parse JSON: toptracks is not an object!", json_obj);
|
||||
return;
|
||||
}
|
||||
json_obj = json_obj["toptracks"].toObject();
|
||||
@ -483,27 +483,27 @@ void LastFMImport::GetTopTracksRequestFinished(QNetworkReply *reply, const int p
|
||||
}
|
||||
|
||||
if (!json_obj["@attr"].isObject()) {
|
||||
Error("Failed to pase JSON: @attr is not an object.", json_obj);
|
||||
Error("Failed to parse JSON: @attr is not an object.", json_obj);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!json_obj["track"].isArray()) {
|
||||
Error("Failed to pase JSON: track is not an object.", json_obj);
|
||||
Error("Failed to parse JSON: track is not an object.", json_obj);
|
||||
return;
|
||||
}
|
||||
|
||||
QJsonObject obj_attr = json_obj["@attr"].toObject();
|
||||
|
||||
if (!obj_attr.contains("page")) {
|
||||
Error("Failed to pase JSON: attr object is missing page.", json_obj);
|
||||
Error("Failed to parse JSON: attr object is missing page.", json_obj);
|
||||
return;
|
||||
}
|
||||
if (!obj_attr.contains("totalPages")) {
|
||||
Error("Failed to pase JSON: attr object is missing page.", json_obj);
|
||||
Error("Failed to parse JSON: attr object is missing page.", json_obj);
|
||||
return;
|
||||
}
|
||||
if (!obj_attr.contains("total")) {
|
||||
Error("Failed to pase JSON: attr object is missing total.", json_obj);
|
||||
Error("Failed to parse JSON: attr object is missing total.", json_obj);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include "transcoderoptionsopus.h"
|
||||
#include "ui_transcoderoptionsopus.h"
|
||||
|
||||
// TODO: Add more options than only bitrate as soon as gst doesn't crash anymore while using the cbr parmameter (like cbr=false)
|
||||
// TODO: Add more options than only bitrate as soon as gst doesn't crash anymore while using the cbr parameter (like cbr=false)
|
||||
|
||||
const char *TranscoderOptionsOpus::kSettingsGroup = "Transcoder/opusenc";
|
||||
|
||||
|
@ -603,7 +603,7 @@ TEST_F(CollectionModelTest, TestContainerNodes) {
|
||||
ASSERT_EQ(model2->song_nodes().count(), songs.count());
|
||||
ASSERT_EQ(model3->song_nodes().count(), songs.count());
|
||||
|
||||
// Container nodes for all models should now be indentical.
|
||||
// Container nodes for all models should now be identical.
|
||||
for (int i = 0 ; i < 3 ; ++i) {
|
||||
for (CollectionItem *node : model1->container_nodes(i).values()) {
|
||||
ASSERT_TRUE(model2->container_nodes(i).keys().contains(node->key));
|
||||
|
Loading…
x
Reference in New Issue
Block a user