From d5a43450fa1558bddee34e32fc3a8c4201a4c1e3 Mon Sep 17 00:00:00 2001 From: Florian Brinker Date: Wed, 23 Oct 2019 23:19:04 +0200 Subject: [PATCH] Fix Whitespace Warings --- AchievementInfo.lua | 2 +- AchievementInfoApplication.lua | 22 +++++++++++----------- AchievementInfoLangStore.lua | 22 +++++++++++----------- AchievementInfoSettings.lua | 12 ++++++------ 4 files changed, 29 insertions(+), 29 deletions(-) diff --git a/AchievementInfo.lua b/AchievementInfo.lua index e5cf84e..c8331d4 100644 --- a/AchievementInfo.lua +++ b/AchievementInfo.lua @@ -26,7 +26,7 @@ function AchievementInfo.initialize(eventCode, addOnName) -- Register Events AchievementInfo.registerEvent(EVENT_ACHIEVEMENT_UPDATED, AchievementInfo.onAchievementUpdated) end - + -- Status Output (debug mode only) if AchievementInfo.settingGet("devDebug") then zo_callLater(function() diff --git a/AchievementInfoApplication.lua b/AchievementInfoApplication.lua index 0b610b5..b929e97 100644 --- a/AchievementInfoApplication.lua +++ b/AchievementInfoApplication.lua @@ -64,8 +64,8 @@ function AchievementInfo.onAchievementUpdated(eventCode, achId) local name, numCompleted, numRequired = GetAchievementCriterion(achId, i) local tmpOutput = "" - if i > 1 and AchievementInfo.settingGet("genOnePerLine") == false then - tmpOutput = tmpOutput .. ", " + if i > 1 and AchievementInfo.settingGet("genOnePerLine") == false then + tmpOutput = tmpOutput .. ", " end tmpOutput = tmpOutput .. name .. " " @@ -73,7 +73,7 @@ function AchievementInfo.onAchievementUpdated(eventCode, achId) tmpOutput = tmpOutput .. AchievementInfo.clrDefault .. "/" .. "|r" tmpOutput = tmpOutput .. AchievementInfo.clrCriteriaComplete .. numRequired .. "|r" tmpOutput = tmpOutput .. AchievementInfo.clrDefault - + if AchievementInfo.settingGet("genShowOpenDetailsOnly") == true and numCompleted ~= numRequired then detailOutput[detailOutputCount] = tmpOutput detailOutputCount = detailOutputCount + 1 @@ -103,14 +103,14 @@ function AchievementInfo.onAchievementUpdated(eventCode, achId) end end - -- show details? + -- show details? local detailsCount = AchievementInfo.tableLength(detailOutput) - if AchievementInfo.settingGet("genShowDetails") == true and detailsCount > 0 and AchievementInfo.settingGet("genOnePerLine") == false then + if AchievementInfo.settingGet("genShowDetails") == true and detailsCount > 0 and AchievementInfo.settingGet("genOnePerLine") == false then output = output .. " - " - + for i = 1, detailsCount, 1 do - output = output .. detailOutput[i] - end + output = output .. detailOutput[i] + end else output = output .. "." end @@ -135,12 +135,12 @@ function AchievementInfo.onAchievementUpdated(eventCode, achId) -- AchievementInfo.echo(output) - + -- output the details line by line - start @2 because the normal output happend before (achievement name) if AchievementInfo.settingGet("genShowDetails") == true and AchievementInfo.settingGet("genOnePerLine") == true then for i = 1, AchievementInfo.tableLength(detailOutput), 1 do - AchievementInfo.echo(detailOutput[i]) - end + AchievementInfo.echo(detailOutput[i]) + end end end diff --git a/AchievementInfoLangStore.lua b/AchievementInfoLangStore.lua index 5dafece..7914c5c 100644 --- a/AchievementInfoLangStore.lua +++ b/AchievementInfoLangStore.lua @@ -122,43 +122,43 @@ LANG_STORE.DE.SettingsOption.DebugModeWarning = "In den meißten Fällen muss di -- AddOn Output LANG_STORE.FR.Updated = "Mis à jour" LANG_STORE.FR.Completed = "Terminé" - + -- AddOn Settings Header LANG_STORE.FR.SettingsHeader = {} LANG_STORE.FR.SettingsHeader.General = "Général" - + LANG_STORE.FR.SettingsHeader.Categories = "Catégories" LANG_STORE.FR.SettingsHeader.CategoriesDescription = "Ici vous pouvez gérer les notifications par catégories" - + LANG_STORE.FR.SettingsHeader.Development = "Développement" - + -- AddOn Settings General Options LANG_STORE.FR.SettingsOption = {} LANG_STORE.FR.SettingsOption.AddOnEnabled = "Extension activée" LANG_STORE.FR.SettingsOption.AddOnEnabledTooltip = "Active ou désactive cette extension" LANG_STORE.FR.SettingsOption.AddOnEnabledWarning = "Seul les messages sortants peuvent être désactivés" - + LANG_STORE.FR.SettingsOption.ShowEveryUpdate = "Affichage de chaque mise à jour" LANG_STORE.FR.SettingsOption.ShowEveryUpdateTooltip = "Affiche un message pour chaque mise à jour d'un succès. Le reste du temps les messages n'apparaissent que sous forme de plage de x%" - + LANG_STORE.FR.SettingsOption.ShowUpdateSteps = "Etapes de notification (%)" LANG_STORE.FR.SettingsOption.ShowUpdateStepsTooltip = "Définie la plage des notifications, si '" .. LANG_STORE.FR.SettingsOption.ShowEveryUpdate .. "' est désactivé" - + LANG_STORE.FR.SettingsOption.ShowDetails = "Affichage des détails" LANG_STORE.FR.SettingsOption.ShowDetailsTooltip = "Affiche les détails de progression de chaque message de mise à jour" - + LANG_STORE.FR.SettingsOption.ShowOpenDetailsOnly = "Affichage des détails incomplets" LANG_STORE.FR.SettingsOption.ShowOpenDetailsOnlyTooltip = "Affiche, dans les détails, uniquement les taches incomplètes d'un succès" - + -- pCHat compatibility option LANG_STORE.FR.SettingsOption.OneElementPerLine = "Sortie ligne par ligne" LANG_STORE.FR.SettingsOption.OneElementPerLineTooltip = "Affiche chaque partie d'un succès sur une simple ligne" LANG_STORE.FR.SettingsOption.OneElementPerLineWarning = "Nécessite la compatibilité avec pChat" - + -- AddOn Settings Category Options -- The categories are taken from the game language files LANG_STORE.FR.SettingsOption.CategoryTooltip = "Affiche les messages pour la catégorie" - + -- AddOn Settings Development Options LANG_STORE.FR.SettingsOption.DebugMode = "Mode de débogage" LANG_STORE.FR.SettingsOption.DebugModeTooltip = "Affiche les messages cachés pour vérifier s'ils n'ont pas été cachés par erreur" diff --git a/AchievementInfoSettings.lua b/AchievementInfoSettings.lua index 7b67307..2f007fc 100644 --- a/AchievementInfoSettings.lua +++ b/AchievementInfoSettings.lua @@ -47,7 +47,7 @@ end -- Function to create the settings panel function AchievementInfo.createSettingsPanel() local LAM = LibStub("LibAddonMenu-2.0") - + local panelData = { type = "panel", name = AchievementInfo.name, @@ -119,14 +119,14 @@ function AchievementInfo.createSettingsPanel() text = LANG.SettingsHeader.CategoriesDescription .. ":" } } - + -- Add categories dynamically local numCats = GetNumAchievementCategories() local catCount = 1 for i = 1, numCats, 1 do catName, numSubCats = GetAchievementCategoryInfo(i) - + table.insert(optionsTable, { type = "checkbox", name = catName, @@ -135,13 +135,13 @@ function AchievementInfo.createSettingsPanel() setFunc = function() AchievementInfo.settingToogle("cat"..i) end }) end - + -- Debug setting at the end table.insert(optionsTable, { type = "header", name = AchievementInfo.clrSettingsHeader .. LANG.SettingsHeader.Development }) - + table.insert(optionsTable, { type = "checkbox", name = LANG.SettingsOption.DebugMode, @@ -150,7 +150,7 @@ function AchievementInfo.createSettingsPanel() setFunc = function() AchievementInfo.settingToogle("devDebug") end, warning = LANG.SettingsOption.DebugModeWarning }) - + -- Register LAM:RegisterAddonPanel(AchievementInfo.name.."SettingsPanel", panelData) LAM:RegisterOptionControls(AchievementInfo.name.."SettingsPanel", optionsTable)