Commit Graph

847 Commits

Author SHA1 Message Date
AbronStudio 1da1d8a04e Refactor: Improve ServerItem UI and add previews
- Updated `ServerItem` to accept `isJoined` as a parameter.
- Modified the joined server indicator to use primary theme colors and adjusted its size.
- Added `@Preview` composables for `ServerItem` in both joined and not joined states.
2025-08-06 11:11:59 +03:30
AbronStudio e20162ad36 Refactor: Remove unused code and update variable names
- Remove unused `RevoltTweenColour` animation spec.
- Remove KDoc for `isServerAlreadyJoined` function.
- Change exception variable names to `_` to indicate they are unused.
2025-08-06 10:55:06 +03:30
AbronStudio b611e7a213 Refactor: Update Discover Servers and Server Invite UI
- Added `disabled` property to `ServerData` to indicate if a server can be joined.
- Updated `ServerItem` to reflect the `disabled` state by adjusting content alpha and added a visual indicator for joined servers.
- Modified `ServerInviteDialog` to improve the display of error messages and updated the dialog's icon.
- Changed the behavior in `DiscoverServersList` to navigate directly to server channels if already joined, otherwise proceed with the invite flow.
- Updated `icn_check_24dp.xml` and added `link_no_valid_img.xml`.
- Updated string resources for server invite errors.
- Modified back navigation in `MainActivity` from discover screen to navigate to "main".
- Renamed project from Revolt to PEP in `.idea/.name`.
2025-08-06 10:53:47 +03:30
AbronStudio 0081ebc0c9 Refactor: Enhance server join flow and navigation
- Modified `DiscoverServersList` to accept an `onJoinToServerSuccess` callback, which is invoked with the server ID upon successful joining.
- Updated `ServerInviteHandler` to pass the server ID to the `onJoinSuccess` callback.
- Integrated the `onJoinToServerSuccess` callback in `ChannelSideDrawer` to navigate to the joined server after a successful join from the discover servers list.
2025-08-06 10:00:09 +03:30
AbronStudio 39a948be1f refactor(discover): Consolidate UI state management in DiscoverServersList
- Introduced a single `DiscoverUiState` data class to encapsulate all UI-related states for the discover servers screen.
- Refactored `DiscoverServersListViewModel` to utilize the new UI state, simplifying state management and improving readability.
- Updated `DiscoverServersList` to collect and use the consolidated UI state, enhancing the handling of loading, error, and server data.
- Modified `ServerInviteHandler` to leverage the new UI state for better error and invite data management.
- Improved code cleanliness by removing redundant state flows and variables.
2025-08-05 16:53:41 +03:30
AbronStudio 8de2f2d8bd feat(discover): Enhance server invite handling and error management
- Added a new state flow for loaded errors in `DiscoverServersListViewModel` to manage server loading errors.
- Implemented `joinServerWithoutProcessingIndicator` method to join servers without affecting the loading state in the UI.
- Updated `ServerInviteDialog` to display a loading indicator while joining a server and improved error handling.
- Modified `ServerInviteHandler` to utilize the new error state and streamline the dialog's behavior.
- Added a new string resource for the joining state message to enhance user feedback.
2025-08-05 16:30:32 +03:30
AbronStudio 4ddcfd8fa9 Refactor: Update server invite handling and API URLs
- Changed the base URL for the PEP platform in `RevoltAPI.kt` to `https://pepchat.io/api`.
- Updated the `DiscoverServersList` to handle server invites more effectively by passing the server ID to the `ServerInviteHandler`.
- Enhanced `ServerInviteHandler` to utilize pre-loaded invite data and manage loading states.
- Modified `ServerInviteDialog` to improve UI elements and added previews for different states.
- Updated string resources for invite dialog messages to enhance clarity and user experience.
2025-08-05 13:19:25 +03:30
AbronStudio 330e92abdc Merge branch 'dev' into feat/discover 2025-08-05 12:24:52 +03:30
AbronStudio e9a49425b1 Refactor: Update API URLs and add TODOs
- Updated `websocket` URL to use `wss` scheme and point to `a-pep.peptide.chat/ws`.
- Changed `autumn` URL to `a-pep.peptide.chat/autumn`.
- Added TODO comments to `kjbook` URL indicating it needs to be replaced with the correct URL.
2025-08-05 12:23:08 +03:30
AbronStudio 300cacc6e5 Refactor: Clean up Discover screen components and ServerDataRepository
- Removed unused imports and variables in `DiscoverServersList.kt`, `ServerInviteHandler.kt`, and `ServerInviteDialog.kt` to improve code cleanliness.
- Deleted the unused `getServerCategories` function from `ServerDataRepository.kt`.
2025-08-05 12:09:36 +03:30
AbronStudio 54a8e7e1ce feat(discover): Implement server joining functionality
- Added `ServerInviteHandler.kt` and `ServerInviteDialog.kt` to manage and display server invite information and allow users to join servers.
- Updated `DiscoverServersListViewModel.kt` to include logic for fetching invite details and joining servers.
- Modified `DiscoverServersList.kt` to trigger the server invite dialog when a server item is clicked and to handle the invite code.
- Added `inviteCode` field to `ServerData` in `ServerDataRepository.kt`.
- Removed unused `DiscoverViewModel.kt`.
- Added new string resources for invite dialog messages and member count.
2025-08-05 12:09:06 +03:30
AbronStudio c3600690d5 Refactor: Remove unused imports in ChannelSideDrawer
- Removed `safeContentPadding` and `safeDrawingPadding` imports from `ChannelSideDrawer.kt` as they were no longer in use.
2025-08-05 11:42:11 +03:30
AbronStudio cfb68f0ed6 Refactor: Update DiscoverServersList and related files
- Updated `DiscoverServersList` to refine UI elements:
    - Removed background modifier and lazy list state.
    - Adjusted padding, spacing, and image resources for server items.
    - Replaced `UserAvatar` with a generic `Image` for server icons.
    - Added an `IconButton` for server selection.
    - Added extra space at the bottom of list.
