releasing package lubuntu-artwork version 0.52
This commit is contained in:
parent
17831e6703
commit
5020ff99b9
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
|||||||
|
lubuntu-artwork (0.52) vivid; urgency=medium
|
||||||
|
|
||||||
|
* Add fsck report and cancel support with systemd to the logo theme
|
||||||
|
(LP: #1425434)
|
||||||
|
|
||||||
|
-- Didier Roche <didrocks@ubuntu.com> Wed, 25 Feb 2015 13:18:24 +0100
|
||||||
|
|
||||||
lubuntu-artwork (0.51) vivid; urgency=medium
|
lubuntu-artwork (0.51) vivid; urgency=medium
|
||||||
|
|
||||||
* usr/share/icons:
|
* usr/share/icons:
|
||||||
|
@ -473,6 +473,13 @@ fun message_callback (message)
|
|||||||
if (keys != NULL)
|
if (keys != NULL)
|
||||||
message = StringCopy (message, keys + StringLength(local.substring), NULL);
|
message = StringCopy (message, keys + StringLength(local.substring), NULL);
|
||||||
|
|
||||||
|
# Get the message without the "fsckd-cancel-msg" prefix as we don't support i18n
|
||||||
|
substring = "fsckd-cancel-msg:";
|
||||||
|
keys = StringString(message, substring);
|
||||||
|
if (keys != NULL)
|
||||||
|
message = StringCopy(message, keys + StringLength(substring), NULL);
|
||||||
|
|
||||||
|
|
||||||
local.label.is_fake = is_fake;
|
local.label.is_fake = is_fake;
|
||||||
label = get_message_label(message, is_fake, is_action_line);
|
label = get_message_label(message, is_fake, is_action_line);
|
||||||
label.z = 10000;
|
label.z = 10000;
|
||||||
@ -983,6 +990,23 @@ fun update_status_callback (status) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# systemd-fsckd pass fsckd:<number_devices>:<progress>:<l10n_string>
|
||||||
|
if (update_strings[0] == "fsckd") {
|
||||||
|
number_devices = StringToInteger(update_strings[1]);
|
||||||
|
|
||||||
|
if (number_devices > 0) {
|
||||||
|
label = update_strings[3];
|
||||||
|
|
||||||
|
progress_label = get_fsck_label (label, 0);
|
||||||
|
progress_label.sprite = Sprite (progress_label.image);
|
||||||
|
progress_label.sprite.SetPosition(progress_label.x, progress_label.y, 1);
|
||||||
|
progress_label.sprite.SetOpacity (1);
|
||||||
|
} else {
|
||||||
|
if (progress_label.sprite)
|
||||||
|
progress_label.sprite.SetOpacity (0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Plymouth.SetUpdateStatusFunction (update_status_callback);
|
Plymouth.SetUpdateStatusFunction (update_status_callback);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user