Change project name and add default file

This commit is contained in:
Romain de Laage 2021-02-14 14:58:28 +01:00
parent 19ad2fec2f
commit baa727b2a4
Signed by: rdelaage
GPG Key ID: 534845FADDF0C329
3 changed files with 19 additions and 2 deletions

View File

@ -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

17
readme.gmi Normal file
View File

@ -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)

View File

@ -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);