Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.6.2 #954

Merged
merged 5 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "raven",
"private": true,
"license": "AGPL-3.0-only",
"version": "1.6.1",
"version": "1.6.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
16 changes: 7 additions & 9 deletions frontend/src/components/layout/EmptyState/EmptyState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const EmptyStateForChannel = ({ channelData }: EmptyStateForChannelProps) => {
const users = useGetUserRecords()

return (
<Flex direction='column' className={'py-4 px-2'} gap='2'>
<Flex direction='column' className={'p-2'} gap='2'>
<Flex direction='column' gap='2'>
<Flex align={'center'} gap='1'>
<ChannelIcon type={channelData?.type} />
Expand Down Expand Up @@ -80,7 +80,7 @@ const EmptyStateForDM = ({ channelData }: EmptyStateForDMProps) => {
const isActive = useIsUserActive(peer)

return (
<Box className={'py-4 px-2'}>
<Box className={'p-2'}>
{channelData?.is_direct_message == 1 &&
<Flex direction='column' gap='3'>
<Flex gap='3' align='center'>
Expand Down Expand Up @@ -110,16 +110,14 @@ const EmptyStateForDM = ({ channelData }: EmptyStateForDMProps) => {

export const EmptyStateForSavedMessages = () => {
return (
<Box className={'py-1 px-4'}>
<Box className={'py-2 px-6'}>
<Flex direction='column' gap='2'>
<Text size='3'><strong>Your saved messages will appear here</strong></Text>
<Flex direction='column' gap='1'>
<Text size='2'>Saved messages are a convenient way to keep track of important information or messages you want to refer back to later.</Text>
<Flex align='center' gap='1'>
<Text size='2'>You can save messages by simply clicking on the bookmark icon</Text>
<BiBookmark />
<Text size='2'>in message actions.</Text>
</Flex>
<Text size='2' as='span'>Saved messages are a convenient way to keep track of important information or messages you want to refer back to later.</Text>
<Text size='2' as='span'>
You can save messages by simply clicking on the bookmark icon <BiBookmark className={'-mb-0.5'} /> in message actions.
</Text>
</Flex>
</Flex>
</Box>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raven",
"version": "1.6.1",
"version": "1.6.2",
"description": "Messaging Application",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion raven/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.6.1"
__version__ = "1.6.2"
2 changes: 1 addition & 1 deletion raven/api/raven_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_current_raven_user():
return frappe.get_cached_doc("Raven User", {"user": frappe.session.user})


@frappe.whitelist(methods=["GET"])
@frappe.whitelist()
@frappe.read_only()
def get_list():
"""
Expand Down
4 changes: 3 additions & 1 deletion raven/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

app_name = "raven"
app_title = "Raven"
app_publisher = "The Commit Company"
app_publisher = "The Commit Company (Algocode Technologies Pvt. Ltd.)"
app_description = "Messaging Application"
app_email = "support@thecommit.company"
app_license = "AGPLv3"
source_link="https://github.com/The-Commit-Company/Raven"
app_logo = "/assets/raven/raven-logo.png"

# Includes in <head>
# ------------------
Expand Down
2 changes: 1 addition & 1 deletion raven/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raven",
"version": "1.6.1",
"version": "1.6.2",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
Binary file added raven/public/raven-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading