Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
lizardbyte rebrand
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Oct 22, 2022
1 parent f99a536 commit 54cd023
Show file tree
Hide file tree
Showing 24 changed files with 61 additions and 59 deletions.
30 changes: 15 additions & 15 deletions DOCKER_README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Docker
### lizardbyte/retroarcher

## Using docker run
#### Using docker run
Create and run the container (substitute your `<values>`):

```bash
Expand All @@ -12,7 +12,7 @@ docker run -d \
-e PGID=<gid> \
-e TZ=<timezone> \
-p 9696:9696 \
retroarcher/retroarcher
lizardbyte/retroarcher
```

To update the container it must be removed and recreated:
Expand All @@ -23,20 +23,20 @@ docker stop retroarcher
# Remove the container
docker rm retroarcher
# Pull the latest update
docker pull retroarcher/retroarcher
docker pull lizardbyte/retroarcher
# Run the container with the same parameters as before
docker run -d ...
```

## Using docker-compose
#### Using docker-compose

Create a `docker-compose.yml` file with the following contents (substitute your `<values>`):

```yaml
version: '3'
services:
retroarcher:
image: retroarcher/retroarcher
image: lizardbyte/retroarcher
container_name: retroarcher
restart: unless-stopped
volumes:
Expand All @@ -63,7 +63,7 @@ docker-compose pull
docker-compose up -d
```

## Parameters
#### Parameters
You must substitute the `<values>` with your own settings.

Parameters are split into two halves separated by a colon. The left side represents the host and the right side the
Expand All @@ -75,15 +75,15 @@ Therefore `-p 9696:9696` would expose port `9696` from inside the container to b
(e.g. `-p 8080:9696`).


| Parameter | Function | Example Value | Required |
| --------------------------- | -------------------- | ------------------- | -------- |
| `-p <port>:9696` | Web UI Port | `9696` | True |
| `-v <path to data>:/config` | Volume mapping | `/home/retroarcher` | True |
| `-e PUID=<uid>` | User ID | `1001` | False |
| `-e PGID=<gid>` | Group ID | `1001` | False |
| `-e TZ=<timezone>` | Lookup TZ value [here](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) | `America/New_York` | True |
| Parameter | Function | Example Value | Required |
|-----------------------------|--------------------------------------------------------------------------------------|---------------------|:--------:|
| `-p <port>:9696` | Web UI Port | `9696` | True |
| `-v <path to data>:/config` | Volume mapping | `/home/retroarcher` | True |
| `-e PUID=<uid>` | User ID | `1001` | False |
| `-e PGID=<gid>` | Group ID | `1001` | False |
| `-e TZ=<timezone>` | Lookup TZ value [here](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) | `America/New_York` | True |

### User / Group Identifiers:
#### User / Group Identifiers:

When using data volumes (-v flags) permissions issues can arise between the host OS and the container. To avoid this
issue you can specify the user PUID and group PGID. Ensure the data volume directory on the host is owned by the same
Expand Down
4 changes: 2 additions & 2 deletions docs/source/about/build.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/docs/source/about/build.rst
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/docs/source/about/build.rst

Build
=====
Expand All @@ -13,7 +13,7 @@ Ensure `git <https://git-scm.com/>`_ is installed and run the following:

.. code-block:: bash
git clone https://github.com/retroarcher/retroarcher.git
git clone https://github.com/lizardbyte/retroarcher.git
cd ./retroarcher
Setup venv
Expand Down
5 changes: 4 additions & 1 deletion docs/source/about/docker.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/docs/DOCKER_README.md
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/DOCKER_README.md

Docker
------

.. mdinclude:: ../../../DOCKER_README.md
8 changes: 4 additions & 4 deletions docs/source/about/installation.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/docs/source/about/installation.rst
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/docs/source/about/installation.rst

