Skip to content

Commit

Permalink
Preparing test to exifreader / Preparing Account settings
Browse files Browse the repository at this point in the history
  • Loading branch information
JasminDreasond committed Jun 14, 2024
1 parent 6172020 commit d5ed27c
Show file tree
Hide file tree
Showing 6 changed files with 435 additions and 3 deletions.
6 changes: 6 additions & 0 deletions info/dev/requests.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Ajeitar PowerLevelSelector.jsx
Ajeitar o selecionador de custom status icon.
exifreader

const tags = await ExifReader.load(body, { async: true });

Compu
@Tiny Jasmini do u think u could make it so broken images for space icons fall back to the default colored icons for spaces without images set? preferably change it to show the first letter of the space's name?
if media breaks then having just a list of identical broken image icons makes things difficult
Expand Down
2 changes: 1 addition & 1 deletion mods/appLoadMsg.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default {
'Yay!',
':3',

"Client's official birthday is Apr 10, 2023.",
"Pony House's official birthday is Apr 10, 2023.",
'Holding SHIFT while clicking emoji allows you to send multiple emoji.',
'SHIFT+ENTER to make a new line without sending your message.',
"Customize client's appearance in the user setings menu.",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"emojibase-data": "7.0.1",
"eth-provider": "0.13.6",
"ethers": "6.13.0",
"exifreader": "4.23.3",
"file-saver": "2.0.5",
"flux": "4.0.4",
"for-promise": "1.4.3",
Expand Down Expand Up @@ -137,4 +138,4 @@
"vite-plugin-static-copy": "1.0.5"
},
"private": true
}
}
9 changes: 9 additions & 0 deletions src/app/organisms/settings/Settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { resizeWindowChecker } from '../../../util/tools';
import { confirmDialog } from '../../molecules/confirm-dialog/ConfirmDialog';

import ProfileSection from './pages/Profile';
import AccountSection from './pages/Account';
import AppearanceSection from './pages/Appearance';
import NotificationsSection from './pages/Notifications';
import SecuritySection from './pages/Security';
Expand All @@ -39,6 +40,7 @@ function EmojiSection() {
export const tabText = {
WEB3: 'Web3',
APPEARANCE: 'Appearance',
ACCOUNT: 'Account',
ADVANCED: 'Advanced User',
VOICEVIDEO: 'Voice & Video',
LIBRETRANSLATE: 'Libre Translate',
Expand All @@ -65,6 +67,13 @@ const buildTabItems = () => {
render: () => <ProfileSection />,
});

tabItems.push({
text: tabText.ACCOUNT,
faSrc: 'fa-solid fa-user',
disabled: false,
render: () => <AccountSection />,
});

tabItems.push({
text: tabText.APPEARANCE,
faSrc: 'fa-solid fa-sun',
Expand Down
Loading

0 comments on commit d5ed27c

Please sign in to comment.