Merge branch 'maint'
This commit is contained in:
commit
7a9187728c
@ -6,6 +6,12 @@
|
|||||||
|
|
||||||
- `fullscreen` rule to hide notifications when a fullscreen window is active
|
- `fullscreen` rule to hide notifications when a fullscreen window is active
|
||||||
|
|
||||||
|
## 1.3.2 - 2018-05-06
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Crash when trying to load an invalid or corrupt icon (#512)
|
||||||
|
|
||||||
## 1.3.1 - 2018-01-30
|
## 1.3.1 - 2018-01-30
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
2
Makefile
2
Makefile
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
include config.mk
|
include config.mk
|
||||||
|
|
||||||
VERSION := "1.3.1-non-git"
|
VERSION := "1.3.2-non-git"
|
||||||
ifneq ($(wildcard ./.git/),)
|
ifneq ($(wildcard ./.git/),)
|
||||||
VERSION := $(shell git describe --tags)
|
VERSION := $(shell git describe --tags)
|
||||||
endif
|
endif
|
||||||
|
@ -330,7 +330,7 @@ static GdkPixbuf *get_pixbuf_from_file(const char *icon_path)
|
|||||||
GError *error = NULL;
|
GError *error = NULL;
|
||||||
pixbuf = gdk_pixbuf_new_from_file(icon_path, &error);
|
pixbuf = gdk_pixbuf_new_from_file(icon_path, &error);
|
||||||
if (pixbuf == NULL)
|
if (pixbuf == NULL)
|
||||||
g_free(error);
|
g_error_free(error);
|
||||||
}
|
}
|
||||||
return pixbuf;
|
return pixbuf;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user