├── .github ├── FUNDING.yml └── workflows │ └── ci-mac.yaml ├── .gitignore ├── .gitmodules ├── Assets ├── Icon.psd └── Screenshot.png ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SMC-Reader.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── SMC-Reader ├── Classes ├── AboutWindowController.swift ├── ApplicationDelegate.swift ├── MainWindowController.swift └── SMCData.swift ├── Info.plist ├── SMC-Reader.entitlements └── UI ├── Base.lproj ├── AboutWindowController.xib ├── MainMenu.xib └── MainWindowController.xib └── Icon.icns /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: macmade 2 | -------------------------------------------------------------------------------- /.github/workflows/ci-mac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/.github/workflows/ci-mac.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/Assets/Icon.psd -------------------------------------------------------------------------------- /Assets/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/Assets/Screenshot.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/README.md -------------------------------------------------------------------------------- /SMC-Reader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SMC-Reader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SMC-Reader.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SMC-Reader/Classes/AboutWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/Classes/AboutWindowController.swift -------------------------------------------------------------------------------- /SMC-Reader/Classes/ApplicationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/Classes/ApplicationDelegate.swift -------------------------------------------------------------------------------- /SMC-Reader/Classes/MainWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/Classes/MainWindowController.swift -------------------------------------------------------------------------------- /SMC-Reader/Classes/SMCData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/Classes/SMCData.swift -------------------------------------------------------------------------------- /SMC-Reader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/Info.plist -------------------------------------------------------------------------------- /SMC-Reader/SMC-Reader.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/SMC-Reader.entitlements -------------------------------------------------------------------------------- /SMC-Reader/UI/Base.lproj/AboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/UI/Base.lproj/AboutWindowController.xib -------------------------------------------------------------------------------- /SMC-Reader/UI/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/UI/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /SMC-Reader/UI/Base.lproj/MainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/UI/Base.lproj/MainWindowController.xib -------------------------------------------------------------------------------- /SMC-Reader/UI/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/SMC-Reader/HEAD/SMC-Reader/UI/Icon.icns --------------------------------------------------------------------------------