Fix v13.341 issues to prep for release
This commit is contained in:
parent
d5680bb209
commit
9739995a12
6 changed files with 10 additions and 7 deletions
|
|
@ -7,7 +7,7 @@ import { Logger } from "../../utils/Logger.mjs";
|
||||||
|
|
||||||
const { HandlebarsApplicationMixin } = foundry.applications.api;
|
const { HandlebarsApplicationMixin } = foundry.applications.api;
|
||||||
const { ActorSheetV2 } = foundry.applications.sheets;
|
const { ActorSheetV2 } = foundry.applications.sheets;
|
||||||
const { ContextMenu } = foundry.applications.ui;
|
const { ContextMenu } = foundry.applications.ux;
|
||||||
const { deepClone } = foundry.utils;
|
const { deepClone } = foundry.utils;
|
||||||
|
|
||||||
export class CraftCardV1 extends GenericAppMixin(HandlebarsApplicationMixin(ActorSheetV2)) {
|
export class CraftCardV1 extends GenericAppMixin(HandlebarsApplicationMixin(ActorSheetV2)) {
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import { PopoverEventManager } from "../../utils/PopoverEventManager.mjs";
|
||||||
|
|
||||||
const { HandlebarsApplicationMixin } = foundry.applications.api;
|
const { HandlebarsApplicationMixin } = foundry.applications.api;
|
||||||
const { ActorSheetV2 } = foundry.applications.sheets;
|
const { ActorSheetV2 } = foundry.applications.sheets;
|
||||||
const { ContextMenu } = foundry.applications.ui;
|
const { ContextMenu } = foundry.applications.ux;
|
||||||
const { deepClone } = foundry.utils;
|
const { deepClone } = foundry.utils;
|
||||||
|
|
||||||
export class SkillsCardV1 extends GenericAppMixin(HandlebarsApplicationMixin(ActorSheetV2)) {
|
export class SkillsCardV1 extends GenericAppMixin(HandlebarsApplicationMixin(ActorSheetV2)) {
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import { Logger } from "../../utils/Logger.mjs";
|
||||||
|
|
||||||
const { HandlebarsApplicationMixin } = foundry.applications.api;
|
const { HandlebarsApplicationMixin } = foundry.applications.api;
|
||||||
const { ActorSheetV2 } = foundry.applications.sheets;
|
const { ActorSheetV2 } = foundry.applications.sheets;
|
||||||
const { ContextMenu } = foundry.applications.ui;
|
const { ContextMenu } = foundry.applications.ux;
|
||||||
|
|
||||||
export class StatsCardV1 extends GenericAppMixin(HandlebarsApplicationMixin(ActorSheetV2)) {
|
export class StatsCardV1 extends GenericAppMixin(HandlebarsApplicationMixin(ActorSheetV2)) {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import { localizer } from "../utils/Localizer.mjs";
|
||||||
import { Logger } from "../utils/Logger.mjs";
|
import { Logger } from "../utils/Logger.mjs";
|
||||||
|
|
||||||
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
|
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
|
||||||
const { ContextMenu } = foundry.applications.ui;
|
const { ContextMenu } = foundry.applications.ux;
|
||||||
const { FatePath } = gameTerms;
|
const { FatePath } = gameTerms;
|
||||||
|
|
||||||
const CompassRotations = {
|
const CompassRotations = {
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ export function registerMetaSettings() {
|
||||||
game.settings.register(`ripcrypt`, `dc`, {
|
game.settings.register(`ripcrypt`, `dc`, {
|
||||||
scope: `world`,
|
scope: `world`,
|
||||||
type: Number,
|
type: Number,
|
||||||
|
default: 5,
|
||||||
config: false,
|
config: false,
|
||||||
requiresReload: false,
|
requiresReload: false,
|
||||||
onChange: () => {
|
onChange: () => {
|
||||||
|
|
@ -17,7 +18,7 @@ export function registerMetaSettings() {
|
||||||
game.settings.register(`ripcrypt`, `sandsOfFate`, {
|
game.settings.register(`ripcrypt`, `sandsOfFate`, {
|
||||||
scope: `world`,
|
scope: `world`,
|
||||||
type: Number,
|
type: Number,
|
||||||
initial: 8,
|
default: 8,
|
||||||
config: false,
|
config: false,
|
||||||
requiresReload: false,
|
requiresReload: false,
|
||||||
onChange: async () => {
|
onChange: async () => {
|
||||||
|
|
@ -44,7 +45,7 @@ export function registerMetaSettings() {
|
||||||
type: String,
|
type: String,
|
||||||
config: false,
|
config: false,
|
||||||
requiresReload: false,
|
requiresReload: false,
|
||||||
initial: `friendly`,
|
default: `friendly`,
|
||||||
onChange: async () => {
|
onChange: async () => {
|
||||||
await game.combat.setupTurns();
|
await game.combat.setupTurns();
|
||||||
await ui.combat.render({ parts: [ `tracker` ] });
|
await ui.combat.render({ parts: [ `tracker` ] });
|
||||||
|
|
@ -54,7 +55,7 @@ export function registerMetaSettings() {
|
||||||
game.settings.register(`ripcrypt`, `firstLoadFinished`, {
|
game.settings.register(`ripcrypt`, `firstLoadFinished`, {
|
||||||
scope: `world`,
|
scope: `world`,
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
initial: false,
|
default: false,
|
||||||
requiresReload: false,
|
requiresReload: false,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
export function registerUserSettings() {
|
export function registerUserSettings() {
|
||||||
|
/* ! Non-Functional
|
||||||
game.settings.register(`ripcrypt`, `abbrAccess`, {
|
game.settings.register(`ripcrypt`, `abbrAccess`, {
|
||||||
name: `RipCrypt.setting.abbrAccess.name`,
|
name: `RipCrypt.setting.abbrAccess.name`,
|
||||||
hint: `RipCrypt.setting.abbrAccess.hint`,
|
hint: `RipCrypt.setting.abbrAccess.hint`,
|
||||||
|
|
@ -8,6 +9,7 @@ export function registerUserSettings() {
|
||||||
default: false,
|
default: false,
|
||||||
requiresReload: false,
|
requiresReload: false,
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
game.settings.register(`ripcrypt`, `condensedRange`, {
|
game.settings.register(`ripcrypt`, `condensedRange`, {
|
||||||
name: `RipCrypt.setting.condensedRange.name`,
|
name: `RipCrypt.setting.condensedRange.name`,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue