Skip to content

Releases: TISUnion/Task

2.3.7

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 23 Aug 02:52

Feature

  • Add config item legacy_text_compat to make every character compatible with some older Minecraft version

Fixes

  • Fixed a logger issue that make mcd_task not compatible with developing new version of MCDR (v2.16). Due to the problem of its implementation, this plugin now no longer saves logs to folder config/mcd_task. Logs will be saved to MCDR log files instead.

Full Changelog: 2.3.6...2.3.7

No line break

No line break Pre-release
Pre-release

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 20 Jul 13:30

May be compatiable with older version of Minecraft

This version is not tested, DO NOT USE THIS VERSION IN PRODUCTION ENVIRIONMENT

2.3.6

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 07 Feb 02:13

From this build, build number in version string will be the date of the commit date instead of commit count

Fixes

Added a missing translation key

Full Changelog: 2.3.5...2.3.6

2.3.5

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 15 Dec 02:04

Fix

(Windows only) Fixed a problem that cause fail loading Task twice in the same MCDReforged instance

2.3.4

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 10 Nov 16:35

Fixed exception on player joined again (xD)

2.3.3

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 10 Nov 15:57
  1. Fixed compatibility with MCDReforged 2.6+, this will also make Task log to be moved to config/task/logs and will be packed like MCDR logs.
  2. Fixed exception thrown when players with tasks join the server

Full Changelog: 2.3.2...2.3.3

2.3.2

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 20 Jul 13:37

Fixed renamed player data inherit error

Full Changelog: 2.3.1...2.3.2

2.3.1

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 26 Jun 03:10

fixed file auto generation failure

Full Changelog: 2.3.0...2.3.1

2.3.0

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 25 Jun 12:30
  1. Color scheme has been changed, now titles of tasks marked as done will be displayed in light gray instead of dark gray, and descriptions are dark green instead of light green (in help message) / light gray (in task detail).

  2. Command !!task list-done has been removed, and tasks marked as done will be just displayed in !!task list view.

  3. Now marking father task as done will make all its sub-tasks be treated as done (you can still see if this node is marked as done).

  4. Now you can use !!task deadline <titles> clear to remove the task deadline, and !!task unres <titles> -all to remove all its responsibles.

Full Changelog: 2.2.0...2.3.0

2.2.0

Choose a tag to compare

@Ra1ny-Yuki Ra1ny-Yuki released this 18 May 06:15

News

  1. Task overview
    Now you can see a new task overview page when !!task is directly called, which could help every players to find the most important or emergency tasks. Only the tasks with approaching deadlines or just was marked as a high priority task (This will be introduced below) will be displayed here. And the length of this list will be limited to avoid the text is too long to be display in vanilla Minecraft clients. You can still call !!task list to access the old task list view.

New relative configuration options:

Option name Type Default Value What's this
default_overview_instead_of_list bool true If you prefer old task list view as !!task command behavior, just set this to false to call it back
overview_deadline_warning_threshold int 1 This value will control how close the deadline is could make the task appears in task overview page.
overview_maximum_task_amount int 10 Task amount in task overview is limited, you can change this value to make more tasks with priority or deadline to be displayed.
  1. Priority

    This is a new attribute of all the tasks, which only accept integers or None. Default to None. When the amount of tasks with deadline is insufficient for the task overview, in other words, the amount of tasks with deadline is less than the value of overview_maximum_task_amount option, these blank will be filled with tasks with priorities until reach the overview limit mentioned above. Setting a suitable priority could make it more simple to find the important tasks for players.

Changes

  1. New task detail view to make all the attributes to be displayed. !!task list-res[ponsibles] is removed because reponsibles can be queried in detail view.
  2. Changed !!task detail-all command to !!task list-all and make list-all view no longer display all the attributes to make the text more suitable to display (although sometime it will still be to long for vanilla client to display XD)
  3. Now task and config will both use Serializable to check the type, incorrect type in task storage file may raise exceptions on plugin load.
  4. Now delete task command could be any in !!task rm/remove/del/delete <task_title>
  5. Massive other text-based user interface change

Fixes

​ Minor i18n text and TUI fixes