diff --git a/Dockerfile b/Dockerfile index f24b5749..970247c5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,17 +2,17 @@ FROM node:lts-alpine RUN apk add --no-cache --virtual=build-dependencies build-base git python3-dev && \ apk add --no-cache yarn USER node -WORKDIR /var/opt/thelounge-src -ENV THELOUNGE_HOME /var/opt/thelounge +WORKDIR /var/opt/hardlounge-src +ENV THELOUNGE_HOME /var/opt/hardlounge COPY . . -#RUN git clone https://git.supernets.org/supernets/thelounge.git --depth 1 . +#RUN git clone https://git.supernets.org/supernets/hardlounge.git --depth 1 . RUN yarn install && \ NODE_ENV=production yarn build && \ yarn link && \ yarn --non-interactive cache clean && \ - ln -s /var/opt/thelounge-src/index.js /var/opt/thelounge-src/thelounge + ln -s /var/opt/hardlounge-src/index.js /var/opt/hardlounge-src/hardlounge USER root RUN apk del --purge build-dependencies USER node EXPOSE 9000 -CMD ["/var/opt/thelounge-src/thelounge", "start"] \ No newline at end of file +CMD ["/var/opt/hardlounge-src/hardlounge", "start"] \ No newline at end of file diff --git a/client/components/App.vue b/client/components/App.vue index 9ae4190f..999639b1 100644 --- a/client/components/App.vue +++ b/client/components/App.vue @@ -129,7 +129,7 @@ export default defineComponent({ store.commit("sidebarOpen", storage.get("thelounge.state.sidebar") !== "false"); } - // If The Lounge is opened on a small screen (less than 1024px), and we don't have stored + // If Hard Lounge is opened on a small screen (less than 1024px), and we don't have stored // user list state, close it by default if (viewportWidth >= 1024 && isUserlistOpen !== "true" && isUserlistOpen !== "false") { isUserlistOpen = "true"; diff --git a/client/components/NetworkForm.vue b/client/components/NetworkForm.vue index 93ff3a2f..875629fa 100644 --- a/client/components/NetworkForm.vue +++ b/client/components/NetworkForm.vue @@ -251,7 +251,7 @@ autocomplete="off" class="input" name="leaveMessage" - placeholder="The Lounge - https://thelounge.chat" + placeholder="Hard Lounge - https://thelounge.chat" />
-

The Lounge automatically generates and manages the client certificate.

+

Hard Lounge automatically generates and manages the client certificate.

On the IRC server, you will need to tell the services to attach the certificate fingerprint (certfp) to your account, for example: diff --git a/client/components/Settings/General.vue b/client/components/Settings/General.vue index 9482554a..cbe34454 100644 --- a/client/components/Settings/General.vue +++ b/client/components/Settings/General.vue @@ -8,7 +8,7 @@ class="btn" @click.prevent="nativeInstallPrompt" > - Add The Lounge to Home screen + Add Hard Lounge to Home screen

@@ -82,7 +82,7 @@ type="text" name="awayMessage" class="input" - placeholder="Away message if The Lounge is not open" + placeholder="Away message if Hard Lounge is not open" />
@@ -157,9 +157,9 @@ export default defineComponent({ const uri = document.location.origin + document.location.pathname + "?uri=%s"; // @ts-expect-error // the third argument is deprecated but recommended for compatibility: https://developer.mozilla.org/en-US/docs/Web/API/Navigator/registerProtocolHandler - window.navigator.registerProtocolHandler("irc", uri, "The Lounge"); + window.navigator.registerProtocolHandler("irc", uri, "Hard Lounge"); // @ts-expect-error - window.navigator.registerProtocolHandler("ircs", uri, "The Lounge"); + window.navigator.registerProtocolHandler("ircs", uri, "Hard Lounge"); }; return { diff --git a/client/components/Sidebar.vue b/client/components/Sidebar.vue index ff8b1d21..35be0e33 100644 --- a/client/components/Sidebar.vue +++ b/client/components/Sidebar.vue @@ -16,7 +16,7 @@ />

Checking for updates…

- The Lounge {{ store.state.versionData?.latest.version }} + Hard Lounge {{ store.state.versionData?.latest.version }} is now available.
@@ -12,11 +12,11 @@

- The Lounge is up to date, but there are out of date packages Run + Hard Lounge is up to date, but there are out of date packages Run thelounge upgrade on the server to upgrade packages.