Skip to content

Commit

Permalink
Structure change
Browse files Browse the repository at this point in the history
  • Loading branch information
kaunteya committed Jul 12, 2018
1 parent e0c90b8 commit c5bf7a6
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 9 deletions.
18 changes: 15 additions & 3 deletions Mac Cache Cleaner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
E389A46320EA651B0044B20A /* CacheList.swift in Sources */ = {isa = PBXBuildFile; fileRef = E389A46220EA651B0044B20A /* CacheList.swift */; };
E389A46520EA98470044B20A /* CacheFetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = E389A46420EA98470044B20A /* CacheFetcher.swift */; };
E389A46720EAA0A20044B20A /* NSWindowController+intialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = E389A46620EAA0A20044B20A /* NSWindowController+intialize.swift */; };
E3B073B720F75E94009DA160 /* AutoStartSpinner.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3B073B620F75E94009DA160 /* AutoStartSpinner.swift */; };
E3F7285820E0FF6F007B0CB0 /* FileManager+Size.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3F7285720E0FF6F007B0CB0 /* FileManager+Size.swift */; };
E3F728D920E3B1C1007B0CB0 /* Other.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3F728D820E3B1C1007B0CB0 /* Other.swift */; };
/* End PBXBuildFile section */
Expand Down Expand Up @@ -61,6 +62,7 @@
E389A46220EA651B0044B20A /* CacheList.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CacheList.swift; sourceTree = "<group>"; };
E389A46420EA98470044B20A /* CacheFetcher.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CacheFetcher.swift; sourceTree = "<group>"; };
E389A46620EAA0A20044B20A /* NSWindowController+intialize.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSWindowController+intialize.swift"; sourceTree = "<group>"; };
E3B073B620F75E94009DA160 /* AutoStartSpinner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutoStartSpinner.swift; sourceTree = "<group>"; };
E3F7285720E0FF6F007B0CB0 /* FileManager+Size.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "FileManager+Size.swift"; sourceTree = "<group>"; };
E3F728D820E3B1C1007B0CB0 /* Other.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Other.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
Expand Down Expand Up @@ -97,6 +99,7 @@
children = (
E34E83052079CD5400BA09DF /* Main.storyboard */,
E352B6B320E90E02004C276B /* CacheTableCellView.swift */,
E3B073B620F75E94009DA160 /* AutoStartSpinner.swift */,
);
path = View;
sourceTree = "<group>";
Expand Down Expand Up @@ -127,6 +130,7 @@
E32B71DF20F4A2E600158B7F /* TableViewHandler.swift */,
E32B71C520F083AD00158B7F /* View */,
E3F728D620E3B02C007B0CB0 /* Models */,
E3B073B520F75E3D009DA160 /* Others */,
E3F7285D20E10720007B0CB0 /* Extensions */,
E34E83032079CD5400BA09DF /* Assets.xcassets */,
E3197F1520E8007500746439 /* Source.json */,
Expand All @@ -136,16 +140,23 @@
path = MacCacheCleaner;
sourceTree = "<group>";
};
E3B073B520F75E3D009DA160 /* Others */ = {
isa = PBXGroup;
children = (
E309EC7720EE49B200D3D16F /* Log.swift */,
E3F728D820E3B1C1007B0CB0 /* Other.swift */,
E32B71DB20F11E6300158B7F /* Tagged.swift */,
);
path = Others;
sourceTree = "<group>";
};
E3F7285D20E10720007B0CB0 /* Extensions */ = {
isa = PBXGroup;
children = (
E3F7285720E0FF6F007B0CB0 /* FileManager+Size.swift */,
E389A46620EAA0A20044B20A /* NSWindowController+intialize.swift */,
E32B71E120F4A6DB00158B7F /* NSStoryboard.swift */,
E3197F0F20E78B8C00746439 /* URLSession+Result.swift */,
E3F728D820E3B1C1007B0CB0 /* Other.swift */,
E32B71DB20F11E6300158B7F /* Tagged.swift */,
E309EC7720EE49B200D3D16F /* Log.swift */,
);
path = Extensions;
sourceTree = "<group>";
Expand Down Expand Up @@ -282,6 +293,7 @@
E32B71E220F4A6DB00158B7F /* NSStoryboard.swift in Sources */,
E3F7285820E0FF6F007B0CB0 /* FileManager+Size.swift in Sources */,
E32B71E020F4A2E600158B7F /* TableViewHandler.swift in Sources */,
E3B073B720F75E94009DA160 /* AutoStartSpinner.swift in Sources */,
E32B71DC20F11E6300158B7F /* Tagged.swift in Sources */,
E3197F2E20E90A6C00746439 /* MainViewController.swift in Sources */,
E34E83002079CD5200BA09DF /* AppDelegate.swift in Sources */,
Expand Down
5 changes: 2 additions & 3 deletions MacCacheCleaner/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@
//

import Cocoa
let sourceJSONPath = "https://raw.githubusercontent.com/kaunteya/MacCacheCleaner/master/Source.json"

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {

let cacheListFetcher = CacheFetcher(
urlString: "https://raw.githubusercontent.com/kaunteya/MacCacheCleaner/master/Source.json"
)
let cacheListFetcher = CacheFetcher(urlString: sourceJSONPath)

let cacheList = CacheList()

Expand Down
File renamed without changes.
10 changes: 10 additions & 0 deletions MacCacheCleaner/Others/Other.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//
// Other.swift
// MacCacheCleaner
//
// Created by Kaunteya Suryawanshi on 27/06/18.
// Copyright © 2018 Kaunteya Suryawanshi. All rights reserved.
//

import AppKit

File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//
// Other.swift
// MacCacheCleaner
// AutoStartSpinner.swift
// Mac Cache Cleaner
//
// Created by Kaunteya Suryawanshi on 27/06/18.
// Created by Kaunteya Suryawanshi on 12/07/18.
// Copyright © 2018 Kaunteya Suryawanshi. All rights reserved.
//

Expand Down

0 comments on commit c5bf7a6

Please sign in to comment.