version bump
This commit is contained in:
@ -25,7 +25,7 @@ struct Config
|
||||
bool ignoreClientMachine = false;
|
||||
};
|
||||
|
||||
const char *argp_program_version = "1.0.2";
|
||||
const char *argp_program_version = "1.0.3";
|
||||
const char *argp_program_bug_address = "<carl@uvos.xyz>";
|
||||
static char doc[] = "Deamon that stops programms via SIGSTOP when their X11 windows lose focus.";
|
||||
static char args_doc[] = "";
|
||||
|
4
debian/changelog
vendored
4
debian/changelog
vendored
@ -1,3 +1,7 @@
|
||||
sigstoped (1.0.3) unstable; urgency=medium
|
||||
Ignore BadWindow errors caused by faulty __NET_ACTIVE_WINDOW events
|
||||
-- Uvos <carl@uvos.xyz> Mon, 15 Jun 2020 23:47:00 +0100
|
||||
|
||||
sigstoped (1.0.2) unstable; urgency=medium
|
||||
Inital version
|
||||
-- Uvos <carl@uvos.xyz> Mon, 10 Jun 2020 15:00:00 +0100
|
||||
|
2
main.cpp
2
main.cpp
@ -159,7 +159,7 @@ int main(int argc, char* argv[])
|
||||
std::string confDir = getConfdir();
|
||||
if(confDir.size() == 0) return 1;
|
||||
|
||||
if(!createPidFile(confDir+"pidfile"));
|
||||
if(!createPidFile(confDir+"pidfile")) return 1;
|
||||
|
||||
std::vector<std::string> applicationNames = getApplicationlist(confDir+"blacklist");
|
||||
|
||||
|
Reference in New Issue
Block a user