summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ui.rs2
-rwxr-xr-xtools/build-ui2
-rw-r--r--ui/.gitignore (renamed from hi-ui/.gitignore)0
-rw-r--r--ui/.npmrc (renamed from hi-ui/.npmrc)0
-rw-r--r--ui/.prettierignore (renamed from hi-ui/.prettierignore)0
-rw-r--r--ui/.prettierrc (renamed from hi-ui/.prettierrc)0
-rw-r--r--ui/README.md (renamed from hi-ui/README.md)0
-rw-r--r--ui/eslint.config.js (renamed from hi-ui/eslint.config.js)0
-rw-r--r--ui/package-lock.json (renamed from hi-ui/package-lock.json)0
-rw-r--r--ui/package.json (renamed from hi-ui/package.json)0
-rw-r--r--ui/postcss.config.js (renamed from hi-ui/postcss.config.js)0
-rw-r--r--ui/src/app.css (renamed from hi-ui/src/app.css)0
-rw-r--r--ui/src/app.html (renamed from hi-ui/src/app.html)0
-rw-r--r--ui/src/lib/apiServer.js (renamed from hi-ui/src/lib/apiServer.js)0
-rw-r--r--ui/src/lib/components/ActiveChannel.svelte (renamed from hi-ui/src/lib/components/ActiveChannel.svelte)0
-rw-r--r--ui/src/lib/components/Channel.svelte (renamed from hi-ui/src/lib/components/Channel.svelte)0
-rw-r--r--ui/src/lib/components/ChannelList.svelte (renamed from hi-ui/src/lib/components/ChannelList.svelte)0
-rw-r--r--ui/src/lib/components/CreateChannelForm.svelte (renamed from hi-ui/src/lib/components/CreateChannelForm.svelte)0
-rw-r--r--ui/src/lib/components/LogIn.svelte (renamed from hi-ui/src/lib/components/LogIn.svelte)0
-rw-r--r--ui/src/lib/components/LogOut.svelte (renamed from hi-ui/src/lib/components/LogOut.svelte)0
-rw-r--r--ui/src/lib/components/Message.svelte (renamed from hi-ui/src/lib/components/Message.svelte)0
-rw-r--r--ui/src/lib/components/MessageInput.svelte (renamed from hi-ui/src/lib/components/MessageInput.svelte)0
-rw-r--r--ui/src/lib/index.js (renamed from hi-ui/src/lib/index.js)0
-rw-r--r--ui/src/lib/store.js (renamed from hi-ui/src/lib/store.js)0
-rw-r--r--ui/src/lib/store/channels.js (renamed from hi-ui/src/lib/store/channels.js)0
-rw-r--r--ui/src/lib/store/logins.js (renamed from hi-ui/src/lib/store/logins.js)0
-rw-r--r--ui/src/lib/store/messages.js (renamed from hi-ui/src/lib/store/messages.js)0
-rw-r--r--ui/src/routes/(app)/+layout.svelte (renamed from hi-ui/src/routes/(app)/+layout.svelte)0
-rw-r--r--ui/src/routes/(app)/+page.svelte (renamed from hi-ui/src/routes/(app)/+page.svelte)0
-rw-r--r--ui/src/routes/(app)/ch/[channel]/+page.svelte (renamed from hi-ui/src/routes/(app)/ch/[channel]/+page.svelte)0
-rw-r--r--ui/src/routes/+layout.js (renamed from hi-ui/src/routes/+layout.js)0
-rw-r--r--ui/src/routes/+layout.svelte (renamed from hi-ui/src/routes/+layout.svelte)0
-rw-r--r--ui/static/favicon.png (renamed from hi-ui/static/favicon.png)bin1571 -> 1571 bytes
-rw-r--r--ui/svelte.config.js (renamed from hi-ui/svelte.config.js)0
-rw-r--r--ui/tailwind.config.js (renamed from hi-ui/tailwind.config.js)0
-rw-r--r--ui/vite.config.js (renamed from hi-ui/vite.config.js)0
36 files changed, 2 insertions, 2 deletions
diff --git a/src/ui.rs b/src/ui.rs
index 9654195..b5290a6 100644
--- a/src/ui.rs
+++ b/src/ui.rs
@@ -11,7 +11,7 @@ use rust_embed::EmbeddedFile;
use crate::{app::App, channel, error::Internal, login::Login};
#[derive(rust_embed::Embed)]
-#[folder = "hi-ui/build"]
+#[folder = "ui/build"]
struct Assets;
pub fn router() -> Router<App> {
diff --git a/tools/build-ui b/tools/build-ui
index 48b83e6..46171ca 100755
--- a/tools/build-ui
+++ b/tools/build-ui
@@ -4,7 +4,7 @@
##
## Builds the Svelte UI.
-cd "$(dirname "$0")/../hi-ui"
+cd "$(dirname "$0")/../ui"
npm install
npm run build
diff --git a/hi-ui/.gitignore b/ui/.gitignore
index 79518f7..79518f7 100644
--- a/hi-ui/.gitignore
+++ b/ui/.gitignore
diff --git a/hi-ui/.npmrc b/ui/.npmrc
index b6f27f1..b6f27f1 100644
--- a/hi-ui/.npmrc
+++ b/ui/.npmrc
diff --git a/hi-ui/.prettierignore b/ui/.prettierignore
index ab78a95..ab78a95 100644
--- a/hi-ui/.prettierignore
+++ b/ui/.prettierignore
diff --git a/hi-ui/.prettierrc b/ui/.prettierrc
index 9573023..9573023 100644
--- a/hi-ui/.prettierrc
+++ b/ui/.prettierrc
diff --git a/hi-ui/README.md b/ui/README.md
index 3f05f42..3f05f42 100644
--- a/hi-ui/README.md
+++ b/ui/README.md
diff --git a/hi-ui/eslint.config.js b/ui/eslint.config.js
index 2eeebcc..2eeebcc 100644
--- a/hi-ui/eslint.config.js
+++ b/ui/eslint.config.js
diff --git a/hi-ui/package-lock.json b/ui/package-lock.json
index b9e8f14..b9e8f14 100644
--- a/hi-ui/package-lock.json
+++ b/ui/package-lock.json
diff --git a/hi-ui/package.json b/ui/package.json
index 04b94bc..04b94bc 100644
--- a/hi-ui/package.json
+++ b/ui/package.json
diff --git a/hi-ui/postcss.config.js b/ui/postcss.config.js
index 2e7af2b..2e7af2b 100644
--- a/hi-ui/postcss.config.js
+++ b/ui/postcss.config.js
diff --git a/hi-ui/src/app.css b/ui/src/app.css
index b5c61c9..b5c61c9 100644
--- a/hi-ui/src/app.css
+++ b/ui/src/app.css
diff --git a/hi-ui/src/app.html b/ui/src/app.html
index 63eb917..63eb917 100644
--- a/hi-ui/src/app.html
+++ b/ui/src/app.html
diff --git a/hi-ui/src/lib/apiServer.js b/ui/src/lib/apiServer.js
index f6d6148..f6d6148 100644
--- a/hi-ui/src/lib/apiServer.js
+++ b/ui/src/lib/apiServer.js
diff --git a/hi-ui/src/lib/components/ActiveChannel.svelte b/ui/src/lib/components/ActiveChannel.svelte
index 978e952..978e952 100644
--- a/hi-ui/src/lib/components/ActiveChannel.svelte
+++ b/ui/src/lib/components/ActiveChannel.svelte
diff --git a/hi-ui/src/lib/components/Channel.svelte b/ui/src/lib/components/Channel.svelte
index 97fea1f..97fea1f 100644
--- a/hi-ui/src/lib/components/Channel.svelte
+++ b/ui/src/lib/components/Channel.svelte
diff --git a/hi-ui/src/lib/components/ChannelList.svelte b/ui/src/lib/components/ChannelList.svelte
index e0e5f06..e0e5f06 100644
--- a/hi-ui/src/lib/components/ChannelList.svelte
+++ b/ui/src/lib/components/ChannelList.svelte
diff --git a/hi-ui/src/lib/components/CreateChannelForm.svelte b/ui/src/lib/components/CreateChannelForm.svelte
index ddcf486..ddcf486 100644
--- a/hi-ui/src/lib/components/CreateChannelForm.svelte
+++ b/ui/src/lib/components/CreateChannelForm.svelte
diff --git a/hi-ui/src/lib/components/LogIn.svelte b/ui/src/lib/components/LogIn.svelte
index 2836e6d..2836e6d 100644
--- a/hi-ui/src/lib/components/LogIn.svelte
+++ b/ui/src/lib/components/LogIn.svelte
diff --git a/hi-ui/src/lib/components/LogOut.svelte b/ui/src/lib/components/LogOut.svelte
index 01bef1b..01bef1b 100644
--- a/hi-ui/src/lib/components/LogOut.svelte
+++ b/ui/src/lib/components/LogOut.svelte
diff --git a/hi-ui/src/lib/components/Message.svelte b/ui/src/lib/components/Message.svelte
index d040433..d040433 100644
--- a/hi-ui/src/lib/components/Message.svelte
+++ b/ui/src/lib/components/Message.svelte
diff --git a/hi-ui/src/lib/components/MessageInput.svelte b/ui/src/lib/components/MessageInput.svelte
index b33574b..b33574b 100644
--- a/hi-ui/src/lib/components/MessageInput.svelte
+++ b/ui/src/lib/components/MessageInput.svelte
diff --git a/hi-ui/src/lib/index.js b/ui/src/lib/index.js
index 856f2b6..856f2b6 100644
--- a/hi-ui/src/lib/index.js
+++ b/ui/src/lib/index.js
diff --git a/hi-ui/src/lib/store.js b/ui/src/lib/store.js
index b964b4b..b964b4b 100644
--- a/hi-ui/src/lib/store.js
+++ b/ui/src/lib/store.js
diff --git a/hi-ui/src/lib/store/channels.js b/ui/src/lib/store/channels.js
index bb6c86c..bb6c86c 100644
--- a/hi-ui/src/lib/store/channels.js
+++ b/ui/src/lib/store/channels.js
diff --git a/hi-ui/src/lib/store/logins.js b/ui/src/lib/store/logins.js
index 5b45206..5b45206 100644
--- a/hi-ui/src/lib/store/logins.js
+++ b/ui/src/lib/store/logins.js
diff --git a/hi-ui/src/lib/store/messages.js b/ui/src/lib/store/messages.js
index 931b8fb..931b8fb 100644
--- a/hi-ui/src/lib/store/messages.js
+++ b/ui/src/lib/store/messages.js
diff --git a/hi-ui/src/routes/(app)/+layout.svelte b/ui/src/routes/(app)/+layout.svelte
index f8744c1..f8744c1 100644
--- a/hi-ui/src/routes/(app)/+layout.svelte
+++ b/ui/src/routes/(app)/+layout.svelte
diff --git a/hi-ui/src/routes/(app)/+page.svelte b/ui/src/routes/(app)/+page.svelte
index e69de29..e69de29 100644
--- a/hi-ui/src/routes/(app)/+page.svelte
+++ b/ui/src/routes/(app)/+page.svelte
diff --git a/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte b/ui/src/routes/(app)/ch/[channel]/+page.svelte
index ef439d0..ef439d0 100644
--- a/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte
+++ b/ui/src/routes/(app)/ch/[channel]/+page.svelte
diff --git a/hi-ui/src/routes/+layout.js b/ui/src/routes/+layout.js
index a3d1578..a3d1578 100644
--- a/hi-ui/src/routes/+layout.js
+++ b/ui/src/routes/+layout.js
diff --git a/hi-ui/src/routes/+layout.svelte b/ui/src/routes/+layout.svelte
index 7b99d62..7b99d62 100644
--- a/hi-ui/src/routes/+layout.svelte
+++ b/ui/src/routes/+layout.svelte
diff --git a/hi-ui/static/favicon.png b/ui/static/favicon.png
index 825b9e6..825b9e6 100644
--- a/hi-ui/static/favicon.png
+++ b/ui/static/favicon.png
Binary files differ
diff --git a/hi-ui/svelte.config.js b/ui/svelte.config.js
index 07e332f..07e332f 100644
--- a/hi-ui/svelte.config.js
+++ b/ui/svelte.config.js
diff --git a/hi-ui/tailwind.config.js b/ui/tailwind.config.js
index ca516e2..ca516e2 100644
--- a/hi-ui/tailwind.config.js
+++ b/ui/tailwind.config.js
diff --git a/hi-ui/vite.config.js b/ui/vite.config.js
index 05a5a6f..05a5a6f 100644
--- a/hi-ui/vite.config.js
+++ b/ui/vite.config.js