- Simplified `DiscoverViewModel` by removing filtering logic, selected category, search query, and server acknowledgement functionality.
- Streamlined `ServerData` in `ServerDataRepository.kt` by removing several fields: `iconUrl`, `bannerUrl`, `memberCount`, `category`, `tags`, `isVerified`, and `isOfficial`.
- Added a new drawable resource `three_person.xml`.
- Updated `ChannelSideDrawer.kt` to use `safeDrawingPadding()` for better handling of system UI elements.
2025-08-05 11:41:48 +03:30
AbronStudio 6fbdac17fe feat(discover): add DiscoverServersList component and associated drawable
- Implemented the DiscoverServersList composable to display a list of servers.
- Introduced ServerItem composable for individual server representation.
- Added a new drawable resource for the discover character image.
- Integrated loading and error states within the server list display.
2025-08-04 16:45:15 +03:30
AbronStudio 858c55a6b6 Refactor: Update Onboarding and Settings screens
- Removed unused imports and rearranged existing ones in `OnboardingScreen.kt` for better code organization.
- Removed back navigation button from `SettingsScreen.kt` for a cleaner UI experience.
2025-08-04 10:57:45 +03:30
AbronStudio 4f8301e923 Refactor: Remove unused class and update navigation
- Remove unused `DefaultButtonStyle` class.
- Update `OnboardingScreen` to remove import of deleted class.
- Update `SettingsScreen` logout navigation from "login/greeting" to "choose-platform".
- Add padding to the logout button in `SettingsScreen`.
2025-08-04 10:56:26 +03:30
AbronStudio 58fc73061e Merge branch 'dev' into feat/choose_platform_impl 2025-08-03 16:15:00 +03:30
AbronStudio 586c98f443 refactor: Enhance API URL handling and profile image retrieval
This commit updates the `RevoltAPI` to include a new `autumn` URL and modifies the `ProfileSettingsScreenViewModel` to utilize the new method for retrieving profile images and backgrounds. Key changes include:
- Added `autumn` URL to the `PlatformUrls` data class and updated the `PLATFORM_URLS` map.
- Refactored image URL construction in `ProfileSettingsScreenViewModel` to use `RevoltAPI.getCurrentAutumnUrl()` for dynamic URL generation.

These changes improve code maintainability and ensure consistent URL handling across the application.
2025-08-03 13:57:23 +03:30
AbronStudio 8b693c737b refactor: Update API references and platform handling
This commit refines the API references throughout the application to utilize the new `RevoltAPI` structure, enhancing maintainability and clarity. Key changes include:
- Replaced all instances of `REVOLT_FILES`, `REVOLT_BASE`, and other constants with calls to `RevoltAPI` methods for dynamic URL generation.
- Introduced an `ApplicationPlatform` enum to manage platform-specific URLs, allowing for easier switching between Revolt and PepChat.
- Updated various screens and components to reflect the new API structure, ensuring consistent URL handling across the application.
- Enhanced the `ChoosePlatformScreen` to set the selected platform and navigate accordingly.

