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

icons: update to tlon icon throughout #3238

Merged
merged 2 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 desk/desk.docket-0
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:~ title+'Tlon'
info+'Start, host, and cultivate communities. Own your communications, organize your resources, and share documents. Tlon is a decentralized platform that offers a full, communal suite of tools for messaging, writing and sharing media with others.'
color+0xef.f0f4
image+'https://bootstrap.urbit.org/icon-groups.svg?v=1'
image+'https://bootstrap.urbit.org/tlon.png'
glob-http+['https://bootstrap.urbit.org/glob-0v1.75tcc.vb79n.tbvhp.8r55i.9j6ck.glob' 0v1.75tcc.vb79n.tbvhp.8r55i.9j6ck]
base+'groups'
version+[5 5 1]
Expand Down
6 changes: 3 additions & 3 deletions ui/cosmos/fixtures/charges.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@
"info": "A suite of applications to communicate on Urbit"
},
"groups": {
"image": "https://bootstrap.urbit.org/icon-groups.svg?v=1",
"title": "Groups",
"image": "https://bootstrap.urbit.org/tlon.png",
"title": "Tlon",
"license": "MIT",
"version": "4.2.8",
"website": "https://tlon.io",
Expand All @@ -139,4 +139,4 @@
"info": "Start, host, and cultivate communities. Own your communications, organize your resources, and share documents. Groups is a decentralized platform that integrates with Talk, Notebook, and Gallery for a full, communal suite of tools."
}
}
}
}
Binary file added ui/public/icon-192-maskable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/public/icon-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/public/icon-512-maskable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/public/icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions ui/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import GroupPreviewModal from '@/groups/Join/GroupPreview';
import RejectConfirmModal from '@/groups/Join/RejectConfirmModal';
import EditProfile from '@/profiles/EditProfile/EditProfile';
import HeapDetail from '@/heap/HeapDetail';
import groupsFavicon from '@/assets/groups.svg';
import tlonFavicon from '@/assets/favicon.ico';
import GroupInvitesPrivacy from '@/groups/GroupAdmin/GroupInvitesPrivacy';
import Notifications from '@/notifications/Notifications';
import ChatChannel from '@/chat/ChatChannel';
Expand Down Expand Up @@ -708,7 +708,7 @@ function RoutedApp() {
<title>Tlon</title>
<link
rel="icon"
href={groupsFavicon}
href={tlonFavicon}
sizes="any"
type="image/svg+xml"
/>
Expand Down
Binary file modified ui/src/assets/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/src/assets/favicon.ico
Binary file not shown.
Binary file added ui/src/assets/icon-192-maskable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/src/assets/icon-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/src/assets/icon-512-maskable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/src/assets/icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 0 additions & 17 deletions ui/src/assets/manifest.json

This file was deleted.

4 changes: 2 additions & 2 deletions ui/src/assets/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ export default {
id: '/apps/groups/',
icons: [
{
src: './groups-icon-512x512.png',
src: './icon-512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: './groups-icon-192x192.png',
src: './icon-192.png',
sizes: '192x192',
type: 'image/png',
},
Expand Down
2 changes: 1 addition & 1 deletion ui/src/assets/mask-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions ui/src/assets/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions ui/src/components/Leap/MenuOptions.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ArrowEIcon16 from '../icons/ArrowEIcon16';
import AppGroupsIcon from '../icons/AppGroupsIcon';
import AddIcon16 from '../icons/Add16Icon';
import GridIcon from '../icons/GridIcon';
import { IconProps } from '../icons/icon';
import TlonIcon from '../icons/TlonIcon';

function CommandBadge() {
return (
Expand Down Expand Up @@ -82,7 +82,7 @@ export const menuOptions: IMenuOption[] = [
title: 'Tlon',
subtitle: '',
to: '/',
icon: AppGroupsIcon,
icon: TlonIcon,
modal: false,
},
];
Loading