├── .DS_Store ├── .gitignore ├── .gitmodules ├── .vscode ├── launch.json └── settings.json ├── Dockerfile ├── License.md ├── README.md ├── app ├── .gitignore ├── .meteor │ ├── .finished-upgraders │ ├── .gitignore │ ├── .id │ ├── cordova-plugins │ ├── packages │ ├── platforms │ ├── release │ └── versions ├── client │ ├── game-icons.css │ ├── head.html │ ├── index.html │ └── main.js ├── exampleMeteorSettings.json ├── imports │ ├── @types │ │ ├── ddp-rate-limiter-mixin.d.ts │ │ ├── ddp.d.ts │ │ ├── meteor-ostrio-files.d.ts │ │ ├── meteor.d.ts │ │ ├── mongo.d.ts │ │ ├── validated-method.d.ts │ │ └── vue-meteor.d.ts │ ├── api │ │ ├── creature │ │ │ ├── archive │ │ │ │ ├── ArchiveCreatureFiles.js │ │ │ │ └── methods │ │ │ │ │ ├── archiveCreatureToFile.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── removeArchiveCreature.js │ │ │ │ │ ├── restoreCreatureFromFile.js │ │ │ │ │ └── verifyArchiveSafety.js │ │ │ ├── creatureFolders │ │ │ │ ├── CreatureFolders.js │ │ │ │ └── methods.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── insertCreatureFolder.js │ │ │ │ │ ├── moveCreatureToFolder.js │ │ │ │ │ ├── removeCreatureFolder.js │ │ │ │ │ ├── reorderCreatureFolder.js │ │ │ │ │ └── updateCreatureFolderName.js │ │ │ ├── creatureProperties │ │ │ │ ├── CreatureProperties.ts │ │ │ │ ├── getRootCreatureAncestor.js │ │ │ │ └── methods │ │ │ │ │ ├── adjustQuantity.js │ │ │ │ │ ├── copyPropertyToLibrary.js │ │ │ │ │ ├── duplicateProperty.js │ │ │ │ │ ├── equipItem.js │ │ │ │ │ ├── flipToggle.js │ │ │ │ │ ├── getParentByTag.js │ │ │ │ │ ├── getSlotFillFilter.js │ │ │ │ │ ├── getSlotFillFilter.test.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── insertProperty.js │ │ │ │ │ ├── insertPropertyFromLibraryNode.js │ │ │ │ │ ├── pullFromProperty.js │ │ │ │ │ ├── pushToProperty.js │ │ │ │ │ ├── restoreProperty.js │ │ │ │ │ ├── selectAmmoItem.js │ │ │ │ │ ├── softRemoveProperty.js │ │ │ │ │ └── updateCreatureProperty.js │ │ │ ├── creatures │ │ │ │ ├── CreatureVariables.ts │ │ │ │ ├── Creatures.ts │ │ │ │ ├── creaturePermissions.js │ │ │ │ ├── defaultCharacterProperties.js │ │ │ │ ├── getCreatureUrlName.js │ │ │ │ └── methods │ │ │ │ │ ├── assertHasCharacterSlots.js │ │ │ │ │ ├── changeAllowedLibraries.js │ │ │ │ │ ├── importCharacterFromDiceCloudInstance.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── insertCreature.js │ │ │ │ │ ├── removeCreature.js │ │ │ │ │ └── updateCreature.js │ │ │ ├── experience │ │ │ │ └── Experiences.js │ │ │ ├── journal │ │ │ │ └── JournalEntry.js │ │ │ ├── log │ │ │ │ ├── CreatureLogs.js │ │ │ │ └── LogContentSchema.ts │ │ │ └── mixins │ │ │ │ ├── creaturePermissionMixin.js │ │ │ │ ├── simpleSchemaMixin.js │ │ │ │ └── updateSchemaMixin.js │ │ ├── docs │ │ │ └── Docs.ts │ │ ├── engine │ │ │ ├── action │ │ │ │ ├── EngineActions.ts │ │ │ │ ├── applyProperties │ │ │ │ │ ├── applyActionProperty.test.ts │ │ │ │ │ ├── applyActionProperty.ts │ │ │ │ │ ├── applyAdjustmentProperty.test.ts │ │ │ │ │ ├── applyAdjustmentProperty.ts │ │ │ │ │ ├── applyBranchProperty.test.ts │ │ │ │ │ ├── applyBranchProperty.ts │ │ │ │ │ ├── applyBuffProperty.test.ts │ │ │ │ │ ├── applyBuffProperty.ts │ │ │ │ │ ├── applyBuffRemoverProperty.test.ts │ │ │ │ │ ├── applyBuffRemoverProperty.ts │ │ │ │ │ ├── applyCreatureTemplateProperty.ts │ │ │ │ │ ├── applyDamageProperty.test.ts │ │ │ │ │ ├── applyDamageProperty.ts │ │ │ │ │ ├── applyFolderProperty.test.ts │ │ │ │ │ ├── applyFolderProperty.ts │ │ │ │ │ ├── applyNoteProperty.test.ts │ │ │ │ │ ├── applyNoteProperty.ts │ │ │ │ │ ├── applyRollProperty.test.ts │ │ │ │ │ ├── applyRollProperty.ts │ │ │ │ │ ├── applySavingThrowProperty.test.ts │ │ │ │ │ ├── applySavingThrowProperty.ts │ │ │ │ │ ├── applyToggleProperty.test.ts │ │ │ │ │ ├── applyToggleProperty.ts │ │ │ │ │ ├── applyTriggerProperty.test.ts │ │ │ │ │ ├── applyTriggerProperty.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── functions │ │ │ │ │ ├── actionEngineTest.testFn.ts │ │ │ │ │ ├── applyAction.ts │ │ │ │ │ ├── applyTaskGroups.ts │ │ │ │ │ ├── getEffectiveActionScope.ts │ │ │ │ │ ├── mutationToLogUpdates.ts │ │ │ │ │ ├── mutationToPropUpdates.ts │ │ │ │ │ ├── recalculateCalculation.ts │ │ │ │ │ ├── recalculateInlineCalculations.ts │ │ │ │ │ ├── spendResources.ts │ │ │ │ │ ├── userInput │ │ │ │ │ │ ├── InputProvider.ts │ │ │ │ │ │ ├── getDeterministicDiceRoller.ts │ │ │ │ │ │ ├── getReplayChoicesInputProvider.ts │ │ │ │ │ │ ├── inputProviderForTests.testFn.ts │ │ │ │ │ │ └── saveInputChoices.ts │ │ │ │ │ └── writeActionResults.ts │ │ │ │ ├── methods │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── insertAction.ts │ │ │ │ │ ├── runAction.ts │ │ │ │ │ └── updateAction.ts │ │ │ │ ├── tasks │ │ │ │ │ ├── Task.ts │ │ │ │ │ ├── TaskResult.ts │ │ │ │ │ ├── applyCastSpellTask.ts │ │ │ │ │ ├── applyCheckTask.ts │ │ │ │ │ ├── applyDamagePropTask.ts │ │ │ │ │ ├── applyItemAsAmmoTask.ts │ │ │ │ │ ├── applyResetTask.ts │ │ │ │ │ └── applyTask.ts │ │ │ │ └── test │ │ │ │ │ ├── applySilencedProps.test.ts │ │ │ │ │ └── diceRollFunctions.test.ts │ │ │ ├── computation │ │ │ │ ├── CreatureComputation.ts │ │ │ │ ├── buildComputation │ │ │ │ │ ├── computeInactiveStatus.ts │ │ │ │ │ ├── computeSlotQuantityFilled.js │ │ │ │ │ ├── computeToggleDependencies.ts │ │ │ │ │ ├── linkCalculationDependencies.js │ │ │ │ │ ├── linkInventory.js │ │ │ │ │ ├── linkTypeDependencies.js │ │ │ │ │ ├── parseCalculationFields.js │ │ │ │ │ ├── removeSchemaFields.js │ │ │ │ │ └── tests │ │ │ │ │ │ ├── computeInactiveStatus.testFn.js │ │ │ │ │ │ ├── computeSlotQuantityFilled.testFn.js │ │ │ │ │ │ ├── computeToggleDependencies.testFn.js │ │ │ │ │ │ ├── linkCalculationDependencies.testFn.js │ │ │ │ │ │ ├── linkInventory.testFn.js │ │ │ │ │ │ └── linkTypeDependencies.testfn.js │ │ │ │ ├── buildCreatureComputation.test.js │ │ │ │ ├── buildCreatureComputation.ts │ │ │ │ ├── computeComputation │ │ │ │ │ ├── computeByType.js │ │ │ │ │ ├── computeByType │ │ │ │ │ │ ├── computeAction.ts │ │ │ │ │ │ ├── computeAttribute.js │ │ │ │ │ │ ├── computeCalculation.js │ │ │ │ │ │ ├── computeContainer.js │ │ │ │ │ │ ├── computePointBuy.js │ │ │ │ │ │ ├── computeSkill.js │ │ │ │ │ │ ├── computeSlot.js │ │ │ │ │ │ ├── computeSpellList.js │ │ │ │ │ │ ├── computeToggle.js │ │ │ │ │ │ ├── computeTrigger.ts │ │ │ │ │ │ ├── computeVariable.js │ │ │ │ │ │ └── computeVariable │ │ │ │ │ │ │ ├── aggregate │ │ │ │ │ │ │ ├── aggregateClassLevel.js │ │ │ │ │ │ │ ├── aggregateDamageMultiplier.js │ │ │ │ │ │ │ ├── aggregateDefinition.js │ │ │ │ │ │ │ ├── aggregateEffect.js │ │ │ │ │ │ │ ├── aggregateEventDefinition.js │ │ │ │ │ │ │ ├── aggregateInventory.js │ │ │ │ │ │ │ ├── aggregateProficiency.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── computeImplicitVariable.js │ │ │ │ │ │ │ ├── computeVariableAsAttribute.js │ │ │ │ │ │ │ ├── computeVariableAsClass.js │ │ │ │ │ │ │ ├── computeVariableAsConstant.js │ │ │ │ │ │ │ ├── computeVariableAsSkill.js │ │ │ │ │ │ │ ├── computeVariableAsToggle.js │ │ │ │ │ │ │ └── getAggregatorResult.js │ │ │ │ │ ├── computeToggles.js │ │ │ │ │ └── tstFns │ │ │ │ │ │ ├── buildTestComputation.ts │ │ │ │ │ │ ├── computeAction.testFn.ts │ │ │ │ │ │ ├── computeAttribute.testFn.js │ │ │ │ │ │ ├── computeCalculations.testFn.js │ │ │ │ │ │ ├── computeClasses.testFn.js │ │ │ │ │ │ ├── computeConstants.testFn.js │ │ │ │ │ │ ├── computeDamageMultipliers.testFn.js │ │ │ │ │ │ ├── computeEffects.testFn.js │ │ │ │ │ │ ├── computeInventory.testFn.js │ │ │ │ │ │ ├── computePointBuys.testFn.js │ │ │ │ │ │ ├── computeProficiencies.testFn.js │ │ │ │ │ │ ├── computeSkills.testFn.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── computeCreatureComputation.test.ts │ │ │ │ ├── computeCreatureComputation.ts │ │ │ │ ├── computeTagTargetedEffects.test.js │ │ │ │ ├── test │ │ │ │ │ └── tagTargetBaseValue.test.ts │ │ │ │ ├── utility │ │ │ │ │ ├── applyFnToKey.js │ │ │ │ │ ├── applyFnToKey.test.js │ │ │ │ │ ├── cleanProp.testFn.ts │ │ │ │ │ ├── collate.js │ │ │ │ │ ├── cyrb53.js │ │ │ │ │ ├── embedInlineCalculations.js │ │ │ │ │ ├── getEffectivePropTags.js │ │ │ │ │ ├── propsFromForest.testFn.ts │ │ │ │ │ ├── stripFloatingPointOddities.js │ │ │ │ │ └── walkdown.ts │ │ │ │ └── writeComputation │ │ │ │ │ ├── writeAlteredProperties.js │ │ │ │ │ ├── writeErrorsAndPropCount.js │ │ │ │ │ └── writeScope.js │ │ │ ├── computeCreature.ts │ │ │ ├── loadCreatures.ts │ │ │ └── shared │ │ │ │ └── bulkWrite.ts │ │ ├── files │ │ │ ├── assertUserHasFileSpace.ts │ │ │ ├── client │ │ │ │ └── s3FileStorage.js │ │ │ ├── server │ │ │ │ └── s3FileStorage.ts │ │ │ └── userImages │ │ │ │ ├── UserImages.ts │ │ │ │ └── methods │ │ │ │ ├── index.js │ │ │ │ └── removeUserImage.ts │ │ ├── getModifierFields.js │ │ ├── icons │ │ │ └── Icons.ts │ │ ├── library │ │ │ ├── Libraries.js │ │ │ ├── LibraryCollections.js │ │ │ ├── LibraryNodes.ts │ │ │ ├── getCreatureLibraryIds.js │ │ │ ├── getUserLibraryIds.js │ │ │ └── methods │ │ │ │ ├── copyLibraryNodeTo.js │ │ │ │ ├── duplicateLibraryNode.js │ │ │ │ ├── getDefaultSlotFiller.js │ │ │ │ ├── index.js │ │ │ │ └── updateReferenceNode.js │ │ ├── parenting │ │ │ ├── ChildSchema.ts │ │ │ ├── SoftRemovableSchema.js │ │ │ ├── organizeMethods.js │ │ │ ├── parentingFunctions.test.ts │ │ │ ├── parentingFunctions.ts │ │ │ └── softRemove.ts │ │ ├── properties │ │ │ ├── Actions.ts │ │ │ ├── Adjustments.ts │ │ │ ├── Attributes.ts │ │ │ ├── Branches.ts │ │ │ ├── BuffRemovers.ts │ │ │ ├── Buffs.ts │ │ │ ├── ClassLevels.ts │ │ │ ├── Classes.ts │ │ │ ├── Constants.ts │ │ │ ├── Containers.ts │ │ │ ├── CreatureTemplates.ts │ │ │ ├── DamageMultipliers.ts │ │ │ ├── Damages.ts │ │ │ ├── Effects.ts │ │ │ ├── Features.ts │ │ │ ├── Folders.ts │ │ │ ├── Items.ts │ │ │ ├── Notes.ts │ │ │ ├── PointBuys.ts │ │ │ ├── Proficiencies.ts │ │ │ ├── PropertyType.type.ts │ │ │ ├── References.ts │ │ │ ├── Rolls.ts │ │ │ ├── SavingThrows.ts │ │ │ ├── Skills.ts │ │ │ ├── Slots.ts │ │ │ ├── SpellLists.ts │ │ │ ├── Spells.ts │ │ │ ├── Toggles.ts │ │ │ ├── Triggers.ts │ │ │ ├── computedOnlyPropertySchemasIndex.js │ │ │ ├── computedPropertySchemasIndex.js │ │ │ ├── propertySchemasIndex.js │ │ │ └── subSchemas │ │ │ │ ├── AdjustmentSchema.ts │ │ │ │ ├── ColorSchema.ts │ │ │ │ ├── ErrorSchema.ts │ │ │ │ ├── InlineComputationSchema.js │ │ │ │ ├── RollDetailsSchema.js │ │ │ │ ├── TagTargetingSchema.ts │ │ │ │ ├── computedField.ts │ │ │ │ ├── createPropertySchema.ts │ │ │ │ └── inlineCalculationField.ts │ │ ├── sharing │ │ │ ├── SharingSchema.ts │ │ │ ├── sharing.js │ │ │ └── sharingPermissions.ts │ │ ├── simpleSchemaConfig.js │ │ ├── tabletop │ │ │ ├── Messages.js │ │ │ ├── TabletopMaps.js │ │ │ ├── TabletopObjects.js │ │ │ ├── Tabletops.ts │ │ │ ├── functions │ │ │ │ └── denormalizeTabletopPropCount.ts │ │ │ └── methods │ │ │ │ ├── addCreaturesFromLibraryToTabletop.ts │ │ │ │ ├── addCreaturesToTabletop.js │ │ │ │ ├── insertTabletop.js │ │ │ │ ├── removeCreatureFromTabletop.ts │ │ │ │ ├── removeTabletop.js │ │ │ │ ├── shared │ │ │ │ ├── tabletopLimits.ts │ │ │ │ └── tabletopPermissions.ts │ │ │ │ ├── updateTabletop.js │ │ │ │ └── updateTabletopSharing.js │ │ ├── users │ │ │ ├── Invites.js │ │ │ ├── Users.js │ │ │ ├── methods │ │ │ │ ├── addEmail.js │ │ │ │ ├── deleteMyAccount.js │ │ │ │ ├── linkWithPatreon.js │ │ │ │ ├── removeEmail.js │ │ │ │ └── updateFileStorageUsed.js │ │ │ └── patreon │ │ │ │ ├── getEntitledCents.js │ │ │ │ ├── tiers.js │ │ │ │ ├── updatePatreonDetails.js │ │ │ │ └── updatePatreonOnLogin.js │ │ └── utility │ │ │ ├── TypedSimpleSchema.ts │ │ │ ├── asyncMap.ts │ │ │ ├── escapeRegex.js │ │ │ ├── getPropertyTitle.ts │ │ │ ├── numberToSignedString.js │ │ │ └── timeout.ts │ ├── client │ │ ├── config.js │ │ ├── serviceWorker.js │ │ └── ui │ │ │ ├── components │ │ │ ├── CardHighlight.vue │ │ │ ├── CoinValue.vue │ │ │ ├── ColorPicker.vue │ │ │ ├── ColumnLayout.vue │ │ │ ├── HexagonProgress.vue │ │ │ ├── HexagonProgressStack.vue │ │ │ ├── HorizontalHex.vue │ │ │ ├── ImageUploadInput.vue │ │ │ ├── IncrementButton.vue │ │ │ ├── IncrementMenu.vue │ │ │ ├── LabeledFab.vue │ │ │ ├── MarkdownText.vue │ │ │ ├── ResetSelector.vue │ │ │ ├── SharedIcon.vue │ │ │ ├── ToolbarCard.vue │ │ │ ├── TreeDetailLayout.vue │ │ │ ├── VerticalHex.vue │ │ │ ├── global │ │ │ │ ├── DatePicker.vue │ │ │ │ ├── DragHandle.vue │ │ │ │ ├── IconPicker.vue │ │ │ │ ├── SmartBtn.vue │ │ │ │ ├── SmartCheckbox.vue │ │ │ │ ├── SmartCombobox.vue │ │ │ │ ├── SmartImageInput.vue │ │ │ │ ├── SmartInputMixin.js │ │ │ │ ├── SmartSelect.vue │ │ │ │ ├── SmartSlider.vue │ │ │ │ ├── SmartSwitch.vue │ │ │ │ ├── SmartToggle.vue │ │ │ │ ├── SvgIcon.vue │ │ │ │ ├── TextArea.vue │ │ │ │ ├── TextField.vue │ │ │ │ └── globalIndex.js │ │ │ ├── propertyToolbar.vue │ │ │ ├── snackbars │ │ │ │ ├── SnackbarQueue.js │ │ │ │ └── SnackbarQueue.vue │ │ │ └── tree │ │ │ │ ├── TreeNode.vue │ │ │ │ ├── TreeNodeList.vue │ │ │ │ └── TreeSearchInput.vue │ │ │ ├── creature │ │ │ ├── CreatureForm.vue │ │ │ ├── CreatureFormDialog.vue │ │ │ ├── RestButton.vue │ │ │ ├── actions │ │ │ │ ├── ActionDialog.vue │ │ │ │ ├── doAction.ts │ │ │ │ └── input │ │ │ │ │ ├── AdvantageInput.vue │ │ │ │ │ ├── CastSpellInput.vue │ │ │ │ │ ├── CheckInput.vue │ │ │ │ │ ├── ChoiceInput.vue │ │ │ │ │ ├── RollInput.vue │ │ │ │ │ └── TargetsInput.vue │ │ │ ├── archive │ │ │ │ └── ArchiveDialog.vue │ │ │ ├── buildTree │ │ │ │ ├── BuildTreeNode.vue │ │ │ │ ├── BuildTreeNodeList.vue │ │ │ │ └── FillSlotButton.vue │ │ │ ├── character │ │ │ │ ├── CharacterCreationDialog.vue │ │ │ │ ├── CharacterDeleteDialog.vue │ │ │ │ ├── CharacterImportDialog.vue │ │ │ │ ├── CharacterSheet.vue │ │ │ │ ├── CharacterSheetFab.vue │ │ │ │ ├── CharacterSheetInitiative.vue │ │ │ │ ├── CharacterSheetRightDrawer.vue │ │ │ │ ├── CharacterSheetToolbar.vue │ │ │ │ ├── CreatureRootDialog.vue │ │ │ │ ├── CreatureSummary.vue │ │ │ │ ├── MiniCharacterSheet.vue │ │ │ │ ├── characterSheetTabs │ │ │ │ │ ├── ActionsTab.vue │ │ │ │ │ ├── BuildTab.vue │ │ │ │ │ ├── FeaturesTab.vue │ │ │ │ │ ├── InventoryTab.vue │ │ │ │ │ ├── JournalTab.vue │ │ │ │ │ ├── SpellsTab.vue │ │ │ │ │ ├── StatsTab.vue │ │ │ │ │ └── TreeTab.vue │ │ │ │ ├── errors │ │ │ │ │ ├── CharacterErrors.vue │ │ │ │ │ └── DependencyLoopError.vue │ │ │ │ └── printedCharacterSheet │ │ │ │ │ ├── CharacterSheetPrinted.vue │ │ │ │ │ ├── CharacterSheetPrintedToolbar.vue │ │ │ │ │ ├── PrintedInventory.vue │ │ │ │ │ ├── PrintedSpells.vue │ │ │ │ │ ├── PrintedStats.vue │ │ │ │ │ └── components │ │ │ │ │ ├── PrintedAction.vue │ │ │ │ │ ├── PrintedBlockItem.vue │ │ │ │ │ ├── PrintedContainer.vue │ │ │ │ │ ├── PrintedDamageMultipliers.vue │ │ │ │ │ ├── PrintedLineItem.vue │ │ │ │ │ ├── PrintedSkill.vue │ │ │ │ │ ├── PrintedSpell.vue │ │ │ │ │ └── PrintedSpellList.vue │ │ │ ├── creatureList │ │ │ │ ├── ArchiveButton.vue │ │ │ │ ├── CharacterListToolbarItems.vue │ │ │ │ ├── CreatureFolderHeader.vue │ │ │ │ ├── CreatureFolderList.vue │ │ │ │ ├── CreatureList.vue │ │ │ │ ├── CreatureListTile.vue │ │ │ │ └── CreatureStorageStats.vue │ │ │ ├── creatureProperties │ │ │ │ ├── Breadcrumbs.vue │ │ │ │ ├── CreaturePropertiesTree.vue │ │ │ │ ├── CreaturePropertyDialog.vue │ │ │ │ ├── CreaturePropertyFromLibraryDialog.vue │ │ │ │ └── DescendantPropertiesTree.vue │ │ │ ├── dependencyGraph │ │ │ │ └── DependencyGraphDialog.vue │ │ │ ├── experiences │ │ │ │ ├── ExperienceForm.vue │ │ │ │ ├── ExperienceInsertDialog.vue │ │ │ │ └── ExperienceListDialog.vue │ │ │ └── slots │ │ │ │ ├── LevelUpDialog.vue │ │ │ │ ├── SlotCard.vue │ │ │ │ ├── SlotCardsToFill.vue │ │ │ │ └── SlotFillDialog.vue │ │ │ ├── dialogStack │ │ │ ├── DeleteConfirmationDialog.vue │ │ │ ├── DialogBase.vue │ │ │ ├── DialogComponentIndex.js │ │ │ ├── DialogStack.vue │ │ │ ├── HelpDialog.vue │ │ │ ├── dialogStackStore.js │ │ │ ├── dialogStackWindowEvents.js │ │ │ └── mockElement.js │ │ │ ├── docs │ │ │ ├── DocBreadcrumbs.vue │ │ │ ├── DocCard.vue │ │ │ ├── DocEditForm.vue │ │ │ ├── DocListItem.vue │ │ │ ├── DocToolbar.vue │ │ │ ├── DocViewer.vue │ │ │ ├── DocsRightDrawer.vue │ │ │ └── getDocLink.js │ │ │ ├── files │ │ │ ├── ArchiveFileCard.vue │ │ │ ├── FileStorageStats.vue │ │ │ ├── UserImageList.vue │ │ │ └── userImages │ │ │ │ ├── ImageInputDialog.vue │ │ │ │ ├── ImagePreviewDialog.vue │ │ │ │ └── UserImageCard.vue │ │ │ ├── icons │ │ │ ├── IconAdmin.vue │ │ │ ├── SvgIconByName.vue │ │ │ └── importIcons.js │ │ │ ├── layouts │ │ │ ├── AppLayout.vue │ │ │ ├── ConnectionBanner.vue │ │ │ ├── Sidebar.vue │ │ │ └── SingleCardLayout.vue │ │ │ ├── library │ │ │ ├── InsertLibraryNodeButton.vue │ │ │ ├── LibraryAndNode.vue │ │ │ ├── LibraryBrowser.vue │ │ │ ├── LibraryBrowserDialog.vue │ │ │ ├── LibraryCollectionCreationDialog.vue │ │ │ ├── LibraryCollectionEditDialog.vue │ │ │ ├── LibraryCollectionHeader.vue │ │ │ ├── LibraryCollectionToolbar.vue │ │ │ ├── LibraryContentsContainer.vue │ │ │ ├── LibraryCreationDialog.vue │ │ │ ├── LibraryEditDialog.vue │ │ │ ├── LibraryList.vue │ │ │ ├── LibraryListTile.vue │ │ │ ├── LibraryNodeDialog.vue │ │ │ ├── LibraryNodeExpansionContent.vue │ │ │ ├── LibrarySecondTree.vue │ │ │ ├── MoveLibraryNodeDialog.vue │ │ │ ├── SelectLibraryNodeDialog.vue │ │ │ └── SingleLibraryToolbar.vue │ │ │ ├── log │ │ │ ├── CharacterLog.vue │ │ │ ├── LogContent.vue │ │ │ ├── LogEntry.vue │ │ │ ├── TabletopLog.vue │ │ │ ├── TabletopLogContent.vue │ │ │ └── TabletopLogEntry.vue │ │ │ ├── markdownCofig.js │ │ │ ├── pages │ │ │ ├── About.vue │ │ │ ├── Account.vue │ │ │ ├── Admin.vue │ │ │ ├── CharacterList.vue │ │ │ ├── CharacterSheetPage.vue │ │ │ ├── DocsPage.vue │ │ │ ├── Documentation.vue │ │ │ ├── EmailVerificationError.vue │ │ │ ├── EmailVerificationSuccess.vue │ │ │ ├── Feedback.vue │ │ │ ├── Files.vue │ │ │ ├── Friends.vue │ │ │ ├── FunctionReference.vue │ │ │ ├── Home.vue │ │ │ ├── InviteError.vue │ │ │ ├── InviteSuccess.vue │ │ │ ├── LaunchCountdown.vue │ │ │ ├── Library.vue │ │ │ ├── LibraryBrowser.vue │ │ │ ├── LibraryCollection.vue │ │ │ ├── Maintenance.vue │ │ │ ├── NotFound.vue │ │ │ ├── NotImplemented.vue │ │ │ ├── PatreonLevelTooLow.vue │ │ │ ├── Register.vue │ │ │ ├── ResetPassword.vue │ │ │ ├── SignIn.vue │ │ │ ├── SingleLibrary.vue │ │ │ ├── Tabletop.vue │ │ │ └── Tabletops.vue │ │ │ ├── properties │ │ │ ├── InsertPropertyDialog.vue │ │ │ ├── PropertyForm.vue │ │ │ ├── components │ │ │ │ ├── PropertyCard.vue │ │ │ │ ├── actions │ │ │ │ │ ├── ActionCard.vue │ │ │ │ │ ├── ActionConditionView.vue │ │ │ │ │ ├── AttributeConsumedView.vue │ │ │ │ │ ├── EventButton.vue │ │ │ │ │ ├── ItemConsumedView.vue │ │ │ │ │ └── SelectItemToConsume.vue │ │ │ │ ├── attributes │ │ │ │ │ ├── AbilityListTile.vue │ │ │ │ │ ├── AttributeCard.vue │ │ │ │ │ ├── AttributeCardContent.vue │ │ │ │ │ ├── AttributeEffect.vue │ │ │ │ │ ├── HealthBar.vue │ │ │ │ │ ├── HealthBarProgress.vue │ │ │ │ │ ├── HitDiceListTile.vue │ │ │ │ │ ├── ResourceCard.vue │ │ │ │ │ ├── ResourceCardContent.vue │ │ │ │ │ ├── SpellSlotCard.vue │ │ │ │ │ ├── SpellSlotListTile.vue │ │ │ │ │ └── SplitListLayout.vue │ │ │ │ ├── buffs │ │ │ │ │ └── BuffListItem.vue │ │ │ │ ├── damageMultipliers │ │ │ │ │ └── DamageMultiplierCard.vue │ │ │ │ ├── effects │ │ │ │ │ └── InlineEffect.vue │ │ │ │ ├── features │ │ │ │ │ └── FeatureCard.vue │ │ │ │ ├── folders │ │ │ │ │ ├── FolderGroupCard.vue │ │ │ │ │ ├── folderGroupComponents │ │ │ │ │ │ ├── ActionGroupComponent.vue │ │ │ │ │ │ ├── AttributeGroupComponent.vue │ │ │ │ │ │ ├── FolderGroupChildren.vue │ │ │ │ │ │ └── SlotBuildTree.vue │ │ │ │ │ ├── propertyComponentIndex.js │ │ │ │ │ └── tabFoldersMixin.js │ │ │ │ ├── inventory │ │ │ │ │ ├── ContainerCard.vue │ │ │ │ │ ├── ItemList.vue │ │ │ │ │ └── ItemListTile.vue │ │ │ │ ├── persona │ │ │ │ │ └── NoteCard.vue │ │ │ │ ├── pointBuy │ │ │ │ │ └── PointBuyCard.vue │ │ │ │ ├── proficiencies │ │ │ │ │ └── InlineProficiency.vue │ │ │ │ ├── skills │ │ │ │ │ ├── SkillListTile.vue │ │ │ │ │ └── SkillProficiency.vue │ │ │ │ ├── spells │ │ │ │ │ ├── CastSpellWithSlotDialog.vue │ │ │ │ │ ├── SpellList.vue │ │ │ │ │ ├── SpellListCard.vue │ │ │ │ │ ├── SpellListTile.vue │ │ │ │ │ └── spellsWithSubheaders.js │ │ │ │ └── toggles │ │ │ │ │ └── ToggleCard.vue │ │ │ ├── forms │ │ │ │ ├── ActionConditionForm.vue │ │ │ │ ├── ActionConditionsListForm.vue │ │ │ │ ├── ActionForm.vue │ │ │ │ ├── AdjustmentForm.vue │ │ │ │ ├── AttributeConsumedForm.vue │ │ │ │ ├── AttributeForm.vue │ │ │ │ ├── AttributesConsumedListForm.vue │ │ │ │ ├── BranchForm.vue │ │ │ │ ├── BuffForm.vue │ │ │ │ ├── BuffRemoverForm.vue │ │ │ │ ├── ClassForm.vue │ │ │ │ ├── ClassLevelForm.vue │ │ │ │ ├── ConstantForm.vue │ │ │ │ ├── ContainerForm.vue │ │ │ │ ├── CreatureTemplateForm.vue │ │ │ │ ├── DamageForm.vue │ │ │ │ ├── DamageMultiplierForm.vue │ │ │ │ ├── EffectForm.vue │ │ │ │ ├── FeatureForm.vue │ │ │ │ ├── FolderForm.vue │ │ │ │ ├── ItemConsumedForm.vue │ │ │ │ ├── ItemForm.vue │ │ │ │ ├── ItemsConsumedListForm.vue │ │ │ │ ├── NoteForm.vue │ │ │ │ ├── PointBuyForm.vue │ │ │ │ ├── PointBuySpendForm.vue │ │ │ │ ├── ProficiencyForm.vue │ │ │ │ ├── ReferenceForm.vue │ │ │ │ ├── ResourcesForm.vue │ │ │ │ ├── RollForm.vue │ │ │ │ ├── SavingThrowForm.vue │ │ │ │ ├── SkillForm.vue │ │ │ │ ├── SlotForm.vue │ │ │ │ ├── SpellForm.vue │ │ │ │ ├── SpellListForm.vue │ │ │ │ ├── ToggleForm.vue │ │ │ │ ├── TriggerForm.vue │ │ │ │ └── shared │ │ │ │ │ ├── CalculationErrorList.vue │ │ │ │ │ ├── ComputedField.vue │ │ │ │ │ ├── FormSection.vue │ │ │ │ │ ├── FormSections.vue │ │ │ │ │ ├── IconColorMenu.vue │ │ │ │ │ ├── InlineComputationField.vue │ │ │ │ │ ├── ProficiencySelect.vue │ │ │ │ │ ├── TagTargeting.vue │ │ │ │ │ ├── lists │ │ │ │ │ ├── attributeListMixin.js │ │ │ │ │ ├── createListOfProperties.js │ │ │ │ │ ├── saveListMixin.js │ │ │ │ │ └── skillListMixin.js │ │ │ │ │ ├── propertyFormIndex.js │ │ │ │ │ ├── propertyFormMixin.js │ │ │ │ │ └── schemaFormMixin.js │ │ │ ├── shared │ │ │ │ ├── ProficiencyIcon.vue │ │ │ │ ├── PropertyIcon.vue │ │ │ │ ├── PropertySelectCard.vue │ │ │ │ ├── PropertySelector.vue │ │ │ │ ├── PropertyViewer.vue │ │ │ │ ├── SelectablePropertyDialog.vue │ │ │ │ └── getPropertyTitle.js │ │ │ ├── treeNodeViews │ │ │ │ ├── AdjustmentTreeNode.vue │ │ │ │ ├── BranchTreeNode.vue │ │ │ │ ├── ClassLevelTreeNode.vue │ │ │ │ ├── DamageTreeNode.vue │ │ │ │ ├── DefaultTreeNode.vue │ │ │ │ ├── EffectTreeNode.vue │ │ │ │ ├── ItemTreeNode.vue │ │ │ │ ├── ProficiencyTreeNode.vue │ │ │ │ ├── ReferenceTreeNode.vue │ │ │ │ ├── SavingThrowTreeNode.vue │ │ │ │ ├── TreeNodeView.vue │ │ │ │ ├── treeNodeViewIndex.js │ │ │ │ └── treeNodeViewMixin.js │ │ │ └── viewers │ │ │ │ ├── ActionViewer.vue │ │ │ │ ├── AdjustmentViewer.vue │ │ │ │ ├── AttributeViewer.vue │ │ │ │ ├── BranchViewer.vue │ │ │ │ ├── BuffRemoverViewer.vue │ │ │ │ ├── BuffViewer.vue │ │ │ │ ├── ClassLevelViewer.vue │ │ │ │ ├── ClassViewer.vue │ │ │ │ ├── ConstantViewer.vue │ │ │ │ ├── ContainerViewer.vue │ │ │ │ ├── CreatureTemplateViewer.vue │ │ │ │ ├── DamageMultiplierViewer.vue │ │ │ │ ├── DamageViewer.vue │ │ │ │ ├── EffectViewer.vue │ │ │ │ ├── FeatureViewer.vue │ │ │ │ ├── FolderViewer.vue │ │ │ │ ├── ItemViewer.vue │ │ │ │ ├── NoteViewer.vue │ │ │ │ ├── PointBuyViewer.vue │ │ │ │ ├── ProficiencyViewer.vue │ │ │ │ ├── ReferenceViewer.vue │ │ │ │ ├── RollViewer.vue │ │ │ │ ├── SavingThrowViewer.vue │ │ │ │ ├── SkillViewer.vue │ │ │ │ ├── SlotFillerViewer.vue │ │ │ │ ├── SlotViewer.vue │ │ │ │ ├── SpellListViewer.vue │ │ │ │ ├── SpellViewer.vue │ │ │ │ ├── ToggleViewer.vue │ │ │ │ ├── TriggerViewer.vue │ │ │ │ └── shared │ │ │ │ ├── ImageField.vue │ │ │ │ ├── OutlinedInput.vue │ │ │ │ ├── PropertyDescription.vue │ │ │ │ ├── PropertyField.vue │ │ │ │ ├── PropertyName.vue │ │ │ │ ├── PropertyTags.vue │ │ │ │ ├── PropertyTargetTags.vue │ │ │ │ ├── PropertyVariableName.vue │ │ │ │ ├── propertyViewerIndex.js │ │ │ │ └── propertyViewerMixin.js │ │ │ ├── router.js │ │ │ ├── sharing │ │ │ ├── ShareDialog.vue │ │ │ └── TransferOwnershipDialog.vue │ │ │ ├── styles │ │ │ ├── body.css │ │ │ ├── cardColors.css │ │ │ ├── cardTitles.css │ │ │ ├── centeredInputs.css │ │ │ ├── denseLists.css │ │ │ ├── fitAvatars.css │ │ │ ├── inheritBackgrounds.css │ │ │ ├── largeFormatInputs.css │ │ │ ├── lineClamp.css │ │ │ ├── markdown.css │ │ │ ├── speedDial.css │ │ │ ├── stylesIndex.js │ │ │ └── toolbarFlex.css │ │ │ ├── tabletop │ │ │ ├── CharacterSheetDialog.vue │ │ │ ├── CreatureFromLibraryDialog.vue │ │ │ ├── SelectCreaturesDialog.vue │ │ │ ├── TabletopActionCard.vue │ │ │ ├── TabletopBuffCard.vue │ │ │ ├── TabletopComponent.vue │ │ │ ├── TabletopCreatureCard.vue │ │ │ ├── TabletopCreatureListItem.vue │ │ │ ├── TabletopDialog.vue │ │ │ ├── TabletopForm.vue │ │ │ ├── TabletopLogStream.vue │ │ │ ├── TabletopLogStreamEntry.vue │ │ │ ├── TabletopMap.vue │ │ │ ├── TabletopRightDrawer.vue │ │ │ ├── TabletopToolbar.vue │ │ │ ├── TabletopUserList.vue │ │ │ ├── TabletopViewer.vue │ │ │ └── selectedCreatureBar │ │ │ │ ├── CreatureBarIcon.vue │ │ │ │ ├── CreaturePortrait.vue │ │ │ │ └── SelectedCreatureBar.vue │ │ │ ├── themes.js │ │ │ ├── user │ │ │ ├── DeleteUserAccountDialog.vue │ │ │ ├── InviteDialog.vue │ │ │ ├── TierTooLowDialog.vue │ │ │ └── UsernameDialog.vue │ │ │ ├── utility │ │ │ ├── getEffectIcon.js │ │ │ ├── getProficiencyIcon.js │ │ │ ├── getThemeColor.js │ │ │ ├── getThumbHash.js │ │ │ ├── isDarkColor.js │ │ │ ├── numberFormatter.js │ │ │ ├── romanize.js │ │ │ ├── sortEffects.js │ │ │ ├── swapCase.js │ │ │ └── valueToCoins.js │ │ │ ├── vueSetup.js │ │ │ ├── vuetify.js │ │ │ └── vuexStore.js │ ├── constants │ │ ├── BUILT_IN_TAGS.js │ │ ├── DAMAGE_TYPES.js │ │ ├── INLINE_CALCULATION_REGEX.js │ │ ├── LAUNCH_DATE.js │ │ ├── MAINTENANCE_MODE.js │ │ ├── MONGO_OPERATORS.js │ │ ├── PROPERTIES.js │ │ ├── RESERVED_VARIABLE_NAMES.js │ │ ├── SCHEMA_OPTIONS.js │ │ ├── SCHEMA_VERSION.js │ │ ├── STORAGE_LIMITS.js │ │ ├── SVG_ICONS.js │ │ ├── VARIABLE_NAME_REGEX.js │ │ └── VERSION.js │ ├── migrations │ │ ├── apiCreature │ │ │ ├── cleanApiCreatureAtCurrent.js │ │ │ ├── migrateApiCreature.js │ │ │ └── migrateApiCreature2To3.js │ │ ├── archive │ │ │ ├── cleanArchiveAtCurrent.js │ │ │ ├── migrateArchive.js │ │ │ ├── migrateArchive1To2.js │ │ │ ├── migrateArchive2To3.js │ │ │ ├── migrateArchiveTo1.js │ │ │ └── properties │ │ │ │ └── migrateProperty2To3.js │ │ ├── methods │ │ │ ├── getVersion.js │ │ │ ├── index.js │ │ │ ├── migrateTo.js │ │ │ └── validateDatabase.js │ │ └── server │ │ │ ├── dbv1 │ │ │ ├── dbv1.js │ │ │ └── dbv1.test.js │ │ │ ├── dbv2 │ │ │ ├── dbv2.js │ │ │ └── dbv2.test.js │ │ │ ├── dbv3 │ │ │ ├── dbv3.test.ts │ │ │ └── dbv3.ts │ │ │ ├── index.js │ │ │ ├── transformFields.js │ │ │ └── transformFields.test.js │ ├── parser │ │ ├── functions.ts │ │ ├── grammar.js │ │ ├── grammar.ne │ │ ├── map.ts │ │ ├── parseTree │ │ │ ├── ParseNode.ts │ │ │ ├── accessor.test.ts │ │ │ ├── accessor.ts │ │ │ ├── array.ts │ │ │ ├── call.test.ts │ │ │ ├── call.ts │ │ │ ├── constant.ts │ │ │ ├── error.ts │ │ │ ├── if.ts │ │ │ ├── index.ts │ │ │ ├── indexNode.ts │ │ │ ├── not.ts │ │ │ ├── operator.ts │ │ │ ├── parenthesis.ts │ │ │ ├── roll.ts │ │ │ ├── rollArray.ts │ │ │ └── unaryOperator.ts │ │ ├── parser.test.js │ │ ├── parser.ts │ │ ├── readme.md │ │ ├── resolve.ts │ │ ├── rollDice.ts │ │ ├── toPrimitiveOrString.ts │ │ ├── toString.ts │ │ ├── traverse.ts │ │ └── types │ │ │ ├── Context.ts │ │ │ ├── MapFunction.ts │ │ │ ├── ResolveFunction.ts │ │ │ ├── ResolveLevel.ts │ │ │ ├── ResolveLevelFunction.ts │ │ │ ├── ResolveOthersFunction.ts │ │ │ ├── ResolvedResult.ts │ │ │ ├── ToStringFunction.ts │ │ │ └── TraverseFunction.ts │ └── server │ │ ├── config │ │ ├── SimpleRestConfig.js │ │ ├── SyncedCronConfig.js │ │ ├── accountsEmailConfig.js │ │ ├── emailTemplate.js │ │ ├── limitLoginTokens.js │ │ ├── publicationStrategies.js │ │ ├── redisCaching.js │ │ ├── simpleSchemaDebug.js │ │ └── throwUnresolvedPromises.test.ts │ │ ├── cron │ │ └── deleteSoftRemovedDocuments.js │ │ ├── discord │ │ └── sendWebhook.js │ │ ├── publications │ │ ├── archiveFiles.js │ │ ├── characterList.js │ │ ├── creatureTemplates.js │ │ ├── docs.js │ │ ├── experiences.js │ │ ├── icons.js │ │ ├── index.js │ │ ├── library.js │ │ ├── ownedDocuments.js │ │ ├── publicationRateLimit.js │ │ ├── searchLibraryNodes.js │ │ ├── singleCharacter.js │ │ ├── slotFillers.js │ │ ├── tabletops.js │ │ ├── userImages.js │ │ └── users.js │ │ └── rest │ │ ├── apiPublications │ │ ├── creature.js │ │ ├── healthCheck.js │ │ └── index.js │ │ ├── index.js │ │ ├── middleware │ │ └── authenticateUserByToken.js │ │ └── restLogin.js ├── package-lock.json ├── package.json ├── packages │ ├── accounts-patreon │ │ ├── .gitignore │ │ ├── package.js │ │ └── patreon.js │ └── patreon-oauth │ │ ├── README.md │ │ ├── package.js │ │ ├── patreon_client.js │ │ └── patreon_server.js ├── private │ └── docs │ │ ├── defaultDocs.json │ │ └── property │ │ ├── skill.md │ │ └── spell-list.md ├── public │ ├── android-chrome-144x144.png │ ├── android-chrome-192x192.png │ ├── android-chrome-36x36.png │ ├── android-chrome-48x48.png │ ├── android-chrome-72x72.png │ ├── android-chrome-96x96.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── crown-dice-logo-cropped-transparent.png │ ├── favicon-16x16.png │ ├── favicon-194x194.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── fonts │ │ ├── game-icons.eot │ │ ├── game-icons.ttf │ │ └── game-icons.woff │ ├── images │ │ ├── animated │ │ │ └── crown-dice-bounce.png │ │ ├── battlemap.webp │ │ ├── crown-dice-on-ipad.webp │ │ ├── docs │ │ │ ├── dependency-loop.png │ │ │ └── walkthroughs │ │ │ │ ├── create-a-class-1.png │ │ │ │ ├── create-a-class-2.png │ │ │ │ ├── create-a-class-3.png │ │ │ │ ├── create-a-class-4.png │ │ │ │ ├── create-a-class-5.png │ │ │ │ └── create-a-class-6.png │ │ ├── paper-dice-crown.webp │ │ ├── paragons │ │ │ ├── blue.png │ │ │ ├── dai.png │ │ │ ├── kira.png │ │ │ ├── lordOfJunk.png │ │ │ ├── satherian.png │ │ │ ├── vibes.png │ │ │ └── vinton.png │ │ ├── print │ │ │ ├── doubleLineImageBorder.png │ │ │ ├── horizontalLine.png │ │ │ ├── octagonBorder.png │ │ │ ├── shieldBorder.png │ │ │ └── upwardPointingBorder.png │ │ ├── screenshots │ │ │ ├── actions.webp │ │ │ ├── auditable.webp │ │ │ ├── automated-dice-rolls.webp │ │ │ ├── build-system.webp │ │ │ ├── inventory.webp │ │ │ ├── libraries-of-content.webp │ │ │ ├── printing.webp │ │ │ └── send-to-discord.webp │ │ └── ui │ │ │ └── missing-portrait.png │ ├── manifest.json │ ├── models │ │ └── example-mini.stl │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ └── sw.js ├── redis-settings.json ├── server │ └── main.js └── tsconfig.json └── docker-compose.yml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/Dockerfile -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /app/.meteor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/.meteor/.gitignore -------------------------------------------------------------------------------- /app/.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/.meteor/.id -------------------------------------------------------------------------------- /app/.meteor/cordova-plugins: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/.meteor/packages -------------------------------------------------------------------------------- /app/.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /app/.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@2.16 2 | -------------------------------------------------------------------------------- /app/.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/.meteor/versions -------------------------------------------------------------------------------- /app/client/game-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/client/game-icons.css -------------------------------------------------------------------------------- /app/client/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/client/head.html -------------------------------------------------------------------------------- /app/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/client/index.html -------------------------------------------------------------------------------- /app/client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/client/main.js -------------------------------------------------------------------------------- /app/exampleMeteorSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/exampleMeteorSettings.json -------------------------------------------------------------------------------- /app/imports/@types/ddp-rate-limiter-mixin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/@types/ddp-rate-limiter-mixin.d.ts -------------------------------------------------------------------------------- /app/imports/@types/ddp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/@types/ddp.d.ts -------------------------------------------------------------------------------- /app/imports/@types/meteor-ostrio-files.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/@types/meteor-ostrio-files.d.ts -------------------------------------------------------------------------------- /app/imports/@types/meteor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/@types/meteor.d.ts -------------------------------------------------------------------------------- /app/imports/@types/mongo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/@types/mongo.d.ts -------------------------------------------------------------------------------- /app/imports/@types/validated-method.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/@types/validated-method.d.ts -------------------------------------------------------------------------------- /app/imports/@types/vue-meteor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/@types/vue-meteor.d.ts -------------------------------------------------------------------------------- /app/imports/api/creature/archive/ArchiveCreatureFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/archive/ArchiveCreatureFiles.js -------------------------------------------------------------------------------- /app/imports/api/creature/archive/methods/archiveCreatureToFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/archive/methods/archiveCreatureToFile.js -------------------------------------------------------------------------------- /app/imports/api/creature/archive/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/archive/methods/index.js -------------------------------------------------------------------------------- /app/imports/api/creature/archive/methods/removeArchiveCreature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/archive/methods/removeArchiveCreature.js -------------------------------------------------------------------------------- /app/imports/api/creature/archive/methods/restoreCreatureFromFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/archive/methods/restoreCreatureFromFile.js -------------------------------------------------------------------------------- /app/imports/api/creature/archive/methods/verifyArchiveSafety.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/archive/methods/verifyArchiveSafety.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureFolders/CreatureFolders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureFolders/CreatureFolders.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureFolders/methods.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureFolders/methods.js/index.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/CreatureProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/CreatureProperties.ts -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/getRootCreatureAncestor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/getRootCreatureAncestor.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/methods/adjustQuantity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/methods/adjustQuantity.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/methods/equipItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/methods/equipItem.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/methods/flipToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/methods/flipToggle.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/methods/getParentByTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/methods/getParentByTag.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/methods/index.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/methods/insertProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/methods/insertProperty.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/methods/pushToProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/methods/pushToProperty.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/methods/restoreProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/methods/restoreProperty.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatureProperties/methods/selectAmmoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatureProperties/methods/selectAmmoItem.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/CreatureVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/CreatureVariables.ts -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/Creatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/Creatures.ts -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/creaturePermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/creaturePermissions.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/defaultCharacterProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/defaultCharacterProperties.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/getCreatureUrlName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/getCreatureUrlName.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/methods/assertHasCharacterSlots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/methods/assertHasCharacterSlots.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/methods/changeAllowedLibraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/methods/changeAllowedLibraries.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/methods/index.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/methods/insertCreature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/methods/insertCreature.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/methods/removeCreature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/methods/removeCreature.js -------------------------------------------------------------------------------- /app/imports/api/creature/creatures/methods/updateCreature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/creatures/methods/updateCreature.js -------------------------------------------------------------------------------- /app/imports/api/creature/experience/Experiences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/experience/Experiences.js -------------------------------------------------------------------------------- /app/imports/api/creature/journal/JournalEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/journal/JournalEntry.js -------------------------------------------------------------------------------- /app/imports/api/creature/log/CreatureLogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/log/CreatureLogs.js -------------------------------------------------------------------------------- /app/imports/api/creature/log/LogContentSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/log/LogContentSchema.ts -------------------------------------------------------------------------------- /app/imports/api/creature/mixins/creaturePermissionMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/mixins/creaturePermissionMixin.js -------------------------------------------------------------------------------- /app/imports/api/creature/mixins/simpleSchemaMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/mixins/simpleSchemaMixin.js -------------------------------------------------------------------------------- /app/imports/api/creature/mixins/updateSchemaMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/creature/mixins/updateSchemaMixin.js -------------------------------------------------------------------------------- /app/imports/api/docs/Docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/docs/Docs.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/EngineActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/EngineActions.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/applyActionProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/applyActionProperty.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/applyBranchProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/applyBranchProperty.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/applyBuffProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/applyBuffProperty.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/applyDamageProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/applyDamageProperty.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/applyFolderProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/applyFolderProperty.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/applyNoteProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/applyNoteProperty.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/applyRollProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/applyRollProperty.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/applyToggleProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/applyToggleProperty.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/applyTriggerProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/applyTriggerProperty.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/applyProperties/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/applyProperties/index.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/actionEngineTest.testFn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/actionEngineTest.testFn.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/applyAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/applyAction.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/applyTaskGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/applyTaskGroups.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/getEffectiveActionScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/getEffectiveActionScope.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/mutationToLogUpdates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/mutationToLogUpdates.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/mutationToPropUpdates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/mutationToPropUpdates.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/recalculateCalculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/recalculateCalculation.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/spendResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/spendResources.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/userInput/InputProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/userInput/InputProvider.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/userInput/saveInputChoices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/userInput/saveInputChoices.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/functions/writeActionResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/functions/writeActionResults.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/methods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/methods/index.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/methods/insertAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/methods/insertAction.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/methods/runAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/methods/runAction.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/methods/updateAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/methods/updateAction.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/tasks/Task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/tasks/Task.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/tasks/TaskResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/tasks/TaskResult.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/tasks/applyCastSpellTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/tasks/applyCastSpellTask.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/tasks/applyCheckTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/tasks/applyCheckTask.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/tasks/applyDamagePropTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/tasks/applyDamagePropTask.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/tasks/applyItemAsAmmoTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/tasks/applyItemAsAmmoTask.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/tasks/applyResetTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/tasks/applyResetTask.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/tasks/applyTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/tasks/applyTask.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/test/applySilencedProps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/test/applySilencedProps.test.ts -------------------------------------------------------------------------------- /app/imports/api/engine/action/test/diceRollFunctions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/action/test/diceRollFunctions.test.ts -------------------------------------------------------------------------------- /app/imports/api/engine/computation/CreatureComputation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/CreatureComputation.ts -------------------------------------------------------------------------------- /app/imports/api/engine/computation/buildComputation/linkInventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/buildComputation/linkInventory.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/buildCreatureComputation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/buildCreatureComputation.test.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/buildCreatureComputation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/buildCreatureComputation.ts -------------------------------------------------------------------------------- /app/imports/api/engine/computation/computeComputation/computeByType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/computeComputation/computeByType.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/computeComputation/tstFns/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/computeComputation/tstFns/index.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/computeCreatureComputation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/computeCreatureComputation.test.ts -------------------------------------------------------------------------------- /app/imports/api/engine/computation/computeCreatureComputation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/computeCreatureComputation.ts -------------------------------------------------------------------------------- /app/imports/api/engine/computation/computeTagTargetedEffects.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/computeTagTargetedEffects.test.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/test/tagTargetBaseValue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/test/tagTargetBaseValue.test.ts -------------------------------------------------------------------------------- /app/imports/api/engine/computation/utility/applyFnToKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/utility/applyFnToKey.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/utility/applyFnToKey.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/utility/applyFnToKey.test.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/utility/cleanProp.testFn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/utility/cleanProp.testFn.ts -------------------------------------------------------------------------------- /app/imports/api/engine/computation/utility/collate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/utility/collate.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/utility/cyrb53.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/utility/cyrb53.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/utility/embedInlineCalculations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/utility/embedInlineCalculations.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/utility/getEffectivePropTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/utility/getEffectivePropTags.js -------------------------------------------------------------------------------- /app/imports/api/engine/computation/utility/propsFromForest.testFn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/utility/propsFromForest.testFn.ts -------------------------------------------------------------------------------- /app/imports/api/engine/computation/utility/walkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/utility/walkdown.ts -------------------------------------------------------------------------------- /app/imports/api/engine/computation/writeComputation/writeScope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computation/writeComputation/writeScope.js -------------------------------------------------------------------------------- /app/imports/api/engine/computeCreature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/computeCreature.ts -------------------------------------------------------------------------------- /app/imports/api/engine/loadCreatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/loadCreatures.ts -------------------------------------------------------------------------------- /app/imports/api/engine/shared/bulkWrite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/engine/shared/bulkWrite.ts -------------------------------------------------------------------------------- /app/imports/api/files/assertUserHasFileSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/files/assertUserHasFileSpace.ts -------------------------------------------------------------------------------- /app/imports/api/files/client/s3FileStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/files/client/s3FileStorage.js -------------------------------------------------------------------------------- /app/imports/api/files/server/s3FileStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/files/server/s3FileStorage.ts -------------------------------------------------------------------------------- /app/imports/api/files/userImages/UserImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/files/userImages/UserImages.ts -------------------------------------------------------------------------------- /app/imports/api/files/userImages/methods/index.js: -------------------------------------------------------------------------------- 1 | import './removeUserImage'; 2 | -------------------------------------------------------------------------------- /app/imports/api/files/userImages/methods/removeUserImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/files/userImages/methods/removeUserImage.ts -------------------------------------------------------------------------------- /app/imports/api/getModifierFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/getModifierFields.js -------------------------------------------------------------------------------- /app/imports/api/icons/Icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/icons/Icons.ts -------------------------------------------------------------------------------- /app/imports/api/library/Libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/Libraries.js -------------------------------------------------------------------------------- /app/imports/api/library/LibraryCollections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/LibraryCollections.js -------------------------------------------------------------------------------- /app/imports/api/library/LibraryNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/LibraryNodes.ts -------------------------------------------------------------------------------- /app/imports/api/library/getCreatureLibraryIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/getCreatureLibraryIds.js -------------------------------------------------------------------------------- /app/imports/api/library/getUserLibraryIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/getUserLibraryIds.js -------------------------------------------------------------------------------- /app/imports/api/library/methods/copyLibraryNodeTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/methods/copyLibraryNodeTo.js -------------------------------------------------------------------------------- /app/imports/api/library/methods/duplicateLibraryNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/methods/duplicateLibraryNode.js -------------------------------------------------------------------------------- /app/imports/api/library/methods/getDefaultSlotFiller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/methods/getDefaultSlotFiller.js -------------------------------------------------------------------------------- /app/imports/api/library/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/methods/index.js -------------------------------------------------------------------------------- /app/imports/api/library/methods/updateReferenceNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/library/methods/updateReferenceNode.js -------------------------------------------------------------------------------- /app/imports/api/parenting/ChildSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/parenting/ChildSchema.ts -------------------------------------------------------------------------------- /app/imports/api/parenting/SoftRemovableSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/parenting/SoftRemovableSchema.js -------------------------------------------------------------------------------- /app/imports/api/parenting/organizeMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/parenting/organizeMethods.js -------------------------------------------------------------------------------- /app/imports/api/parenting/parentingFunctions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/parenting/parentingFunctions.test.ts -------------------------------------------------------------------------------- /app/imports/api/parenting/parentingFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/parenting/parentingFunctions.ts -------------------------------------------------------------------------------- /app/imports/api/parenting/softRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/parenting/softRemove.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Actions.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Adjustments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Adjustments.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Attributes.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Branches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Branches.ts -------------------------------------------------------------------------------- /app/imports/api/properties/BuffRemovers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/BuffRemovers.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Buffs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Buffs.ts -------------------------------------------------------------------------------- /app/imports/api/properties/ClassLevels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/ClassLevels.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Classes.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Constants.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Containers.ts -------------------------------------------------------------------------------- /app/imports/api/properties/CreatureTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/CreatureTemplates.ts -------------------------------------------------------------------------------- /app/imports/api/properties/DamageMultipliers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/DamageMultipliers.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Damages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Damages.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Effects.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Features.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Folders.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Items.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Notes.ts -------------------------------------------------------------------------------- /app/imports/api/properties/PointBuys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/PointBuys.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Proficiencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Proficiencies.ts -------------------------------------------------------------------------------- /app/imports/api/properties/PropertyType.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/PropertyType.type.ts -------------------------------------------------------------------------------- /app/imports/api/properties/References.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/References.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Rolls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Rolls.ts -------------------------------------------------------------------------------- /app/imports/api/properties/SavingThrows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/SavingThrows.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Skills.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Slots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Slots.ts -------------------------------------------------------------------------------- /app/imports/api/properties/SpellLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/SpellLists.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Spells.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Spells.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Toggles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Toggles.ts -------------------------------------------------------------------------------- /app/imports/api/properties/Triggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/Triggers.ts -------------------------------------------------------------------------------- /app/imports/api/properties/computedOnlyPropertySchemasIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/computedOnlyPropertySchemasIndex.js -------------------------------------------------------------------------------- /app/imports/api/properties/computedPropertySchemasIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/computedPropertySchemasIndex.js -------------------------------------------------------------------------------- /app/imports/api/properties/propertySchemasIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/propertySchemasIndex.js -------------------------------------------------------------------------------- /app/imports/api/properties/subSchemas/AdjustmentSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/subSchemas/AdjustmentSchema.ts -------------------------------------------------------------------------------- /app/imports/api/properties/subSchemas/ColorSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/subSchemas/ColorSchema.ts -------------------------------------------------------------------------------- /app/imports/api/properties/subSchemas/ErrorSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/subSchemas/ErrorSchema.ts -------------------------------------------------------------------------------- /app/imports/api/properties/subSchemas/InlineComputationSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/subSchemas/InlineComputationSchema.js -------------------------------------------------------------------------------- /app/imports/api/properties/subSchemas/RollDetailsSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/subSchemas/RollDetailsSchema.js -------------------------------------------------------------------------------- /app/imports/api/properties/subSchemas/TagTargetingSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/subSchemas/TagTargetingSchema.ts -------------------------------------------------------------------------------- /app/imports/api/properties/subSchemas/computedField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/subSchemas/computedField.ts -------------------------------------------------------------------------------- /app/imports/api/properties/subSchemas/createPropertySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/subSchemas/createPropertySchema.ts -------------------------------------------------------------------------------- /app/imports/api/properties/subSchemas/inlineCalculationField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/properties/subSchemas/inlineCalculationField.ts -------------------------------------------------------------------------------- /app/imports/api/sharing/SharingSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/sharing/SharingSchema.ts -------------------------------------------------------------------------------- /app/imports/api/sharing/sharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/sharing/sharing.js -------------------------------------------------------------------------------- /app/imports/api/sharing/sharingPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/sharing/sharingPermissions.ts -------------------------------------------------------------------------------- /app/imports/api/simpleSchemaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/simpleSchemaConfig.js -------------------------------------------------------------------------------- /app/imports/api/tabletop/Messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/Messages.js -------------------------------------------------------------------------------- /app/imports/api/tabletop/TabletopMaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/TabletopMaps.js -------------------------------------------------------------------------------- /app/imports/api/tabletop/TabletopObjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/TabletopObjects.js -------------------------------------------------------------------------------- /app/imports/api/tabletop/Tabletops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/Tabletops.ts -------------------------------------------------------------------------------- /app/imports/api/tabletop/functions/denormalizeTabletopPropCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/functions/denormalizeTabletopPropCount.ts -------------------------------------------------------------------------------- /app/imports/api/tabletop/methods/addCreaturesFromLibraryToTabletop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/methods/addCreaturesFromLibraryToTabletop.ts -------------------------------------------------------------------------------- /app/imports/api/tabletop/methods/addCreaturesToTabletop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/methods/addCreaturesToTabletop.js -------------------------------------------------------------------------------- /app/imports/api/tabletop/methods/insertTabletop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/methods/insertTabletop.js -------------------------------------------------------------------------------- /app/imports/api/tabletop/methods/removeCreatureFromTabletop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/methods/removeCreatureFromTabletop.ts -------------------------------------------------------------------------------- /app/imports/api/tabletop/methods/removeTabletop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/methods/removeTabletop.js -------------------------------------------------------------------------------- /app/imports/api/tabletop/methods/shared/tabletopLimits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/methods/shared/tabletopLimits.ts -------------------------------------------------------------------------------- /app/imports/api/tabletop/methods/shared/tabletopPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/methods/shared/tabletopPermissions.ts -------------------------------------------------------------------------------- /app/imports/api/tabletop/methods/updateTabletop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/methods/updateTabletop.js -------------------------------------------------------------------------------- /app/imports/api/tabletop/methods/updateTabletopSharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/tabletop/methods/updateTabletopSharing.js -------------------------------------------------------------------------------- /app/imports/api/users/Invites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/Invites.js -------------------------------------------------------------------------------- /app/imports/api/users/Users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/Users.js -------------------------------------------------------------------------------- /app/imports/api/users/methods/addEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/methods/addEmail.js -------------------------------------------------------------------------------- /app/imports/api/users/methods/deleteMyAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/methods/deleteMyAccount.js -------------------------------------------------------------------------------- /app/imports/api/users/methods/linkWithPatreon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/methods/linkWithPatreon.js -------------------------------------------------------------------------------- /app/imports/api/users/methods/removeEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/methods/removeEmail.js -------------------------------------------------------------------------------- /app/imports/api/users/methods/updateFileStorageUsed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/methods/updateFileStorageUsed.js -------------------------------------------------------------------------------- /app/imports/api/users/patreon/getEntitledCents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/patreon/getEntitledCents.js -------------------------------------------------------------------------------- /app/imports/api/users/patreon/tiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/patreon/tiers.js -------------------------------------------------------------------------------- /app/imports/api/users/patreon/updatePatreonDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/patreon/updatePatreonDetails.js -------------------------------------------------------------------------------- /app/imports/api/users/patreon/updatePatreonOnLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/users/patreon/updatePatreonOnLogin.js -------------------------------------------------------------------------------- /app/imports/api/utility/TypedSimpleSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/utility/TypedSimpleSchema.ts -------------------------------------------------------------------------------- /app/imports/api/utility/asyncMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/utility/asyncMap.ts -------------------------------------------------------------------------------- /app/imports/api/utility/escapeRegex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/utility/escapeRegex.js -------------------------------------------------------------------------------- /app/imports/api/utility/getPropertyTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/utility/getPropertyTitle.ts -------------------------------------------------------------------------------- /app/imports/api/utility/numberToSignedString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/utility/numberToSignedString.js -------------------------------------------------------------------------------- /app/imports/api/utility/timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/api/utility/timeout.ts -------------------------------------------------------------------------------- /app/imports/client/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/config.js -------------------------------------------------------------------------------- /app/imports/client/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/serviceWorker.js -------------------------------------------------------------------------------- /app/imports/client/ui/components/CardHighlight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/CardHighlight.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/CoinValue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/CoinValue.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/ColorPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/ColorPicker.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/ColumnLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/ColumnLayout.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/HexagonProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/HexagonProgress.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/HexagonProgressStack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/HexagonProgressStack.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/HorizontalHex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/HorizontalHex.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/ImageUploadInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/ImageUploadInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/IncrementButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/IncrementButton.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/IncrementMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/IncrementMenu.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/LabeledFab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/LabeledFab.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/MarkdownText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/MarkdownText.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/ResetSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/ResetSelector.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/SharedIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/SharedIcon.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/ToolbarCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/ToolbarCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/TreeDetailLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/TreeDetailLayout.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/VerticalHex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/VerticalHex.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/DatePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/DatePicker.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/DragHandle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/DragHandle.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/IconPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/IconPicker.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SmartBtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SmartBtn.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SmartCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SmartCheckbox.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SmartCombobox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SmartCombobox.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SmartImageInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SmartImageInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SmartInputMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SmartInputMixin.js -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SmartSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SmartSelect.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SmartSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SmartSlider.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SmartSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SmartSwitch.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SmartToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SmartToggle.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/SvgIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/SvgIcon.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/TextArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/TextArea.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/TextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/TextField.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/global/globalIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/global/globalIndex.js -------------------------------------------------------------------------------- /app/imports/client/ui/components/propertyToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/propertyToolbar.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/snackbars/SnackbarQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/snackbars/SnackbarQueue.js -------------------------------------------------------------------------------- /app/imports/client/ui/components/snackbars/SnackbarQueue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/snackbars/SnackbarQueue.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/tree/TreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/tree/TreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/tree/TreeNodeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/tree/TreeNodeList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/components/tree/TreeSearchInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/components/tree/TreeSearchInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/CreatureForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/CreatureForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/CreatureFormDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/CreatureFormDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/RestButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/RestButton.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/actions/ActionDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/actions/ActionDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/actions/doAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/actions/doAction.ts -------------------------------------------------------------------------------- /app/imports/client/ui/creature/actions/input/AdvantageInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/actions/input/AdvantageInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/actions/input/CastSpellInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/actions/input/CastSpellInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/actions/input/CheckInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/actions/input/CheckInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/actions/input/ChoiceInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/actions/input/ChoiceInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/actions/input/RollInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/actions/input/RollInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/actions/input/TargetsInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/actions/input/TargetsInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/archive/ArchiveDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/archive/ArchiveDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/buildTree/BuildTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/buildTree/BuildTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/buildTree/BuildTreeNodeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/buildTree/BuildTreeNodeList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/buildTree/FillSlotButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/buildTree/FillSlotButton.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CharacterCreationDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CharacterCreationDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CharacterDeleteDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CharacterDeleteDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CharacterImportDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CharacterImportDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CharacterSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CharacterSheet.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CharacterSheetFab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CharacterSheetFab.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CharacterSheetInitiative.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CharacterSheetInitiative.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CharacterSheetRightDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CharacterSheetRightDrawer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CharacterSheetToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CharacterSheetToolbar.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CreatureRootDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CreatureRootDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/CreatureSummary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/CreatureSummary.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/MiniCharacterSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/MiniCharacterSheet.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/character/errors/CharacterErrors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/character/errors/CharacterErrors.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/creatureList/ArchiveButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/creatureList/ArchiveButton.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/creatureList/CreatureFolderHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/creatureList/CreatureFolderHeader.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/creatureList/CreatureFolderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/creatureList/CreatureFolderList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/creatureList/CreatureList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/creatureList/CreatureList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/creatureList/CreatureListTile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/creatureList/CreatureListTile.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/creatureList/CreatureStorageStats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/creatureList/CreatureStorageStats.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/creatureProperties/Breadcrumbs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/creatureProperties/Breadcrumbs.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/experiences/ExperienceForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/experiences/ExperienceForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/experiences/ExperienceInsertDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/experiences/ExperienceInsertDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/experiences/ExperienceListDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/experiences/ExperienceListDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/slots/LevelUpDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/slots/LevelUpDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/slots/SlotCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/slots/SlotCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/slots/SlotCardsToFill.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/slots/SlotCardsToFill.vue -------------------------------------------------------------------------------- /app/imports/client/ui/creature/slots/SlotFillDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/creature/slots/SlotFillDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/dialogStack/DeleteConfirmationDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/dialogStack/DeleteConfirmationDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/dialogStack/DialogBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/dialogStack/DialogBase.vue -------------------------------------------------------------------------------- /app/imports/client/ui/dialogStack/DialogComponentIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/dialogStack/DialogComponentIndex.js -------------------------------------------------------------------------------- /app/imports/client/ui/dialogStack/DialogStack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/dialogStack/DialogStack.vue -------------------------------------------------------------------------------- /app/imports/client/ui/dialogStack/HelpDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/dialogStack/HelpDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/dialogStack/dialogStackStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/dialogStack/dialogStackStore.js -------------------------------------------------------------------------------- /app/imports/client/ui/dialogStack/dialogStackWindowEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/dialogStack/dialogStackWindowEvents.js -------------------------------------------------------------------------------- /app/imports/client/ui/dialogStack/mockElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/dialogStack/mockElement.js -------------------------------------------------------------------------------- /app/imports/client/ui/docs/DocBreadcrumbs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/docs/DocBreadcrumbs.vue -------------------------------------------------------------------------------- /app/imports/client/ui/docs/DocCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/docs/DocCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/docs/DocEditForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/docs/DocEditForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/docs/DocListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/docs/DocListItem.vue -------------------------------------------------------------------------------- /app/imports/client/ui/docs/DocToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/docs/DocToolbar.vue -------------------------------------------------------------------------------- /app/imports/client/ui/docs/DocViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/docs/DocViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/docs/DocsRightDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/docs/DocsRightDrawer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/docs/getDocLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/docs/getDocLink.js -------------------------------------------------------------------------------- /app/imports/client/ui/files/ArchiveFileCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/files/ArchiveFileCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/files/FileStorageStats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/files/FileStorageStats.vue -------------------------------------------------------------------------------- /app/imports/client/ui/files/UserImageList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/files/UserImageList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/files/userImages/ImageInputDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/files/userImages/ImageInputDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/files/userImages/ImagePreviewDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/files/userImages/ImagePreviewDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/files/userImages/UserImageCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/files/userImages/UserImageCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/icons/IconAdmin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/icons/IconAdmin.vue -------------------------------------------------------------------------------- /app/imports/client/ui/icons/SvgIconByName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/icons/SvgIconByName.vue -------------------------------------------------------------------------------- /app/imports/client/ui/icons/importIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/icons/importIcons.js -------------------------------------------------------------------------------- /app/imports/client/ui/layouts/AppLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/layouts/AppLayout.vue -------------------------------------------------------------------------------- /app/imports/client/ui/layouts/ConnectionBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/layouts/ConnectionBanner.vue -------------------------------------------------------------------------------- /app/imports/client/ui/layouts/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/layouts/Sidebar.vue -------------------------------------------------------------------------------- /app/imports/client/ui/layouts/SingleCardLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/layouts/SingleCardLayout.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/InsertLibraryNodeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/InsertLibraryNodeButton.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryAndNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryAndNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryBrowser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryBrowser.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryBrowserDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryBrowserDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryCollectionCreationDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryCollectionCreationDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryCollectionEditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryCollectionEditDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryCollectionHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryCollectionHeader.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryCollectionToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryCollectionToolbar.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryContentsContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryContentsContainer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryCreationDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryCreationDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryEditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryEditDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryListTile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryListTile.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryNodeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryNodeDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibraryNodeExpansionContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibraryNodeExpansionContent.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/LibrarySecondTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/LibrarySecondTree.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/MoveLibraryNodeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/MoveLibraryNodeDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/SelectLibraryNodeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/SelectLibraryNodeDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/library/SingleLibraryToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/library/SingleLibraryToolbar.vue -------------------------------------------------------------------------------- /app/imports/client/ui/log/CharacterLog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/log/CharacterLog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/log/LogContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/log/LogContent.vue -------------------------------------------------------------------------------- /app/imports/client/ui/log/LogEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/log/LogEntry.vue -------------------------------------------------------------------------------- /app/imports/client/ui/log/TabletopLog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/log/TabletopLog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/log/TabletopLogContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/log/TabletopLogContent.vue -------------------------------------------------------------------------------- /app/imports/client/ui/log/TabletopLogEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/log/TabletopLogEntry.vue -------------------------------------------------------------------------------- /app/imports/client/ui/markdownCofig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/markdownCofig.js -------------------------------------------------------------------------------- /app/imports/client/ui/pages/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/About.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Account.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Admin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Admin.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/CharacterList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/CharacterList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/CharacterSheetPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/CharacterSheetPage.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/DocsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/DocsPage.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Documentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Documentation.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/EmailVerificationError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/EmailVerificationError.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/EmailVerificationSuccess.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/EmailVerificationSuccess.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Feedback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Feedback.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Files.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Files.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Friends.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Friends.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/FunctionReference.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/FunctionReference.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Home.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/InviteError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/InviteError.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/InviteSuccess.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/InviteSuccess.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/LaunchCountdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/LaunchCountdown.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Library.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Library.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/LibraryBrowser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/LibraryBrowser.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/LibraryCollection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/LibraryCollection.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Maintenance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Maintenance.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/NotFound.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/NotImplemented.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/NotImplemented.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/PatreonLevelTooLow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/PatreonLevelTooLow.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Register.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/ResetPassword.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/SignIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/SignIn.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/SingleLibrary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/SingleLibrary.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Tabletop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Tabletop.vue -------------------------------------------------------------------------------- /app/imports/client/ui/pages/Tabletops.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/pages/Tabletops.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/InsertPropertyDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/InsertPropertyDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/PropertyForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/PropertyForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/PropertyCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/PropertyCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/actions/ActionCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/actions/ActionCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/actions/EventButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/actions/EventButton.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/attributes/HealthBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/attributes/HealthBar.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/buffs/BuffListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/buffs/BuffListItem.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/effects/InlineEffect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/effects/InlineEffect.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/features/FeatureCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/features/FeatureCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/folders/tabFoldersMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/folders/tabFoldersMixin.js -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/inventory/ItemList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/inventory/ItemList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/inventory/ItemListTile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/inventory/ItemListTile.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/persona/NoteCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/persona/NoteCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/pointBuy/PointBuyCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/pointBuy/PointBuyCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/skills/SkillListTile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/skills/SkillListTile.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/spells/SpellList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/spells/SpellList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/spells/SpellListCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/spells/SpellListCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/spells/SpellListTile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/spells/SpellListTile.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/components/toggles/ToggleCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/components/toggles/ToggleCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ActionConditionForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ActionConditionForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ActionConditionsListForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ActionConditionsListForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ActionForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ActionForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/AdjustmentForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/AdjustmentForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/AttributeConsumedForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/AttributeConsumedForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/AttributeForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/AttributeForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/AttributesConsumedListForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/AttributesConsumedListForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/BranchForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/BranchForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/BuffForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/BuffForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/BuffRemoverForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/BuffRemoverForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ClassForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ClassForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ClassLevelForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ClassLevelForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ConstantForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ConstantForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ContainerForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ContainerForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/CreatureTemplateForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/CreatureTemplateForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/DamageForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/DamageForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/DamageMultiplierForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/DamageMultiplierForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/EffectForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/EffectForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/FeatureForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/FeatureForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/FolderForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/FolderForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ItemConsumedForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ItemConsumedForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ItemForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ItemForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ItemsConsumedListForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ItemsConsumedListForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/NoteForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/NoteForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/PointBuyForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/PointBuyForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/PointBuySpendForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/PointBuySpendForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ProficiencyForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ProficiencyForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ReferenceForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ReferenceForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ResourcesForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ResourcesForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/RollForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/RollForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/SavingThrowForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/SavingThrowForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/SkillForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/SkillForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/SlotForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/SlotForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/SpellForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/SpellForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/SpellListForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/SpellListForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/ToggleForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/ToggleForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/TriggerForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/TriggerForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/CalculationErrorList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/CalculationErrorList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/ComputedField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/ComputedField.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/FormSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/FormSection.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/FormSections.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/FormSections.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/IconColorMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/IconColorMenu.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/ProficiencySelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/ProficiencySelect.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/TagTargeting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/TagTargeting.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/lists/saveListMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/lists/saveListMixin.js -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/lists/skillListMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/lists/skillListMixin.js -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/propertyFormIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/propertyFormIndex.js -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/propertyFormMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/propertyFormMixin.js -------------------------------------------------------------------------------- /app/imports/client/ui/properties/forms/shared/schemaFormMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/forms/shared/schemaFormMixin.js -------------------------------------------------------------------------------- /app/imports/client/ui/properties/shared/ProficiencyIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/shared/ProficiencyIcon.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/shared/PropertyIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/shared/PropertyIcon.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/shared/PropertySelectCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/shared/PropertySelectCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/shared/PropertySelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/shared/PropertySelector.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/shared/PropertyViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/shared/PropertyViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/shared/SelectablePropertyDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/shared/SelectablePropertyDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/shared/getPropertyTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/shared/getPropertyTitle.js -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/AdjustmentTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/AdjustmentTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/BranchTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/BranchTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/ClassLevelTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/ClassLevelTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/DamageTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/DamageTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/DefaultTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/DefaultTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/EffectTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/EffectTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/ItemTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/ItemTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/ProficiencyTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/ProficiencyTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/ReferenceTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/ReferenceTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/SavingThrowTreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/SavingThrowTreeNode.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/TreeNodeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/TreeNodeView.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/treeNodeViewIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/treeNodeViewIndex.js -------------------------------------------------------------------------------- /app/imports/client/ui/properties/treeNodeViews/treeNodeViewMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/treeNodeViews/treeNodeViewMixin.js -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/ActionViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/ActionViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/AdjustmentViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/AdjustmentViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/AttributeViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/AttributeViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/BranchViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/BranchViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/BuffRemoverViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/BuffRemoverViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/BuffViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/BuffViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/ClassLevelViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/ClassLevelViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/ClassViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/ClassViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/ConstantViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/ConstantViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/ContainerViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/ContainerViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/CreatureTemplateViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/CreatureTemplateViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/DamageMultiplierViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/DamageMultiplierViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/DamageViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/DamageViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/EffectViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/EffectViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/FeatureViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/FeatureViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/FolderViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/FolderViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/ItemViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/ItemViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/NoteViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/NoteViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/PointBuyViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/PointBuyViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/ProficiencyViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/ProficiencyViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/ReferenceViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/ReferenceViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/RollViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/RollViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/SavingThrowViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/SavingThrowViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/SkillViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/SkillViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/SlotFillerViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/SlotFillerViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/SlotViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/SlotViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/SpellListViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/SpellListViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/SpellViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/SpellViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/ToggleViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/ToggleViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/TriggerViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/TriggerViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/shared/ImageField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/shared/ImageField.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/shared/OutlinedInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/shared/OutlinedInput.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/shared/PropertyField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/shared/PropertyField.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/shared/PropertyName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/shared/PropertyName.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/shared/PropertyTags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/shared/PropertyTags.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/shared/PropertyTargetTags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/shared/PropertyTargetTags.vue -------------------------------------------------------------------------------- /app/imports/client/ui/properties/viewers/shared/propertyViewerIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/properties/viewers/shared/propertyViewerIndex.js -------------------------------------------------------------------------------- /app/imports/client/ui/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/router.js -------------------------------------------------------------------------------- /app/imports/client/ui/sharing/ShareDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/sharing/ShareDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/sharing/TransferOwnershipDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/sharing/TransferOwnershipDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/styles/body.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/body.css -------------------------------------------------------------------------------- /app/imports/client/ui/styles/cardColors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/cardColors.css -------------------------------------------------------------------------------- /app/imports/client/ui/styles/cardTitles.css: -------------------------------------------------------------------------------- 1 | .v-card__title { 2 | word-break: normal !important; 3 | } -------------------------------------------------------------------------------- /app/imports/client/ui/styles/centeredInputs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/centeredInputs.css -------------------------------------------------------------------------------- /app/imports/client/ui/styles/denseLists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/denseLists.css -------------------------------------------------------------------------------- /app/imports/client/ui/styles/fitAvatars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/fitAvatars.css -------------------------------------------------------------------------------- /app/imports/client/ui/styles/inheritBackgrounds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/inheritBackgrounds.css -------------------------------------------------------------------------------- /app/imports/client/ui/styles/largeFormatInputs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/largeFormatInputs.css -------------------------------------------------------------------------------- /app/imports/client/ui/styles/lineClamp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/lineClamp.css -------------------------------------------------------------------------------- /app/imports/client/ui/styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/markdown.css -------------------------------------------------------------------------------- /app/imports/client/ui/styles/speedDial.css: -------------------------------------------------------------------------------- 1 | .v-speed-dial__list{ 2 | padding-bottom: 12px; 3 | } 4 | -------------------------------------------------------------------------------- /app/imports/client/ui/styles/stylesIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/styles/stylesIndex.js -------------------------------------------------------------------------------- /app/imports/client/ui/styles/toolbarFlex.css: -------------------------------------------------------------------------------- 1 | .v-toolbar { 2 | flex-grow: 0; 3 | } 4 | -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/CharacterSheetDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/CharacterSheetDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/CreatureFromLibraryDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/CreatureFromLibraryDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/SelectCreaturesDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/SelectCreaturesDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopActionCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopActionCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopBuffCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopBuffCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopComponent.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopCreatureCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopCreatureCard.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopCreatureListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopCreatureListItem.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopForm.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopLogStream.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopLogStream.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopLogStreamEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopLogStreamEntry.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopMap.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopRightDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopRightDrawer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopToolbar.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopUserList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopUserList.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/TabletopViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/tabletop/TabletopViewer.vue -------------------------------------------------------------------------------- /app/imports/client/ui/tabletop/selectedCreatureBar/CreaturePortrait.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/imports/client/ui/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/themes.js -------------------------------------------------------------------------------- /app/imports/client/ui/user/DeleteUserAccountDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/user/DeleteUserAccountDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/user/InviteDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/user/InviteDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/user/TierTooLowDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/user/TierTooLowDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/user/UsernameDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/user/UsernameDialog.vue -------------------------------------------------------------------------------- /app/imports/client/ui/utility/getEffectIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/getEffectIcon.js -------------------------------------------------------------------------------- /app/imports/client/ui/utility/getProficiencyIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/getProficiencyIcon.js -------------------------------------------------------------------------------- /app/imports/client/ui/utility/getThemeColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/getThemeColor.js -------------------------------------------------------------------------------- /app/imports/client/ui/utility/getThumbHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/getThumbHash.js -------------------------------------------------------------------------------- /app/imports/client/ui/utility/isDarkColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/isDarkColor.js -------------------------------------------------------------------------------- /app/imports/client/ui/utility/numberFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/numberFormatter.js -------------------------------------------------------------------------------- /app/imports/client/ui/utility/romanize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/romanize.js -------------------------------------------------------------------------------- /app/imports/client/ui/utility/sortEffects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/sortEffects.js -------------------------------------------------------------------------------- /app/imports/client/ui/utility/swapCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/swapCase.js -------------------------------------------------------------------------------- /app/imports/client/ui/utility/valueToCoins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/utility/valueToCoins.js -------------------------------------------------------------------------------- /app/imports/client/ui/vueSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/vueSetup.js -------------------------------------------------------------------------------- /app/imports/client/ui/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/vuetify.js -------------------------------------------------------------------------------- /app/imports/client/ui/vuexStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/client/ui/vuexStore.js -------------------------------------------------------------------------------- /app/imports/constants/BUILT_IN_TAGS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/BUILT_IN_TAGS.js -------------------------------------------------------------------------------- /app/imports/constants/DAMAGE_TYPES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/DAMAGE_TYPES.js -------------------------------------------------------------------------------- /app/imports/constants/INLINE_CALCULATION_REGEX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/INLINE_CALCULATION_REGEX.js -------------------------------------------------------------------------------- /app/imports/constants/LAUNCH_DATE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/LAUNCH_DATE.js -------------------------------------------------------------------------------- /app/imports/constants/MAINTENANCE_MODE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/MAINTENANCE_MODE.js -------------------------------------------------------------------------------- /app/imports/constants/MONGO_OPERATORS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/MONGO_OPERATORS.js -------------------------------------------------------------------------------- /app/imports/constants/PROPERTIES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/PROPERTIES.js -------------------------------------------------------------------------------- /app/imports/constants/RESERVED_VARIABLE_NAMES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/RESERVED_VARIABLE_NAMES.js -------------------------------------------------------------------------------- /app/imports/constants/SCHEMA_OPTIONS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/SCHEMA_OPTIONS.js -------------------------------------------------------------------------------- /app/imports/constants/SCHEMA_VERSION.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/SCHEMA_VERSION.js -------------------------------------------------------------------------------- /app/imports/constants/STORAGE_LIMITS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/STORAGE_LIMITS.js -------------------------------------------------------------------------------- /app/imports/constants/SVG_ICONS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/SVG_ICONS.js -------------------------------------------------------------------------------- /app/imports/constants/VARIABLE_NAME_REGEX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/VARIABLE_NAME_REGEX.js -------------------------------------------------------------------------------- /app/imports/constants/VERSION.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/constants/VERSION.js -------------------------------------------------------------------------------- /app/imports/migrations/apiCreature/cleanApiCreatureAtCurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/apiCreature/cleanApiCreatureAtCurrent.js -------------------------------------------------------------------------------- /app/imports/migrations/apiCreature/migrateApiCreature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/apiCreature/migrateApiCreature.js -------------------------------------------------------------------------------- /app/imports/migrations/apiCreature/migrateApiCreature2To3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/apiCreature/migrateApiCreature2To3.js -------------------------------------------------------------------------------- /app/imports/migrations/archive/cleanArchiveAtCurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/archive/cleanArchiveAtCurrent.js -------------------------------------------------------------------------------- /app/imports/migrations/archive/migrateArchive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/archive/migrateArchive.js -------------------------------------------------------------------------------- /app/imports/migrations/archive/migrateArchive1To2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/archive/migrateArchive1To2.js -------------------------------------------------------------------------------- /app/imports/migrations/archive/migrateArchive2To3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/archive/migrateArchive2To3.js -------------------------------------------------------------------------------- /app/imports/migrations/archive/migrateArchiveTo1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/archive/migrateArchiveTo1.js -------------------------------------------------------------------------------- /app/imports/migrations/archive/properties/migrateProperty2To3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/archive/properties/migrateProperty2To3.js -------------------------------------------------------------------------------- /app/imports/migrations/methods/getVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/methods/getVersion.js -------------------------------------------------------------------------------- /app/imports/migrations/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/methods/index.js -------------------------------------------------------------------------------- /app/imports/migrations/methods/migrateTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/methods/migrateTo.js -------------------------------------------------------------------------------- /app/imports/migrations/methods/validateDatabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/methods/validateDatabase.js -------------------------------------------------------------------------------- /app/imports/migrations/server/dbv1/dbv1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/server/dbv1/dbv1.js -------------------------------------------------------------------------------- /app/imports/migrations/server/dbv1/dbv1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/server/dbv1/dbv1.test.js -------------------------------------------------------------------------------- /app/imports/migrations/server/dbv2/dbv2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/server/dbv2/dbv2.js -------------------------------------------------------------------------------- /app/imports/migrations/server/dbv2/dbv2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/server/dbv2/dbv2.test.js -------------------------------------------------------------------------------- /app/imports/migrations/server/dbv3/dbv3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/server/dbv3/dbv3.test.ts -------------------------------------------------------------------------------- /app/imports/migrations/server/dbv3/dbv3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/server/dbv3/dbv3.ts -------------------------------------------------------------------------------- /app/imports/migrations/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/server/index.js -------------------------------------------------------------------------------- /app/imports/migrations/server/transformFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/server/transformFields.js -------------------------------------------------------------------------------- /app/imports/migrations/server/transformFields.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/migrations/server/transformFields.test.js -------------------------------------------------------------------------------- /app/imports/parser/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/functions.ts -------------------------------------------------------------------------------- /app/imports/parser/grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/grammar.js -------------------------------------------------------------------------------- /app/imports/parser/grammar.ne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/grammar.ne -------------------------------------------------------------------------------- /app/imports/parser/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/map.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/ParseNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/ParseNode.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/accessor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/accessor.test.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/accessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/accessor.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/array.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/call.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/call.test.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/call.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/constant.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/error.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/if.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/if.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/index.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/indexNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/indexNode.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/not.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/not.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/operator.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/parenthesis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/parenthesis.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/roll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/roll.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/rollArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/rollArray.ts -------------------------------------------------------------------------------- /app/imports/parser/parseTree/unaryOperator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parseTree/unaryOperator.ts -------------------------------------------------------------------------------- /app/imports/parser/parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parser.test.js -------------------------------------------------------------------------------- /app/imports/parser/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/parser.ts -------------------------------------------------------------------------------- /app/imports/parser/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/readme.md -------------------------------------------------------------------------------- /app/imports/parser/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/resolve.ts -------------------------------------------------------------------------------- /app/imports/parser/rollDice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/rollDice.ts -------------------------------------------------------------------------------- /app/imports/parser/toPrimitiveOrString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/toPrimitiveOrString.ts -------------------------------------------------------------------------------- /app/imports/parser/toString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/toString.ts -------------------------------------------------------------------------------- /app/imports/parser/traverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/traverse.ts -------------------------------------------------------------------------------- /app/imports/parser/types/Context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/types/Context.ts -------------------------------------------------------------------------------- /app/imports/parser/types/MapFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/types/MapFunction.ts -------------------------------------------------------------------------------- /app/imports/parser/types/ResolveFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/types/ResolveFunction.ts -------------------------------------------------------------------------------- /app/imports/parser/types/ResolveLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/types/ResolveLevel.ts -------------------------------------------------------------------------------- /app/imports/parser/types/ResolveLevelFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/types/ResolveLevelFunction.ts -------------------------------------------------------------------------------- /app/imports/parser/types/ResolveOthersFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/types/ResolveOthersFunction.ts -------------------------------------------------------------------------------- /app/imports/parser/types/ResolvedResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/types/ResolvedResult.ts -------------------------------------------------------------------------------- /app/imports/parser/types/ToStringFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/types/ToStringFunction.ts -------------------------------------------------------------------------------- /app/imports/parser/types/TraverseFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/parser/types/TraverseFunction.ts -------------------------------------------------------------------------------- /app/imports/server/config/SimpleRestConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/config/SimpleRestConfig.js -------------------------------------------------------------------------------- /app/imports/server/config/SyncedCronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/config/SyncedCronConfig.js -------------------------------------------------------------------------------- /app/imports/server/config/accountsEmailConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/config/accountsEmailConfig.js -------------------------------------------------------------------------------- /app/imports/server/config/emailTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/config/emailTemplate.js -------------------------------------------------------------------------------- /app/imports/server/config/limitLoginTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/config/limitLoginTokens.js -------------------------------------------------------------------------------- /app/imports/server/config/publicationStrategies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/config/publicationStrategies.js -------------------------------------------------------------------------------- /app/imports/server/config/redisCaching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/config/redisCaching.js -------------------------------------------------------------------------------- /app/imports/server/config/simpleSchemaDebug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/config/simpleSchemaDebug.js -------------------------------------------------------------------------------- /app/imports/server/config/throwUnresolvedPromises.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/config/throwUnresolvedPromises.test.ts -------------------------------------------------------------------------------- /app/imports/server/cron/deleteSoftRemovedDocuments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/cron/deleteSoftRemovedDocuments.js -------------------------------------------------------------------------------- /app/imports/server/discord/sendWebhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/discord/sendWebhook.js -------------------------------------------------------------------------------- /app/imports/server/publications/archiveFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/archiveFiles.js -------------------------------------------------------------------------------- /app/imports/server/publications/characterList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/characterList.js -------------------------------------------------------------------------------- /app/imports/server/publications/creatureTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/creatureTemplates.js -------------------------------------------------------------------------------- /app/imports/server/publications/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/docs.js -------------------------------------------------------------------------------- /app/imports/server/publications/experiences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/experiences.js -------------------------------------------------------------------------------- /app/imports/server/publications/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/icons.js -------------------------------------------------------------------------------- /app/imports/server/publications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/index.js -------------------------------------------------------------------------------- /app/imports/server/publications/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/library.js -------------------------------------------------------------------------------- /app/imports/server/publications/ownedDocuments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/ownedDocuments.js -------------------------------------------------------------------------------- /app/imports/server/publications/publicationRateLimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/publicationRateLimit.js -------------------------------------------------------------------------------- /app/imports/server/publications/searchLibraryNodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/searchLibraryNodes.js -------------------------------------------------------------------------------- /app/imports/server/publications/singleCharacter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/singleCharacter.js -------------------------------------------------------------------------------- /app/imports/server/publications/slotFillers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/slotFillers.js -------------------------------------------------------------------------------- /app/imports/server/publications/tabletops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/tabletops.js -------------------------------------------------------------------------------- /app/imports/server/publications/userImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/userImages.js -------------------------------------------------------------------------------- /app/imports/server/publications/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/publications/users.js -------------------------------------------------------------------------------- /app/imports/server/rest/apiPublications/creature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/rest/apiPublications/creature.js -------------------------------------------------------------------------------- /app/imports/server/rest/apiPublications/healthCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/rest/apiPublications/healthCheck.js -------------------------------------------------------------------------------- /app/imports/server/rest/apiPublications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/rest/apiPublications/index.js -------------------------------------------------------------------------------- /app/imports/server/rest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/rest/index.js -------------------------------------------------------------------------------- /app/imports/server/rest/middleware/authenticateUserByToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/rest/middleware/authenticateUserByToken.js -------------------------------------------------------------------------------- /app/imports/server/rest/restLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/imports/server/rest/restLogin.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/package.json -------------------------------------------------------------------------------- /app/packages/accounts-patreon/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /app/packages/accounts-patreon/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/packages/accounts-patreon/package.js -------------------------------------------------------------------------------- /app/packages/accounts-patreon/patreon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/packages/accounts-patreon/patreon.js -------------------------------------------------------------------------------- /app/packages/patreon-oauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/packages/patreon-oauth/README.md -------------------------------------------------------------------------------- /app/packages/patreon-oauth/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/packages/patreon-oauth/package.js -------------------------------------------------------------------------------- /app/packages/patreon-oauth/patreon_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/packages/patreon-oauth/patreon_client.js -------------------------------------------------------------------------------- /app/packages/patreon-oauth/patreon_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/packages/patreon-oauth/patreon_server.js -------------------------------------------------------------------------------- /app/private/docs/defaultDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/private/docs/defaultDocs.json -------------------------------------------------------------------------------- /app/private/docs/property/skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/private/docs/property/skill.md -------------------------------------------------------------------------------- /app/private/docs/property/spell-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/private/docs/property/spell-list.md -------------------------------------------------------------------------------- /app/public/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/android-chrome-144x144.png -------------------------------------------------------------------------------- /app/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /app/public/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/android-chrome-36x36.png -------------------------------------------------------------------------------- /app/public/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/android-chrome-48x48.png -------------------------------------------------------------------------------- /app/public/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/android-chrome-72x72.png -------------------------------------------------------------------------------- /app/public/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/android-chrome-96x96.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/apple-touch-icon.png -------------------------------------------------------------------------------- /app/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/browserconfig.xml -------------------------------------------------------------------------------- /app/public/crown-dice-logo-cropped-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/crown-dice-logo-cropped-transparent.png -------------------------------------------------------------------------------- /app/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/favicon-16x16.png -------------------------------------------------------------------------------- /app/public/favicon-194x194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/favicon-194x194.png -------------------------------------------------------------------------------- /app/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/favicon-32x32.png -------------------------------------------------------------------------------- /app/public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/favicon-96x96.png -------------------------------------------------------------------------------- /app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/favicon.ico -------------------------------------------------------------------------------- /app/public/fonts/game-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/fonts/game-icons.eot -------------------------------------------------------------------------------- /app/public/fonts/game-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/fonts/game-icons.ttf -------------------------------------------------------------------------------- /app/public/fonts/game-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/fonts/game-icons.woff -------------------------------------------------------------------------------- /app/public/images/animated/crown-dice-bounce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/animated/crown-dice-bounce.png -------------------------------------------------------------------------------- /app/public/images/battlemap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/battlemap.webp -------------------------------------------------------------------------------- /app/public/images/crown-dice-on-ipad.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/crown-dice-on-ipad.webp -------------------------------------------------------------------------------- /app/public/images/docs/dependency-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/docs/dependency-loop.png -------------------------------------------------------------------------------- /app/public/images/docs/walkthroughs/create-a-class-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/docs/walkthroughs/create-a-class-1.png -------------------------------------------------------------------------------- /app/public/images/docs/walkthroughs/create-a-class-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/docs/walkthroughs/create-a-class-2.png -------------------------------------------------------------------------------- /app/public/images/docs/walkthroughs/create-a-class-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/docs/walkthroughs/create-a-class-3.png -------------------------------------------------------------------------------- /app/public/images/docs/walkthroughs/create-a-class-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/docs/walkthroughs/create-a-class-4.png -------------------------------------------------------------------------------- /app/public/images/docs/walkthroughs/create-a-class-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/docs/walkthroughs/create-a-class-5.png -------------------------------------------------------------------------------- /app/public/images/docs/walkthroughs/create-a-class-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/docs/walkthroughs/create-a-class-6.png -------------------------------------------------------------------------------- /app/public/images/paper-dice-crown.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/paper-dice-crown.webp -------------------------------------------------------------------------------- /app/public/images/paragons/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/paragons/blue.png -------------------------------------------------------------------------------- /app/public/images/paragons/dai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/paragons/dai.png -------------------------------------------------------------------------------- /app/public/images/paragons/kira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/paragons/kira.png -------------------------------------------------------------------------------- /app/public/images/paragons/lordOfJunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/paragons/lordOfJunk.png -------------------------------------------------------------------------------- /app/public/images/paragons/satherian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/paragons/satherian.png -------------------------------------------------------------------------------- /app/public/images/paragons/vibes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/paragons/vibes.png -------------------------------------------------------------------------------- /app/public/images/paragons/vinton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/paragons/vinton.png -------------------------------------------------------------------------------- /app/public/images/print/doubleLineImageBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/print/doubleLineImageBorder.png -------------------------------------------------------------------------------- /app/public/images/print/horizontalLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/print/horizontalLine.png -------------------------------------------------------------------------------- /app/public/images/print/octagonBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/print/octagonBorder.png -------------------------------------------------------------------------------- /app/public/images/print/shieldBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/print/shieldBorder.png -------------------------------------------------------------------------------- /app/public/images/print/upwardPointingBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/print/upwardPointingBorder.png -------------------------------------------------------------------------------- /app/public/images/screenshots/actions.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/screenshots/actions.webp -------------------------------------------------------------------------------- /app/public/images/screenshots/auditable.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/screenshots/auditable.webp -------------------------------------------------------------------------------- /app/public/images/screenshots/automated-dice-rolls.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/screenshots/automated-dice-rolls.webp -------------------------------------------------------------------------------- /app/public/images/screenshots/build-system.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/screenshots/build-system.webp -------------------------------------------------------------------------------- /app/public/images/screenshots/inventory.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/screenshots/inventory.webp -------------------------------------------------------------------------------- /app/public/images/screenshots/libraries-of-content.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/screenshots/libraries-of-content.webp -------------------------------------------------------------------------------- /app/public/images/screenshots/printing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/screenshots/printing.webp -------------------------------------------------------------------------------- /app/public/images/screenshots/send-to-discord.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/screenshots/send-to-discord.webp -------------------------------------------------------------------------------- /app/public/images/ui/missing-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/images/ui/missing-portrait.png -------------------------------------------------------------------------------- /app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/manifest.json -------------------------------------------------------------------------------- /app/public/models/example-mini.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/models/example-mini.stl -------------------------------------------------------------------------------- /app/public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/mstile-144x144.png -------------------------------------------------------------------------------- /app/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/mstile-150x150.png -------------------------------------------------------------------------------- /app/public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/mstile-310x150.png -------------------------------------------------------------------------------- /app/public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/mstile-310x310.png -------------------------------------------------------------------------------- /app/public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/mstile-70x70.png -------------------------------------------------------------------------------- /app/public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/public/sw.js -------------------------------------------------------------------------------- /app/redis-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/redis-settings.json -------------------------------------------------------------------------------- /app/server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/server/main.js -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThaumRystra/DiceCloud/HEAD/docker-compose.yml --------------------------------------------------------------------------------