These changes improve the overall architecture and prepare the codebase for future enhancements.
2025-08-03 13:41:44 +03:30
AbronStudio 5d236b00e9 Merge branch 'dev' into fix/feedback-01 2025-07-31 14:10:45 +03:30
AbronStudio 672ed0531b feat(ui): enhance button styles and update UI components
- Add DefaultButtonStyle class for consistent button styling.
- Update button shapes across various screens to improve UI consistency.
- Modify string resources for better clarity and engagement.
- Introduce new drawable resources for enhanced visual elements.
2025-07-31 11:52:31 +03:30
AbronStudio 80af323972 feat(auth): enhance login and registration screens
- Update login screen to navigate to registration details on "Register" click.
- Modify registration screen to navigate back to login and update image resource.
- Revise onboarding strings for a more engaging user experience.
2025-07-30 15:46:29 +03:30
AbronStudio 73f18e0f70 refactor: Update navigation and channel handling
This commit refines the navigation and channel management within the chat interface.

Key changes include:
- Introduced a new `backToChannelsScreen` callback in `AppEntrypoint` and `ChannelScreen` to facilitate navigation back to the channels.
- Updated `ChatRouterDestination` to include `ServersChannels` and modified the logic to handle channel navigation correctly.
- Adjusted the `ChannelSideDrawer` to reflect the new routing logic, ensuring the correct channel is displayed based on the current server.
- Removed the back navigation button from the `SettingsScreen` for a cleaner UI experience.
- Updated the `ChannelNavigator` to handle the new `Settings` destination and ensure proper rendering of the `SettingsScreen`.
- Enhanced the `Sidebar` component to support navigation to the `Settings` screen and manage server-specific channels effectively.
2025-07-29 15:08:12 +03:30
AbronStudio c0023152f7 refactor: Implement bottom navigation bar
This commit introduces a bottom navigation bar to the chat interface.

Key changes include:
- Added a `Scaffold` with a `BottomAppBar` in `ChannelNavigator`.
- The `BottomAppBar` contains `NavigationBarItem`s for "Home", "Friends", and "You" (Overview).
- The "Home" destination now displays the `Sidebar`.
- Removed the tablet-aware UI logic and the dismissible navigation drawer implementation.
- Simplified `ChannelNavigator` parameters, removing `useDrawer`, `disableBackHandler`, `onEnterVoiceUI`.
- Updated screen composables (`FriendsScreen`, `NoCurrentChannelScreen`, `ChannelScreen`, `OverviewScreen`) to remove the `useDrawer` parameter and its associated logic, as the drawer is no longer directly managed by these screens.
- Removed `drawerState` parameter from `ChannelSideDrawer` and related components, as drawer state is now managed differently.
- Removed logic related to closing the drawer on item clicks within `ChannelSideDrawer`.
- Added a new `ChatRouterDestination.Home`.
- Request for `POST_NOTIFICATIONS` permission is now correctly using `Manifest.permission.POST_NOTIFICATIONS`.
2025-07-26 16:50:19 +03:30
AbronStudio 33296cbde1 refactor: Implement bottom navigation bar
This commit introduces a bottom navigation bar to the chat interface.

