Sync with archive
This commit is contained in:
parent
7daa5ffbb7
commit
9a2b5b6450
15
debian/changelog
vendored
15
debian/changelog
vendored
@ -1,3 +1,18 @@
|
|||||||
|
lubuntu-update-notifier (1.0.0~alpha4) noble; urgency=medium
|
||||||
|
|
||||||
|
* Fix infinite loop when no eligible new release is available.
|
||||||
|
* Fix a bug where only the first eligible new release would be considered.
|
||||||
|
|
||||||
|
-- Aaron Rainbolt <arraybolt3@ubuntu.com> Fri, 09 Feb 2024 22:26:59 +0000
|
||||||
|
|
||||||
|
lubuntu-update-notifier (1.0.0~alpha3) noble; urgency=medium
|
||||||
|
|
||||||
|
* New feature release. Notable additions:
|
||||||
|
- do-release-upgrade support
|
||||||
|
* Updated runtime dependencies.
|
||||||
|
|
||||||
|
-- Aaron Rainbolt <arraybolt3@ubuntu.com> Fri, 02 Feb 2024 11:37:36 -0600
|
||||||
|
|
||||||
lubuntu-update-notifier (1.0.0~alpha2) noble; urgency=medium
|
lubuntu-update-notifier (1.0.0~alpha2) noble; urgency=medium
|
||||||
|
|
||||||
* New feature release. Notable additions:
|
* New feature release. Notable additions:
|
||||||
|
3
debian/control
vendored
3
debian/control
vendored
@ -12,7 +12,8 @@ Rules-Requires-Root: no
|
|||||||
|
|
||||||
Package: lubuntu-update-notifier
|
Package: lubuntu-update-notifier
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: ${misc:Depends},
|
Depends: curl,
|
||||||
|
${misc:Depends},
|
||||||
${shlibs:Depends}
|
${shlibs:Depends}
|
||||||
Description: Lubuntu's update installer
|
Description: Lubuntu's update installer
|
||||||
Lubuntu Update is an enhanced, modern update installer for the Lubuntu
|
Lubuntu Update is an enhanced, modern update installer for the Lubuntu
|
||||||
|
@ -148,9 +148,11 @@ elif [ "$1" = 'doupdate' ]; then
|
|||||||
releaseMonth='04';
|
releaseMonth='04';
|
||||||
((releaseYear++));
|
((releaseYear++));
|
||||||
fi
|
fi
|
||||||
if isReleaseSupported "$releaseYear" "$releaseMonth" "$metaReleaseData"; then
|
releaseSupportedResult="$(isReleaseSupported "$releaseYear" "$releaseMonth" "$metaReleaseData"; echo "$?")";
|
||||||
|
if [ "$releaseSupportedResult" = '0' ]; then
|
||||||
echo 'Lubuntu Update !!! NEW RELEASE';
|
echo 'Lubuntu Update !!! NEW RELEASE';
|
||||||
echo "$releaseYear.$releaseMonth";
|
echo "$releaseYear.$releaseMonth";
|
||||||
|
elif [ "$releaseSupportedResult" = '2' ]; then
|
||||||
break;
|
break;
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user