Skip to content

Commit

Permalink
New release with improved dependencies installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
fengalin committed Dec 3, 2022
1 parent 0693174 commit 22c19c4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

-

### Version 2.0.4 (20221203)

Improve dependencies installation instructions.

### Version 2.0.3 (20220706)

Update to latest upstream tag for pyalsa.
Expand Down
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ exchanges, designing a communication framework and implementing the messages.
### With default GNOME theme

![Default theme](assets/gstation-edit_default-theme.png)
<br/>

### With dark GNOME theme

Expand Down Expand Up @@ -56,8 +55,24 @@ Make sure your system includes the following dependencies:
- python-3
- GTK 3.16 or higher
- gobject-introspection-devel
- alsa development files
- The rest of the dependencies will be installed via python.

Provided you already have `python-3` installed, use the following commands to
pull the required dependencies:

#### Fedora

```
sudo dnf install gtk3-devel alsa-lib-devel
```

#### Debian & Unbuntu

```
sudo apt-get install libgtk-3-dev libasound2-dev
```

### Install

#### Virtual Environment Initialization
Expand All @@ -76,7 +91,7 @@ From the dowload root directory:
```
pip install build wheel
python -m build
pip install --force-reinstall dist/gstation_edit-2.0.3-py3-none-any.whl
pip install --force-reinstall dist/gstation_edit-2.0.4-py3-none-any.whl
```

#### Execution
Expand Down
2 changes: 1 addition & 1 deletion gstation_edit/resources/gstation-edit-one-window.ui
Original file line number Diff line number Diff line change
Expand Up @@ -2817,7 +2817,7 @@
<property name="visible">True</property>
<property name="sensitive">False</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">Version 2.0.3</property>
<property name="label" translatable="yes">Version 2.0.4</property>
</object>
<packing>
<property name="left_attach">0</property>
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = gstation-edit
version = 2.0.3
version = 2.0.4
summary = GTK replacement for Johnson J-Station J-Edit.
author = F Laignel
author_email = fengalin@free.fr
Expand Down

0 comments on commit 22c19c4

Please sign in to comment.