From 54e19de8df26d9c8f4c669d0583e0e41745cfba8 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Sat, 12 Jun 2021 14:57:24 +0000 Subject: [PATCH] tagged 0.2 Changelog since 0.1.1: * save certificates per (host, port) tuple, not only per-host * don't crash on invalid lines in known_hosts * allow saving the new certificate after mismatch * fix cmd_scroll_down/up: they scrolled two line more than what intended * fix out-of-bound * automatic gemini:// on load-url * display a `!' when a non-focused tab gets loaded * added aliases for tab-{next,new,previous} * unbreak forward-char * debounce resize event * new heuristic to obtain the page title: if no h1 found, try with h2s and h3s * ask the user to save a page when it can't be rendered * drop the urgent flag when switching to a tab after closing one * fix tab width --- ChangeLog | 2 ++ configure.ac | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 85d8703..16e00e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2021-06-12 Omar Polo + * configure.ac: tagged 0.2 + * utf8.c (utf8_chwidth): fix tab width 2021-06-11 Omar Polo diff --git a/configure.ac b/configure.ac index 001d649..7fd8be6 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([telescope], [0.1.1], [telescope@omarpolo.com], [telescope], [gemini://telescope.omarpolo.com]) +AC_INIT([telescope], [0.2], [telescope@omarpolo.com], [telescope], [gemini://telescope.omarpolo.com]) AC_CONFIG_LIBOBJ_DIR(compat) AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) AC_PROG_CC_C99