mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Show the development version.
This commit is contained in:
parent
67a81a7bf9
commit
c70bd2a85d
2 changed files with 5 additions and 2 deletions
5
html.c
5
html.c
|
@ -518,7 +518,10 @@ d_char *html_entry(snac *snac, d_char *os, char *msg, int local, int level, int
|
|||
if (strcmp(type, "Note") != 0) {
|
||||
s = xs_str_cat(s, "<div class=\"snac-post\">\n");
|
||||
|
||||
xs *s1 = xs_fmt("<p>%s</p>\n", type);
|
||||
xs *s1 = xs_fmt("<p>%s ?</p>\n", type);
|
||||
s = xs_str_cat(s, s1);
|
||||
|
||||
s = xs_str_cat(s, "</div>\n");
|
||||
|
||||
return xs_str_cat(os, s);
|
||||
}
|
||||
|
|
2
snac.h
2
snac.h
|
@ -1,7 +1,7 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 grunfink - MIT license */
|
||||
|
||||
#define VERSION "2.12"
|
||||
#define VERSION "2.13-dev"
|
||||
|
||||
#define USER_AGENT "snac/" VERSION
|
||||
|
||||
|
|
Loading…
Reference in a new issue