Key changes include:
- Added a `Scaffold` with a `BottomAppBar` in `ChannelNavigator`.
- The `BottomAppBar` contains `NavigationBarItem`s for "Home", "Friends", and "You" (Overview).
- The "Home" destination now displays the `Sidebar`.
- Removed the tablet-aware UI logic and the dismissible navigation drawer implementation.
- Simplified `ChannelNavigator` parameters, removing `useDrawer`, `disableBackHandler`, `onEnterVoiceUI`.
- Updated screen composables (`FriendsScreen`, `NoCurrentChannelScreen`, `ChannelScreen`, `OverviewScreen`) to remove the `useDrawer` parameter and its associated logic, as the drawer is no longer directly managed by these screens.
- Removed `drawerState` parameter from `ChannelSideDrawer` and related components, as drawer state is now managed differently.
- Removed logic related to closing the drawer on item clicks within `ChannelSideDrawer`.
- Added a new `ChatRouterDestination.Home`.
- Request for `POST_NOTIFICATIONS` permission is now correctly using `Manifest.permission.POST_NOTIFICATIONS`.
2025-07-26 16:50:16 +03:30
Abron Studio f70b8b3c56
Merge branch 'revoltchat:dev' into change/auth-design-to-pep 2025-07-26 14:06:01 +03:30
AbronStudio 6a413f8e17 feat(auth): update platform selection screen and login text
- Add "Continue" string resource for navigation
- Update login screen heading to "Welcome back!"
- Add login subheading "Great to see you again!"
- Update registration form heading to "Make it Official!"
- Change registration data text to "New Here? Let's Get You Set Up!"
- Change platform button text from "Login" to "Confirm"
- Set API URL to "https://api.revolt.chat" for both platform options
2025-07-26 13:39:10 +03:30
AbronStudio 80db00ee2a feat(auth): implement platform selection screen with API URL input
Add platform selection UI with PepChat and Revolt options
Implement clickable platform cards that set the API URL
Create custom styled text field for API URL input
Add confirm button with localized string resource
Fix vertical alignment of placeholder text in text field
2025-07-26 12:18:06 +03:30
AbronStudio f49b25b4e3 feat(auth): implement platform selection screen with API URL input
Add platform selection UI with PepChat and Revolt options
Implement clickable platform cards that set the API URL
Create custom styled text field for API URL input
Add confirm button with localized string resource
Fix vertical alignment of placeholder text in text field
2025-07-26 12:17:57 +03:30
Infi 302ad04c69 chore: bump to 1.3.6a
Signed-off-by: Infi <infi@infi.sh>
2025-07-26 07:23:34 +02:00
Infi a92a07e2ed feat: geo support
Signed-off-by: Infi <infi@infi.sh>
2025-07-26 07:12:29 +02:00
Abron Studio 4b2cb0dd34
Merge branch 'revoltchat:dev' into dev 2025-07-24 12:16:15 +03:30
AbronStudio 011d8e1246 chore: add BSD and ML Kit licenses
This commit adds the license files for BSD and ML Kit to the compliance directory and updates the build.gradle.kts file to include them in the license check.

It also updates the .idea/misc.xml file with some minor changes.
2025-07-24 11:35:37 +03:30
Infi e0decd0d7c feat: update icon set
Signed-off-by: Infi <infi@infi.sh>
2025-07-23 15:48:46 +02:00
Infi 6bfe417b92 feat: update system messages design
Signed-off-by: Infi <infi@infi.sh>
2025-07-23 04:32:26 +02:00
Infi 3cf7b84442 chore: remove media conversations variates
Signed-off-by: Infi <infi@infi.sh>
2025-07-23 03:28:20 +02:00
Infi 684970ca32 chore: take out voice chat
Signed-off-by: Infi <infi@infi.sh>
2025-07-23 03:09:05 +02:00
Infi d3a0ef5db3 chore: remove USE_ALPHA_API property as it is not used
Signed-off-by: Infi <infi@infi.sh>
2025-07-23 02:52:04 +02:00
Infi dafb23daed chore: reconcile vc 2.0 and dev
Signed-off-by: Infi <infi@infi.sh>
2025-07-23 02:49:51 +02:00
Infi efa103c5e5 Merge branch 'feat/voice-chats-2.0' into dev
# Conflicts:
#	app/build.gradle.kts
#	app/src/main/java/chat/revolt/api/internals/Permissions.kt
#	app/src/main/java/chat/revolt/screens/chat/views/FriendsScreen.kt
2025-07-23 02:23:36 +02:00
Infi 91f18b7808 chore: bump to 1.3.6
Signed-off-by: Infi <infi@infi.sh>
2025-07-07 23:39:51 +02:00
Infi 168356afdc fix: use non-truncated ULIDs as notification tags and constant notification IDs
This means there is now a zero chance of collision.

Signed-off-by: Infi <infi@infi.sh>
2025-07-07 23:33:55 +02:00
Infi 73a2d6cf17 feat: retry on 5xx and exceptions
Signed-off-by: Infi <infi@infi.sh>
2025-07-07 21:45:48 +02:00
Infi 2d8e9c3804 feat(experiment): server identity options
Signed-off-by: Infi <infi@infi.sh>
2025-07-02 23:34:03 +02:00
Infi 62a9a6c022 feat: mass and role mentions
Signed-off-by: Infi <infi@infi.sh>
2025-07-02 02:57:53 +02:00
Infi a9e22bcb98 fix(UserOverview): better display name detection
Signed-off-by: Infi <infi@infi.sh>
2025-06-28 03:14:41 +02:00
Infi c6cd473bd5 feat: support interactions
Signed-off-by: Infi <infi@infi.sh>
2025-06-28 03:11:07 +02:00
Infi a8065151af feat: SettingsIcon composable
will be useful later

Signed-off-by: Infi <infi@infi.sh>
2025-06-28 02:30:17 +02:00
Infi 1b63b04fde feat: role mentions
Signed-off-by: Infi <infi@infi.sh>
2025-06-28 02:29:03 +02:00
Infi 0d2b037a6f feat: adding friends
Signed-off-by: Infi <infi@infi.sh>
2025-06-13 03:27:42 +02:00
Infi a11864ba0d chore: remove stray (log-)cat
Signed-off-by: Infi <infi@infi.sh>
2025-06-11 04:32:46 +02:00
Infi a7c1a20fbc feat: spoilered images (send and recv)
Signed-off-by: Infi <infi@infi.sh>
2025-06-11 04:31:15 +02:00
Infi 740d693be4 feat: basic livekit/voice chat impl
Signed-off-by: Infi <infi@infi.sh>
2025-05-31 21:51:13 +02:00
Infi afba6f9ecf feat: permission management for voice chat
Signed-off-by: Infi <infi@infi.sh>
2025-05-31 20:15:23 +02:00
Infi 2b752fefbc feat: full edge to edge in chat router
Signed-off-by: Infi <infi@infi.sh>
2025-05-29 21:32:21 +02:00
Infi ade9e03a9d fix: deduplicate messages during grouping
Signed-off-by: Infi <infi@infi.sh>
2025-05-29 20:03:14 +02:00
Infi 9563ea6cce fix: tint meta key with content colour
in physical keyboard spark

Signed-off-by: Infi <infi@infi.sh>
2025-05-17 09:18:48 +02:00
Infi 14522fd6f3 feat: basic implementation of voice channel overlay
Signed-off-by: Infi <infi@infi.sh>
2025-05-04 04:58:22 +02:00
Infi aab658eccc Merge branch 'dev' into feat/voice-chats-2.0 2025-05-04 02:27:19 +02:00
Infi bdd706fda5 fix: skip partially expanded for user card sheet from overview
Signed-off-by: Infi <infi@infi.sh>
2025-05-04 02:25:22 +02:00
Infi cde0c808dc fix: 1.3.1 was not uploaded to MavenCentral, so we use 1.3.0
Signed-off-by: Infi <infi@infi.sh>
2025-05-04 02:02:18 +02:00
Infi 2c233d30ca feat: join call route
Signed-off-by: Infi <infi@infi.sh>
2025-04-27 20:24:06 +02:00
Infi fd8d22b170 feat: early definition of ready event with voice state
Signed-off-by: Infi <infi@infi.sh>
2025-04-27 20:23:53 +02:00
Infi 12b08edaf0 chore: add (temporary) api url property and LK compose components
Signed-off-by: Infi <infi@infi.sh>
2025-04-27 20:23:00 +02:00
Infi 88619b044a feat: use livekit compatible root schema
Signed-off-by: Infi <infi@infi.sh>
2025-04-26 00:59:01 +02:00
Infi e91652cb78 chore: upgrade, uncomment livekit dep
Signed-off-by: Infi <infi@infi.sh>
2025-04-26 00:58:50 +02:00
Infi bb252bef83 feat: bump to 1.3.5
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 22:55:05 +02:00
Infi 8156a5b28c feat: show swipe to reply spark to upgrading users
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 22:39:32 +02:00
Infi c7791716c5 feat: forgot password & reverify links in login
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 22:14:50 +02:00
Infi 47b64bdf39 fix: clear typing users on reconnect
if they are no longer typing by the time we reconnected they will show as typing indefinitely

