diff --git a/Makefile b/Makefile index 59d4b4c..5b079fa 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CFLAGS=$(shell pkg-config --cflags --libs gtk+-3.0) CC=gcc VERSION=0.0 BUILD_DIR=build -BUILD_NAME=gemgui +BUILD_NAME=scorpius OS=$(shell uname -r) all: debug diff --git a/readme.gmi b/readme.gmi new file mode 100644 index 0000000..0a7ed96 --- /dev/null +++ b/readme.gmi @@ -0,0 +1,17 @@ +# Scorpius : a simple Gnome Gemini viewer + +Welcome on Scorpius. This is a simple Gnome Gemini file viewer. I will (maybe, it depends on how much time I can spend on it) try to make a simple Gtk Gemini browser with project. + +## Why ? + +Because I'm a gnome lover and, for the moment, all the Gemini client I saw aren't beautiful. Of course there is Lagrange but it is not well integrated in Gnome environment. + +## Where ? + +All the source code is on my self hosted Gitea instance. +=> https://git.rdelaage.ovh/rdelaage/scorpius.git Scorpius gitea repository + +## Notes + +* I'm not a Gtk professionnal, my program might be incorrect +* You can't register on my Gitea, you must send me your patch by email (you can use romain.delaage@rdelaage.ovh) diff --git a/src/main.c b/src/main.c index fe78fc4..ddb18e1 100644 --- a/src/main.c +++ b/src/main.c @@ -52,7 +52,7 @@ build_interface (GtkWidget *window) scrollbar = gtk_scrolled_window_new (NULL, NULL); gtk_container_add (GTK_CONTAINER (window), scrollbar); headerBar = gtk_header_bar_new (); - gtk_header_bar_set_title(GTK_HEADER_BAR (headerBar), "GTK Gemini Browser"); + gtk_header_bar_set_title(GTK_HEADER_BAR (headerBar), "Scorpius"); gtk_header_bar_set_show_close_button (GTK_HEADER_BAR (headerBar), TRUE); gtk_window_set_titlebar (GTK_WINDOW (window), headerBar); pathBarContent = gtk_entry_buffer_new (NULL, -1);