├── .github ├── CODEOWNERS ├── release.png └── workflows │ ├── build-edge.yml │ ├── build-nightly.yml │ ├── build.yml │ ├── lint.yml │ ├── test.yml │ └── update-version-month.yml ├── .gitignore ├── CHANGELOG.changes ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── __init__.py ├── docs ├── 00-release-notes.md ├── 01-getting-started.md ├── 02-caberto-shell.md ├── 02-celeste-shell.md ├── 03-candella-app.md ├── 04-observable.md ├── 05-multiuser.md ├── 06-accounts-service.md ├── 07-roland-boot.md ├── 08-thorax-setup.md ├── 09-glossary.md ├── 10-candella-service.md ├── 11-notifications.md ├── 96-design-and-branding.md ├── 97-deprecated.md ├── 98-stop-errors.md ├── 99-candella-sdk.md ├── CNAME ├── images │ ├── branding │ │ ├── logomark.png │ │ ├── sprite.png │ │ └── sprite_alt.png │ ├── celeste │ │ ├── appman.png │ │ ├── default.png │ │ ├── drawer.png │ │ └── settings.png │ ├── design │ │ └── banner.png │ ├── roland │ │ ├── graphic-logomark.png │ │ ├── graphic.png │ │ └── text.png │ └── thorax │ │ └── interface.png ├── index.md └── migrate.md ├── game ├── System │ ├── Applications │ │ ├── AppManager.aosapp │ │ │ ├── ASAppManager.rpy │ │ │ ├── ASAppManagerView.rpy │ │ │ ├── Resources │ │ │ │ ├── ASAppManagerStyles.rpy │ │ │ │ └── Iconset │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 128.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 256.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 48.png │ │ │ │ │ ├── 512.png │ │ │ │ │ └── 64.png │ │ │ └── manifest.json │ │ ├── Glossary.aosapp │ │ │ ├── Glossary.rpy │ │ │ ├── GlossaryAppUIView.rpy │ │ │ ├── Resources │ │ │ │ ├── Iconset │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 128.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 256.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 48.png │ │ │ │ │ ├── 512.png │ │ │ │ │ └── 64.png │ │ │ │ └── glossary.json │ │ │ └── manifest.json │ │ ├── Inventories.aosapp │ │ │ ├── Inventories.rpy │ │ │ ├── Resources │ │ │ │ ├── Iconset │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 128.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 256.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 48.png │ │ │ │ │ ├── 512.png │ │ │ │ │ └── 64.png │ │ │ │ ├── Item.png │ │ │ │ └── OpenMore.png │ │ │ ├── Structures │ │ │ │ └── ASInventoryItem.rpy │ │ │ ├── Views │ │ │ │ ├── ASInventoryManagerView.rpy │ │ │ │ └── ASInventorySubView.rpy │ │ │ └── manifest.json │ │ ├── Messages.aosapp │ │ │ ├── Messages.rpy │ │ │ ├── Resources │ │ │ │ └── Iconset │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 128.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 256.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 48.png │ │ │ │ │ ├── 512.png │ │ │ │ │ └── 64.png │ │ │ └── manifest.json │ │ └── SysInfo.aosapp │ │ │ ├── ASSysInfoApp.rpy │ │ │ ├── ASSysInfoView.rpy │ │ │ ├── Resources │ │ │ ├── ASSysInfoViewStyles.rpy │ │ │ ├── Elements │ │ │ │ └── SystemIcon.png │ │ │ └── Iconset │ │ │ │ ├── 1024.png │ │ │ │ ├── 128.png │ │ │ │ ├── 16.png │ │ │ │ ├── 24.png │ │ │ │ ├── 256.png │ │ │ │ ├── 32.png │ │ │ │ ├── 48.png │ │ │ │ ├── 512.png │ │ │ │ └── 64.png │ │ │ └── manifest.json │ ├── CoreServices │ │ ├── Accounts.aoscservice │ │ │ ├── AccountsService.rpy │ │ │ ├── LICENSE.txt │ │ │ ├── Resources │ │ │ │ └── Iconset │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 128.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 256.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 48.png │ │ │ │ │ ├── 512.png │ │ │ │ │ └── 64.png │ │ │ └── manifest.json │ │ ├── Celeste.aoscservice │ │ │ ├── CelesteDE.rpy │ │ │ ├── Components │ │ │ │ ├── CelesteDrawer.rpy │ │ │ │ ├── CelesteLauncher.rpy │ │ │ │ ├── CelesteShellView.rpy │ │ │ │ └── CelesteTopBar.rpy │ │ │ ├── LICENSE.txt │ │ │ ├── Resources │ │ │ │ ├── Iconset │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 128.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 256.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 48.png │ │ │ │ │ ├── 512.png │ │ │ │ │ └── 64.png │ │ │ │ ├── app_mask.png │ │ │ │ ├── app_mask.svg │ │ │ │ ├── distributor_logo.png │ │ │ │ ├── logoff.png │ │ │ │ └── settings.png │ │ │ ├── Views │ │ │ │ ├── CelesteAccountSwitcher.rpy │ │ │ │ └── CelesteSettings.rpy │ │ │ └── manifest.json │ │ ├── Halt.aoscservice │ │ │ ├── ASHaltCoreService.rpy │ │ │ ├── ASHaltMessage.rpy │ │ │ ├── ASHaltMessageStyles.rpy │ │ │ ├── Resources │ │ │ │ ├── Elements │ │ │ │ │ ├── HaltSymbol.png │ │ │ │ │ └── QRCode.png │ │ │ │ └── Iconset │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 128.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 256.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 48.png │ │ │ │ │ ├── 512.png │ │ │ │ │ └── 64.png │ │ │ └── manifest.json │ │ ├── Roland.aoscservice │ │ │ ├── LICENSE.txt │ │ │ ├── Resources │ │ │ │ ├── Iconset │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 128.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 256.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 48.png │ │ │ │ │ ├── 512.png │ │ │ │ │ └── 64.png │ │ │ │ └── Loaders │ │ │ │ │ ├── RolandGraphicLogomarkLoader.rpy │ │ │ │ │ ├── RolandGraphical.rpy │ │ │ │ │ └── RolandText.rpy │ │ │ ├── Roland.rpy │ │ │ └── manifest.json │ │ └── Thorax.aoscservice │ │ │ ├── LICENSE.txt │ │ │ ├── Resources │ │ │ ├── Iconset │ │ │ │ ├── 1024.png │ │ │ │ ├── 128.png │ │ │ │ ├── 16.png │ │ │ │ ├── 24.png │ │ │ │ ├── 256.png │ │ │ │ ├── 32.png │ │ │ │ ├── 48.png │ │ │ │ ├── 512.png │ │ │ │ └── 64.png │ │ │ └── default_steps.json │ │ │ ├── Thorax.rpy │ │ │ ├── ThoraxStep.rpy │ │ │ ├── ThoraxStepScreen.rpy │ │ │ └── manifest.json │ ├── Frameworks │ │ ├── AppKit.aosframework │ │ │ ├── ASAppRepresentative.rpy │ │ │ ├── CAApplication.rpy │ │ │ ├── Permissions │ │ │ │ ├── ASPermissionDefinitions.rpy │ │ │ │ ├── ASPermissionRequest.rpy │ │ │ │ ├── ASPermissionRequestStyles.rpy │ │ │ │ └── CAPermissions.rpy │ │ │ ├── Resources │ │ │ │ ├── ASPermissionRequestBackground.png │ │ │ │ └── blankFrame.png │ │ │ └── manifest.json │ │ ├── Multiuser.aosframework │ │ │ ├── AppStorage.rpy │ │ │ ├── CAUser.rpy │ │ │ ├── ServiceStorage.rpy │ │ │ ├── UserData.rpy │ │ │ └── manifest.json │ │ ├── NotificationKit.aosframework │ │ │ ├── ASNotificationAlert.rpy │ │ │ ├── ASNotificationBanner.rpy │ │ │ ├── ASNotificationExtendedAlert.rpy │ │ │ ├── ASNotificationStyles.rpy │ │ │ ├── CSNotificationBanner.rpy │ │ │ ├── Resources │ │ │ │ ├── appMissingIcon.png │ │ │ │ └── bannerBackground.png │ │ │ └── manifest.json │ │ ├── Observable.aosframework │ │ │ ├── CAObservable.rpy │ │ │ └── manifest.json │ │ ├── ScreenKit.aosframework │ │ │ ├── ASFonts.rpy │ │ │ ├── ASInterfaceCheckbox.rpy │ │ │ ├── ASInterfacePushButton.rpy │ │ │ ├── ASInterfaceRadio.rpy │ │ │ ├── ASInterfaceScrollbar.rpy │ │ │ ├── ASInterfaceStyles.rpy │ │ │ ├── ASInterfaceTitlebar.rpy │ │ │ ├── FontLoader.rpy │ │ │ ├── Resources │ │ │ │ ├── Buttons │ │ │ │ │ ├── PushButtonHover.png │ │ │ │ │ ├── PushButtonIdle.png │ │ │ │ │ └── PushButtonInsensitive.png │ │ │ │ ├── Checkboxes │ │ │ │ │ ├── Idle.png │ │ │ │ │ └── Selected.png │ │ │ │ ├── Frames │ │ │ │ │ └── FrameChrome.png │ │ │ │ ├── Radios │ │ │ │ │ ├── Idle.png │ │ │ │ │ └── Selected.png │ │ │ │ ├── Scrollbars │ │ │ │ │ ├── HorizontalScrollArea.png │ │ │ │ │ ├── HorizontalScrollThumb.png │ │ │ │ │ ├── ScrollArea.png │ │ │ │ │ └── ScrollThumb.png │ │ │ │ └── WindowControls │ │ │ │ │ ├── wcClose_hover.png │ │ │ │ │ └── wcClose_idle.png │ │ │ └── manifest.json │ │ ├── ServiceKit.aosframework │ │ │ ├── ASCoreServiceRepresentative.rpy │ │ │ ├── CACoreService.rpy │ │ │ └── manifest.json │ │ └── VirtualPlatform.aosframework │ │ │ ├── CAVirtualLanguageParser.rpy │ │ │ ├── CAVirtualPlatformChipsetArithmetic.rpy │ │ │ ├── CAVirtualPlatformChipsetPrimitives.rpy │ │ │ ├── CAVirtualPlatformChipsetPrimitives16.rpy │ │ │ └── manifest.json │ ├── Library │ │ ├── ASDefinitions.rpy │ │ ├── Branding │ │ │ ├── logomark.png │ │ │ ├── sprite.png │ │ │ └── sprite_alt.png │ │ ├── CADeprecated.rpy │ │ ├── CADesign.rpy │ │ ├── CAFrameworkLoader.rpy │ │ ├── Design │ │ │ ├── app_mask.png │ │ │ └── app_mask.svg │ │ ├── Desktop Pictures │ │ │ ├── Apples.png │ │ │ ├── CREDITS.txt │ │ │ ├── Candella.png │ │ │ ├── Chuttersnap.png │ │ │ ├── Couple.png │ │ │ ├── Horse Plains.png │ │ │ ├── McWay Falls.png │ │ │ ├── Mountain View.png │ │ │ └── Waves.png │ │ ├── Effects │ │ │ └── ASDynamicBlur │ │ │ │ ├── ASDyanmicBlur.rpy │ │ │ │ └── ASDynamicBlurBackground.png │ │ └── Fonts │ │ │ ├── Interface │ │ │ ├── Black.ttf │ │ │ ├── Bold.ttf │ │ │ ├── Italic.ttf │ │ │ ├── Medium.ttf │ │ │ ├── Mono.ttf │ │ │ ├── Regular.ttf │ │ │ └── Thin.ttf │ │ │ ├── Liberation Mono │ │ │ ├── Bold.ttf │ │ │ ├── BoldItalic.ttf │ │ │ ├── Italic.ttf │ │ │ ├── LICENSE │ │ │ └── Regular.ttf │ │ │ ├── Liberation Sans │ │ │ ├── Bold.ttf │ │ │ ├── BoldItalic.ttf │ │ │ ├── Italic.ttf │ │ │ ├── LICENSE │ │ │ └── Regular.ttf │ │ │ ├── Liberation Serif │ │ │ ├── Bold.ttf │ │ │ ├── BoldItalic.ttf │ │ │ ├── Italic.ttf │ │ │ ├── LICENSE │ │ │ └── Regular.ttf │ │ │ ├── Ubuntu │ │ │ ├── Bold.ttf │ │ │ ├── BoldItalic.ttf │ │ │ ├── Condensed.ttf │ │ │ ├── LICENSE.txt │ │ │ ├── Light.ttf │ │ │ ├── LightItalic.ttf │ │ │ ├── Medium.ttf │ │ │ ├── MediumItalic.ttf │ │ │ ├── Mono.ttf │ │ │ ├── MonoBold.ttf │ │ │ ├── MonoBoldItalic.ttf │ │ │ ├── MonoItalic.ttf │ │ │ ├── Regular.ttf │ │ │ ├── RegularItalic.ttf │ │ │ └── Thin.ttf │ │ │ └── Unicode │ │ │ ├── Fixed.ttf │ │ │ ├── LICENSE.txt │ │ │ └── OFL-1.1.txt │ ├── logger.rpy │ └── release_info.json ├── gui.rpy ├── gui │ ├── bar │ │ ├── bottom.png │ │ ├── left.png │ │ ├── right.png │ │ └── top.png │ ├── button │ │ ├── check_foreground.png │ │ ├── check_selected_foreground.png │ │ ├── choice_hover_background.png │ │ ├── choice_idle_background.png │ │ ├── hover_background.png │ │ ├── idle_background.png │ │ ├── quick_hover_background.png │ │ ├── quick_idle_background.png │ │ ├── radio_foreground.png │ │ ├── radio_selected_foreground.png │ │ ├── slot_hover_background.png │ │ └── slot_idle_background.png │ ├── frame.png │ ├── game_menu.png │ ├── main_menu.png │ ├── namebox.png │ ├── notify.png │ ├── nvl.png │ ├── overlay │ │ ├── confirm.png │ │ ├── game_menu.png │ │ └── main_menu.png │ ├── phone │ │ ├── bar │ │ │ ├── bottom.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── top.png │ │ ├── button │ │ │ ├── check_foreground.png │ │ │ ├── check_selected_foreground.png │ │ │ ├── hover_background.png │ │ │ ├── idle_background.png │ │ │ ├── radio_foreground.png │ │ │ ├── radio_selected_foreground.png │ │ │ ├── slot_hover_background.png │ │ │ └── slot_idle_background.png │ │ ├── nvl.png │ │ ├── overlay │ │ │ ├── game_menu.png │ │ │ └── main_menu.png │ │ ├── scrollbar │ │ │ ├── horizontal_hover_bar.png │ │ │ ├── horizontal_hover_thumb.png │ │ │ ├── horizontal_idle_bar.png │ │ │ ├── horizontal_idle_thumb.png │ │ │ ├── vertical_hover_bar.png │ │ │ ├── vertical_hover_thumb.png │ │ │ ├── vertical_idle_bar.png │ │ │ └── vertical_idle_thumb.png │ │ ├── slider │ │ │ ├── horizontal_hover_bar.png │ │ │ ├── horizontal_hover_thumb.png │ │ │ ├── horizontal_idle_bar.png │ │ │ ├── horizontal_idle_thumb.png │ │ │ ├── vertical_hover_bar.png │ │ │ ├── vertical_hover_thumb.png │ │ │ ├── vertical_idle_bar.png │ │ │ └── vertical_idle_thumb.png │ │ └── textbox.png │ ├── scrollbar │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ ├── skip.png │ ├── slider │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ ├── textbox.png │ └── window_icon.png ├── options.rpy ├── screens.rpy ├── script.rpy └── tl │ └── english │ ├── System │ ├── Applications │ │ ├── AppManager.aosapp │ │ │ └── ASAppManagerView.rpy │ │ ├── Glossary.aosapp │ │ │ └── GlossaryAppUIView.rpy │ │ ├── Inventories.aosapp │ │ │ └── Views │ │ │ │ ├── ASInventoryManagerView.rpy │ │ │ │ └── ASInventorySubView.rpy │ │ ├── Messages.aosapp │ │ │ └── Messages.rpy │ │ └── SysInfo.aosapp │ │ │ └── ASSysInfoView.rpy │ ├── CoreServices │ │ ├── Celeste.aoscservice │ │ │ ├── Components │ │ │ │ └── CelesteDrawer.rpy │ │ │ └── Views │ │ │ │ ├── CelesteAccountSwitcher.rpy │ │ │ │ └── CelesteSettings.rpy │ │ ├── Halt.aoscservice │ │ │ └── ASHaltMessage.rpy │ │ └── Thorax.aoscservice │ │ │ └── ThoraxStepScreen.rpy │ └── Frameworks │ │ ├── AppKit.aosframework │ │ └── Permissions │ │ │ ├── ASPermissionDefinitions.rpy │ │ │ ├── ASPermissionRequest.rpy │ │ │ └── CAPermissions.rpy │ │ └── NotificationKit.aosframework │ │ ├── ASNotificationAlert.rpy │ │ └── ASNotificationBanner.rpy │ ├── common.rpy │ ├── options.rpy │ └── screens.rpy ├── mkdocs.yml ├── project.json ├── res ├── Candella-21.01-default.svg ├── logomark-dark.svg ├── logomark.svg ├── sprite.svg └── src │ └── pixelsprite.aseprite ├── scripts ├── __init__.py └── version_inject.py ├── tests ├── __init__.py ├── test_apps.py ├── test_frameworks.py ├── test_release_info.py └── test_services.py └── vanilla ├── __init__.py ├── css ├── style.css └── vanilla.min.css ├── head.html ├── img ├── desktop.png ├── logomark-dark.svg └── logomark.svg ├── js ├── vanilla.js └── version-select.js ├── main.html ├── nav.html ├── search.html └── sidebar.html /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @alicerunsonfedora 2 | -------------------------------------------------------------------------------- /.github/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/.github/release.png -------------------------------------------------------------------------------- /.github/workflows/build-edge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/.github/workflows/build-edge.yml -------------------------------------------------------------------------------- /.github/workflows/build-nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/.github/workflows/build-nightly.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-version-month.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/.github/workflows/update-version-month.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/CHANGELOG.changes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/__init__.py -------------------------------------------------------------------------------- /docs/00-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/00-release-notes.md -------------------------------------------------------------------------------- /docs/01-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/01-getting-started.md -------------------------------------------------------------------------------- /docs/02-caberto-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/02-caberto-shell.md -------------------------------------------------------------------------------- /docs/02-celeste-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/02-celeste-shell.md -------------------------------------------------------------------------------- /docs/03-candella-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/03-candella-app.md -------------------------------------------------------------------------------- /docs/04-observable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/04-observable.md -------------------------------------------------------------------------------- /docs/05-multiuser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/05-multiuser.md -------------------------------------------------------------------------------- /docs/06-accounts-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/06-accounts-service.md -------------------------------------------------------------------------------- /docs/07-roland-boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/07-roland-boot.md -------------------------------------------------------------------------------- /docs/08-thorax-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/08-thorax-setup.md -------------------------------------------------------------------------------- /docs/09-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/09-glossary.md -------------------------------------------------------------------------------- /docs/10-candella-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/10-candella-service.md -------------------------------------------------------------------------------- /docs/11-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/11-notifications.md -------------------------------------------------------------------------------- /docs/96-design-and-branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/96-design-and-branding.md -------------------------------------------------------------------------------- /docs/97-deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/97-deprecated.md -------------------------------------------------------------------------------- /docs/98-stop-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/98-stop-errors.md -------------------------------------------------------------------------------- /docs/99-candella-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/99-candella-sdk.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | candella.unscriptedvn.dev 2 | -------------------------------------------------------------------------------- /docs/images/branding/logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/branding/logomark.png -------------------------------------------------------------------------------- /docs/images/branding/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/branding/sprite.png -------------------------------------------------------------------------------- /docs/images/branding/sprite_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/branding/sprite_alt.png -------------------------------------------------------------------------------- /docs/images/celeste/appman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/celeste/appman.png -------------------------------------------------------------------------------- /docs/images/celeste/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/celeste/default.png -------------------------------------------------------------------------------- /docs/images/celeste/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/celeste/drawer.png -------------------------------------------------------------------------------- /docs/images/celeste/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/celeste/settings.png -------------------------------------------------------------------------------- /docs/images/design/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/design/banner.png -------------------------------------------------------------------------------- /docs/images/roland/graphic-logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/roland/graphic-logomark.png -------------------------------------------------------------------------------- /docs/images/roland/graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/roland/graphic.png -------------------------------------------------------------------------------- /docs/images/roland/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/roland/text.png -------------------------------------------------------------------------------- /docs/images/thorax/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/images/thorax/interface.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/docs/migrate.md -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/ASAppManager.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/ASAppManager.rpy -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/ASAppManagerView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/ASAppManagerView.rpy -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/ASAppManagerStyles.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/ASAppManagerStyles.rpy -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/Applications/AppManager.aosapp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/AppManager.aosapp/manifest.json -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Glossary.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Glossary.rpy -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/GlossaryAppUIView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/GlossaryAppUIView.rpy -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/Resources/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/Resources/glossary.json -------------------------------------------------------------------------------- /game/System/Applications/Glossary.aosapp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Glossary.aosapp/manifest.json -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Inventories.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Inventories.rpy -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/Item.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Resources/OpenMore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Resources/OpenMore.png -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Structures/ASInventoryItem.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Structures/ASInventoryItem.rpy -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Views/ASInventoryManagerView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Views/ASInventoryManagerView.rpy -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/Views/ASInventorySubView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/Views/ASInventorySubView.rpy -------------------------------------------------------------------------------- /game/System/Applications/Inventories.aosapp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Inventories.aosapp/manifest.json -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Messages.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Messages.rpy -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/Applications/Messages.aosapp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/Messages.aosapp/manifest.json -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/ASSysInfoApp.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/ASSysInfoApp.rpy -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/ASSysInfoView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/ASSysInfoView.rpy -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/ASSysInfoViewStyles.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/ASSysInfoViewStyles.rpy -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Elements/SystemIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Elements/SystemIcon.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/Applications/SysInfo.aosapp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Applications/SysInfo.aosapp/manifest.json -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/AccountsService.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/AccountsService.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/LICENSE.txt -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/CoreServices/Accounts.aoscservice/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Accounts.aoscservice/manifest.json -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/CelesteDE.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/CelesteDE.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Components/CelesteDrawer.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Components/CelesteDrawer.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Components/CelesteLauncher.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Components/CelesteLauncher.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Components/CelesteShellView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Components/CelesteShellView.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Components/CelesteTopBar.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Components/CelesteTopBar.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/LICENSE.txt -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/app_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/app_mask.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/app_mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/app_mask.svg -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/distributor_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/distributor_logo.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/logoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/logoff.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Resources/settings.png -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Views/CelesteAccountSwitcher.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Views/CelesteAccountSwitcher.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/Views/CelesteSettings.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/Views/CelesteSettings.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Celeste.aoscservice/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Celeste.aoscservice/manifest.json -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/ASHaltCoreService.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/ASHaltCoreService.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/ASHaltMessage.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/ASHaltMessage.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/ASHaltMessageStyles.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/ASHaltMessageStyles.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Elements/HaltSymbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Elements/HaltSymbol.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Elements/QRCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Elements/QRCode.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/CoreServices/Halt.aoscservice/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Halt.aoscservice/manifest.json -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/LICENSE.txt -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Loaders/RolandGraphicLogomarkLoader.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Loaders/RolandGraphicLogomarkLoader.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Loaders/RolandGraphical.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Loaders/RolandGraphical.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Resources/Loaders/RolandText.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Resources/Loaders/RolandText.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/Roland.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/Roland.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Roland.aoscservice/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Roland.aoscservice/manifest.json -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/LICENSE.txt -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/1024.png -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/128.png -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/16.png -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/24.png -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/256.png -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/32.png -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/48.png -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/512.png -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/Iconset/64.png -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Resources/default_steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Resources/default_steps.json -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/Thorax.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/Thorax.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/ThoraxStep.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/ThoraxStep.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/ThoraxStepScreen.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/ThoraxStepScreen.rpy -------------------------------------------------------------------------------- /game/System/CoreServices/Thorax.aoscservice/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/CoreServices/Thorax.aoscservice/manifest.json -------------------------------------------------------------------------------- /game/System/Frameworks/AppKit.aosframework/ASAppRepresentative.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/AppKit.aosframework/ASAppRepresentative.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/AppKit.aosframework/CAApplication.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/AppKit.aosframework/CAApplication.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionDefinitions.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionDefinitions.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionRequest.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionRequest.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionRequestStyles.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionRequestStyles.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/AppKit.aosframework/Permissions/CAPermissions.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/AppKit.aosframework/Permissions/CAPermissions.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/AppKit.aosframework/Resources/ASPermissionRequestBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/AppKit.aosframework/Resources/ASPermissionRequestBackground.png -------------------------------------------------------------------------------- /game/System/Frameworks/AppKit.aosframework/Resources/blankFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/AppKit.aosframework/Resources/blankFrame.png -------------------------------------------------------------------------------- /game/System/Frameworks/AppKit.aosframework/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/AppKit.aosframework/manifest.json -------------------------------------------------------------------------------- /game/System/Frameworks/Multiuser.aosframework/AppStorage.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/Multiuser.aosframework/AppStorage.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/Multiuser.aosframework/CAUser.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/Multiuser.aosframework/CAUser.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/Multiuser.aosframework/ServiceStorage.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/Multiuser.aosframework/ServiceStorage.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/Multiuser.aosframework/UserData.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/Multiuser.aosframework/UserData.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/Multiuser.aosframework/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/Multiuser.aosframework/manifest.json -------------------------------------------------------------------------------- /game/System/Frameworks/NotificationKit.aosframework/ASNotificationAlert.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/NotificationKit.aosframework/ASNotificationAlert.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/NotificationKit.aosframework/ASNotificationBanner.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/NotificationKit.aosframework/ASNotificationBanner.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/NotificationKit.aosframework/ASNotificationExtendedAlert.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/NotificationKit.aosframework/ASNotificationExtendedAlert.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/NotificationKit.aosframework/ASNotificationStyles.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/NotificationKit.aosframework/ASNotificationStyles.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/NotificationKit.aosframework/CSNotificationBanner.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/NotificationKit.aosframework/CSNotificationBanner.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/NotificationKit.aosframework/Resources/appMissingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/NotificationKit.aosframework/Resources/appMissingIcon.png -------------------------------------------------------------------------------- /game/System/Frameworks/NotificationKit.aosframework/Resources/bannerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/NotificationKit.aosframework/Resources/bannerBackground.png -------------------------------------------------------------------------------- /game/System/Frameworks/NotificationKit.aosframework/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/NotificationKit.aosframework/manifest.json -------------------------------------------------------------------------------- /game/System/Frameworks/Observable.aosframework/CAObservable.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/Observable.aosframework/CAObservable.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/Observable.aosframework/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/Observable.aosframework/manifest.json -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/ASFonts.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/ASFonts.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/ASInterfaceCheckbox.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/ASInterfaceCheckbox.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/ASInterfacePushButton.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/ASInterfacePushButton.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/ASInterfaceRadio.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/ASInterfaceRadio.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/ASInterfaceScrollbar.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/ASInterfaceScrollbar.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/ASInterfaceStyles.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/ASInterfaceStyles.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/ASInterfaceTitlebar.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/ASInterfaceTitlebar.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/FontLoader.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/FontLoader.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Buttons/PushButtonHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Buttons/PushButtonHover.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Buttons/PushButtonIdle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Buttons/PushButtonIdle.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Buttons/PushButtonInsensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Buttons/PushButtonInsensitive.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Checkboxes/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Checkboxes/Idle.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Checkboxes/Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Checkboxes/Selected.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Frames/FrameChrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Frames/FrameChrome.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Radios/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Radios/Idle.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Radios/Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Radios/Selected.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Scrollbars/HorizontalScrollArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Scrollbars/HorizontalScrollArea.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Scrollbars/HorizontalScrollThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Scrollbars/HorizontalScrollThumb.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Scrollbars/ScrollArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Scrollbars/ScrollArea.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/Scrollbars/ScrollThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/Scrollbars/ScrollThumb.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/WindowControls/wcClose_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/WindowControls/wcClose_hover.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/Resources/WindowControls/wcClose_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/Resources/WindowControls/wcClose_idle.png -------------------------------------------------------------------------------- /game/System/Frameworks/ScreenKit.aosframework/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ScreenKit.aosframework/manifest.json -------------------------------------------------------------------------------- /game/System/Frameworks/ServiceKit.aosframework/ASCoreServiceRepresentative.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ServiceKit.aosframework/ASCoreServiceRepresentative.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ServiceKit.aosframework/CACoreService.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ServiceKit.aosframework/CACoreService.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/ServiceKit.aosframework/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/ServiceKit.aosframework/manifest.json -------------------------------------------------------------------------------- /game/System/Frameworks/VirtualPlatform.aosframework/CAVirtualLanguageParser.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/VirtualPlatform.aosframework/CAVirtualLanguageParser.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/VirtualPlatform.aosframework/CAVirtualPlatformChipsetArithmetic.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/VirtualPlatform.aosframework/CAVirtualPlatformChipsetArithmetic.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/VirtualPlatform.aosframework/CAVirtualPlatformChipsetPrimitives.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/VirtualPlatform.aosframework/CAVirtualPlatformChipsetPrimitives.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/VirtualPlatform.aosframework/CAVirtualPlatformChipsetPrimitives16.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/VirtualPlatform.aosframework/CAVirtualPlatformChipsetPrimitives16.rpy -------------------------------------------------------------------------------- /game/System/Frameworks/VirtualPlatform.aosframework/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Frameworks/VirtualPlatform.aosframework/manifest.json -------------------------------------------------------------------------------- /game/System/Library/ASDefinitions.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/ASDefinitions.rpy -------------------------------------------------------------------------------- /game/System/Library/Branding/logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Branding/logomark.png -------------------------------------------------------------------------------- /game/System/Library/Branding/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Branding/sprite.png -------------------------------------------------------------------------------- /game/System/Library/Branding/sprite_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Branding/sprite_alt.png -------------------------------------------------------------------------------- /game/System/Library/CADeprecated.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/CADeprecated.rpy -------------------------------------------------------------------------------- /game/System/Library/CADesign.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/CADesign.rpy -------------------------------------------------------------------------------- /game/System/Library/CAFrameworkLoader.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/CAFrameworkLoader.rpy -------------------------------------------------------------------------------- /game/System/Library/Design/app_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Design/app_mask.png -------------------------------------------------------------------------------- /game/System/Library/Design/app_mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Design/app_mask.svg -------------------------------------------------------------------------------- /game/System/Library/Desktop Pictures/Apples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Desktop Pictures/Apples.png -------------------------------------------------------------------------------- /game/System/Library/Desktop Pictures/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Desktop Pictures/CREDITS.txt -------------------------------------------------------------------------------- /game/System/Library/Desktop Pictures/Candella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Desktop Pictures/Candella.png -------------------------------------------------------------------------------- /game/System/Library/Desktop Pictures/Chuttersnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Desktop Pictures/Chuttersnap.png -------------------------------------------------------------------------------- /game/System/Library/Desktop Pictures/Couple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Desktop Pictures/Couple.png -------------------------------------------------------------------------------- /game/System/Library/Desktop Pictures/Horse Plains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Desktop Pictures/Horse Plains.png -------------------------------------------------------------------------------- /game/System/Library/Desktop Pictures/McWay Falls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Desktop Pictures/McWay Falls.png -------------------------------------------------------------------------------- /game/System/Library/Desktop Pictures/Mountain View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Desktop Pictures/Mountain View.png -------------------------------------------------------------------------------- /game/System/Library/Desktop Pictures/Waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Desktop Pictures/Waves.png -------------------------------------------------------------------------------- /game/System/Library/Effects/ASDynamicBlur/ASDyanmicBlur.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Effects/ASDynamicBlur/ASDyanmicBlur.rpy -------------------------------------------------------------------------------- /game/System/Library/Effects/ASDynamicBlur/ASDynamicBlurBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Effects/ASDynamicBlur/ASDynamicBlurBackground.png -------------------------------------------------------------------------------- /game/System/Library/Fonts/Interface/Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Interface/Black.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Interface/Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Interface/Bold.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Interface/Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Interface/Italic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Interface/Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Interface/Medium.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Interface/Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Interface/Mono.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Interface/Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Interface/Regular.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Interface/Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Interface/Thin.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Mono/Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Mono/Bold.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Mono/BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Mono/BoldItalic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Mono/Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Mono/Italic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Mono/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Mono/LICENSE -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Mono/Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Mono/Regular.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Sans/Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Sans/Bold.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Sans/BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Sans/BoldItalic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Sans/Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Sans/Italic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Sans/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Sans/LICENSE -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Sans/Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Sans/Regular.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Serif/Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Serif/Bold.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Serif/BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Serif/BoldItalic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Serif/Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Serif/Italic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Serif/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Serif/LICENSE -------------------------------------------------------------------------------- /game/System/Library/Fonts/Liberation Serif/Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Liberation Serif/Regular.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/Bold.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/BoldItalic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/Condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/Condensed.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/LICENSE.txt -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/Light.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/LightItalic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/Medium.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/MediumItalic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/Mono.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/MonoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/MonoBold.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/MonoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/MonoBoldItalic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/MonoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/MonoItalic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/Regular.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/RegularItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/RegularItalic.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Ubuntu/Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Ubuntu/Thin.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Unicode/Fixed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Unicode/Fixed.ttf -------------------------------------------------------------------------------- /game/System/Library/Fonts/Unicode/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Unicode/LICENSE.txt -------------------------------------------------------------------------------- /game/System/Library/Fonts/Unicode/OFL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/Library/Fonts/Unicode/OFL-1.1.txt -------------------------------------------------------------------------------- /game/System/logger.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/logger.rpy -------------------------------------------------------------------------------- /game/System/release_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/System/release_info.json -------------------------------------------------------------------------------- /game/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui.rpy -------------------------------------------------------------------------------- /game/gui/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/bar/left.png -------------------------------------------------------------------------------- /game/gui/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/bar/right.png -------------------------------------------------------------------------------- /game/gui/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/bar/top.png -------------------------------------------------------------------------------- /game/gui/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/choice_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/choice_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/quick_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/quick_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/frame.png -------------------------------------------------------------------------------- /game/gui/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/game_menu.png -------------------------------------------------------------------------------- /game/gui/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/main_menu.png -------------------------------------------------------------------------------- /game/gui/namebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/namebox.png -------------------------------------------------------------------------------- /game/gui/notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/notify.png -------------------------------------------------------------------------------- /game/gui/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/nvl.png -------------------------------------------------------------------------------- /game/gui/overlay/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/overlay/confirm.png -------------------------------------------------------------------------------- /game/gui/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/phone/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/bar/left.png -------------------------------------------------------------------------------- /game/gui/phone/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/bar/right.png -------------------------------------------------------------------------------- /game/gui/phone/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/bar/top.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/nvl.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/phone/textbox.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/skip.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/textbox.png -------------------------------------------------------------------------------- /game/gui/window_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/gui/window_icon.png -------------------------------------------------------------------------------- /game/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/options.rpy -------------------------------------------------------------------------------- /game/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/screens.rpy -------------------------------------------------------------------------------- /game/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/script.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Applications/AppManager.aosapp/ASAppManagerView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Applications/AppManager.aosapp/ASAppManagerView.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Applications/Glossary.aosapp/GlossaryAppUIView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Applications/Glossary.aosapp/GlossaryAppUIView.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Applications/Inventories.aosapp/Views/ASInventoryManagerView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Applications/Inventories.aosapp/Views/ASInventoryManagerView.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Applications/Inventories.aosapp/Views/ASInventorySubView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Applications/Inventories.aosapp/Views/ASInventorySubView.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Applications/Messages.aosapp/Messages.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Applications/Messages.aosapp/Messages.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Applications/SysInfo.aosapp/ASSysInfoView.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Applications/SysInfo.aosapp/ASSysInfoView.rpy -------------------------------------------------------------------------------- /game/tl/english/System/CoreServices/Celeste.aoscservice/Components/CelesteDrawer.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/CoreServices/Celeste.aoscservice/Components/CelesteDrawer.rpy -------------------------------------------------------------------------------- /game/tl/english/System/CoreServices/Celeste.aoscservice/Views/CelesteAccountSwitcher.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/CoreServices/Celeste.aoscservice/Views/CelesteAccountSwitcher.rpy -------------------------------------------------------------------------------- /game/tl/english/System/CoreServices/Celeste.aoscservice/Views/CelesteSettings.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/CoreServices/Celeste.aoscservice/Views/CelesteSettings.rpy -------------------------------------------------------------------------------- /game/tl/english/System/CoreServices/Halt.aoscservice/ASHaltMessage.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/CoreServices/Halt.aoscservice/ASHaltMessage.rpy -------------------------------------------------------------------------------- /game/tl/english/System/CoreServices/Thorax.aoscservice/ThoraxStepScreen.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/CoreServices/Thorax.aoscservice/ThoraxStepScreen.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionDefinitions.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionDefinitions.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionRequest.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Frameworks/AppKit.aosframework/Permissions/ASPermissionRequest.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Frameworks/AppKit.aosframework/Permissions/CAPermissions.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Frameworks/AppKit.aosframework/Permissions/CAPermissions.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Frameworks/NotificationKit.aosframework/ASNotificationAlert.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Frameworks/NotificationKit.aosframework/ASNotificationAlert.rpy -------------------------------------------------------------------------------- /game/tl/english/System/Frameworks/NotificationKit.aosframework/ASNotificationBanner.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/System/Frameworks/NotificationKit.aosframework/ASNotificationBanner.rpy -------------------------------------------------------------------------------- /game/tl/english/common.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/common.rpy -------------------------------------------------------------------------------- /game/tl/english/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/options.rpy -------------------------------------------------------------------------------- /game/tl/english/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/game/tl/english/screens.rpy -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/project.json -------------------------------------------------------------------------------- /res/Candella-21.01-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/res/Candella-21.01-default.svg -------------------------------------------------------------------------------- /res/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/res/logomark-dark.svg -------------------------------------------------------------------------------- /res/logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/res/logomark.svg -------------------------------------------------------------------------------- /res/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/res/sprite.svg -------------------------------------------------------------------------------- /res/src/pixelsprite.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/res/src/pixelsprite.aseprite -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | from . import version_inject as vi -------------------------------------------------------------------------------- /scripts/version_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/scripts/version_inject.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/tests/test_apps.py -------------------------------------------------------------------------------- /tests/test_frameworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/tests/test_frameworks.py -------------------------------------------------------------------------------- /tests/test_release_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/tests/test_release_info.py -------------------------------------------------------------------------------- /tests/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/tests/test_services.py -------------------------------------------------------------------------------- /vanilla/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vanilla/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/css/style.css -------------------------------------------------------------------------------- /vanilla/css/vanilla.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/css/vanilla.min.css -------------------------------------------------------------------------------- /vanilla/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/head.html -------------------------------------------------------------------------------- /vanilla/img/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/img/desktop.png -------------------------------------------------------------------------------- /vanilla/img/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/img/logomark-dark.svg -------------------------------------------------------------------------------- /vanilla/img/logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/img/logomark.svg -------------------------------------------------------------------------------- /vanilla/js/vanilla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/js/vanilla.js -------------------------------------------------------------------------------- /vanilla/js/version-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/js/version-select.js -------------------------------------------------------------------------------- /vanilla/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/main.html -------------------------------------------------------------------------------- /vanilla/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/nav.html -------------------------------------------------------------------------------- /vanilla/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/search.html -------------------------------------------------------------------------------- /vanilla/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnscriptedVN/candella/HEAD/vanilla/sidebar.html --------------------------------------------------------------------------------