├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ └── custom.md ├── .gitignore ├── Common ├── Logger.cs └── Tools.cs ├── Config.cs ├── Contacts ├── iFruitContact.cs └── iFruitContactCollection.cs ├── Example └── ExampleScript.cs ├── LICENSE ├── Phone ├── CustomiFruit.cs └── PhoneScript.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Resources └── config.ini ├── Textures ├── ContactIcon.cs ├── PhoneImage.cs └── Wallpaper.cs ├── doc ├── folder_permission.png ├── phone1.png ├── phone2.png └── phone3.png ├── iFruitAddon.csproj ├── iFruitAddon.sln ├── iFruitAddon2.cs └── version /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj 3 | /.vs 4 | *.dll 5 | *.nupkg 6 | MAKE-NUGET.md -------------------------------------------------------------------------------- /Common/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Common/Logger.cs -------------------------------------------------------------------------------- /Common/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Common/Tools.cs -------------------------------------------------------------------------------- /Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Config.cs -------------------------------------------------------------------------------- /Contacts/iFruitContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Contacts/iFruitContact.cs -------------------------------------------------------------------------------- /Contacts/iFruitContactCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Contacts/iFruitContactCollection.cs -------------------------------------------------------------------------------- /Example/ExampleScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Example/ExampleScript.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/LICENSE -------------------------------------------------------------------------------- /Phone/CustomiFruit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Phone/CustomiFruit.cs -------------------------------------------------------------------------------- /Phone/PhoneScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Phone/PhoneScript.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | StartIndex=40 3 | -------------------------------------------------------------------------------- /Textures/ContactIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Textures/ContactIcon.cs -------------------------------------------------------------------------------- /Textures/PhoneImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Textures/PhoneImage.cs -------------------------------------------------------------------------------- /Textures/Wallpaper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/Textures/Wallpaper.cs -------------------------------------------------------------------------------- /doc/folder_permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/doc/folder_permission.png -------------------------------------------------------------------------------- /doc/phone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/doc/phone1.png -------------------------------------------------------------------------------- /doc/phone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/doc/phone2.png -------------------------------------------------------------------------------- /doc/phone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/doc/phone3.png -------------------------------------------------------------------------------- /iFruitAddon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/iFruitAddon.csproj -------------------------------------------------------------------------------- /iFruitAddon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/iFruitAddon.sln -------------------------------------------------------------------------------- /iFruitAddon2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/iFruitAddon2.cs -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bob74/iFruitAddon2/HEAD/version --------------------------------------------------------------------------------