From 7129b2ea7e55f20a53ab9efa036bad18d5d01f54 Mon Sep 17 00:00:00 2001 From: Pyrustic Evangelist Date: Sat, 17 Apr 2021 22:32:32 +0100 Subject: [PATCH] Update --- README.md | 7 ------- hubstore/misc/my_theme.py | 2 +- hubstore/version.py | 2 +- hubstore/view/init_view.py | 2 +- 4 files changed, 3 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7314eb8..ab4a92c 100644 --- a/README.md +++ b/README.md @@ -128,12 +128,6 @@ Play with `Hubstore` to discover more about it. If you have never installed a package from PyPI, you must install the pip tool enabling you to download and install a PyPI package. There are several methods which are described on this [page](https://pip.pypa.io/en/latest/installing/). -```bash -$ pip install hubstore -$ hubstore -``` - -To upgrade Hubstore: ```bash $ pip install hubstore --upgrade --upgrade-strategy eager @@ -144,7 +138,6 @@ I recommend you to try the demo: just type `pyrustic/demo` in `Hubstore`. You ca `Hubstore` simply take profit of the elegance of Python itself to avoid platform-specific scripts/stuff/voodoo. -A better README will come later. A better serious documentation well written and more stuff... For the moment, the audience is: only early adopters, hackers, curious... diff --git a/hubstore/misc/my_theme.py b/hubstore/misc/my_theme.py index a1198ff..d8012e3 100644 --- a/hubstore/misc/my_theme.py +++ b/hubstore/misc/my_theme.py @@ -24,7 +24,7 @@ def get_theme(): def _get_general_theme(): theme = Theme() theme.add_style(get_button_style(), scope="*Button*") - theme.add_style(_get_button_go_style(), scope="*button_go*") + theme.add_style(_get_header_buttons_style(), scope="*button_go*") theme.add_style(_get_header_buttons_style(), scope="*menu_frame*Button*") theme.add_style(_get_entry_owner_name_style(), scope="*entry_owner_name*") theme.add_style(get_entry_repo_name_default_style(), scope="*entry_repo_name*") diff --git a/hubstore/version.py b/hubstore/version.py index 034f46c..6526deb 100644 --- a/hubstore/version.py +++ b/hubstore/version.py @@ -1 +1 @@ -__version__ = "0.0.6" +__version__ = "0.0.7" diff --git a/hubstore/view/init_view.py b/hubstore/view/init_view.py index 66206a8..9556fcd 100644 --- a/hubstore/view/init_view.py +++ b/hubstore/view/init_view.py @@ -62,7 +62,7 @@ def _on_build(self): browse="dir", initialdir=initialdir, title="Select a folder", - extra_options=cache) + cnfs=cache) pathentry.pack(fill=tk.X, padx=(0, 2), pady=(0, 10)) self._strvar_path = pathentry.string_var pathentry.components["entry"].focus_set()