Signed-off-by: Infi <infi@infi.sh>
2025-04-25 21:59:03 +02:00
Infi a8ce409b54 fix: do not show swipe to reply if drawer is present and open
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 21:49:34 +02:00
Infi 3c5c7bc30a feat: for server owners, add a temporary shortcut to the web app for server settings
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 21:21:55 +02:00
Infi ddb010cf55 fix: make whole server overview sheet scrollable, not just info & description
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 21:02:25 +02:00
Infi b0b7bbad1e fix: make server overview sheet scrollable
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 20:59:45 +02:00
Infi 6ab8dccc11 fix: skip partially expanded state for server overview
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 20:59:29 +02:00
Infi 48e63e549a feat: new add server sheet with server creation
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 20:55:13 +02:00
Infi 67816d9cfe fix: issue with draft content not applying correctly
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 16:49:11 +02:00
Infi 47890e3e02 fix: remove debug-only logs that are no longer useful
Signed-off-by: Infi <infi@infi.sh>
2025-04-25 16:45:45 +02:00
Infi defe13288d feat: use new cdn url
Signed-off-by: Infi <infi@infi.sh>
2025-04-24 23:12:28 +02:00
Infi 5f70da854e style: rename .components to .composables
Compose convention is to say composables; previous name is a holdover from React

Signed-off-by: Infi <infi@infi.sh>
2025-04-17 00:58:20 +02:00
Infi c88391e5f0 fix: make some modal sheets always-expanded
Signed-off-by: Infi <infi@infi.sh>
2025-04-17 00:54:49 +02:00
Infi 79d83f3be2 feat: use different wording for quick reply none
Signed-off-by: Infi <infi@infi.sh>
2025-04-13 16:32:13 +02:00
Infi 47d4ecd0a6 feat: swipe to reply spark (not used yet)
Signed-off-by: Infi <infi@infi.sh>
2025-04-13 16:31:49 +02:00
Infi e2f6b6d697 feat: new strings for upcoming spark
Signed-off-by: Infi <infi@infi.sh>
2025-04-11 21:28:57 +02:00
Infi 4bd2072f2d fix: error handling for user buttons
Signed-off-by: Infi <infi@infi.sh>
2025-04-11 21:05:41 +02:00
Infi 5724680c54 fix: websocket disconnect due to missing field
used to crash because status was claimed to not be optional (when status = "None" is is however absent)

Signed-off-by: Infi <infi@infi.sh>
2025-04-11 20:57:50 +02:00
Infi f680ad9a7c fix: index out of bounds when friends open on startup
Signed-off-by: Infi <infi@infi.sh>
2025-04-11 20:56:17 +02:00
Infi 4acc42294c feat: tweak slide to reply animation
Signed-off-by: Infi <infi@infi.sh>
2025-04-11 18:37:16 +02:00
Infi 5b8333490b style: extract easing tokens into separate file
Signed-off-by: Infi <infi@infi.sh>
2025-04-03 00:21:35 +02:00
Infi 5d5744e180 feat: finish swipe-to-reply impl
Signed-off-by: Infi <infi@infi.sh>
2025-03-29 03:44:57 +01:00
Infi df3a1ab26f feat: swipe to reply
Signed-off-by: Infi <infi@infi.sh>
2025-03-27 03:03:52 +01:00
Infi 922ca6b874 fix: newly arrived messages dont show
Signed-off-by: Infi <infi@infi.sh>
2025-03-27 02:02:18 +01:00
Infi f01074b126 fix: default should be false here
Signed-off-by: Infi <infi@infi.sh>
2025-03-26 23:43:42 +01:00
Infi 5cd247c2f3 feat(polar): begin convo screen
Signed-off-by: Infi <infi@infi.sh>
2025-03-25 00:57:05 +01:00
Infi 189df69580 fix: hardcoded string where it shouldve been a resource
Signed-off-by: Infi <infi@infi.sh>
2025-03-24 23:01:40 +01:00
Infi 8f4037830e fix: marking channels as unread
Signed-off-by: Infi <infi@infi.sh>
2025-03-24 13:07:36 +01:00
Infi 11439bf987 feat: show restart hint when toggling some experiments
Signed-off-by: Infi <infi@infi.sh>
2025-03-24 12:58:16 +01:00
Infi c3a4c5654a feat: build basic UI skeleton
Signed-off-by: Infi <infi@infi.sh>
2025-03-24 12:49:57 +01:00
Infi 29b6e45cb2 fix:
Signed-off-by: Infi <infi@infi.sh>
2025-03-23 05:26:25 +01:00
Infi 5d3ac27f54 chore: it appears we unironically had an unused screen all this time
Signed-off-by: Infi <infi@infi.sh>
2025-03-23 05:24:57 +01:00