├── .gitignore ├── README.md ├── Source ├── clock.lua ├── fonts │ ├── roobert11.fnt │ ├── roobert11Bold.fnt │ └── roobertKeyboard.fnt ├── game.lua ├── groupUtils.lua ├── icon.png ├── images │ ├── battery-table-1.png │ ├── battery-table-2.png │ ├── battery-table-3.png │ ├── battery-table-4.png │ ├── battery-table-5.png │ ├── battery-table-6.png │ ├── battery-table-7.png │ ├── battery-table-8.png │ ├── bottomBar.png │ ├── bottomBarCancel.png │ ├── bottomBarCopy.png │ ├── bottomBarDelete.png │ ├── bottomBarHolding.png │ ├── bottomBarInfo.png │ ├── bottomBarLogo.png │ ├── bottomBarMove.png │ ├── bottomBarRemove.png │ ├── credits │ │ ├── credits.png │ │ ├── logoLetterO.png │ │ ├── logoLetterS.png │ │ ├── logoText-table-1.png │ │ ├── logoText-table-10.png │ │ ├── logoText-table-2.png │ │ ├── logoText-table-3.png │ │ ├── logoText-table-4.png │ │ ├── logoText-table-5.png │ │ ├── logoText-table-6.png │ │ ├── logoText-table-7.png │ │ ├── logoText-table-8.png │ │ └── logoText-table-9.png │ ├── defaultIcon.png │ ├── defaultWrappingPattern.png │ ├── groupEmpty.png │ ├── groupEmptyIcon.png │ ├── icons │ │ ├── season1 │ │ │ ├── com.NicMagnier.PickPackPup.pdi │ │ │ ├── com.a-m.beats-bleeps-boogie.pdi │ │ │ ├── com.crookedpark.demonquest85.pdi │ │ │ ├── com.dadako.questychess.pdi │ │ │ ├── com.davemakes.execgolf.pdi │ │ │ ├── com.gregorykogos.omaze.pdi │ │ │ ├── com.nelsanderson.forrest.pdi │ │ │ ├── com.panic.b360.pdi │ │ │ ├── com.panic.inventoryhero.pdi │ │ │ ├── com.panic.starsled.pdi │ │ │ ├── com.radstronomical.CasualBirder.pdi │ │ │ ├── com.samanthazero.echoicmemory.pdi │ │ │ ├── com.serenityforge.elevator.pdi │ │ │ ├── com.shauninman.ratcheteer.pdi │ │ │ ├── com.spectrecollie.sasquatchers.pdi │ │ │ ├── com.sweetbabyinc.lostyourmarbles.pdi │ │ │ ├── com.teambottle.spellcorked.pdi │ │ │ ├── com.tpmcosoft.battleship.pdi │ │ │ ├── com.uvula.crankin.pdi │ │ │ ├── com.vertexpop.hypermeteor.pdi │ │ │ ├── com.vitei.whitewater.pdi │ │ │ ├── com.wildrose.saturday.pdi │ │ │ ├── net.foddy.zipper.pdi │ │ │ └── net.stfj.snak.pdi │ │ └── wrapped │ │ │ ├── 1.pdi │ │ │ ├── 2.pdi │ │ │ ├── 3.pdi │ │ │ └── 4.pdi │ ├── infoCard.png │ ├── keyboard │ │ ├── cancel.png │ │ ├── delete.png │ │ ├── ok.png │ │ └── space.png │ ├── launcher │ │ ├── launcherCard.png │ │ ├── launcherIcon.png │ │ └── launcherPressed.png │ ├── listCard.png │ ├── menuImage.png │ ├── setupQR.png │ ├── topBar.png │ ├── viewSelected.png │ ├── viewUnselected.png │ ├── wrapped.png │ └── wrappedMask.png ├── main.lua ├── pdxinfo ├── sounds │ ├── click.wav │ ├── flipBack.wav │ ├── flipForward.wav │ ├── folderDelete.wav │ ├── gameMoveEnd.wav │ ├── gameMoveStart.wav │ ├── infoViewClose.wav │ ├── infoViewOpen.wav │ ├── keyboardClick.wav │ ├── keyboardKey.wav │ ├── listViewClose.wav │ ├── listViewOpen.wav │ ├── newGame.pda │ └── unwrap.pda ├── systemsfx │ ├── 01-selection-trimmed.pda │ ├── 02-selection-reverse-trimmed.pda │ ├── 03-action-trimmed.pda │ ├── 04-denial-trimmed.pda │ ├── 05-alert-trimmed.pda │ ├── 06-error-trimmed.pda │ ├── 12-menu-open-trimmed.pda │ ├── 13-menu-close-trimmed.pda │ ├── 14-volume-00-trimmed.pda │ ├── 14-volume-01-trimmed.pda │ ├── 14-volume-02-trimmed.pda │ ├── 14-volume-03-trimmed.pda │ ├── 14-volume-04-trimmed.pda │ ├── 14-volume-05-trimmed.pda │ ├── 14-volume-06-trimmed.pda │ ├── 14-volume-07-trimmed.pda │ ├── 14-volume-08-trimmed.pda │ ├── 14-volume-09-trimmed.pda │ ├── 14-volume-10-trimmed.pda │ ├── 15-screenshot-a-trimmed.pda │ ├── 15-screenshot-b-trimmed.pda │ ├── 17-crank-taken-out-trimmed.pda │ ├── 18-crank-put-away-trimmed.pda │ ├── 19-charge-plug-in-trimmed.pda │ └── 20-charge-unplug-trimmed.pda ├── videos │ └── unwrap │ │ ├── fadeOut.pdv │ │ ├── fadeOutMask.pdv │ │ ├── underlay.pdv │ │ ├── underlayMask.pdv │ │ ├── unwrap.pdv │ │ ├── unwrapLowerMask.pdv │ │ └── unwrapMask.pdv ├── view.lua └── views │ ├── cardView.lua │ ├── catalogView.lua │ ├── errorView.lua │ ├── folderView.lua │ ├── myGamesView.lua │ ├── newFolderView.lua │ ├── seasonView.lua │ ├── secretView.lua │ └── systemView.lua └── logo.svg /.gitignore: -------------------------------------------------------------------------------- 1 | # Because macOS 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/README.md -------------------------------------------------------------------------------- /Source/clock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/clock.lua -------------------------------------------------------------------------------- /Source/fonts/roobert11.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/fonts/roobert11.fnt -------------------------------------------------------------------------------- /Source/fonts/roobert11Bold.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/fonts/roobert11Bold.fnt -------------------------------------------------------------------------------- /Source/fonts/roobertKeyboard.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/fonts/roobertKeyboard.fnt -------------------------------------------------------------------------------- /Source/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/game.lua -------------------------------------------------------------------------------- /Source/groupUtils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/groupUtils.lua -------------------------------------------------------------------------------- /Source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/icon.png -------------------------------------------------------------------------------- /Source/images/battery-table-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/battery-table-1.png -------------------------------------------------------------------------------- /Source/images/battery-table-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/battery-table-2.png -------------------------------------------------------------------------------- /Source/images/battery-table-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/battery-table-3.png -------------------------------------------------------------------------------- /Source/images/battery-table-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/battery-table-4.png -------------------------------------------------------------------------------- /Source/images/battery-table-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/battery-table-5.png -------------------------------------------------------------------------------- /Source/images/battery-table-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/battery-table-6.png -------------------------------------------------------------------------------- /Source/images/battery-table-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/battery-table-7.png -------------------------------------------------------------------------------- /Source/images/battery-table-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/battery-table-8.png -------------------------------------------------------------------------------- /Source/images/bottomBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/bottomBar.png -------------------------------------------------------------------------------- /Source/images/bottomBarCancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/bottomBarCancel.png -------------------------------------------------------------------------------- /Source/images/bottomBarCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/bottomBarCopy.png -------------------------------------------------------------------------------- /Source/images/bottomBarDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/bottomBarDelete.png -------------------------------------------------------------------------------- /Source/images/bottomBarHolding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/bottomBarHolding.png -------------------------------------------------------------------------------- /Source/images/bottomBarInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/bottomBarInfo.png -------------------------------------------------------------------------------- /Source/images/bottomBarLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/bottomBarLogo.png -------------------------------------------------------------------------------- /Source/images/bottomBarMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/bottomBarMove.png -------------------------------------------------------------------------------- /Source/images/bottomBarRemove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/bottomBarRemove.png -------------------------------------------------------------------------------- /Source/images/credits/credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/credits.png -------------------------------------------------------------------------------- /Source/images/credits/logoLetterO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoLetterO.png -------------------------------------------------------------------------------- /Source/images/credits/logoLetterS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoLetterS.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-1.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-10.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-2.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-3.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-4.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-5.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-6.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-7.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-8.png -------------------------------------------------------------------------------- /Source/images/credits/logoText-table-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/credits/logoText-table-9.png -------------------------------------------------------------------------------- /Source/images/defaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/defaultIcon.png -------------------------------------------------------------------------------- /Source/images/defaultWrappingPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/defaultWrappingPattern.png -------------------------------------------------------------------------------- /Source/images/groupEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/groupEmpty.png -------------------------------------------------------------------------------- /Source/images/groupEmptyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/groupEmptyIcon.png -------------------------------------------------------------------------------- /Source/images/icons/season1/com.NicMagnier.PickPackPup.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.NicMagnier.PickPackPup.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.a-m.beats-bleeps-boogie.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.a-m.beats-bleeps-boogie.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.crookedpark.demonquest85.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.crookedpark.demonquest85.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.dadako.questychess.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.dadako.questychess.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.davemakes.execgolf.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.davemakes.execgolf.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.gregorykogos.omaze.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.gregorykogos.omaze.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.nelsanderson.forrest.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.nelsanderson.forrest.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.panic.b360.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.panic.b360.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.panic.inventoryhero.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.panic.inventoryhero.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.panic.starsled.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.panic.starsled.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.radstronomical.CasualBirder.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.radstronomical.CasualBirder.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.samanthazero.echoicmemory.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.samanthazero.echoicmemory.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.serenityforge.elevator.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.serenityforge.elevator.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.shauninman.ratcheteer.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.shauninman.ratcheteer.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.spectrecollie.sasquatchers.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.spectrecollie.sasquatchers.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.sweetbabyinc.lostyourmarbles.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.sweetbabyinc.lostyourmarbles.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.teambottle.spellcorked.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.teambottle.spellcorked.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.tpmcosoft.battleship.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.tpmcosoft.battleship.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.uvula.crankin.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.uvula.crankin.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.vertexpop.hypermeteor.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.vertexpop.hypermeteor.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.vitei.whitewater.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.vitei.whitewater.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/com.wildrose.saturday.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/com.wildrose.saturday.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/net.foddy.zipper.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/net.foddy.zipper.pdi -------------------------------------------------------------------------------- /Source/images/icons/season1/net.stfj.snak.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/season1/net.stfj.snak.pdi -------------------------------------------------------------------------------- /Source/images/icons/wrapped/1.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/wrapped/1.pdi -------------------------------------------------------------------------------- /Source/images/icons/wrapped/2.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/wrapped/2.pdi -------------------------------------------------------------------------------- /Source/images/icons/wrapped/3.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/wrapped/3.pdi -------------------------------------------------------------------------------- /Source/images/icons/wrapped/4.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/icons/wrapped/4.pdi -------------------------------------------------------------------------------- /Source/images/infoCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/infoCard.png -------------------------------------------------------------------------------- /Source/images/keyboard/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/keyboard/cancel.png -------------------------------------------------------------------------------- /Source/images/keyboard/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/keyboard/delete.png -------------------------------------------------------------------------------- /Source/images/keyboard/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/keyboard/ok.png -------------------------------------------------------------------------------- /Source/images/keyboard/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/keyboard/space.png -------------------------------------------------------------------------------- /Source/images/launcher/launcherCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/launcher/launcherCard.png -------------------------------------------------------------------------------- /Source/images/launcher/launcherIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/launcher/launcherIcon.png -------------------------------------------------------------------------------- /Source/images/launcher/launcherPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/launcher/launcherPressed.png -------------------------------------------------------------------------------- /Source/images/listCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/listCard.png -------------------------------------------------------------------------------- /Source/images/menuImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/menuImage.png -------------------------------------------------------------------------------- /Source/images/setupQR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/setupQR.png -------------------------------------------------------------------------------- /Source/images/topBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/topBar.png -------------------------------------------------------------------------------- /Source/images/viewSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/viewSelected.png -------------------------------------------------------------------------------- /Source/images/viewUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/viewUnselected.png -------------------------------------------------------------------------------- /Source/images/wrapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/wrapped.png -------------------------------------------------------------------------------- /Source/images/wrappedMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/images/wrappedMask.png -------------------------------------------------------------------------------- /Source/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/main.lua -------------------------------------------------------------------------------- /Source/pdxinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/pdxinfo -------------------------------------------------------------------------------- /Source/sounds/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/click.wav -------------------------------------------------------------------------------- /Source/sounds/flipBack.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/flipBack.wav -------------------------------------------------------------------------------- /Source/sounds/flipForward.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/flipForward.wav -------------------------------------------------------------------------------- /Source/sounds/folderDelete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/folderDelete.wav -------------------------------------------------------------------------------- /Source/sounds/gameMoveEnd.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/gameMoveEnd.wav -------------------------------------------------------------------------------- /Source/sounds/gameMoveStart.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/gameMoveStart.wav -------------------------------------------------------------------------------- /Source/sounds/infoViewClose.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/infoViewClose.wav -------------------------------------------------------------------------------- /Source/sounds/infoViewOpen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/infoViewOpen.wav -------------------------------------------------------------------------------- /Source/sounds/keyboardClick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/keyboardClick.wav -------------------------------------------------------------------------------- /Source/sounds/keyboardKey.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/keyboardKey.wav -------------------------------------------------------------------------------- /Source/sounds/listViewClose.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/listViewClose.wav -------------------------------------------------------------------------------- /Source/sounds/listViewOpen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/listViewOpen.wav -------------------------------------------------------------------------------- /Source/sounds/newGame.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/newGame.pda -------------------------------------------------------------------------------- /Source/sounds/unwrap.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/sounds/unwrap.pda -------------------------------------------------------------------------------- /Source/systemsfx/01-selection-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/01-selection-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/02-selection-reverse-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/02-selection-reverse-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/03-action-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/03-action-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/04-denial-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/04-denial-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/05-alert-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/05-alert-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/06-error-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/06-error-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/12-menu-open-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/12-menu-open-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/13-menu-close-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/13-menu-close-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-00-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-00-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-01-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-01-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-02-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-02-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-03-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-03-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-04-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-04-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-05-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-05-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-06-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-06-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-07-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-07-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-08-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-08-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-09-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-09-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/14-volume-10-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/14-volume-10-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/15-screenshot-a-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/15-screenshot-a-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/15-screenshot-b-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/15-screenshot-b-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/17-crank-taken-out-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/17-crank-taken-out-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/18-crank-put-away-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/18-crank-put-away-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/19-charge-plug-in-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/19-charge-plug-in-trimmed.pda -------------------------------------------------------------------------------- /Source/systemsfx/20-charge-unplug-trimmed.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/systemsfx/20-charge-unplug-trimmed.pda -------------------------------------------------------------------------------- /Source/videos/unwrap/fadeOut.pdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/videos/unwrap/fadeOut.pdv -------------------------------------------------------------------------------- /Source/videos/unwrap/fadeOutMask.pdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/videos/unwrap/fadeOutMask.pdv -------------------------------------------------------------------------------- /Source/videos/unwrap/underlay.pdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/videos/unwrap/underlay.pdv -------------------------------------------------------------------------------- /Source/videos/unwrap/underlayMask.pdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/videos/unwrap/underlayMask.pdv -------------------------------------------------------------------------------- /Source/videos/unwrap/unwrap.pdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/videos/unwrap/unwrap.pdv -------------------------------------------------------------------------------- /Source/videos/unwrap/unwrapLowerMask.pdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/videos/unwrap/unwrapLowerMask.pdv -------------------------------------------------------------------------------- /Source/videos/unwrap/unwrapMask.pdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/videos/unwrap/unwrapMask.pdv -------------------------------------------------------------------------------- /Source/view.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/view.lua -------------------------------------------------------------------------------- /Source/views/cardView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/views/cardView.lua -------------------------------------------------------------------------------- /Source/views/catalogView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/views/catalogView.lua -------------------------------------------------------------------------------- /Source/views/errorView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/views/errorView.lua -------------------------------------------------------------------------------- /Source/views/folderView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/views/folderView.lua -------------------------------------------------------------------------------- /Source/views/myGamesView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/views/myGamesView.lua -------------------------------------------------------------------------------- /Source/views/newFolderView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/views/newFolderView.lua -------------------------------------------------------------------------------- /Source/views/seasonView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/views/seasonView.lua -------------------------------------------------------------------------------- /Source/views/secretView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/views/secretView.lua -------------------------------------------------------------------------------- /Source/views/systemView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/Source/views/systemView.lua -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchminer/Index-OS/HEAD/logo.svg --------------------------------------------------------------------------------