Skip to content

Commit

Permalink
Merge pull request #1031 from The-Commit-Company/develop
Browse files Browse the repository at this point in the history
Release v1.6.12
  • Loading branch information
nikkothari22 authored Aug 22, 2024
2 parents fd101e8 + b6a302b commit 8f20847
Show file tree
Hide file tree
Showing 9 changed files with 6,194 additions and 974 deletions.
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-ui",
"private": true,
"license": "AGPL-3.0-only",
"version": "1.6.11",
"version": "1.6.12",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const UserItem = ({ user, reaction }: UserItemProps) => {
<Box className="hover:bg-slate-3 rounded-md">
<Flex align="center" justify="between">
<Flex className="p-2" gap="3" align="center">
<UserAvatar src={userDetails?.user_image} size="2" />
<UserAvatar src={userDetails?.user_image ?? ''} alt={userName} size="2" />
<Text size="2" weight="medium">
{userName}
</Text>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "raven",
"version": "1.6.11",
"version": "1.6.12",
"description": "Messaging Application",
"workspaces": [
"frontend"
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.11"
__version__ = "1.6.12"
11 changes: 11 additions & 0 deletions raven/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
app_license = "AGPLv3"
source_link = "https://github.com/The-Commit-Company/Raven"
app_logo = "/assets/raven/raven-logo.png"
app_logo_url = "/assets/raven/raven-logo.png"

# Includes in <head>
# ------------------
Expand All @@ -18,6 +19,16 @@
# app_include_js = "/assets/raven/js/raven.js" ]
app_include_js = "raven.bundle.js"

add_to_apps_screen = [
{
"name": "raven",
"logo": "/assets/raven/raven-logo.png",
"title": "Raven",
"route": "/raven",
"has_permission": "raven.permissions.check_app_permission",
}
]


sounds = [
{
Expand Down
Loading

0 comments on commit 8f20847

Please sign in to comment.