UTF-8 fix attempt w/ libarchive (#44)

This commit is contained in:
simon987 2020-05-10 19:52:42 -04:00
parent 16514fd6b0
commit 013423424e
3 changed files with 5 additions and 3 deletions

View File

@ -3,6 +3,7 @@
#include <third-party/argparse/argparse.h>
#include <glib.h>
#include <locale.h>
#include "cli.h"
#include "io/serialize.h"
@ -19,7 +20,7 @@
#define EPILOG "Made by simon987 <me@simon987.net>. Released under GPL-3.0"
static const char *const Version = "2.2.0";
static const char *const Version = "2.2.1";
static const char *const usage[] = {
"sist2 scan [OPTION]... PATH",
"sist2 index [OPTION]... INDEX",
@ -312,6 +313,7 @@ void sist2_web(web_args_t *args) {
int main(int argc, const char *argv[]) {
setlocale(LC_ALL, "");
scan_args_t *scan_args = scan_args_create();
index_args_t *index_args = index_args_create();

View File

@ -11,7 +11,7 @@
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="/">sist2</a>
<span class="badge badge-pill version">2.2.0</span>
<span class="badge badge-pill version">2.2.1</span>
<span class="tagline">Lightning-fast file system indexer and search tool </span>
<button style="margin-left: auto" class="btn" type="button" data-toggle="modal" data-target="#settings" onclick="loadSettings()">Settings</button>
<a id="theme" class="btn" title="Toggle theme" href="/">Theme</a>

File diff suppressed because one or more lines are too long