diff --git a/Modules/Disk/main.swift b/Modules/Disk/main.swift index 02917fa3158..1b21af441bf 100644 --- a/Modules/Disk/main.swift +++ b/Modules/Disk/main.swift @@ -263,7 +263,8 @@ public class Disk: Module { switch w.item { case let widget as Mini: widget.setValue(d.percentage) case let widget as BarChart: widget.setValue([[ColorValue(d.percentage)]]) - case let widget as MemoryWidget: widget.setValue((DiskSize(d.free).getReadableMemory(), DiskSize(d.size - d.free).getReadableMemory())) + case let widget as MemoryWidget: + widget.setValue((DiskSize(d.free).getReadableMemory(), DiskSize(d.size - d.free).getReadableMemory()), usedPercentage: d.percentage) case let widget as PieChart: widget.setValue([ circle_segment(value: d.percentage, color: NSColor.systemBlue) diff --git a/Stats.xcodeproj/project.pbxproj b/Stats.xcodeproj/project.pbxproj index 84dd206decf..57333c7a3e2 100644 --- a/Stats.xcodeproj/project.pbxproj +++ b/Stats.xcodeproj/project.pbxproj @@ -2522,7 +2522,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 2.10.9; + MARKETING_VERSION = 2.10.10; OTHER_LDFLAGS = ""; PRODUCT_BUNDLE_IDENTIFIER = eu.exelban.Stats; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -2560,7 +2560,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 2.10.9; + MARKETING_VERSION = 2.10.10; OTHER_LDFLAGS = ""; PRODUCT_BUNDLE_IDENTIFIER = eu.exelban.Stats; PRODUCT_NAME = "$(TARGET_NAME)"; diff --git a/Stats/Supporting Files/Info.plist b/Stats/Supporting Files/Info.plist index 4df6feef6b3..17cb83b866e 100755 --- a/Stats/Supporting Files/Info.plist +++ b/Stats/Supporting Files/Info.plist @@ -17,7 +17,7 @@ CFBundleShortVersionString $(MARKETING_VERSION) CFBundleVersion - 551 + 552 Description Simple macOS system monitor in your menu bar LSApplicationCategoryType diff --git a/Stats/Supporting Files/pl.lproj/Localizable.strings b/Stats/Supporting Files/pl.lproj/Localizable.strings index 342894da947..d6539b09a55 100644 --- a/Stats/Supporting Files/pl.lproj/Localizable.strings +++ b/Stats/Supporting Files/pl.lproj/Localizable.strings @@ -208,8 +208,8 @@ "Merge widgets" = "Pąłącz widżety"; "No available widgets to configure" = "Brak dostępnych widżetów do konfiguracji"; "No options to configure for the popup in this module" = "Brak opcji do skonfigurowania dla okienka w tym module"; -"Process" = "Process"; -"Kill process" = "Kill process"; +"Process" = "Proces"; +"Kill process" = "Zamknąć proces"; // Modules "Number of top processes" = "Liczba procesów"; diff --git a/Stats/Supporting Files/ru.lproj/Localizable.strings b/Stats/Supporting Files/ru.lproj/Localizable.strings index 3b0f9dcad46..d88eb0e922c 100644 --- a/Stats/Supporting Files/ru.lproj/Localizable.strings +++ b/Stats/Supporting Files/ru.lproj/Localizable.strings @@ -208,8 +208,8 @@ "Merge widgets" = "Объединить виджеты"; "No available widgets to configure" = "Нет доступных виджетов для настройки"; "No options to configure for the popup in this module" = "Нет параметров для настройки всплывающего окна в этом модуле"; -"Process" = "Process"; -"Kill process" = "Kill process"; +"Process" = "Процесс"; +"Kill process" = "Завершить процесс"; // Modules "Number of top processes" = "Количество процессов"; diff --git a/Stats/Supporting Files/uk.lproj/Localizable.strings b/Stats/Supporting Files/uk.lproj/Localizable.strings index a68b9d0cfbe..992e59224cc 100644 --- a/Stats/Supporting Files/uk.lproj/Localizable.strings +++ b/Stats/Supporting Files/uk.lproj/Localizable.strings @@ -208,8 +208,8 @@ "Merge widgets" = "Об’єднайти віджети"; "No available widgets to configure" = "Немає доступних віджетів для налаштування"; "No options to configure for the popup in this module" = "У цьому модулі немає параметрів для налаштування спливаючого вікна"; -"Process" = "Process"; -"Kill process" = "Kill process"; +"Process" = "Процес"; +"Kill process" = "Завершити процес"; // Modules "Number of top processes" = "Кількість процесів";