├── .gitignore ├── LICENSE ├── README.md ├── VoltageShift.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── VoltageShift.xcscheme ├── VoltageShiftAnVMSR ├── VoltageShfitAnVMSR.cpp ├── VoltageShift-Info.plist ├── VoltageShift-Prefix.pch ├── VoltageShiftAnVMSR.h ├── en.lproj │ └── InfoPlist.strings └── main.mm ├── voltageshift_1.24.zip └── voltageshift_1.25.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/README.md -------------------------------------------------------------------------------- /VoltageShift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VoltageShift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VoltageShift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VoltageShift.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShift.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /VoltageShift.xcodeproj/xcshareddata/xcschemes/VoltageShift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShift.xcodeproj/xcshareddata/xcschemes/VoltageShift.xcscheme -------------------------------------------------------------------------------- /VoltageShiftAnVMSR/VoltageShfitAnVMSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShiftAnVMSR/VoltageShfitAnVMSR.cpp -------------------------------------------------------------------------------- /VoltageShiftAnVMSR/VoltageShift-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShiftAnVMSR/VoltageShift-Info.plist -------------------------------------------------------------------------------- /VoltageShiftAnVMSR/VoltageShift-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShiftAnVMSR/VoltageShift-Prefix.pch -------------------------------------------------------------------------------- /VoltageShiftAnVMSR/VoltageShiftAnVMSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShiftAnVMSR/VoltageShiftAnVMSR.h -------------------------------------------------------------------------------- /VoltageShiftAnVMSR/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /VoltageShiftAnVMSR/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/VoltageShiftAnVMSR/main.mm -------------------------------------------------------------------------------- /voltageshift_1.24.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/voltageshift_1.24.zip -------------------------------------------------------------------------------- /voltageshift_1.25.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sicreative/VoltageShift/HEAD/voltageshift_1.25.zip --------------------------------------------------------------------------------