From e51517ca60358b76743f91c83081f7a5a0864ba3 Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Tue, 26 Jul 2022 08:20:50 -0700 Subject: [PATCH] Rebrand to RaSCSI Reloaded in key places in the code (#772) * Add Reloaded to readme * Add Reloaded to prominent places in the web app * Add Reloaded to the rascsi startup message --- README.md | 6 +++--- python/web/src/templates/base.html | 6 +++--- src/raspberrypi/rascsi.cpp | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 5c7eb81a..e7f675ef 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# What is RaSCSI? -RaSCSI is a virtual SCSI device emulator that runs on a Raspberry Pi. It runs in userspace, and can emulate several SCSI devices at one time. There is a control interface to attach / detach drives during runtime, as well as insert and eject removable media. This project is aimed at users of vintage Macintosh and Atari computers and more (see [compatibility list](https://github.com/akuker/RASCSI/wiki/Compatibility)) from the 1980's and 1990's. +# What is RaSCSI Reloaded? +RaSCSI Reloaded is a virtual SCSI device emulator that runs on a Raspberry Pi. It runs in userspace, and can emulate several SCSI devices at one time. There is a control interface to attach / detach drives during runtime, as well as insert and eject removable media. This project is aimed at users of vintage Macintosh and Atari computers and more (see [compatibility list](https://github.com/akuker/RASCSI/wiki/Compatibility)) from the 1980's and 1990's. Please check out the full story with much more detail on the [wiki](https://github.com/akuker/RASCSI/wiki)! # How do I contribute? -RaSCSI is using the Gitflow Workflow. A quick overview: +RaSCSI Reloaded is using the Gitflow Workflow. A quick overview: - The *master* branch should always reflect the contents of the last stable release - The *develop* branch should contain the latest tested & approved updates. Pull requests should be used to merge changes into develop. diff --git a/python/web/src/templates/base.html b/python/web/src/templates/base.html index 9871e8d8..ce8553e1 100644 --- a/python/web/src/templates/base.html +++ b/python/web/src/templates/base.html @@ -1,7 +1,7 @@ - {{ _("RaSCSI Control Page") }} [{{ host }}] + {{ _("RaSCSI Reloaded Control Page") }} [{{ host }}] @@ -64,7 +64,7 @@ -

{{ _("RaSCSI Control Page") }}

+

{{ _("RaSCSI Reloaded Control Page") }}

@@ -89,7 +89,7 @@ {% block content %}{% endblock content %} diff --git a/src/raspberrypi/rascsi.cpp b/src/raspberrypi/rascsi.cpp index cbc0f1dd..79711f4d 100644 --- a/src/raspberrypi/rascsi.cpp +++ b/src/raspberrypi/rascsi.cpp @@ -91,14 +91,14 @@ void KillHandler(int sig) //--------------------------------------------------------------------------- void Banner(int argc, char* argv[]) { - FPRT(stdout,"SCSI Target Emulator RaSCSI(*^..^*) "); + FPRT(stdout,"SCSI Target Emulator RaSCSI Reloaded "); FPRT(stdout,"version %s (%s, %s)\n", rascsi_get_version_string(), __DATE__, __TIME__); FPRT(stdout,"Powered by XM6 TypeG Technology / "); FPRT(stdout,"Copyright (C) 2016-2020 GIMONS\n"); - FPRT(stdout,"Copyright (C) 2020-2022 Contributors to the RaSCSI project\n"); + FPRT(stdout,"Copyright (C) 2020-2022 Contributors to the RaSCSI Reloaded project\n"); FPRT(stdout,"Connect type : %s\n", CONNECT_DESC); if ((argc > 1 && strcmp(argv[1], "-h") == 0) ||