├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── OpenSim.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── OpenSim.xcscheme ├── OpenSim ├── ActionMenu.swift ├── AppDelegate.swift ├── AppInfoView.swift ├── AppMenuItem.swift ├── Application.swift ├── ApplicationActionable.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── industry-electro-devices-icon-1024.png │ │ ├── industry-electro-devices-icon-128.png │ │ ├── industry-electro-devices-icon-16.png │ │ ├── industry-electro-devices-icon-256.png │ │ ├── industry-electro-devices-icon-32.png │ │ ├── industry-electro-devices-icon-512.png │ │ └── industry-electro-devices-icon-64.png │ ├── Contents.json │ ├── DefaultAppIcon.imageset │ │ ├── Contents.json │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ └── icon-60@3x.png │ ├── active.imageset │ │ ├── Contents.json │ │ ├── active.png │ │ ├── active@2x.png │ │ └── active@3x.png │ ├── inactive.imageset │ │ ├── Contents.json │ │ ├── inactive.png │ │ ├── inactive@2x.png │ │ └── inactive@3x.png │ ├── launch.imageset │ │ ├── Contents.json │ │ ├── launch.png │ │ └── launch@2x.png │ ├── menubar.imageset │ │ ├── 1447255133_electro_devices-1.png │ │ ├── 1447255133_electro_devices.png │ │ └── Contents.json │ ├── reveal.imageset │ │ ├── Contents.json │ │ ├── reveal.png │ │ └── reveal@2x.png │ ├── share.imageset │ │ ├── Contents.json │ │ ├── share.png │ │ └── share@2x.png │ ├── terminal.imageset │ │ ├── Contents.json │ │ ├── term.png │ │ └── term@2x.png │ └── uninstall.imageset │ │ ├── Contents.json │ │ ├── uninstall.png │ │ └── uninstall@2x.png ├── Base.lproj │ ├── Localizable.strings │ └── MainMenu.xib ├── CancelBlocks.swift ├── Constants.swift ├── CopyToPasteboardAction.swift ├── Device.swift ├── DeviceManager.swift ├── DirectoryWatcher.swift ├── ExtraApplicationActionable.swift ├── FileInfo.swift ├── Helper.swift ├── ImageExtension.swift ├── Info.plist ├── LaunchAction.swift ├── LaunchAtLoginHelper.swift ├── MenuManager.swift ├── OpenInItermAction.swift ├── OpenInTerminalAction.swift ├── OpenRealmAction.swift ├── RevealInFinderAction.swift ├── Runtime.swift ├── Simulator.swift ├── SimulatorController.swift ├── SimulatorEraseMenuItem.swift ├── SimulatorMenuItem.swift ├── SimulatorResetMenuItem.swift ├── SimulatorShutdownMenuItem.swift ├── URLHelper.swift ├── UninstallAction.swift └── pt-BR.lproj │ └── Localizable.strings └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenSim.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenSim.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OpenSim.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /OpenSim.xcodeproj/xcshareddata/xcschemes/OpenSim.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim.xcodeproj/xcshareddata/xcschemes/OpenSim.xcscheme -------------------------------------------------------------------------------- /OpenSim/ActionMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/ActionMenu.swift -------------------------------------------------------------------------------- /OpenSim/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/AppDelegate.swift -------------------------------------------------------------------------------- /OpenSim/AppInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/AppInfoView.swift -------------------------------------------------------------------------------- /OpenSim/AppMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/AppMenuItem.swift -------------------------------------------------------------------------------- /OpenSim/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Application.swift -------------------------------------------------------------------------------- /OpenSim/ApplicationActionable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/ApplicationActionable.swift -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-1024.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-128.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-16.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-256.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-32.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-512.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/AppIcon.appiconset/industry-electro-devices-icon-64.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/DefaultAppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/DefaultAppIcon.imageset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/DefaultAppIcon.imageset/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/DefaultAppIcon.imageset/icon-60.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/DefaultAppIcon.imageset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/DefaultAppIcon.imageset/icon-60@2x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/DefaultAppIcon.imageset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/DefaultAppIcon.imageset/icon-60@3x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/active.imageset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/active.imageset/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/active.imageset/active.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/active.imageset/active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/active.imageset/active@2x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/active.imageset/active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/active.imageset/active@3x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/inactive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/inactive.imageset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/inactive.imageset/inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/inactive.imageset/inactive.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/inactive.imageset/inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/inactive.imageset/inactive@2x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/inactive.imageset/inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/inactive.imageset/inactive@3x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/launch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/launch.imageset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/launch.imageset/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/launch.imageset/launch.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/launch.imageset/launch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/launch.imageset/launch@2x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/menubar.imageset/1447255133_electro_devices-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/menubar.imageset/1447255133_electro_devices-1.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/menubar.imageset/1447255133_electro_devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/menubar.imageset/1447255133_electro_devices.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/menubar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/menubar.imageset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/reveal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/reveal.imageset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/reveal.imageset/reveal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/reveal.imageset/reveal.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/reveal.imageset/reveal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/reveal.imageset/reveal@2x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/share.imageset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/share.imageset/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/share.imageset/share.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/share.imageset/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/share.imageset/share@2x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/terminal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/terminal.imageset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/terminal.imageset/term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/terminal.imageset/term.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/terminal.imageset/term@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/terminal.imageset/term@2x.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/uninstall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/uninstall.imageset/Contents.json -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/uninstall.imageset/uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/uninstall.imageset/uninstall.png -------------------------------------------------------------------------------- /OpenSim/Assets.xcassets/uninstall.imageset/uninstall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Assets.xcassets/uninstall.imageset/uninstall@2x.png -------------------------------------------------------------------------------- /OpenSim/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /OpenSim/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /OpenSim/CancelBlocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/CancelBlocks.swift -------------------------------------------------------------------------------- /OpenSim/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Constants.swift -------------------------------------------------------------------------------- /OpenSim/CopyToPasteboardAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/CopyToPasteboardAction.swift -------------------------------------------------------------------------------- /OpenSim/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Device.swift -------------------------------------------------------------------------------- /OpenSim/DeviceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/DeviceManager.swift -------------------------------------------------------------------------------- /OpenSim/DirectoryWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/DirectoryWatcher.swift -------------------------------------------------------------------------------- /OpenSim/ExtraApplicationActionable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/ExtraApplicationActionable.swift -------------------------------------------------------------------------------- /OpenSim/FileInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/FileInfo.swift -------------------------------------------------------------------------------- /OpenSim/Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Helper.swift -------------------------------------------------------------------------------- /OpenSim/ImageExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/ImageExtension.swift -------------------------------------------------------------------------------- /OpenSim/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Info.plist -------------------------------------------------------------------------------- /OpenSim/LaunchAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/LaunchAction.swift -------------------------------------------------------------------------------- /OpenSim/LaunchAtLoginHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/LaunchAtLoginHelper.swift -------------------------------------------------------------------------------- /OpenSim/MenuManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/MenuManager.swift -------------------------------------------------------------------------------- /OpenSim/OpenInItermAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/OpenInItermAction.swift -------------------------------------------------------------------------------- /OpenSim/OpenInTerminalAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/OpenInTerminalAction.swift -------------------------------------------------------------------------------- /OpenSim/OpenRealmAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/OpenRealmAction.swift -------------------------------------------------------------------------------- /OpenSim/RevealInFinderAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/RevealInFinderAction.swift -------------------------------------------------------------------------------- /OpenSim/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Runtime.swift -------------------------------------------------------------------------------- /OpenSim/Simulator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/Simulator.swift -------------------------------------------------------------------------------- /OpenSim/SimulatorController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/SimulatorController.swift -------------------------------------------------------------------------------- /OpenSim/SimulatorEraseMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/SimulatorEraseMenuItem.swift -------------------------------------------------------------------------------- /OpenSim/SimulatorMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/SimulatorMenuItem.swift -------------------------------------------------------------------------------- /OpenSim/SimulatorResetMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/SimulatorResetMenuItem.swift -------------------------------------------------------------------------------- /OpenSim/SimulatorShutdownMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/SimulatorShutdownMenuItem.swift -------------------------------------------------------------------------------- /OpenSim/URLHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/URLHelper.swift -------------------------------------------------------------------------------- /OpenSim/UninstallAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/UninstallAction.swift -------------------------------------------------------------------------------- /OpenSim/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/OpenSim/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/OpenSim/HEAD/README.md --------------------------------------------------------------------------------