Skip to content

Commit

Permalink
v2.10.10
Browse files Browse the repository at this point in the history
  • Loading branch information
exelban committed Apr 21, 2024
1 parent 495b5b3 commit 368be82
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion Modules/Disk/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions Stats.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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)";
Expand Down Expand Up @@ -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)";
Expand Down
2 changes: 1 addition & 1 deletion Stats/Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>551</string>
<string>552</string>
<key>Description</key>
<string>Simple macOS system monitor in your menu bar</string>
<key>LSApplicationCategoryType</key>
Expand Down
4 changes: 2 additions & 2 deletions Stats/Supporting Files/pl.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 2 additions & 2 deletions Stats/Supporting Files/ru.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -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" = "Количество процессов";
Expand Down
4 changes: 2 additions & 2 deletions Stats/Supporting Files/uk.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -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" = "Кількість процесів";
Expand Down

0 comments on commit 368be82

Please sign in to comment.