Skip to content

Commit

Permalink
[dictionary] Remove beta tag from dictionary module
Browse files Browse the repository at this point in the history
The "beta" dictionary module was added in LORIS 24, and tested in
both 24.1, and 25. When 26 is released, it will be the 4th release
including it. It's API is also used by the conflict resolver to get
field descriptions.

It should no longer be considered beta.

This removes the "beta" tag from the description, and adds a "legacy" to
the old datadict, which needs to be maintained until the new DQT is released
(based on the new dictionary.)
  • Loading branch information
driusan committed Oct 12, 2023
1 parent ea08824 commit 2303a9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/datadict/php/module.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ class Module extends \Module
*/
public function getLongName() : string
{
return "Data Dictionary";
return "Data Dictionary (Legacy)";
}
}
2 changes: 1 addition & 1 deletion modules/dictionary/php/module.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Module extends \Module
*/
public function getLongName() : string
{
return "Data Dictionary (Beta)";
return "Data Dictionary";
}

/**
Expand Down

0 comments on commit 2303a9f

Please sign in to comment.