Skip to content

Commit

Permalink
build: 🔖 Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shiva-patt-oss committed Oct 22, 2023
1 parent 1dbed41 commit a94cb6f
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.0.51
==============
1. Added a status bar that displays the last status from the console log.
2. The ISO Welcome app now tries to update from GitHub if possible.

Version 0.0.50
==============
Update dependencies
Expand Down
2 changes: 1 addition & 1 deletion packaging/rebornos-welcome-git/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# 1. shivanandvp <[email protected], [email protected]>

pkgname='rebornos-welcome-git'
pkgver=0.0.50
pkgver=0.0.51
pkgrel=1

arch=('any')
Expand Down
4 changes: 2 additions & 2 deletions packaging/rebornos-welcome-local/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# 1. shivanandvp <[email protected], [email protected]>

pkgname='rebornos-welcome-local'
PKGVER_STUB=0.0.50
pkgver=0.0.50
PKGVER_STUB=0.0.51
pkgver=0.0.51
pkgrel=1

arch=('any')
Expand Down
2 changes: 1 addition & 1 deletion packaging/rebornos-welcome/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# 1. shivanandvp <[email protected], [email protected]>

pkgname='rebornos-welcome'
pkgver=0.0.50
pkgver=0.0.51
pkgrel=1

arch=('any')
Expand Down
2 changes: 1 addition & 1 deletion packaging_iso/rebornos-iso-welcome-git/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# 1. shivanandvp <[email protected], [email protected]>

pkgname='rebornos-iso-welcome-git'
pkgver=0.0.50
pkgver=0.0.51
pkgrel=1

arch=('any')
Expand Down
4 changes: 2 additions & 2 deletions packaging_iso/rebornos-iso-welcome-local/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# 1. shivanandvp <[email protected], [email protected]>

pkgname='rebornos-iso-welcome-local'
PKGVER_STUB=0.0.50
pkgver=0.0.50
PKGVER_STUB=0.0.51
pkgver=0.0.51
pkgrel=1

arch=('any')
Expand Down
2 changes: 1 addition & 1 deletion packaging_iso/rebornos-iso-welcome/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# 1. shivanandvp <[email protected], [email protected]>

pkgname='rebornos-iso-welcome'
pkgver=0.0.50
pkgver=0.0.51
pkgrel=1

arch=('any')
Expand Down
11 changes: 7 additions & 4 deletions user_interface/gtk/code/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,10 +328,13 @@ def is_new_github_package_available(self, single_package_name: str, url_stub: st
f"vercmp {current_version} {github_version}"
)

version_check_command_output = version_check_command.run_log_and_wait(logging_handler=self.logging_handler).strip()
if int(version_check_command_output) < 0:
return True
else:
try:
version_check_command_output = version_check_command.run_and_wait().strip()
if int(version_check_command_output) < 0:
return True
else:
return False
except:
return False

def filter_old_packages(
Expand Down
12 changes: 9 additions & 3 deletions user_interface/gtk/forms/main.glade
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@
<property name="visible">True</property>
<property name="can-focus">False</property>
<property name="margin-start">5</property>
<property name="label" translatable="yes">Status: </property>
<property name="label" translatable="yes">Last Status: </property>
<attributes>
<attribute name="weight" value="bold"/>
</attributes>
Expand Down Expand Up @@ -2083,7 +2083,7 @@
<property name="can-focus">False</property>
<property name="margin-top">5</property>
<property name="margin-bottom">5</property>
<property name="label" translatable="yes">0.0.50</property>
<property name="label" translatable="yes">0.0.51</property>
<attributes>
<attribute name="font-desc" value="Open Sans 11"/>
</attributes>
Expand Down Expand Up @@ -2145,7 +2145,13 @@
<property name="can-focus">False</property>
<property name="halign">start</property>
<property name="valign">start</property>
<property name="label" translatable="yes">Version 0.0.50
<property name="label" translatable="yes">
Version 0.0.51
==============
1. Added a status bar that displays the last status from the console log.
2. The ISO Welcome app now tries to update from GitHub if possible.

Version 0.0.50
==============
1. Fixed DNS Server change when `systemd-resolved` is in use.
2. Fixed CI for automated builds and automated releases.
Expand Down

0 comments on commit a94cb6f

Please sign in to comment.