Installation
============
Expand Down Expand Up @@ -26,6 +26,6 @@ Source
python retroarcher.py
.. _latest release: https://github.com/RetroArcher/RetroArcher/releases/latest
.. _Dockerhub.io: https://hub.docker.com/repository/docker/retroarcher/retroarcher
.. _ghcr.io: https://github.com/orgs/RetroArcher/packages?repo_name=retroarcher
.. _latest release: https://github.com/LizardByte/RetroArcher/releases/latest
.. _Dockerhub.io: https://hub.docker.com/repository/docker/lizardbyte/retroarcher
.. _ghcr.io: https://github.com/orgs/LizardByte/packages?repo_name=retroarcher
2 changes: 1 addition & 1 deletion docs/source/about/usage.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/docs/source/about/usage.rst
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/docs/source/about/usage.rst

Usage
=====
Expand Down
2 changes: 1 addition & 1 deletion docs/source/contributing/contributing.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/docs/source/contributing/contributing.rst
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/docs/source/contributing/contributing.rst

Contributing
============
Expand Down
8 changes: 5 additions & 3 deletions docs/source/contributing/localization.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/docs/source/contributing/localization.rst
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/docs/source/contributing/localization.rst

Localization
============
Expand All @@ -21,8 +21,9 @@ The translations occur on
Only elements of the interface are planned to be translated.

Translations Basics
- The brand name `RetroArcher` should never be translated.
- Other brand names should never be translated.
- The brand name `LizardByte` should never be translated.
- The project name `RetroArcher` should never be translated.
- Other brand and project names should never be translated.
Examples:

- CEMU
Expand All @@ -31,6 +32,7 @@ Translations Basics
- MacOS
- RetroArch
- RPCS3
- Sunshine
- Windows

CrowdIn Integration
Expand Down
2 changes: 1 addition & 1 deletion docs/source/contributing/testing.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/docs/source/contributing/testing.rst
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/docs/source/contributing/testing.rst

Testing
=======
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/docs/source/index.rst
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/docs/source/index.rst

RetroArcher has this documentation hosted on `Read the Docs <http://retroarcher.readthedocs.io/>`_.
LizardByte has this documentation hosted on `Read the Docs <http://retroarcher.readthedocs.io/>`_.

Table of Contents
=================
Expand Down
2 changes: 1 addition & 1 deletion docs/source/main/retroarcher.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/retroarcher.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/retroarcher.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/config.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/config.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/config.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/definitions.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/definitions.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/definitions.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/hardware.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/hardware.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/hardware.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/helpers.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/helpers.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/helpers.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/locales.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/locales.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/locales.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/logger.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/logger.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/logger.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/pyra.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/__init__.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/__init__.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/threads.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/threads.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/threads.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/tray_icon.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/tray_icon.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/tray_icon.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/version.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/version.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/version.py

.. include:: ../global.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/source/pyra_docs/webapp.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:github_url: https://github.com/RetroArcher/RetroArcher/tree/nightly/pyra/webapp.py
:github_url: https://github.com/LizardByte/RetroArcher/tree/nightly/pyra/webapp.py

.. include:: ../global.rst

Expand Down
6 changes: 3 additions & 3 deletions pyra/tray_icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def github_releases():
>>> github_releases()
True
"""
url = 'https://github.com/RetroArcher/RetroArcher/releases/latest'
url = 'https://github.com/LizardByte/RetroArcher/releases/latest'
return helpers.open_url_in_browser(url=url)


Expand All @@ -285,7 +285,7 @@ def donate_github():
>>> donate_github()
True
"""
url = 'https://github.com/sponsors/ReenigneArcher'
url = 'https://github.com/sponsors/LizardByte'
return helpers.open_url_in_browser(url=url)


