Skip to content

Commit 5dcb2c2

Browse files
committed
refactor
1 parent 4505ece commit 5dcb2c2

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

DynamicsIllusion.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@
308308
DEVELOPMENT_TEAM = C6Z5KNNJ86;
309309
INFOPLIST_FILE = DynamicsIllusion/Info.plist;
310310
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
311-
PRODUCT_BUNDLE_IDENTIFIER = com.mityny.DynamicsIllusion;
311+
PRODUCT_BUNDLE_IDENTIFIER = com.rlxone.DynamicsIllusion;
312312
PRODUCT_NAME = "$(TARGET_NAME)";
313313
SWIFT_VERSION = 3.0;
314314
};
@@ -322,7 +322,7 @@
322322
DEVELOPMENT_TEAM = C6Z5KNNJ86;
323323
INFOPLIST_FILE = DynamicsIllusion/Info.plist;
324324
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
325-
PRODUCT_BUNDLE_IDENTIFIER = com.mityny.DynamicsIllusion;
325+
PRODUCT_BUNDLE_IDENTIFIER = com.rlxone.DynamicsIllusion;
326326
PRODUCT_NAME = "$(TARGET_NAME)";
327327
SWIFT_VERSION = 3.0;
328328
};

DynamicsIllusion/AppDelegate.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// DynamicsIllusion
44
//
55
// Created by sdd on 02.04.17.
6-
// Copyright © 2017 mityny. All rights reserved.
6+
// Copyright © 2017 rlxone. All rights reserved.
77
//
88

99
import Cocoa
@@ -22,7 +22,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
2222
}
2323

2424
func setupApp() {
25-
volumeViewController = self.loadViewFromStoryboard(named: "Main", identifier: "VolumeViewControllerId") as? VolumeViewController
25+
volumeViewController = loadViewFromStoryboard(named: "Main", identifier: "VolumeViewControllerId") as? VolumeViewController
2626
createMenu()
2727
}
2828

DynamicsIllusion/Base.lproj/Main.storyboard

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@
681681
<!--DynamicsIllusion-->
682682
<scene sceneID="hIz-AP-VOD">
683683
<objects>
684-
<viewController title="DynamicsIllusion" storyboardIdentifier="ViewControllerId" id="XfG-lQ-9wD" customClass="VolumeViewController" customModule="DynamicsIllusion" customModuleProvider="target" sceneMemberID="viewController">
684+
<viewController title="DynamicsIllusion" storyboardIdentifier="VolumeViewControllerId" id="XfG-lQ-9wD" customClass="VolumeViewController" customModule="DynamicsIllusion" sceneMemberID="viewController">
685685
<customView key="view" id="yXR-gt-ROz">
686686
<rect key="frame" x="0.0" y="0.0" width="253" height="23"/>
687687
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>

DynamicsIllusion/Extensions/StringExtensions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// DynamicsIllusion
44
//
55
// Created by sdd on 03.04.17.
6-
// Copyright © 2017 mityny. All rights reserved.
6+
// Copyright © 2017 rlxone. All rights reserved.
77
//
88

99
import Foundation

DynamicsIllusion/Framework/Audio.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// DynamicsIllusion
44
//
55
// Created by sdd on 03.04.17.
6-
// Copyright © 2017 mityny. All rights reserved.
6+
// Copyright © 2017 rlxone. All rights reserved.
77
//
88

99
import Foundation

DynamicsIllusion/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<key>LSMinimumSystemVersion</key>
2424
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
2525
<key>NSHumanReadableCopyright</key>
26-
<string>Copyright © 2017 mityny. All rights reserved.</string>
26+
<string>Copyright © 2017 rlxone. All rights reserved.</string>
2727
<key>NSMainStoryboardFile</key>
2828
<string>Main</string>
2929
<key>NSPrincipalClass</key>

DynamicsIllusion/VolumeViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// DynamicsIllusion
44
//
55
// Created by sdd on 02.04.17.
6-
// Copyright © 2017 mityny. All rights reserved.
6+
// Copyright © 2017 rlxone. All rights reserved.
77
//
88

99
import Cocoa
@@ -38,7 +38,7 @@ class VolumeViewController: NSViewController, NSTableViewDataSource {
3838
appDelegate.statusItem.button?.image = NSImage(named: "StatusBar2Image")
3939
} else if value > Float(StatusBarImageProgress.second.rawValue) && value < Float(StatusBarImageProgress.third.rawValue) {
4040
appDelegate.statusItem.button?.image = NSImage(named: "StatusBar3Image")
41-
} else if value > Float(StatusBarImageProgress.second.rawValue) && value < 100 {
41+
} else if value > Float(StatusBarImageProgress.second.rawValue) && value <= 100 {
4242
appDelegate.statusItem.button?.image = NSImage(named: "StatusBar4Image")
4343
}
4444
}

0 commit comments

Comments
 (0)