├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── Deploy ├── Package │ ├── DEBIAN │ │ ├── control │ │ ├── postinst │ │ └── prerm │ ├── Library │ │ ├── Application Support │ │ │ └── Widgets │ │ │ │ └── Resource Packs │ │ │ │ └── default │ │ │ │ ├── battery │ │ │ │ ├── 0.svg │ │ │ │ ├── 10.svg │ │ │ │ ├── 100.svg │ │ │ │ ├── 20.svg │ │ │ │ ├── 30.svg │ │ │ │ ├── 40.svg │ │ │ │ ├── 50.svg │ │ │ │ ├── 60.svg │ │ │ │ ├── 70.svg │ │ │ │ ├── 80.svg │ │ │ │ └── 90.svg │ │ │ │ ├── media │ │ │ │ ├── next.svg │ │ │ │ ├── no-artwork.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play.svg │ │ │ │ ├── previous.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── volume-max.svg │ │ │ │ └── volume-min.svg │ │ │ │ └── weather │ │ │ │ ├── 0.svg │ │ │ │ ├── 1.svg │ │ │ │ ├── 10.svg │ │ │ │ ├── 11.svg │ │ │ │ ├── 12.svg │ │ │ │ ├── 13.svg │ │ │ │ ├── 14.svg │ │ │ │ ├── 15.svg │ │ │ │ ├── 16.svg │ │ │ │ ├── 17.svg │ │ │ │ ├── 18.svg │ │ │ │ ├── 19.svg │ │ │ │ ├── 2.svg │ │ │ │ ├── 20.svg │ │ │ │ ├── 21.svg │ │ │ │ ├── 22.svg │ │ │ │ ├── 23.svg │ │ │ │ ├── 24.svg │ │ │ │ ├── 25.svg │ │ │ │ ├── 26.svg │ │ │ │ ├── 27.svg │ │ │ │ ├── 28.svg │ │ │ │ ├── 29.svg │ │ │ │ ├── 3.svg │ │ │ │ ├── 30.svg │ │ │ │ ├── 31.svg │ │ │ │ ├── 32.svg │ │ │ │ ├── 33.svg │ │ │ │ ├── 34.svg │ │ │ │ ├── 35.svg │ │ │ │ ├── 36.svg │ │ │ │ ├── 37.svg │ │ │ │ ├── 38.svg │ │ │ │ ├── 39.svg │ │ │ │ ├── 4.svg │ │ │ │ ├── 40.svg │ │ │ │ ├── 41.svg │ │ │ │ ├── 42.svg │ │ │ │ ├── 43.svg │ │ │ │ ├── 44.svg │ │ │ │ ├── 45.svg │ │ │ │ ├── 46.svg │ │ │ │ ├── 47.svg │ │ │ │ ├── 5.svg │ │ │ │ ├── 6.svg │ │ │ │ ├── 7.svg │ │ │ │ ├── 8.svg │ │ │ │ └── 9.svg │ │ ├── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ │ ├── AAA_XenHTML_DenyInjection.plist │ │ │ │ ├── XenHTML_Loader.plist │ │ │ │ └── XenHTML_WebGL.plist │ │ ├── PreferenceBundles │ │ │ └── XenHTMLPrefs.bundle │ │ │ │ ├── Advanced.plist │ │ │ │ ├── Background.png │ │ │ │ ├── Background@2x.png │ │ │ │ ├── Background@3x.png │ │ │ │ ├── BackgroundWidget.png │ │ │ │ ├── BackgroundWidget@2x.png │ │ │ │ ├── BackgroundWidget@3x.png │ │ │ │ ├── Blank.png │ │ │ │ ├── Blank@2x.png │ │ │ │ ├── Blank@3x.png │ │ │ │ ├── CellIcons │ │ │ │ ├── Advanced.png │ │ │ │ ├── Advanced@2x.png │ │ │ │ ├── Advanced@3x.png │ │ │ │ ├── BTC.png │ │ │ │ ├── BTC@2x.png │ │ │ │ ├── BTC@3x.png │ │ │ │ ├── BugReport.png │ │ │ │ ├── BugReport@2x.png │ │ │ │ ├── BugReport@3x.png │ │ │ │ ├── Donate.png │ │ │ │ ├── Donate@2x.png │ │ │ │ ├── Donate@3x.png │ │ │ │ ├── ETH.png │ │ │ │ ├── ETH@2x.png │ │ │ │ ├── ETH@3x.png │ │ │ │ ├── Homescreen.png │ │ │ │ ├── Homescreen@2x.png │ │ │ │ ├── Homescreen@3x.png │ │ │ │ ├── Lockscreen.png │ │ │ │ ├── Lockscreen@2x.png │ │ │ │ ├── Lockscreen@3x.png │ │ │ │ ├── Mail.png │ │ │ │ ├── Mail@2x.png │ │ │ │ ├── Mail@3x.png │ │ │ │ ├── More.png │ │ │ │ ├── More@2x.png │ │ │ │ ├── More@3x.png │ │ │ │ ├── PayPal.png │ │ │ │ ├── PayPal@2x.png │ │ │ │ ├── PayPal@3x.png │ │ │ │ ├── Reset.png │ │ │ │ ├── Reset@2x.png │ │ │ │ ├── Reset@3x.png │ │ │ │ ├── Support.png │ │ │ │ ├── Support@2x.png │ │ │ │ ├── Support@3x.png │ │ │ │ ├── Twitter.png │ │ │ │ ├── Twitter@2x.png │ │ │ │ └── Twitter@3x.png │ │ │ │ ├── Donate.plist │ │ │ │ ├── Editor │ │ │ │ ├── Accept.png │ │ │ │ ├── Accept@2x.png │ │ │ │ ├── Accept@3x.png │ │ │ │ ├── Cancel.png │ │ │ │ ├── Cancel@2x.png │ │ │ │ ├── Cancel@3x.png │ │ │ │ ├── LargeBackgroundWidget.png │ │ │ │ ├── LargeBackgroundWidget@2x.png │ │ │ │ ├── LargeBackgroundWidget@3x.png │ │ │ │ ├── LargeForegroundWidget.png │ │ │ │ ├── LargeForegroundWidget@2x.png │ │ │ │ ├── LargeForegroundWidget@3x.png │ │ │ │ ├── Settings.png │ │ │ │ ├── Settings@2x.png │ │ │ │ └── Settings@3x.png │ │ │ │ ├── ForegroundWidget.png │ │ │ │ ├── ForegroundWidget@2x.png │ │ │ │ ├── ForegroundWidget@3x.png │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ ├── Icon@3x.png │ │ │ │ ├── IconPackageManager.png │ │ │ │ ├── Info.plist │ │ │ │ ├── LSAdvanced.plist │ │ │ │ ├── LSHidden.png │ │ │ │ ├── LSHidden@2x.png │ │ │ │ ├── LSHidden@3x.png │ │ │ │ ├── LSMedia.plist │ │ │ │ ├── LSNotifications.plist │ │ │ │ ├── LSOtherVisibility.plist │ │ │ │ ├── LSSettings.plist │ │ │ │ ├── LSUnhidden.png │ │ │ │ ├── LSUnhidden@2x.png │ │ │ │ ├── LSUnhidden@3x.png │ │ │ │ ├── Root.plist │ │ │ │ ├── SBForeground.plist │ │ │ │ ├── SBSettings.plist │ │ │ │ ├── Setup │ │ │ │ ├── Homescreen.png │ │ │ │ ├── Homescreen@2x.png │ │ │ │ ├── Homescreen@3x.png │ │ │ │ ├── Lockscreen.png │ │ │ │ ├── Lockscreen@2x.png │ │ │ │ ├── Lockscreen@3x.png │ │ │ │ ├── Tick.png │ │ │ │ ├── Tick@2x.png │ │ │ │ └── Tick@3x.png │ │ │ │ ├── SkewHigh.png │ │ │ │ ├── SkewHigh@2x.png │ │ │ │ ├── SkewHigh@3x.png │ │ │ │ ├── SkewLow.png │ │ │ │ ├── SkewLow@2x.png │ │ │ │ ├── SkewLow@3x.png │ │ │ │ ├── Support.plist │ │ │ │ ├── ar.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── cs.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── de.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── el.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── en.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── es.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── fr.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── he.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── id.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── it.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── ms.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── nl.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── pl.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── pt.lproj │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── ru.lproj │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ ├── tr.lproj │ │ │ │ ├── Advanced.strings │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ │ │ └── zh-Hant.lproj │ │ │ │ ├── Donate.strings │ │ │ │ ├── LSAdvanced.strings │ │ │ │ ├── LSMedia.strings │ │ │ │ ├── LSNotifications.strings │ │ │ │ ├── LSOtherVisibility.strings │ │ │ │ ├── LSSettings.strings │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Root.strings │ │ │ │ ├── SBForeground.strings │ │ │ │ ├── SBSettings.strings │ │ │ │ └── Support.strings │ │ └── PreferenceLoader │ │ │ └── Preferences │ │ │ └── XenHTMLPrefs.plist │ └── var │ │ └── mobile │ │ └── Library │ │ ├── LockHTML │ │ └── README.md │ │ ├── SBHTML │ │ └── README.md │ │ ├── Widgets │ │ ├── Backgrounds │ │ │ ├── Background | Kaleidoscope │ │ │ │ ├── config.json │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── perlin.js │ │ │ │ │ └── three.min.js │ │ │ ├── Background | Particles │ │ │ │ ├── config.json │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ └── particles.min.js │ │ │ └── README.md │ │ ├── Homescreen │ │ │ ├── Apps | List │ │ │ │ ├── config.json │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ └── style.css │ │ │ └── README.md │ │ ├── Lockscreen │ │ │ └── README.md │ │ └── Universal │ │ │ ├── Bluetooth | Connected │ │ │ ├── config.json │ │ │ ├── img │ │ │ │ ├── bluetooth-small.png │ │ │ │ ├── bluetooth.png │ │ │ │ └── headphones.png │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── style.css │ │ │ ├── Calendar | Up Next │ │ │ ├── config.json │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── style.css │ │ │ ├── Media | Mini │ │ │ ├── config.json │ │ │ ├── index.html │ │ │ └── style.css │ │ │ ├── Media | Player │ │ │ ├── config.json │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── style.css │ │ │ ├── README.md │ │ │ ├── Reminders | Pending │ │ │ ├── config.json │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── style.css │ │ │ ├── Resources | Battery │ │ │ ├── config.json │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── style.css │ │ │ ├── Weather | Card │ │ │ ├── config.json │ │ │ ├── index.html │ │ │ └── style.css │ │ │ └── Weather | Forecast │ │ │ ├── config.json │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── style.css │ │ └── iWidgets │ │ └── README.md └── PackageVersion.plist ├── Helpers ├── BatteryManager │ ├── BatteryManager.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── BatteryManager │ │ ├── BatteryManager-Prefix.pch │ │ ├── BatteryManager.xm │ │ └── Resources │ │ │ ├── XENBMResources.h │ │ │ └── XENBMResources.m │ └── XenHTML_ZBatteryManager.plist ├── DenyInjection │ ├── AAA_XenHTML_DenyInjection.plist │ ├── DenyInjection.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── DenyInjection │ │ ├── DenyInjection-Prefix.pch │ │ ├── DenyInjection.mm │ │ └── DenyInjection.xm ├── WebGL │ ├── WebGL.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── WebGL │ │ ├── Resources │ │ │ ├── XENWGResources.h │ │ │ └── XENWGResources.m │ │ ├── WebGL-Prefix.pch │ │ ├── WebGL.mm │ │ └── WebGL.xm │ └── XenHTML_WebGL.plist └── WidgetInfo │ ├── Daemon │ ├── Info.plist │ ├── com.matchstic.widgetinfod.plist │ ├── entitlements.plist │ ├── kern_memorystatus.h │ └── main.mm │ ├── WidgetInfo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── WidgetInfo │ ├── WidgetInfo-Prefix.pch │ └── WidgetInfo.xm ├── LICENSE.txt ├── Loader ├── XenHTML.mm └── XenHTML.xm ├── Preferences ├── Advanced Panel │ ├── XENHAdvancedController.h │ └── XENHAdvancedController.m ├── Donation Panel │ ├── XENHDonationController.h │ └── XENHDonationController.m ├── HTML Editor Panel │ ├── Widget Display Controller │ │ ├── XENHEditorDragDropController.h │ │ ├── XENHEditorDragDropController.m │ │ ├── XENHEditorExistingWidgetsController.h │ │ ├── XENHEditorExistingWidgetsController.m │ │ ├── XENHEditorPositioningController.h │ │ ├── XENHEditorPositioningController.m │ │ ├── XENHEditorToolbarController.h │ │ ├── XENHEditorToolbarController.m │ │ ├── XENHEditorViewController.h │ │ ├── XENHEditorViewController.m │ │ ├── XENHEditorWebViewController.h │ │ └── XENHEditorWebViewController.m │ ├── Widget Picker Controller │ │ ├── XENHPickerCell.h │ │ ├── XENHPickerCell.m │ │ ├── XENHPickerController.h │ │ ├── XENHPickerController.m │ │ ├── XENHPickerItem.h │ │ ├── XENHPickerItem.m │ │ ├── XENHPickerPreviewController.h │ │ └── XENHPickerPreviewController.m │ └── Widget Settings Controllers │ │ ├── XENHConfigJSCell.h │ │ ├── XENHConfigJSCell.m │ │ ├── XENHConfigJSController.h │ │ ├── XENHConfigJSController.m │ │ ├── XENHFallbackDelegate-Protocol.h │ │ ├── XENHFallbackOnlyOptionsController.h │ │ ├── XENHFallbackOnlyOptionsController.m │ │ ├── XENHMetadataOptionsController.h │ │ └── XENHMetadataOptionsController.m ├── HTML Preferences Panel │ ├── Faux Preview Controllers │ │ ├── Homescreen │ │ │ ├── XENHFauxIconsViewController.h │ │ │ └── XENHFauxIconsViewController.m │ │ └── Lockscreen │ │ │ ├── XENHFauxLockNotificationsController.h │ │ │ ├── XENHFauxLockNotificationsController.m │ │ │ ├── XENHFauxLockViewController.h │ │ │ └── XENHFauxLockViewController.m │ ├── Homescreen Specific Settings │ │ ├── Foreground │ │ │ ├── XENHSBForegroundController.h │ │ │ └── XENHSBForegroundController.m │ │ ├── XENHHomescreenPreferenceController.h │ │ └── XENHHomescreenPreferenceController.m │ ├── Lockscreen Specific Settings │ │ ├── Advanced │ │ │ ├── XENHLSAdvancedController.h │ │ │ └── XENHLSAdvancedController.m │ │ ├── Element Visibility │ │ │ ├── XENHLSVisibilityController.h │ │ │ └── XENHLSVisibilityController.m │ │ ├── Media Visibility │ │ │ ├── XENHLSMediaController.h │ │ │ └── XENHLSMediaController.m │ │ ├── Notifications Visibility │ │ │ ├── XENHLSNotificationsController.h │ │ │ └── XENHLSNotificationsController.m │ │ ├── XENHLockscreenPreferenceController.h │ │ └── XENHLockscreenPreferenceController.m │ ├── Preview Cell │ │ ├── XENHBasePreviewCell.h │ │ ├── XENHBasePreviewCell.m │ │ ├── XENHHomescreenPreviewCell.h │ │ ├── XENHHomescreenPreviewCell.m │ │ ├── XENHLockscreenPreviewCell.h │ │ ├── XENHLockscreenPreviewCell.m │ │ ├── XENHPreviewScaledController.h │ │ ├── XENHPreviewScaledController.m │ │ ├── XENHPreviewSliderCell.h │ │ └── XENHPreviewSliderCell.m │ ├── XENHBaseHTMLPreferenceController.h │ └── XENHBaseHTMLPreferenceController.m ├── Info.plist ├── More Repositories Panel │ ├── XENHMoreReposCell.h │ ├── XENHMoreReposCell.m │ ├── XENHMoreReposController.h │ └── XENHMoreReposController.m ├── Multiplex Panel │ ├── XENHMultiplexWidgetsController.h │ ├── XENHMultiplexWidgetsController.m │ ├── XENHMultiplexWidgetsHeaderView.h │ └── XENHMultiplexWidgetsHeaderView.m ├── Package │ ├── DEBIAN │ │ └── control │ └── Library │ │ ├── PreferenceBundles │ │ └── XenHTMLPrefs.bundle │ │ │ ├── Info.plist │ │ │ ├── Root.plist │ │ │ ├── XenHTMLPrefsIcon.png │ │ │ └── XenHTMLPrefsIcon@2x.png │ │ └── PreferenceLoader │ │ └── Preferences │ │ └── XenHTMLPrefs.plist ├── PackageVersion.plist ├── Prefix.pch ├── Root Panel │ ├── XENHPHeaderView.h │ ├── XENHPHeaderView.m │ ├── XENHRootController.h │ └── XENHRootController.m ├── Support Panel │ ├── XENHSupportController.h │ └── XENHSupportController.m └── Supporting Files │ ├── Third-Party Libraries │ └── AYVibrantButton │ │ ├── AYVibrantButton.h │ │ └── AYVibrantButton.m │ ├── XENHBaseListController.h │ ├── XENHBaseListController.m │ ├── XENHPResources.h │ ├── XENHResources.m │ ├── XENHTouchPassThroughView.h │ ├── XENHTouchPassThroughView.m │ ├── XENHWallpaperViewController.h │ └── XENHWallpaperViewController.m ├── README.md ├── Shared ├── Configuration │ ├── Cells │ │ ├── XENDWidgetConfigurationBaseTableCell.h │ │ ├── XENDWidgetConfigurationBaseTableCell.m │ │ ├── XENDWidgetConfigurationColorTableCell.h │ │ ├── XENDWidgetConfigurationColorTableCell.m │ │ ├── XENDWidgetConfigurationLinkTableCell.h │ │ ├── XENDWidgetConfigurationLinkTableCell.m │ │ ├── XENDWidgetConfigurationMultiTableCell.h │ │ ├── XENDWidgetConfigurationMultiTableCell.m │ │ ├── XENDWidgetConfigurationNumberTableCell.h │ │ ├── XENDWidgetConfigurationNumberTableCell.m │ │ ├── XENDWidgetConfigurationOptionTableCell.h │ │ ├── XENDWidgetConfigurationOptionTableCell.m │ │ ├── XENDWidgetConfigurationSliderTableCell.h │ │ ├── XENDWidgetConfigurationSliderTableCell.m │ │ ├── XENDWidgetConfigurationSwitchTableCell.h │ │ ├── XENDWidgetConfigurationSwitchTableCell.m │ │ ├── XENDWidgetConfigurationTextShortCell.h │ │ ├── XENDWidgetConfigurationTextShortCell.m │ │ ├── XENDWidgetConfigurationTextTableCell.h │ │ └── XENDWidgetConfigurationTextTableCell.m │ ├── Model │ │ ├── XENDWidgetConfigurationCell.h │ │ ├── XENDWidgetConfigurationCell.m │ │ ├── XENDWidgetConfigurationGroup.h │ │ ├── XENDWidgetConfigurationGroup.m │ │ ├── XENDWidgetConfigurationPage.h │ │ └── XENDWidgetConfigurationPage.m │ ├── Panels │ │ ├── MSColorPicker │ │ │ ├── MSColorComponentView.h │ │ │ ├── MSColorComponentView.m │ │ │ ├── MSColorPicker.h │ │ │ ├── MSColorSelectionView.h │ │ │ ├── MSColorSelectionView.m │ │ │ ├── MSColorUtils.h │ │ │ ├── MSColorUtils.m │ │ │ ├── MSColorView.h │ │ │ ├── MSColorWheelView.h │ │ │ ├── MSColorWheelView.m │ │ │ ├── MSHSBView.h │ │ │ ├── MSHSBView.m │ │ │ ├── MSOpacityGrid.h │ │ │ ├── MSOpacityGrid.m │ │ │ ├── MSRGBView.h │ │ │ ├── MSRGBView.m │ │ │ ├── MSSliderView.h │ │ │ ├── MSSliderView.m │ │ │ ├── MSThumbView.h │ │ │ └── MSThumbView.m │ │ ├── XENDWidgetConfigurationColorController.h │ │ ├── XENDWidgetConfigurationColorController.m │ │ ├── XENDWidgetConfigurationMultiController.h │ │ ├── XENDWidgetConfigurationMultiController.m │ │ ├── XENDWidgetConfigurationOptionsController.h │ │ └── XENDWidgetConfigurationOptionsController.m │ ├── XENDWidgetConfigurationDelegate.h │ ├── XENDWidgetConfigurationPageController.h │ └── XENDWidgetConfigurationPageController.m ├── Homescreen Foreground Widgets │ ├── Picker │ │ ├── Settings │ │ │ ├── XENHConfigJSCell.h │ │ │ ├── XENHConfigJSCell.m │ │ │ ├── XENHConfigJSController.h │ │ │ ├── XENHConfigJSController.m │ │ │ ├── XENHFallbackOnlyOptionsController.h │ │ │ ├── XENHFallbackOnlyOptionsController.m │ │ │ ├── XENHMetadataOptionsController.h │ │ │ └── XENHMetadataOptionsController.m │ │ ├── XENHHomescreenForegroundPickerCell.h │ │ ├── XENHHomescreenForegroundPickerCell.m │ │ ├── XENHHomescreenForegroundPickerController.h │ │ ├── XENHHomescreenForegroundPickerController.m │ │ ├── XENHHomescreenForegroundPickerDelegate.h │ │ ├── XENHPickerItem.h │ │ ├── XENHPickerItem.m │ │ ├── XENHPickerPreviewController.h │ │ └── XENHPickerPreviewController.m │ ├── XENHButton.h │ ├── XENHButton.m │ ├── XENHCloseButton.h │ ├── XENHCloseButton.m │ ├── XENHHomescreenForegroundViewController.h │ └── XENHHomescreenForegroundViewController.m ├── Prefix.pch ├── Setup │ ├── XENSetupViewController.h │ ├── XENSetupViewController.m │ ├── XENSetupWindow.h │ ├── XENSetupWindow.m │ └── ui │ │ ├── .browserslistrc │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public │ │ └── index.html │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── back.svg │ │ │ ├── background.svg │ │ │ ├── device-frame.svg │ │ │ ├── device-ipad-frame.svg │ │ │ ├── ios-settings.svg │ │ │ ├── music.svg │ │ │ ├── next.svg │ │ │ ├── play.svg │ │ │ ├── previous.svg │ │ │ └── sun.svg │ │ ├── components │ │ │ ├── action-bar.vue │ │ │ ├── device-frame.vue │ │ │ ├── page-control.vue │ │ │ ├── svg-icon.vue │ │ │ ├── widget-music.vue │ │ │ └── widget-weather.vue │ │ ├── main.ts │ │ ├── pages │ │ │ ├── end-page.vue │ │ │ ├── homescreen-page.vue │ │ │ ├── lockscreen-page.vue │ │ │ ├── wallpaper-page.vue │ │ │ └── welcome-page.vue │ │ └── styles │ │ │ └── main.scss │ │ ├── tsconfig.json │ │ ├── vue.config.js │ │ └── yarn.lock ├── Shared.h ├── Shared.m ├── Supporting │ ├── XENHResources.h │ ├── XENHResources.m │ ├── XENHTouchForwardingRecognizer.h │ ├── XENHTouchForwardingRecognizer.m │ ├── XENHTouchPassThroughView.h │ ├── XENHTouchPassThroughView.m │ ├── XENHWallpaperViewController.h │ ├── XENHWallpaperViewController.m │ ├── XENHWidgetConfiguration.h │ └── XENHWidgetConfiguration.m └── Web Controller │ ├── PrivateWebKitHeaders.h │ ├── XENHWidgetController.h │ ├── XENHWidgetController.m │ ├── XENHWidgetEditingDelegate.h │ ├── XENHWidgetLayerContainerView.h │ ├── XENHWidgetLayerContainerView.m │ ├── XENHWidgetLayerController.h │ └── XENHWidgetLayerController.m ├── Tweak (iOS 13) ├── PrivateHeaders.h └── XenHTML.xm ├── Tweak (iOS 9 to 12) └── XenHTML.xm ├── Xen HTML.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── jacob.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── Deploy.xcscheme │ │ ├── Tweak (iOS 13).xcscheme │ │ └── Tweak (iOS 9 to 12).xcscheme └── xcuserdata │ └── jacob.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── deps └── libpackageinfo │ ├── Prefix.pch │ └── libpackageinfo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── include ├── Preferences │ ├── PSListController.h │ ├── PSRootController.h │ ├── PSSpecifier.h │ ├── PSSplitViewController.h │ ├── PSTableCell.h │ └── PSViewController.h ├── WebCycript.h ├── libGitHubIssues.h ├── libMobileGestalt.h └── substrate.h └── lib ├── AppSupport.tbd ├── Preferences.tbd ├── libsubstrate.tbd └── libuaunbox.tbd /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/.gitmodules -------------------------------------------------------------------------------- /Deploy/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/DEBIAN/control -------------------------------------------------------------------------------- /Deploy/Package/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/DEBIAN/postinst -------------------------------------------------------------------------------- /Deploy/Package/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/DEBIAN/prerm -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/0.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/10.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/100.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/20.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/30.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/40.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/50.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/60.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/70.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/70.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/80.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/battery/90.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/next.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/no-artwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/no-artwork.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/pause.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/play.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/previous.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/repeat.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/shuffle.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/volume-max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/volume-max.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/volume-min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/media/volume-min.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/0.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/1.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/10.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/11.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/12.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/13.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/14.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/15.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/16.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/17.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/18.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/19.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/2.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/20.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/21.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/22.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/23.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/24.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/25.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/26.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/27.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/28.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/29.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/3.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/30.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/31.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/32.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/33.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/34.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/34.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/35.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/36.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/37.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/38.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/38.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/39.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/39.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/4.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/40.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/41.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/41.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/42.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/43.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/44.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/44.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/45.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/46.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/46.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/47.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/47.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/5.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/6.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/7.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/8.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/Application Support/Widgets/Resource Packs/default/weather/9.svg -------------------------------------------------------------------------------- /Deploy/Package/Library/MobileSubstrate/DynamicLibraries/AAA_XenHTML_DenyInjection.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/MobileSubstrate/DynamicLibraries/AAA_XenHTML_DenyInjection.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/MobileSubstrate/DynamicLibraries/XenHTML_Loader.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/MobileSubstrate/DynamicLibraries/XenHTML_Loader.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/MobileSubstrate/DynamicLibraries/XenHTML_WebGL.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/MobileSubstrate/DynamicLibraries/XenHTML_WebGL.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Advanced.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Advanced.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Background.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Background@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Background@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/BackgroundWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/BackgroundWidget.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/BackgroundWidget@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/BackgroundWidget@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/BackgroundWidget@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/BackgroundWidget@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Blank.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Blank@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Blank@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Blank@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Blank@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Advanced.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Advanced@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Advanced@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Advanced@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Advanced@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BTC.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BTC@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BTC@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BTC@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BTC@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BugReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BugReport.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BugReport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BugReport@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BugReport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/BugReport@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Donate.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Donate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Donate@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Donate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Donate@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/ETH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/ETH.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/ETH@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/ETH@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/ETH@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/ETH@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Homescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Homescreen.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Homescreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Homescreen@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Homescreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Homescreen@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Lockscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Lockscreen.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Lockscreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Lockscreen@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Lockscreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Lockscreen@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Mail.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Mail@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Mail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Mail@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/More.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/More.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/More@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/More@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/More@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/More@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/PayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/PayPal.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/PayPal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/PayPal@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/PayPal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/PayPal@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Reset.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Reset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Reset@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Reset@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Reset@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Support.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Support@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Support@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Support@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Support@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Twitter.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Twitter@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/CellIcons/Twitter@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Donate.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Donate.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Accept.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Accept@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Accept@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Accept@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Accept@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Cancel.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Cancel@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Cancel@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/LargeBackgroundWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/LargeBackgroundWidget.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/LargeForegroundWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/LargeForegroundWidget.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Settings.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Settings@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Editor/Settings@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ForegroundWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ForegroundWidget.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ForegroundWidget@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ForegroundWidget@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ForegroundWidget@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ForegroundWidget@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Icon.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Icon@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Icon@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/IconPackageManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/IconPackageManager.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Info.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSAdvanced.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSAdvanced.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSHidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSHidden.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSHidden@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSHidden@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSHidden@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSHidden@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSMedia.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSMedia.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSNotifications.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSNotifications.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSOtherVisibility.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSOtherVisibility.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSSettings.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSUnhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSUnhidden.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSUnhidden@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSUnhidden@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSUnhidden@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/LSUnhidden@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Root.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SBForeground.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SBForeground.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SBSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SBSettings.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Homescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Homescreen.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Homescreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Homescreen@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Homescreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Homescreen@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Lockscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Lockscreen.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Lockscreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Lockscreen@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Lockscreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Lockscreen@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Tick.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Tick@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Tick@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Tick@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Setup/Tick@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewHigh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewHigh.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewHigh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewHigh@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewHigh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewHigh@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewLow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewLow.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewLow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewLow@2x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewLow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/SkewLow@3x.png -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Support.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Support.plist -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/LSNotifications.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/LSNotifications.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ar.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/LSNotifications.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/LSNotifications.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/cs.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/LSNotifications.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/LSNotifications.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/de.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/LSNotifications.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/LSNotifications.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/el.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/en.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/es.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/fr.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/he.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/id.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/it.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ms.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/nl.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pl.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/pt.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/ru.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Advanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Advanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/LSAdvanced.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/LSAdvanced.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/LSSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/LSSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/SBForeground.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/SBForeground.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/SBSettings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/SBSettings.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/tr.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/zh-Hant.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/zh-Hant.lproj/Donate.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/zh-Hant.lproj/LSMedia.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/zh-Hant.lproj/LSMedia.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/zh-Hant.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/zh-Hant.lproj/Root.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/zh-Hant.lproj/Support.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/zh-Hant.lproj/Support.strings -------------------------------------------------------------------------------- /Deploy/Package/Library/PreferenceLoader/Preferences/XenHTMLPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/Library/PreferenceLoader/Preferences/XenHTMLPrefs.plist -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/LockHTML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/LockHTML/README.md -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/SBHTML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/SBHTML/README.md -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Kaleidoscope/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Kaleidoscope/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Kaleidoscope/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Kaleidoscope/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Kaleidoscope/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Kaleidoscope/js/app.js -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Kaleidoscope/js/perlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Kaleidoscope/js/perlin.js -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Particles/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Particles/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Particles/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Particles/css/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Particles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Backgrounds/Background | Particles/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Backgrounds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Backgrounds/README.md -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Homescreen/Apps | List/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Homescreen/Apps | List/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Homescreen/Apps | List/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Homescreen/Apps | List/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Homescreen/Apps | List/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Homescreen/Apps | List/main.js -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Homescreen/Apps | List/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Homescreen/Apps | List/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Homescreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Homescreen/README.md -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Lockscreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Lockscreen/README.md -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/img/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/img/bluetooth.png -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/img/headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/img/headphones.png -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/main.js -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Bluetooth | Connected/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Calendar | Up Next/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Calendar | Up Next/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Calendar | Up Next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Calendar | Up Next/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Calendar | Up Next/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Calendar | Up Next/main.js -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Calendar | Up Next/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Calendar | Up Next/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Mini/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Mini/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Mini/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Mini/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Mini/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Mini/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Player/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Player/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Player/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Player/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Player/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Player/main.js -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Player/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Media | Player/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/README.md -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Reminders | Pending/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Reminders | Pending/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Reminders | Pending/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Reminders | Pending/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Reminders | Pending/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Reminders | Pending/main.js -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Reminders | Pending/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Reminders | Pending/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Resources | Battery/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Resources | Battery/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Resources | Battery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Resources | Battery/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Resources | Battery/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Resources | Battery/main.js -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Resources | Battery/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Resources | Battery/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Card/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Card/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Card/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Card/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Forecast/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Forecast/config.json -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Forecast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Forecast/index.html -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Forecast/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Forecast/main.js -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Forecast/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/Widgets/Universal/Weather | Forecast/style.css -------------------------------------------------------------------------------- /Deploy/Package/var/mobile/Library/iWidgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/Package/var/mobile/Library/iWidgets/README.md -------------------------------------------------------------------------------- /Deploy/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Deploy/PackageVersion.plist -------------------------------------------------------------------------------- /Helpers/BatteryManager/BatteryManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/BatteryManager/BatteryManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Helpers/BatteryManager/BatteryManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/BatteryManager/BatteryManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Helpers/BatteryManager/BatteryManager/BatteryManager-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/BatteryManager/BatteryManager/BatteryManager-Prefix.pch -------------------------------------------------------------------------------- /Helpers/BatteryManager/BatteryManager/BatteryManager.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/BatteryManager/BatteryManager/BatteryManager.xm -------------------------------------------------------------------------------- /Helpers/BatteryManager/BatteryManager/Resources/XENBMResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/BatteryManager/BatteryManager/Resources/XENBMResources.h -------------------------------------------------------------------------------- /Helpers/BatteryManager/BatteryManager/Resources/XENBMResources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/BatteryManager/BatteryManager/Resources/XENBMResources.m -------------------------------------------------------------------------------- /Helpers/BatteryManager/XenHTML_ZBatteryManager.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/BatteryManager/XenHTML_ZBatteryManager.plist -------------------------------------------------------------------------------- /Helpers/DenyInjection/AAA_XenHTML_DenyInjection.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/DenyInjection/AAA_XenHTML_DenyInjection.plist -------------------------------------------------------------------------------- /Helpers/DenyInjection/DenyInjection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/DenyInjection/DenyInjection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Helpers/DenyInjection/DenyInjection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/DenyInjection/DenyInjection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Helpers/DenyInjection/DenyInjection/DenyInjection-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/DenyInjection/DenyInjection/DenyInjection-Prefix.pch -------------------------------------------------------------------------------- /Helpers/DenyInjection/DenyInjection/DenyInjection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/DenyInjection/DenyInjection/DenyInjection.mm -------------------------------------------------------------------------------- /Helpers/DenyInjection/DenyInjection/DenyInjection.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/DenyInjection/DenyInjection/DenyInjection.xm -------------------------------------------------------------------------------- /Helpers/WebGL/WebGL.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/WebGL.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Helpers/WebGL/WebGL.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/WebGL.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Helpers/WebGL/WebGL.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/WebGL.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Helpers/WebGL/WebGL.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/WebGL.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Helpers/WebGL/WebGL/Resources/XENWGResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/WebGL/Resources/XENWGResources.h -------------------------------------------------------------------------------- /Helpers/WebGL/WebGL/Resources/XENWGResources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/WebGL/Resources/XENWGResources.m -------------------------------------------------------------------------------- /Helpers/WebGL/WebGL/WebGL-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/WebGL/WebGL-Prefix.pch -------------------------------------------------------------------------------- /Helpers/WebGL/WebGL/WebGL.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/WebGL/WebGL.mm -------------------------------------------------------------------------------- /Helpers/WebGL/WebGL/WebGL.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/WebGL/WebGL.xm -------------------------------------------------------------------------------- /Helpers/WebGL/XenHTML_WebGL.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WebGL/XenHTML_WebGL.plist -------------------------------------------------------------------------------- /Helpers/WidgetInfo/Daemon/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WidgetInfo/Daemon/Info.plist -------------------------------------------------------------------------------- /Helpers/WidgetInfo/Daemon/com.matchstic.widgetinfod.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WidgetInfo/Daemon/com.matchstic.widgetinfod.plist -------------------------------------------------------------------------------- /Helpers/WidgetInfo/Daemon/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WidgetInfo/Daemon/entitlements.plist -------------------------------------------------------------------------------- /Helpers/WidgetInfo/Daemon/kern_memorystatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WidgetInfo/Daemon/kern_memorystatus.h -------------------------------------------------------------------------------- /Helpers/WidgetInfo/Daemon/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WidgetInfo/Daemon/main.mm -------------------------------------------------------------------------------- /Helpers/WidgetInfo/WidgetInfo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WidgetInfo/WidgetInfo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Helpers/WidgetInfo/WidgetInfo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WidgetInfo/WidgetInfo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Helpers/WidgetInfo/WidgetInfo/WidgetInfo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WidgetInfo/WidgetInfo/WidgetInfo-Prefix.pch -------------------------------------------------------------------------------- /Helpers/WidgetInfo/WidgetInfo/WidgetInfo.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Helpers/WidgetInfo/WidgetInfo/WidgetInfo.xm -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Loader/XenHTML.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Loader/XenHTML.mm -------------------------------------------------------------------------------- /Loader/XenHTML.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Loader/XenHTML.xm -------------------------------------------------------------------------------- /Preferences/Advanced Panel/XENHAdvancedController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Advanced Panel/XENHAdvancedController.h -------------------------------------------------------------------------------- /Preferences/Advanced Panel/XENHAdvancedController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Advanced Panel/XENHAdvancedController.m -------------------------------------------------------------------------------- /Preferences/Donation Panel/XENHDonationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Donation Panel/XENHDonationController.h -------------------------------------------------------------------------------- /Preferences/Donation Panel/XENHDonationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Donation Panel/XENHDonationController.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorDragDropController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorDragDropController.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorDragDropController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorDragDropController.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorPositioningController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorPositioningController.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorPositioningController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorPositioningController.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorToolbarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorToolbarController.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorToolbarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorToolbarController.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorViewController.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorViewController.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorWebViewController.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Display Controller/XENHEditorWebViewController.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerCell.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerCell.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerController.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerController.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerItem.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerItem.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerPreviewController.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Picker Controller/XENHPickerPreviewController.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Settings Controllers/XENHConfigJSCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Settings Controllers/XENHConfigJSCell.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Settings Controllers/XENHConfigJSCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Settings Controllers/XENHConfigJSCell.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Settings Controllers/XENHConfigJSController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Settings Controllers/XENHConfigJSController.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Settings Controllers/XENHConfigJSController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Settings Controllers/XENHConfigJSController.m -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Settings Controllers/XENHFallbackDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Settings Controllers/XENHFallbackDelegate-Protocol.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Settings Controllers/XENHMetadataOptionsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Settings Controllers/XENHMetadataOptionsController.h -------------------------------------------------------------------------------- /Preferences/HTML Editor Panel/Widget Settings Controllers/XENHMetadataOptionsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Editor Panel/Widget Settings Controllers/XENHMetadataOptionsController.m -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHBasePreviewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHBasePreviewCell.h -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHBasePreviewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHBasePreviewCell.m -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHHomescreenPreviewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHHomescreenPreviewCell.h -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHHomescreenPreviewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHHomescreenPreviewCell.m -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHLockscreenPreviewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHLockscreenPreviewCell.h -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHLockscreenPreviewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHLockscreenPreviewCell.m -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHPreviewScaledController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHPreviewScaledController.h -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHPreviewScaledController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHPreviewScaledController.m -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHPreviewSliderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHPreviewSliderCell.h -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/Preview Cell/XENHPreviewSliderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/Preview Cell/XENHPreviewSliderCell.m -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/XENHBaseHTMLPreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/XENHBaseHTMLPreferenceController.h -------------------------------------------------------------------------------- /Preferences/HTML Preferences Panel/XENHBaseHTMLPreferenceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/HTML Preferences Panel/XENHBaseHTMLPreferenceController.m -------------------------------------------------------------------------------- /Preferences/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Info.plist -------------------------------------------------------------------------------- /Preferences/More Repositories Panel/XENHMoreReposCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/More Repositories Panel/XENHMoreReposCell.h -------------------------------------------------------------------------------- /Preferences/More Repositories Panel/XENHMoreReposCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/More Repositories Panel/XENHMoreReposCell.m -------------------------------------------------------------------------------- /Preferences/More Repositories Panel/XENHMoreReposController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/More Repositories Panel/XENHMoreReposController.h -------------------------------------------------------------------------------- /Preferences/More Repositories Panel/XENHMoreReposController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/More Repositories Panel/XENHMoreReposController.m -------------------------------------------------------------------------------- /Preferences/Multiplex Panel/XENHMultiplexWidgetsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Multiplex Panel/XENHMultiplexWidgetsController.h -------------------------------------------------------------------------------- /Preferences/Multiplex Panel/XENHMultiplexWidgetsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Multiplex Panel/XENHMultiplexWidgetsController.m -------------------------------------------------------------------------------- /Preferences/Multiplex Panel/XENHMultiplexWidgetsHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Multiplex Panel/XENHMultiplexWidgetsHeaderView.h -------------------------------------------------------------------------------- /Preferences/Multiplex Panel/XENHMultiplexWidgetsHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Multiplex Panel/XENHMultiplexWidgetsHeaderView.m -------------------------------------------------------------------------------- /Preferences/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Package/DEBIAN/control -------------------------------------------------------------------------------- /Preferences/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Info.plist -------------------------------------------------------------------------------- /Preferences/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/Root.plist -------------------------------------------------------------------------------- /Preferences/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/XenHTMLPrefsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/XenHTMLPrefsIcon.png -------------------------------------------------------------------------------- /Preferences/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/XenHTMLPrefsIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Package/Library/PreferenceBundles/XenHTMLPrefs.bundle/XenHTMLPrefsIcon@2x.png -------------------------------------------------------------------------------- /Preferences/Package/Library/PreferenceLoader/Preferences/XenHTMLPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Package/Library/PreferenceLoader/Preferences/XenHTMLPrefs.plist -------------------------------------------------------------------------------- /Preferences/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/PackageVersion.plist -------------------------------------------------------------------------------- /Preferences/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Prefix.pch -------------------------------------------------------------------------------- /Preferences/Root Panel/XENHPHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Root Panel/XENHPHeaderView.h -------------------------------------------------------------------------------- /Preferences/Root Panel/XENHPHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Root Panel/XENHPHeaderView.m -------------------------------------------------------------------------------- /Preferences/Root Panel/XENHRootController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Root Panel/XENHRootController.h -------------------------------------------------------------------------------- /Preferences/Root Panel/XENHRootController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Root Panel/XENHRootController.m -------------------------------------------------------------------------------- /Preferences/Support Panel/XENHSupportController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Support Panel/XENHSupportController.h -------------------------------------------------------------------------------- /Preferences/Support Panel/XENHSupportController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Support Panel/XENHSupportController.m -------------------------------------------------------------------------------- /Preferences/Supporting Files/Third-Party Libraries/AYVibrantButton/AYVibrantButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/Third-Party Libraries/AYVibrantButton/AYVibrantButton.h -------------------------------------------------------------------------------- /Preferences/Supporting Files/Third-Party Libraries/AYVibrantButton/AYVibrantButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/Third-Party Libraries/AYVibrantButton/AYVibrantButton.m -------------------------------------------------------------------------------- /Preferences/Supporting Files/XENHBaseListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/XENHBaseListController.h -------------------------------------------------------------------------------- /Preferences/Supporting Files/XENHBaseListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/XENHBaseListController.m -------------------------------------------------------------------------------- /Preferences/Supporting Files/XENHPResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/XENHPResources.h -------------------------------------------------------------------------------- /Preferences/Supporting Files/XENHResources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/XENHResources.m -------------------------------------------------------------------------------- /Preferences/Supporting Files/XENHTouchPassThroughView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/XENHTouchPassThroughView.h -------------------------------------------------------------------------------- /Preferences/Supporting Files/XENHTouchPassThroughView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/XENHTouchPassThroughView.m -------------------------------------------------------------------------------- /Preferences/Supporting Files/XENHWallpaperViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/XENHWallpaperViewController.h -------------------------------------------------------------------------------- /Preferences/Supporting Files/XENHWallpaperViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Preferences/Supporting Files/XENHWallpaperViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationBaseTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationBaseTableCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationBaseTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationBaseTableCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationColorTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationColorTableCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationColorTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationColorTableCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationLinkTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationLinkTableCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationLinkTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationLinkTableCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationMultiTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationMultiTableCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationMultiTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationMultiTableCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationNumberTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationNumberTableCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationNumberTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationNumberTableCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationOptionTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationOptionTableCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationOptionTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationOptionTableCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationSliderTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationSliderTableCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationSliderTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationSliderTableCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationSwitchTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationSwitchTableCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationSwitchTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationSwitchTableCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationTextShortCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationTextShortCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationTextShortCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationTextShortCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationTextTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationTextTableCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Cells/XENDWidgetConfigurationTextTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Cells/XENDWidgetConfigurationTextTableCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Model/XENDWidgetConfigurationCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Model/XENDWidgetConfigurationCell.h -------------------------------------------------------------------------------- /Shared/Configuration/Model/XENDWidgetConfigurationCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Model/XENDWidgetConfigurationCell.m -------------------------------------------------------------------------------- /Shared/Configuration/Model/XENDWidgetConfigurationGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Model/XENDWidgetConfigurationGroup.h -------------------------------------------------------------------------------- /Shared/Configuration/Model/XENDWidgetConfigurationGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Model/XENDWidgetConfigurationGroup.m -------------------------------------------------------------------------------- /Shared/Configuration/Model/XENDWidgetConfigurationPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Model/XENDWidgetConfigurationPage.h -------------------------------------------------------------------------------- /Shared/Configuration/Model/XENDWidgetConfigurationPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Model/XENDWidgetConfigurationPage.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorComponentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorComponentView.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorComponentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorComponentView.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorPicker.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorSelectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorSelectionView.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorSelectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorSelectionView.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorUtils.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorUtils.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorView.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorWheelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorWheelView.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSColorWheelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSColorWheelView.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSHSBView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSHSBView.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSHSBView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSHSBView.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSOpacityGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSOpacityGrid.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSOpacityGrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSOpacityGrid.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSRGBView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSRGBView.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSRGBView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSRGBView.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSSliderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSSliderView.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSSliderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSSliderView.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSThumbView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSThumbView.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/MSColorPicker/MSThumbView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/MSColorPicker/MSThumbView.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/XENDWidgetConfigurationColorController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/XENDWidgetConfigurationColorController.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/XENDWidgetConfigurationColorController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/XENDWidgetConfigurationColorController.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/XENDWidgetConfigurationMultiController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/XENDWidgetConfigurationMultiController.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/XENDWidgetConfigurationMultiController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/XENDWidgetConfigurationMultiController.m -------------------------------------------------------------------------------- /Shared/Configuration/Panels/XENDWidgetConfigurationOptionsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/XENDWidgetConfigurationOptionsController.h -------------------------------------------------------------------------------- /Shared/Configuration/Panels/XENDWidgetConfigurationOptionsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/Panels/XENDWidgetConfigurationOptionsController.m -------------------------------------------------------------------------------- /Shared/Configuration/XENDWidgetConfigurationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/XENDWidgetConfigurationDelegate.h -------------------------------------------------------------------------------- /Shared/Configuration/XENDWidgetConfigurationPageController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/XENDWidgetConfigurationPageController.h -------------------------------------------------------------------------------- /Shared/Configuration/XENDWidgetConfigurationPageController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Configuration/XENDWidgetConfigurationPageController.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/Settings/XENHConfigJSCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/Settings/XENHConfigJSCell.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/Settings/XENHConfigJSCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/Settings/XENHConfigJSCell.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/Settings/XENHConfigJSController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/Settings/XENHConfigJSController.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/Settings/XENHConfigJSController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/Settings/XENHConfigJSController.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/Settings/XENHFallbackOnlyOptionsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/Settings/XENHFallbackOnlyOptionsController.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/Settings/XENHFallbackOnlyOptionsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/Settings/XENHFallbackOnlyOptionsController.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/Settings/XENHMetadataOptionsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/Settings/XENHMetadataOptionsController.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/Settings/XENHMetadataOptionsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/Settings/XENHMetadataOptionsController.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerCell.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerCell.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerController.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerController.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/XENHHomescreenForegroundPickerDelegate.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/XENHPickerItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/XENHPickerItem.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/XENHPickerItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/XENHPickerItem.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/XENHPickerPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/XENHPickerPreviewController.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/Picker/XENHPickerPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/Picker/XENHPickerPreviewController.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/XENHButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/XENHButton.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/XENHButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/XENHButton.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/XENHCloseButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/XENHCloseButton.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/XENHCloseButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/XENHCloseButton.m -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/XENHHomescreenForegroundViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/XENHHomescreenForegroundViewController.h -------------------------------------------------------------------------------- /Shared/Homescreen Foreground Widgets/XENHHomescreenForegroundViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Homescreen Foreground Widgets/XENHHomescreenForegroundViewController.m -------------------------------------------------------------------------------- /Shared/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Prefix.pch -------------------------------------------------------------------------------- /Shared/Setup/XENSetupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/XENSetupViewController.h -------------------------------------------------------------------------------- /Shared/Setup/XENSetupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/XENSetupViewController.m -------------------------------------------------------------------------------- /Shared/Setup/XENSetupWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/XENSetupWindow.h -------------------------------------------------------------------------------- /Shared/Setup/XENSetupWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/XENSetupWindow.m -------------------------------------------------------------------------------- /Shared/Setup/ui/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /Shared/Setup/ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/.editorconfig -------------------------------------------------------------------------------- /Shared/Setup/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/.eslintrc.js -------------------------------------------------------------------------------- /Shared/Setup/ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/.gitignore -------------------------------------------------------------------------------- /Shared/Setup/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/README.md -------------------------------------------------------------------------------- /Shared/Setup/ui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/babel.config.js -------------------------------------------------------------------------------- /Shared/Setup/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/package.json -------------------------------------------------------------------------------- /Shared/Setup/ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/postcss.config.js -------------------------------------------------------------------------------- /Shared/Setup/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/public/index.html -------------------------------------------------------------------------------- /Shared/Setup/ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/App.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/back.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/background.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/device-frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/device-frame.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/device-ipad-frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/device-ipad-frame.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/ios-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/ios-settings.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/music.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/next.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/play.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/previous.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/assets/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/assets/sun.svg -------------------------------------------------------------------------------- /Shared/Setup/ui/src/components/action-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/components/action-bar.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/components/device-frame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/components/device-frame.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/components/page-control.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/components/page-control.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/components/svg-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/components/svg-icon.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/components/widget-music.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/components/widget-music.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/components/widget-weather.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/components/widget-weather.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/main.ts -------------------------------------------------------------------------------- /Shared/Setup/ui/src/pages/end-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/pages/end-page.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/pages/homescreen-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/pages/homescreen-page.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/pages/lockscreen-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/pages/lockscreen-page.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/pages/wallpaper-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/pages/wallpaper-page.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/pages/welcome-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/pages/welcome-page.vue -------------------------------------------------------------------------------- /Shared/Setup/ui/src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/src/styles/main.scss -------------------------------------------------------------------------------- /Shared/Setup/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/tsconfig.json -------------------------------------------------------------------------------- /Shared/Setup/ui/vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | publicPath: './' 3 | } -------------------------------------------------------------------------------- /Shared/Setup/ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Setup/ui/yarn.lock -------------------------------------------------------------------------------- /Shared/Shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Shared.h -------------------------------------------------------------------------------- /Shared/Shared.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Shared.m -------------------------------------------------------------------------------- /Shared/Supporting/XENHResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHResources.h -------------------------------------------------------------------------------- /Shared/Supporting/XENHResources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHResources.m -------------------------------------------------------------------------------- /Shared/Supporting/XENHTouchForwardingRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHTouchForwardingRecognizer.h -------------------------------------------------------------------------------- /Shared/Supporting/XENHTouchForwardingRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHTouchForwardingRecognizer.m -------------------------------------------------------------------------------- /Shared/Supporting/XENHTouchPassThroughView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHTouchPassThroughView.h -------------------------------------------------------------------------------- /Shared/Supporting/XENHTouchPassThroughView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHTouchPassThroughView.m -------------------------------------------------------------------------------- /Shared/Supporting/XENHWallpaperViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHWallpaperViewController.h -------------------------------------------------------------------------------- /Shared/Supporting/XENHWallpaperViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHWallpaperViewController.m -------------------------------------------------------------------------------- /Shared/Supporting/XENHWidgetConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHWidgetConfiguration.h -------------------------------------------------------------------------------- /Shared/Supporting/XENHWidgetConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Supporting/XENHWidgetConfiguration.m -------------------------------------------------------------------------------- /Shared/Web Controller/PrivateWebKitHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Web Controller/PrivateWebKitHeaders.h -------------------------------------------------------------------------------- /Shared/Web Controller/XENHWidgetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Web Controller/XENHWidgetController.h -------------------------------------------------------------------------------- /Shared/Web Controller/XENHWidgetController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Web Controller/XENHWidgetController.m -------------------------------------------------------------------------------- /Shared/Web Controller/XENHWidgetEditingDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Web Controller/XENHWidgetEditingDelegate.h -------------------------------------------------------------------------------- /Shared/Web Controller/XENHWidgetLayerContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Web Controller/XENHWidgetLayerContainerView.h -------------------------------------------------------------------------------- /Shared/Web Controller/XENHWidgetLayerContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Web Controller/XENHWidgetLayerContainerView.m -------------------------------------------------------------------------------- /Shared/Web Controller/XENHWidgetLayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Web Controller/XENHWidgetLayerController.h -------------------------------------------------------------------------------- /Shared/Web Controller/XENHWidgetLayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Shared/Web Controller/XENHWidgetLayerController.m -------------------------------------------------------------------------------- /Tweak (iOS 13)/PrivateHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Tweak (iOS 13)/PrivateHeaders.h -------------------------------------------------------------------------------- /Tweak (iOS 13)/XenHTML.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Tweak (iOS 13)/XenHTML.xm -------------------------------------------------------------------------------- /Tweak (iOS 9 to 12)/XenHTML.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Tweak (iOS 9 to 12)/XenHTML.xm -------------------------------------------------------------------------------- /Xen HTML.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Xen HTML.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Xen HTML.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Xen HTML.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Xen HTML.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Xen HTML.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Xen HTML.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Xen HTML.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Xen HTML.xcodeproj/xcshareddata/xcschemes/Deploy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Xen HTML.xcodeproj/xcshareddata/xcschemes/Deploy.xcscheme -------------------------------------------------------------------------------- /Xen HTML.xcodeproj/xcshareddata/xcschemes/Tweak (iOS 13).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Xen HTML.xcodeproj/xcshareddata/xcschemes/Tweak (iOS 13).xcscheme -------------------------------------------------------------------------------- /Xen HTML.xcodeproj/xcshareddata/xcschemes/Tweak (iOS 9 to 12).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Xen HTML.xcodeproj/xcshareddata/xcschemes/Tweak (iOS 9 to 12).xcscheme -------------------------------------------------------------------------------- /Xen HTML.xcodeproj/xcuserdata/jacob.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/Xen HTML.xcodeproj/xcuserdata/jacob.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /deps/libpackageinfo/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/deps/libpackageinfo/Prefix.pch -------------------------------------------------------------------------------- /deps/libpackageinfo/libpackageinfo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/deps/libpackageinfo/libpackageinfo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /deps/libpackageinfo/libpackageinfo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/deps/libpackageinfo/libpackageinfo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /include/Preferences/PSListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/Preferences/PSListController.h -------------------------------------------------------------------------------- /include/Preferences/PSRootController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/Preferences/PSRootController.h -------------------------------------------------------------------------------- /include/Preferences/PSSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/Preferences/PSSpecifier.h -------------------------------------------------------------------------------- /include/Preferences/PSSplitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/Preferences/PSSplitViewController.h -------------------------------------------------------------------------------- /include/Preferences/PSTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/Preferences/PSTableCell.h -------------------------------------------------------------------------------- /include/Preferences/PSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/Preferences/PSViewController.h -------------------------------------------------------------------------------- /include/WebCycript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/WebCycript.h -------------------------------------------------------------------------------- /include/libGitHubIssues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/libGitHubIssues.h -------------------------------------------------------------------------------- /include/libMobileGestalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/libMobileGestalt.h -------------------------------------------------------------------------------- /include/substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/include/substrate.h -------------------------------------------------------------------------------- /lib/AppSupport.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/lib/AppSupport.tbd -------------------------------------------------------------------------------- /lib/Preferences.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/lib/Preferences.tbd -------------------------------------------------------------------------------- /lib/libsubstrate.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/lib/libsubstrate.tbd -------------------------------------------------------------------------------- /lib/libuaunbox.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matchstic/Xen-HTML/HEAD/lib/libuaunbox.tbd --------------------------------------------------------------------------------