Skip to content

Commit

Permalink
Release 0.4.1-1
Browse files Browse the repository at this point in the history
  • Loading branch information
R1tschY committed Sep 9, 2019
1 parent 72d88ac commit f6e2549
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion rpm/harbour-sailfishconnect.changes
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# * date Author's Name <author's email> version-release
# - Summary of changes

* Sun Sep 01 2019 Richard Liebscher <[email protected]> 0.4.1-1
* Mon Sep 09 2019 Richard Liebscher <[email protected]> 0.4.1-1
- Fix bug of app quiting after file transfer of any kind when screen is off
- Added translation for French and one missing translatable string (thanks to the translators)
- Fix file upload to GSConnect
- Wake up app regularly to keep TCP connections alive (#27)

* Sun Aug 18 2019 Richard Liebscher <[email protected]> 0.4-1
- Added keyboard plugin (thanks to derFogel)
Expand Down
4 changes: 2 additions & 2 deletions scripts/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Path(__file__).parent.parent / "rpm" / "harbour-sailfishconnect.changes"
)
HEADER_RE = re.compile(
r"^\* (?P<date>\w+ \w+ \d+ \d+) (?P<author>[^<]+) <(?P<email>[^>]+)> (?P<version>[\w.~]+)-(?P<release>\d+)",
r"^\* (?P<date>\w+ \w+ \d+ \d+) (?P<author>[^<]+) <(?P<email>[^>]+)> (?P<version>[^\-]+)-(?P<release>\d+)",
re.M,
)

Expand Down Expand Up @@ -78,7 +78,7 @@ def find_first_header(changelog: str) -> ChangelogHeader:

def format_datetime(datetime):
locale.setlocale(locale.LC_ALL, "C")
return datetime.strftime("%a %b %e %Y")
return datetime.strftime("%a %b %d %Y")


def apply_commandfn(fn, args):
Expand Down

0 comments on commit f6e2549

Please sign in to comment.