Skip to content

Commit

Permalink
support vala 0.46 / ubuntu 20.04, fix debian/changelog, maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
bkw777 committed Jan 4, 2020
1 parent 6f9d401 commit 73c60bc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .deb_build_number.mak
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file is generated by Makefile
DEB_PKG_VERSION := 1.0.3
DEB_BUILD_NUMBER := 0004
DEB_PKG_VERSION := 1.0.4
DEB_BUILD_NUMBER := 0000
2 changes: 1 addition & 1 deletion BRANDING.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

VERSION_MAJOR = 1
VERSION_MINOR = 0
VERSION_MICRO = 3
VERSION_MICRO = 4
BRANDING_SHORTNAME = mainline
BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer
BRANDING_AUTHORNAME = Brian K. White
Expand Down
16 changes: 11 additions & 5 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
mainline (1.0.3) UNRELEASED; urgency=medium
mainline (1.0.4) unstable; urgency=medium
* Support vala 0.46 / Uubuntu 20.04
copy fix from https://gitlab.manjaro.org/applications/pamac/issues/649
Fill in a few missing dependencies (README.md.src, debian/control.src)

-- Brian K. White <[email protected]> Sat, 04 Jan 2020 03:58:01 -0500

mainline (1.0.3) unstable; urgency=medium
* Change setting kernel_version_threshold to show_prev_majors
Instead of saying hide kernels older than major version N, where the user has to periodically increase N manually,
Now the setting says, hide kernels older than major version (CURRENT_HIGHEST minus N), where CURRENT_HIGHEST is determined on the fly every time, and N can stay the same 0 or 1 etc forever.
All of the current highest major version is always shown. The setting says how many previous major versions to add to that.
* Fill in a few missing dependencies (README.md.src, debian/control.src)

-- Brian K. White <[email protected]> Sat, 04 Jan 2020 03:35:56 -0500
-- Brian K. White <[email protected]> Sat, 04 Jan 2020 01:13:54 -0500

mainline (1.0.2) UNRELEASED; urgency=medium
mainline (1.0.2) unstable; urgency=medium
* Makefile:
- Use one variable style everywhere
- Only regenerate .pot file if any source files changed
Expand All @@ -31,7 +37,7 @@ mainline (1.0.2) UNRELEASED; urgency=medium

-- Brian K. White <[email protected]> Fri, 03 Jan 2020 18:01:59 -0500

mainline (1.0.1) UNRELEASED; urgency=medium
mainline (1.0.1) unstable; urgency=medium
* Disabled buggy progress bar
* Add missing translators on credits window

Expand Down
4 changes: 2 additions & 2 deletions po/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mainline 1.0.3\n"
"Project-Id-Version: mainline 1.0.4\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2020-01-04 03:35-0500\n"
"POT-Creation-Date: 2020-01-04 04:04-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down
2 changes: 1 addition & 1 deletion src/Utility/AsyncTask.vala
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public abstract class AsyncTask : GLib.Object{
public signal void stderr_line_read(string line);
public signal void task_complete();

public AsyncTask(){
protected AsyncTask(){
working_dir = TEMP_DIR + "/" + timestamp_for_path();
script_file = path_combine(working_dir, "script.sh");
log_file = path_combine(working_dir, "task.log");
Expand Down

0 comments on commit 73c60bc

Please sign in to comment.