Expand Down Expand Up @@ -325,7 +325,7 @@ def donate_patreon():
>>> donate_patreon()
True
"""
url = 'https://www.patreon.com/RetroArcher'
url = 'https://www.patreon.com/LizardByte'
return helpers.open_url_in_browser(url=url)


Expand Down
2 changes: 1 addition & 1 deletion scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def build():
arg_count += 1
elif sys.platform.lower() == 'darwin': # macOS
pyinstaller_args.append('--console')
pyinstaller_args.append('--osx-bundle-identifier=com.github.retroarcher.retroarcher')
pyinstaller_args.append('--osx-bundle-identifier=dev.lizardbyte.retroarcher')

elif sys.platform.lower() == 'linux': # linux
pyinstaller_args.append('--splash=./web/images/logo-circle.png')
Expand Down
23 changes: 10 additions & 13 deletions web/templates/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
<i class="fa-solid fa-fw fa-donate"></i> {{ _('Donate') }}
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="https://github.com/sponsors/ReenigneArcher"
<li><a class="dropdown-item" href="https://github.com/sponsors/LizardByte"
target="_blank">
<i class="fa-regular fa-fw fa-heart"></i> {{ _('GitHub Sponsors') }}</a></li>
<li><a class="dropdown-item" href="https://mee6.xyz/m/804382334370578482"
target="_blank">
<i class="fa-solid fa-fw fa-face-surprise"></i> MEE6</a></li>
<li><a class="dropdown-item" href="https://www.patreon.com/RetroArcher"
<li><a class="dropdown-item" href="https://www.patreon.com/LizardByte"
target="_blank">
<i class="fa-brands fa-fw fa-patreon"></i> Patreon</a></li>
<li><a class="dropdown-item"
Expand All @@ -44,19 +44,19 @@
<i class="fa-solid fa-fw fa-comment-dots"></i> {{ _('Social') }}
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="https://www.facebook.com/RetroArcherFB"
<li><a class="dropdown-item" href="https://www.facebook.com/LizardByteDev"
target="_blank">
<i class="fa-brands fa-fw fa-facebook"></i> {{ _('Facebook Page') }}</a></li>
<li><a class="dropdown-item" href="https://www.facebook.com/groups/retroracher"
<li><a class="dropdown-item" href="https://www.facebook.com/groups/lizardbyte"
target="_blank">
<i class="fa-brands fa-fw fa-facebook"></i> {{ _('Facebook Group') }}</a></li>
<li><a class="dropdown-item" href="https://www.reddit.com/r/RetroArcher"
<li><a class="dropdown-item" href="https://www.reddit.com/r/LizardByte"
target="_blank">
<i class="fa-brands fa-fw fa-reddit"></i> Reddit</a></li>
<li><a class="dropdown-item" href="https://twitter.com/RetroArcherTW"
<li><a class="dropdown-item" href="https://twitter.com/LizardByteDev"
target="_blank">
<i class="fa-brands fa-fw fa-twitter"></i> Twitter</a></li>
<li><a class="dropdown-item" href="https://www.youtube.com/c/RetroArcher"
<li><a class="dropdown-item" href="https://www.youtube.com/c/LizardByteDev"
target="_blank">
<i class="fa-brands fa-fw fa-youtube"></i> YouTube</a></li>
</ul>
Expand All @@ -71,14 +71,11 @@
target="_blank">
<i class="fa-solid fa-fw fa-file-lines"></i> {{ _('Docs') }}</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="https://retroarcher.github.io/discord"
<li><a class="dropdown-item" href="https://app.lizardbyte.dev/discord"
target="_blank">
<i class="fa-brands fa-fw fa-discord"></i> Discord ({{ _('Widget') }})</a></li>
<li><a class="dropdown-item" href="https://retroarcher.github.io/discord_join"
target="_blank">
<i class="fa-brands fa-fw fa-discord"></i> Discord ({{ _('Join') }})</a></li>
<i class="fa-brands fa-fw fa-discord"></i> Discord</a></li>
<li><a class="dropdown-item"
href="https://github.com/RetroArcher/RetroArcher/discussions"
href="https://github.com/LizardByte/RetroArcher/discussions"
target="_blank">
<i class="fa-brands fa-fw fa-github"></i> {{ _('Discussions') }}</a></li>
</ul>
Expand Down

0 comments on commit 54cd023

Please sign in to comment.