You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
659 B
19 lines
659 B
7 years ago
|
#include <json-c/json.h>
|
||
|
#include <stdio.h>
|
||
|
#include "sway/ipc-json.h"
|
||
|
|
||
|
json_object *ipc_json_get_version() {
|
||
|
int major = 0, minor = 0, patch = 0;
|
||
|
json_object *version = json_object_new_object();
|
||
|
|
||
|
sscanf(SWAY_VERSION, "%u.%u.%u", &major, &minor, &patch);
|
||
|
|
||
|
json_object_object_add(version, "human_readable", json_object_new_string(SWAY_VERSION));
|
||
|
json_object_object_add(version, "variant", json_object_new_string("sway"));
|
||
|
json_object_object_add(version, "major", json_object_new_int(major));
|
||
|
json_object_object_add(version, "minor", json_object_new_int(minor));
|
||
|
json_object_object_add(version, "patch", json_object_new_int(patch));
|
||
|
|
||
|
return version;
|
||
|
}
|