Skip to content

Commit

Permalink
hot fix (set RAM pressure to false by default)
Browse files Browse the repository at this point in the history
  • Loading branch information
exelban committed Jun 30, 2020
1 parent 48c9532 commit 1e87377
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ModuleKit/Widgets/BarChart.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class BarChart: Widget {
private var labelState: Bool = true
private var boxState: Bool = true
private var colorState: Bool = false
private var pressureState: Bool = true
private var pressureState: Bool = false

private let store: UnsafePointer<Store>?
private var value: [Double] = []
Expand Down
2 changes: 1 addition & 1 deletion ModuleKit/Widgets/LineChart.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class LineChart: Widget {
private var boxState: Bool = true
private var valueState: Bool = false
private var colorState: Bool = false
private var pressureState: Bool = true
private var pressureState: Bool = false

private let store: UnsafePointer<Store>?
private var chart: LineChartView
Expand Down
4 changes: 2 additions & 2 deletions Stats.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1684,7 +1684,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 2.1.3;
MARKETING_VERSION = 2.1.4;
PRODUCT_BUNDLE_IDENTIFIER = eu.exelban.Stats;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -1716,7 +1716,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 2.1.3;
MARKETING_VERSION = 2.1.4;
PRODUCT_BUNDLE_IDENTIFIER = eu.exelban.Stats;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down

0 comments on commit 1e87377

Please sign in to comment.