-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve metadata / PDC usage #183
base: main
Are you sure you want to change the base?
Conversation
- Improved some error messages, - Added a bridge DataType between strings and supported PDTs - Improved the meta_ placeholders - Made the type optional for meta_has_value placeholder - PMH#hasMeta now only checks the supported types if no type is specified.
The merge-base changed after approval.
Hello ! |
I have tested about 90% of the changes. I still have to test the meta placeholders and make sure they work properly and then we should be good to go. I'm not sure when I'll have time to do that. |
This PR is ready for code review. Tested on @NoltoxGit if you want to give this build a try before it is merged, you can use the following file (unzip it first): |
Hi, |
I've just tested the version, it's look work great! And have a suggestion:
|
It is possible to add such a command, but, unfortunately, due to how we store values, it would be buggy when determining what type a value is. This is the reason I did not add it in the first place. |
This PR improves the current PDC usage and adds new commands for handling use metadata.
For DeluxeMenus users:
Added:
show
: Gets the stored value at the specified key as long as it matches the specified typelist
: List all key-value pairs of a specified typeset
: Set a value of specified type at the specified key (if a value exists at the given key, it will override it only if the type matches)remove
: Remove a value of specified type from the specified key (as long as existent value matches the given type)add
: Used for addition on number types (If no value exists at the given key yet, the addition will be done on a 0 value)subtract
: Used for subtraction on number types (If no value exists at the given key yet, the subtraction will be done on a 0 value)switch
: Used for switching boolean values. Since BOOLEAN type is just an alias for String, it will also work for String types as long as the values are true or false (case insensitive)/papi info deluxemenus
)Changed:
%deluxemenus_meta_has_value_<key>_[type]%
placeholder no longer requires a type to be specified. If no type is specified, all supported types will be checked.For DeluxeMenus developers:
Closes #134