Skip to content

Commit

Permalink
Version 3.0.3
Browse files Browse the repository at this point in the history
- Updated dependancies to the latest versions.
- Switched to the GNU GPL 2.0 License.
- Added legal info to source code files.
  • Loading branch information
ITzTravelInTime committed Nov 12, 2021
1 parent 789987a commit 385ac56
Show file tree
Hide file tree
Showing 7 changed files with 337 additions and 444 deletions.
660 changes: 248 additions & 412 deletions LICENSE

Large diffs are not rendered by default.

16 changes: 11 additions & 5 deletions MenuBarSIPDetector.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
C6254B9D268B07BD0082C7F5 /* MenuBarSIPDetector.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = MenuBarSIPDetector.entitlements; sourceTree = "<group>"; };
C659BE6226A4D58500786905 /* InfoViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoViewController.swift; sourceTree = "<group>"; };
C6B2389926A37974003AC9E2 /* SIP.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SIP.swift; sourceTree = "<group>"; };
DD8A63BA273EDB1700DAE911 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
DD8A63BB273EDB1700DAE911 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
DD8A63BC273EDB1700DAE911 /* Images */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Images; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand All @@ -41,6 +44,9 @@
C6254B87268B07BA0082C7F5 = {
isa = PBXGroup;
children = (
DD8A63BC273EDB1700DAE911 /* Images */,
DD8A63BB273EDB1700DAE911 /* LICENSE */,
DD8A63BA273EDB1700DAE911 /* README.md */,
C6254B92268B07BB0082C7F5 /* MenuBarSIPDetector */,
C6254B91268B07BB0082C7F5 /* Products */,
);
Expand Down Expand Up @@ -287,7 +293,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
INFOPLIST_FILE = MenuBarSIPDetector/Info.plist;
Expand All @@ -296,7 +302,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = 3.0.2;
MARKETING_VERSION = 3.0.3;
PRODUCT_BUNDLE_IDENTIFIER = org.pietrocaruso.MenuBarSIPDetector;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -313,7 +319,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
INFOPLIST_FILE = MenuBarSIPDetector/Info.plist;
Expand All @@ -322,7 +328,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = 3.0.2;
MARKETING_VERSION = 3.0.3;
PRODUCT_BUNDLE_IDENTIFIER = org.pietrocaruso.MenuBarSIPDetector;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -359,7 +365,7 @@
repositoryURL = "https://github.com/ITzTravelInTime/TINURecovery.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 3.7.2;
minimumVersion = 4.0.0;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
"repositoryURL": "https://github.com/ITzTravelInTime/SwiftLoggedPrint",
"state": {
"branch": null,
"revision": "2dc90f3715e158635a9a278a46f5e2eb11ef606b",
"version": "3.0.3"
"revision": "99e88579542a17863435d78c71c499679a3f397e",
"version": "3.1.2"
}
},
{
"package": "TINURecovery",
"repositoryURL": "https://github.com/ITzTravelInTime/TINURecovery.git",
"state": {
"branch": null,
"revision": "9f29146e78f09a30d8efa17c0858626689a4c3f9",
"version": "3.7.7"
"revision": "f5d4077abe3f9b5d58b7fe84f4dc31763433546b",
"version": "4.0.0"
}
}
]
Expand Down
26 changes: 20 additions & 6 deletions MenuBarSIPDetector/AppDelegate.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
//
// AppDelegate.swift
// MenuBarSIPDetector
//
// Created by Pietro Caruso on 29/06/21.
//
/*
MenuBarSIPDetector: A simple app to know the current status of the System Integrity Protection.
Copyright (C) 2021 Pietro Caruso (ITzTravelInTime)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

import Cocoa
import TINURecovery
Expand Down
26 changes: 20 additions & 6 deletions MenuBarSIPDetector/InfoViewController.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
//
// InfoViewController.swift
// MenuBarSIPDetector
//
// Created by Pietro Caruso on 18/07/21.
//
/*
MenuBarSIPDetector: A simple app to know the current status of the System Integrity Protection.
Copyright (C) 2021 Pietro Caruso (ITzTravelInTime)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

import AppKit

Expand Down
26 changes: 20 additions & 6 deletions MenuBarSIPDetector/SIP.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
//
// SIP.swift
// MenuBarSIPDetector
//
// Created by Pietro Caruso on 17/07/21.
//
/*
MenuBarSIPDetector: A simple app to know the current status of the System Integrity Protection.
Copyright (C) 2021 Pietro Caruso (ITzTravelInTime)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

import Foundation
import AppKit
Expand Down
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,22 @@ This app has been mostly made for Developers and people who often changes the st

- ITzTravelInTime (Pietro Caruso): piecaruso97@gmail.com

# Copyright
# Legal info

Copyright (C) 2021 Pietro Caruso
MenuBarSIPDetector: A simple app to know the current status of the System Integrity Protection.
Copyright (C) 2021 Pietro Caruso (ITzTravelInTime)

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

0 comments on commit 385ac56

Please sign in to comment.