From 910941592127f8b86043bcefc5d7d9868eb32f0b Mon Sep 17 00:00:00 2001 From: ehom Date: Tue, 7 Feb 2023 18:00:34 -0800 Subject: [PATCH] version 0.1.1 (#3) * initial checkout * correct name of main folder * add overview diagram * correct null filereader class * update diagram. clean up * fix typo * isolate version number * add support for bracketing the placeholders. that way, we can learn what values in the message is dynamic. * add support to message resources where the value is a message or the value is an object containing a message. * call pseudo_loc.main now * move __version__ to here * move __version__ to __init__.py * fix line spacing * placeholder for unit test * add starter unit tests * add different bracket to wrap around any placeholders in the message * add logging in place of print statements * added dotted box around source content * removed * update to show switch for enabling padding * add switch to enable padding. padding disabled, by default. * move localizer code to pseudo/lib * move localizer code to pseudo/lib * test default localizer * disable/remove print statements * change inner brackets to MATH SINGLE ANGLE (LEFT and RIGHT) * remove/disable print statements * updated intro * refactor build_file_path. rename to derive_output_target. during file processing time, before output file is written, make the output folder as needed. * refactor Localizer class to use the python decorators * make derive_output_target generic, not app-specific * add function to customize output_target for the application * call customize output_target for the application * move string decorators out of the Localizer class * update to use same files as in the message_lint project repo. * update to exclude id of message that exists * update patch number to ".1" --- pseudo_loc/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pseudo_loc/__init__.py b/pseudo_loc/__init__.py index ce6bcf5..67d2869 100644 --- a/pseudo_loc/__init__.py +++ b/pseudo_loc/__init__.py @@ -1,3 +1,3 @@ from pseudo_loc.main import main -__version__ = "0.1.0" +__version__ = "0.1.1"