From f7b54c19b27536659add9c794e06033d1eb12886 Mon Sep 17 00:00:00 2001 From: Felix Kratz Date: Tue, 4 Jan 2022 23:51:35 +0100 Subject: [PATCH] push version to 2.4.0 --- README.md | 4 ++-- src/sketchybar.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b64018b9..e6bdf932 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ where the settings currently are: * *topmost*: draws sketchybar on top of *everything* (even the default menu bar) (*on*, *off*, *toggle*, default: *off*) * *font_smoothing*: wheter fonts should be smoothened (*on*, *off*, *toggle*, default: *off*) * *shadow*: if the bar should draw a shadow (*on*, *off*, *toggle*, default: *off*) -* *image*: Sets a background image (further details below in the *image* properties, Only on HEAD) +* *image*: Sets a background image (further details below in the *image* properties) ## Items and their properties Items are the main building blocks of sketchybar and can be configured in a number of ways. Items have the following basic structure:
@@ -231,7 +231,7 @@ Shadow properties: * *shadow.distance*: The distance of the shadow (default: 5) * *shadow.color*: The color of the shadow (default: 0xff000000) -Image properties (Only on HEAD, and still a bit buggy, can be resource intensive if many large images are drawn): +Image properties (Can be resource intensive if many large images are drawn): * *image*: The path to a png or jpeg image file * *image.drawing*: If the image should draw * *image.scale*: The scale factor that should be applied to the image diff --git a/src/sketchybar.c b/src/sketchybar.c index 97e42184..bbb28c74 100644 --- a/src/sketchybar.c +++ b/src/sketchybar.c @@ -11,8 +11,8 @@ #define VERSION_OPT_SHRT "-v" #define MAJOR 2 -#define MINOR 3 -#define PATCH 2 +#define MINOR 4 +#define PATCH 0 extern int SLSMainConnectionID(void); extern int RunApplicationEventLoop(void);