Skip to content

Changelog

MythicPalette edited this page Oct 1, 2024 · 2 revisions

v0.1.4 Introducing a new feature, sub-objectives! You can now have sub-objectives in your quests with just as much ease as the rest.

v0.1.3

lang\de.json

  • Added German translation. Credit to Karsten W for help in translating the module.

lang\en.json

  • Added a "Common" section for keys that are used in more than one location.
  • Added "Visible" key to "Common"
  • Added "Hidden" key to "Common"
  • Added "Objective" key to "Editor"
  • Added "ActiveQuests" key to "Tracker"
  • Added "AddQuest" key to "Tracker"
  • Added "Delete" key to "Tracker"
  • Added "Edit" key to "Tracker"
  • Added "Expand" key to "Tracker"
  • Added "Minimize" key to "Tracker"
  • Added "Title" key to "Tracker"
  • Added "Incomplete" key to "Tracker"
  • Added "Complete" key to "Tracker"
  • Added "Failed" key to "Tracker"

module.json

  • Incremented module build version from "0.1.2" to "0.1.3"
  • Added German to language options.

scripts\helpers\settings.json

  • Renamed "Active Quests" hidden setting to "Expanded Quests" for clarity

scripts\ui\questeditor.js

  • Removed line 134 to stop localizing text. This should be done in the template for consistency.

scripts\ui\ui-manager.js

  • Changed #controls from an object to a getter function to fix a bug where the object would attempt to initialize before game.i18n exists.
  • Changed #headerButtons from an object to a getter function to fix a bug where the object would attempt to initialize before game.i18n exists.

scripts\ui\editor.hbs

  • Added localized title attribute to eye icon to state visibility.
  • Added localized title attribute to eye-slash icon to state visibility.
  • Replaced hardcoded text "Objectives:" with localized string
  • Replaced data reference of saveText to a localized string as this value is no longer provided by scripts\ui\questeditor.js

templates\tracker-body.hbs

  • Replaced hardcoded text "Visible" with localized string
  • Replaced hardcoded text "Hidden" with localized string
  • Replaced hardcoded text "Edit" with localized string
  • Replaced hardcoded text "Delete" with localized string
  • Added localized title attribute to complete icon
  • Added localized title attribute to failed icon
  • Added localized title attribute to incomplete icon

templates\tracker-body.hbs

  • Added localized title attribute to expand icon
  • Replaced hardcoded text "Active Quests" with localized string
  • Replaced hardcoded text "Add Quest" with localized string
  • Added localized title attribute to minimize icon

v0.1.2

Fixed an issue that could cause the context menu to show when right-clicking quest objectives in the tracker.

v0.1.1

  • Added an undocked mode.
  • Added user settings to adjust dock position.

v0.1.0

Initial development