From 6bc94ff52fa218e977c1291453d9bf6eb76f0303 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 10 Sep 2025 12:46:01 +0200 Subject: [PATCH] add missing files, tweaks to fields --- MANIFEST.in | 3 ++- changedetectionio/forms.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 950c182d..e5ddadf3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,7 @@ recursive-include changedetectionio/api * recursive-include changedetectionio/blueprint * -recursive-include changedetectionio/content_fetchers * recursive-include changedetectionio/conditions * +recursive-include changedetectionio/content_fetchers * recursive-include changedetectionio/model * recursive-include changedetectionio/notification * recursive-include changedetectionio/processors * @@ -9,6 +9,7 @@ recursive-include changedetectionio/realtime * recursive-include changedetectionio/static * recursive-include changedetectionio/templates * recursive-include changedetectionio/tests * +recursive-include changedetectionio/widgets * prune changedetectionio/static/package-lock.json prune changedetectionio/static/styles/node_modules prune changedetectionio/static/styles/package-lock.json diff --git a/changedetectionio/forms.py b/changedetectionio/forms.py index e9aa31c3..ab39af30 100644 --- a/changedetectionio/forms.py +++ b/changedetectionio/forms.py @@ -617,7 +617,7 @@ class processor_text_json_diff_form(commonSettingsForm): text_should_not_be_present = StringListField('Block change-detection while text matches', [validators.Optional(), ValidateListRegex()]) webdriver_js_execute_code = TextAreaField('Execute JavaScript before change detection', render_kw={"rows": "5"}, validators=[validators.Optional()]) - save_button = SubmitField('Save', render_kw={"class": "pure-button button-small pure-button-primary"}) + save_button = SubmitField('Save', render_kw={"class": "pure-button pure-button-primary"}) proxy = RadioField('Proxy') # filter_failure_notification_send @todo make ternary @@ -803,7 +803,7 @@ class globalSettingsForm(Form): requests = FormField(globalSettingsRequestForm) application = FormField(globalSettingsApplicationForm) - save_button = SubmitField('Save', render_kw={"class": "pure-button button-small pure-button-primary"}) + save_button = SubmitField('Save', render_kw={"class": "pure-button pure-button-primary"}) class extractDataForm(Form):