├── Examples ├── DrawExample │ ├── DrawExample.xcodeproj │ │ └── project.pbxproj │ ├── DrawExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── DrawExample-Info.plist │ │ ├── DrawExample-Prefix.pch │ │ ├── DrawView.h │ │ ├── DrawView.m │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── DrawExampleTests │ │ ├── DrawExampleTests-Info.plist │ │ ├── DrawExampleTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── RLORebuildCode │ │ └── RLORebuildCode.m │ ├── RLOUpdaterBundleDrawExample │ │ ├── RLOUpdaterBundleDrawExample-Info.plist │ │ ├── RLOUpdaterBundleDrawExample-Prefix.pch │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── rloconfig.py ├── GLExample │ ├── GLExample.xcodeproj │ │ └── project.pbxproj │ ├── GLExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ ├── Main_iPad.storyboard │ │ │ └── Main_iPhone.storyboard │ │ ├── GLExample-Info.plist │ │ ├── GLExample-Prefix.pch │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── Shaders │ │ │ ├── Shader.fsh │ │ │ └── Shader.vsh │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── GLExampleTests │ │ ├── GLExampleTests-Info.plist │ │ ├── GLExampleTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── RLORebuildCode │ │ └── RLORebuildCode.m │ ├── RLOUpdaterBundleGLExample │ │ ├── RLOUpdaterBundleGLExample-Info.plist │ │ ├── RLOUpdaterBundleGLExample-Prefix.pch │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── rloconfig.py └── MixedDrawExample │ ├── MixedDrawExample-Bridging-Header.h │ ├── MixedDrawExample.xcodeproj │ └── project.pbxproj │ ├── MixedDrawExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── DrawView.h │ ├── DrawView.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── MixedDrawExample-Bridging-Header.h │ ├── MixedDrawExample-Info.plist │ ├── MixedDrawExample-Prefix.pch │ ├── RLOUpdaterBundleDrawExample-Bridging-Header.h │ ├── SwiftyView.swift │ ├── en.lproj │ │ ├── Credits.rtf │ │ └── InfoPlist.strings │ └── main.m │ ├── MixedDrawExampleTests │ ├── MixedDrawExampleTests-Info.plist │ ├── MixedDrawExampleTests.m │ └── en.lproj │ │ └── InfoPlist.strings │ ├── RLORebuildCode │ └── RLORebuildCode.m │ ├── RLOUpdaterBundleDrawExample │ ├── RLOUpdaterBundleDrawExample-Info.plist │ ├── RLOUpdaterBundleDrawExample-Prefix.pch │ └── en.lproj │ │ └── InfoPlist.strings │ └── rloconfig.py ├── InstallingRLO.md ├── LICENSE ├── README.md ├── RLOApp ├── NSString+URLAdditions.h ├── NSString+URLAdditions.m ├── RLO.icns ├── RLOApp.xcodeproj │ └── project.pbxproj └── RLOApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── GlobalEventHandler.h │ ├── GlobalEventHandler.m │ ├── RLOApp-Info.plist │ ├── RLOApp-Prefix.pch │ ├── RLOMainView.h │ ├── RLOMainView.m │ ├── en.lproj │ ├── Credits.rtf │ └── MainMenu.xib │ └── main.m ├── RLOClasses ├── RLOBundleUpdater.h ├── RLOBundleUpdater.m ├── RLODefinitions.h ├── RLOUnbundler.h ├── RLOUnbundler.m ├── RLOUtils.h └── RLOUtils.m ├── RLOOptionalClasses ├── RLOCharacterMapping.h ├── RLOCharacterMapping.m ├── RLOUIApplication.h └── RLOUIApplication.m ├── RefactoringForRLO.md ├── scripts ├── rlo_newerfiles.py ├── rlo_onbuildend.sh ├── rlo_onbuildstart.sh └── rlo_server.py └── templates ├── RLORebuildCode └── RLORebuildCode.m └── rloconfig.py /Examples/DrawExample/DrawExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/AppDelegate.h -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/AppDelegate.m -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/DrawExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/DrawExample-Info.plist -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/DrawExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/DrawExample-Prefix.pch -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/DrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/DrawView.h -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/DrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/DrawView.m -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExample/main.m -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExampleTests/DrawExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExampleTests/DrawExampleTests-Info.plist -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExampleTests/DrawExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/DrawExampleTests/DrawExampleTests.m -------------------------------------------------------------------------------- /Examples/DrawExample/DrawExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/DrawExample/RLORebuildCode/RLORebuildCode.m: -------------------------------------------------------------------------------- 1 | #ifdef RLO_ENABLED 2 | #endif 3 | -------------------------------------------------------------------------------- /Examples/DrawExample/RLOUpdaterBundleDrawExample/RLOUpdaterBundleDrawExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/RLOUpdaterBundleDrawExample/RLOUpdaterBundleDrawExample-Info.plist -------------------------------------------------------------------------------- /Examples/DrawExample/RLOUpdaterBundleDrawExample/RLOUpdaterBundleDrawExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/RLOUpdaterBundleDrawExample/RLOUpdaterBundleDrawExample-Prefix.pch -------------------------------------------------------------------------------- /Examples/DrawExample/RLOUpdaterBundleDrawExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/DrawExample/rloconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/DrawExample/rloconfig.py -------------------------------------------------------------------------------- /Examples/GLExample/GLExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/AppDelegate.h -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/AppDelegate.m -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/GLExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/GLExample-Info.plist -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/GLExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/GLExample-Prefix.pch -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/Shaders/Shader.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/Shaders/Shader.fsh -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/Shaders/Shader.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/Shaders/Shader.vsh -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/ViewController.h -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/ViewController.m -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/GLExample/GLExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExample/main.m -------------------------------------------------------------------------------- /Examples/GLExample/GLExampleTests/GLExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExampleTests/GLExampleTests-Info.plist -------------------------------------------------------------------------------- /Examples/GLExample/GLExampleTests/GLExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/GLExampleTests/GLExampleTests.m -------------------------------------------------------------------------------- /Examples/GLExample/GLExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/GLExample/RLORebuildCode/RLORebuildCode.m: -------------------------------------------------------------------------------- 1 | #ifdef RLO_ENABLED 2 | #endif 3 | -------------------------------------------------------------------------------- /Examples/GLExample/RLOUpdaterBundleGLExample/RLOUpdaterBundleGLExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/RLOUpdaterBundleGLExample/RLOUpdaterBundleGLExample-Info.plist -------------------------------------------------------------------------------- /Examples/GLExample/RLOUpdaterBundleGLExample/RLOUpdaterBundleGLExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/RLOUpdaterBundleGLExample/RLOUpdaterBundleGLExample-Prefix.pch -------------------------------------------------------------------------------- /Examples/GLExample/RLOUpdaterBundleGLExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/GLExample/rloconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/GLExample/rloconfig.py -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample-Bridging-Header.h -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/AppDelegate.h -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/AppDelegate.m -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/DrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/DrawView.h -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/DrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/DrawView.m -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/MixedDrawExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/MixedDrawExample-Bridging-Header.h -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/MixedDrawExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/MixedDrawExample-Info.plist -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/MixedDrawExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/MixedDrawExample-Prefix.pch -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/RLOUpdaterBundleDrawExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/RLOUpdaterBundleDrawExample-Bridging-Header.h -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/SwiftyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/SwiftyView.swift -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExample/main.m -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExampleTests/MixedDrawExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExampleTests/MixedDrawExampleTests-Info.plist -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExampleTests/MixedDrawExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/MixedDrawExampleTests/MixedDrawExampleTests.m -------------------------------------------------------------------------------- /Examples/MixedDrawExample/MixedDrawExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/MixedDrawExample/RLORebuildCode/RLORebuildCode.m: -------------------------------------------------------------------------------- 1 | #ifdef RLO_ENABLED 2 | #endif 3 | -------------------------------------------------------------------------------- /Examples/MixedDrawExample/RLOUpdaterBundleDrawExample/RLOUpdaterBundleDrawExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/RLOUpdaterBundleDrawExample/RLOUpdaterBundleDrawExample-Info.plist -------------------------------------------------------------------------------- /Examples/MixedDrawExample/RLOUpdaterBundleDrawExample/RLOUpdaterBundleDrawExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/RLOUpdaterBundleDrawExample/RLOUpdaterBundleDrawExample-Prefix.pch -------------------------------------------------------------------------------- /Examples/MixedDrawExample/RLOUpdaterBundleDrawExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/MixedDrawExample/rloconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/Examples/MixedDrawExample/rloconfig.py -------------------------------------------------------------------------------- /InstallingRLO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/InstallingRLO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/README.md -------------------------------------------------------------------------------- /RLOApp/NSString+URLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/NSString+URLAdditions.h -------------------------------------------------------------------------------- /RLOApp/NSString+URLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/NSString+URLAdditions.m -------------------------------------------------------------------------------- /RLOApp/RLO.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLO.icns -------------------------------------------------------------------------------- /RLOApp/RLOApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RLOApp/RLOApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/AppDelegate.h -------------------------------------------------------------------------------- /RLOApp/RLOApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/AppDelegate.m -------------------------------------------------------------------------------- /RLOApp/RLOApp/GlobalEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/GlobalEventHandler.h -------------------------------------------------------------------------------- /RLOApp/RLOApp/GlobalEventHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/GlobalEventHandler.m -------------------------------------------------------------------------------- /RLOApp/RLOApp/RLOApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/RLOApp-Info.plist -------------------------------------------------------------------------------- /RLOApp/RLOApp/RLOApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/RLOApp-Prefix.pch -------------------------------------------------------------------------------- /RLOApp/RLOApp/RLOMainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/RLOMainView.h -------------------------------------------------------------------------------- /RLOApp/RLOApp/RLOMainView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/RLOMainView.m -------------------------------------------------------------------------------- /RLOApp/RLOApp/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /RLOApp/RLOApp/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /RLOApp/RLOApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOApp/RLOApp/main.m -------------------------------------------------------------------------------- /RLOClasses/RLOBundleUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOClasses/RLOBundleUpdater.h -------------------------------------------------------------------------------- /RLOClasses/RLOBundleUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOClasses/RLOBundleUpdater.m -------------------------------------------------------------------------------- /RLOClasses/RLODefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOClasses/RLODefinitions.h -------------------------------------------------------------------------------- /RLOClasses/RLOUnbundler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOClasses/RLOUnbundler.h -------------------------------------------------------------------------------- /RLOClasses/RLOUnbundler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOClasses/RLOUnbundler.m -------------------------------------------------------------------------------- /RLOClasses/RLOUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOClasses/RLOUtils.h -------------------------------------------------------------------------------- /RLOClasses/RLOUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOClasses/RLOUtils.m -------------------------------------------------------------------------------- /RLOOptionalClasses/RLOCharacterMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOOptionalClasses/RLOCharacterMapping.h -------------------------------------------------------------------------------- /RLOOptionalClasses/RLOCharacterMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOOptionalClasses/RLOCharacterMapping.m -------------------------------------------------------------------------------- /RLOOptionalClasses/RLOUIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOOptionalClasses/RLOUIApplication.h -------------------------------------------------------------------------------- /RLOOptionalClasses/RLOUIApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RLOOptionalClasses/RLOUIApplication.m -------------------------------------------------------------------------------- /RefactoringForRLO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/RefactoringForRLO.md -------------------------------------------------------------------------------- /scripts/rlo_newerfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/scripts/rlo_newerfiles.py -------------------------------------------------------------------------------- /scripts/rlo_onbuildend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/scripts/rlo_onbuildend.sh -------------------------------------------------------------------------------- /scripts/rlo_onbuildstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/scripts/rlo_onbuildstart.sh -------------------------------------------------------------------------------- /scripts/rlo_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/scripts/rlo_server.py -------------------------------------------------------------------------------- /templates/RLORebuildCode/RLORebuildCode.m: -------------------------------------------------------------------------------- 1 | #ifdef RLO_ENABLED 2 | #endif 3 | -------------------------------------------------------------------------------- /templates/rloconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikr/RestartLessOften/HEAD/templates/rloconfig.py --------------------------------------------------------------------------------