Skip to content

Commit

Permalink
latest commits added
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdotx committed May 21, 2021
1 parent cb9e244 commit ddfd271
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
13 changes: 11 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,27 @@ MIT/X Consortium License
© 2013 Alexander Sedov <[email protected]>
© 2013 Nick White <[email protected]>
© 2013 David Dufberg <[email protected]>
© 2014-2017 Quentin Rameau <[email protected]>
© 2014-2021 Quentin Rameau <[email protected]>
© 2014-2016 Markus Teich <[email protected]>
© 2015 Jakukyo Friel <[email protected]>
© 2015 Ben Woolley <[email protected]>
© 2015 Greg Reagle <[email protected]>
© 2015 GhostAV <[email protected]>
© 2015 Ivan Tham <[email protected]>
© 2015-2017 Ivan Tham <[email protected]>
© 2015 Alexander Huemer <[email protected]>
© 2015 Michael Stevens <[email protected]>
© 2015 Felix Janda <[email protected]>
© 2016 Charles Lehner <[email protected]>
© 2016 Dmitry Bogatov <[email protected]>
© 2017 Hiltjo Posthuma <[email protected]>
© 2017 ssd <[email protected]>
© 2017 Constantine Bytensky <[email protected]>
© 2017 Eon S. Jeon <[email protected]>
© 2017 Jochen Sprickerhof <[email protected]>
© 2018 nzl <[email protected]>
© 2018 Eddie Thieda <[email protected]>
© 2018 Leonardo Taccari <[email protected]>
© 2019 efe <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dist: distclean
mkdir -p surf-$(VERSION)
cp -R LICENSE Makefile config.mk config.def.h README \
surf-open.sh arg.h TODO.md surf.png \
surf.1 $(SRC) $(CSRC) $(WSRC) surf-$(VERSION)
surf.1 common.h $(SRC) $(WSRC) surf-$(VERSION)
tar -cf surf-$(VERSION).tar surf-$(VERSION)
gzip surf-$(VERSION).tar
rm -rf surf-$(VERSION)
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ surf-websearch-20190510-d068a38.diff

Last implemented commit
-----------------------
2021-05-08 14:53 Bump version to 2.1 Quentin Rameau
2021-05-20 22:16 Fix togglestats array Quentin Rameau
11 changes: 5 additions & 6 deletions surf.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ static void clicknewwindow(Client *c, const Arg *a, WebKitHitTestResult *h);
static void clickexternplayer(Client *c, const Arg *a, WebKitHitTestResult *h);

static char winid[64];
static char togglestats[12];
static char togglestats[11];
static char pagestats[2];
static Atom atoms[AtomLast];
static Window embed;
Expand Down Expand Up @@ -685,11 +685,10 @@ gettogglestats(Client *c)
togglestats[3] = curconfig[DiskCache].val.i ? 'D' : 'd';
togglestats[4] = curconfig[LoadImages].val.i ? 'I' : 'i';
togglestats[5] = curconfig[JavaScript].val.i ? 'S' : 's';
togglestats[7] = curconfig[Style].val.i ? 'M' : 'm';
togglestats[8] = curconfig[FrameFlattening].val.i ? 'F' : 'f';
togglestats[9] = curconfig[Certificate].val.i ? 'X' : 'x';
togglestats[10] = curconfig[StrictTLS].val.i ? 'T' : 't';
togglestats[11] = '\0';
togglestats[6] = curconfig[Style].val.i ? 'M' : 'm';
togglestats[7] = curconfig[FrameFlattening].val.i ? 'F' : 'f';
togglestats[8] = curconfig[Certificate].val.i ? 'X' : 'x';
togglestats[9] = curconfig[StrictTLS].val.i ? 'T' : 't';
}

void
Expand Down

0 comments on commit ddfd271

Please sign in to comment.