diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f3aa48d..e4f2a439 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +### 2.9.0 +- [#168](https://github.com/brentvollebregt/auto-py-to-exe/issues/168): Confirmation dialog on overriding configuration values on import + ### 2.8.0 - Added translation handler - [#153](https://github.com/brentvollebregt/auto-py-to-exe/issues/153): Added Chinese translations diff --git a/auto_py_to_exe/__init__.py b/auto_py_to_exe/__init__.py index f2df444a..387cfacc 100644 --- a/auto_py_to_exe/__init__.py +++ b/auto_py_to_exe/__init__.py @@ -1 +1 @@ -__version__ = '2.8.0' +__version__ = '2.9.0' diff --git a/auto_py_to_exe/web/css/modal.css b/auto_py_to_exe/web/css/modal.css index d4e62a2a..5b8fd9d7 100644 --- a/auto_py_to_exe/web/css/modal.css +++ b/auto_py_to_exe/web/css/modal.css @@ -26,10 +26,11 @@ .modal-content { background-color: var(--background); margin: auto; - padding: 20px; + padding: 16px; border: 2px solid var(--primary); border-radius: var(--border-radius); width: 80%; + max-width: 600px; } @@ -51,8 +52,8 @@ padding: 4px; } -.modal-header { - padding-bottom: 12px; +.modal-header h2 { + margin: 0; } .modal-footer {