Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrustic committed Apr 17, 2021
1 parent 45de98d commit 7129b2e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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...


<!-- License -->
Expand Down
2 changes: 1 addition & 1 deletion hubstore/misc/my_theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -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*")
Expand Down
2 changes: 1 addition & 1 deletion hubstore/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.6"
__version__ = "0.0.7"
2 changes: 1 addition & 1 deletion hubstore/view/init_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 7129b2e

Please sign in to comment.