Skip to content

Commit

Permalink
Release 1.43.8-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
stewartadam committed Jun 26, 2023
1 parent 9aa6a42 commit 116820d
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 15 deletions.
5 changes: 4 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# This is the full fwbackups changelog, with detailed listing of changes between
# various versions dating all the way back from the very beginning.
|| Version 1.43.8 changes ||
* Sat Jan 7 2022 Stewart Adam <s.adam at diffingo.com>
* Mon Jun 26 2023 Stewart Adam <s.adam at diffingo.com>
- Launch dbus session when running fwbackups-run from cron (fixes #17)

* Sat Jan 7 2023 Stewart Adam <s.adam at diffingo.com>
- Update to GTK 4 and Python 3
- Migrate to adwaita iconography and widgets
- Remove tray icon, use system notifications instead
Expand Down
13 changes: 4 additions & 9 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,25 +132,20 @@ mkdir -p _build_flatpak
Build and test the image locally:

```sh
flatpak-builder --user --install --force-clean build-dir com.diffingo.fwbackups.json
flatpak-builder --user --install --force-clean _build_flatpak com.diffingo.fwbackups.json
flatpak run com.diffingo.fwbackups
```

Install it:

```sh
flatpak-builder --repo=repo --force-clean _build_flatpak com.diffingo.fwbackups.json
flatpak build-update-repo repo
```
*Note if you have made local changes to the source code, they need to be committed in order for them to be included in the built flatpak.*

Run the administrator GUI:

```sh
flatpak-run com.diffingo.fwbackups
flatpak run com.diffingo.fwbackups
```

Run one of the CLI commands:

```sh
flatpak-run com.diffingo.fwbackups --command=/bin/env -- fwbackups-run 'setname'
flatpak run com.diffingo.fwbackups --command=/bin/env -- fwbackups-run 'setname'
```
1 change: 1 addition & 0 deletions data/com.diffingo.fwbackups.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<url type="bugtracker">https://github.com/stewartadam/fwbackups/issues</url>
<content_rating type="oars-1.1" />
<releases>
<release date="2023-06-26" version="1.43.8-rc2" />
<release date="2023-01-17" version="1.43.8-rc1" />
</releases>
<categories>
Expand Down
6 changes: 3 additions & 3 deletions docs/User_Guide/en-US/Revision_History.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<title>Revision History</title>
<simpara>
<revhistory>
<revision>
<revision>
<revnumber>4-4</revnumber>
<date>Tue Jan 17 2023</date>
<author>
Expand All @@ -17,11 +17,11 @@
</author>
<revdescription>
<simplelist>
<member>Release 1.43.8 &amp; slight change to CLI usage</member>
<member>Release 1.43.8-rc1 &amp; slight change to CLI usage</member>
</simplelist>
</revdescription>
</revision>
<revision>
<revision>
<revnumber>4-3</revnumber>
<date>Tue Dec 26 2017</date>
<author>
Expand Down
3 changes: 3 additions & 0 deletions fwbackups.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ or from the contents of an external folder or archive.
%{python3_sitelib}/%{name}/

%changelog
* Mon Jun 26 2023 Stewart Adam <s.adam at diffingo.com> - 1.43.8~rc2-1
- Update to 1.43.8-rc2

* Tue Jan 17 2023 Stewart Adam <s.adam at diffingo.com> - 1.43.8~rc1-1
- Update to 1.43.8-rc1 (GTK 4 and Python 3)

Expand Down
2 changes: 1 addition & 1 deletion fwbackups/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from .i18n import encode

__author__ = "Stewart Adam <[email protected]>"
__version__ = "1.43.8-rc1"
__version__ = "1.43.8-rc2"
__license__ = "GPL-2.0-or-later"


Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('fwbackups',
version: '1.43.8-rc1',
version: '1.43.8-rc2',
meson_version: '>= 0.62.0',
default_options: [ 'warning_level=2', 'werror=false', ],
)
Expand Down

0 comments on commit 116820d

Please sign in to comment.