Skip to content

Commit 4e5dbd7

Browse files
authored
Merge pull request #35 from duality-solutions/Sidebar-Verbiage
Verbiage Updates
2 parents 40e84a3 + f34255c commit 4e5dbd7

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "pshare",
3-
"version": "0.5.4",
3+
"version": "0.5.5",
44
"description": "Secure and private peer to peer file sharing",
55
"license": "UNLICENSED",
66
"author": {
77
"name": "HiddenField",
88
"email": "info@hiddenfield.com",
9-
"url": "https://duality.solutions"
9+
"url": "https://duality.solutions/pshare"
1010
},
1111
"build": {
1212
"appId": "solutions.duality.pshare",

src/renderer/components/dashboard/Sidebar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const tabs: TabInfo[] = [
7878
width="36px"
7979
height="36px"
8080
margin="0 0 0 0.9em" />,
81-
text: "Inbox",
81+
text: "Downloads",
8282
isSelected: (pathname: string) => pathname === '/Dashboard/Inbox',
8383
disabled: true
8484
},
@@ -90,7 +90,7 @@ const tabs: TabInfo[] = [
9090
width="36px"
9191
height="36px"
9292
margin="0 0 0 0.9em" />,
93-
text: "Outbox",
93+
text: "Uploads",
9494
isSelected: (pathname: string) => pathname === '/Dashboard/Outbox',
9595
disabled: false
9696
},

src/renderer/components/ui-elements/Button.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const SharedButton:React.FunctionComponent<{ onClick: () => void, white?: boolea
114114
<OutboxIcon white={!white} margin="8px 0 0 0" width="35px" height="25px"/>
115115
<Divider margin="0 5px 0 0" height="42px" background={white? "#e9e9e9": "white"} opacity="0.1"/>
116116
<Text fontWeight="bold" margin="12px 0 0 16px" fontSize="0.7em" color={white? "#4a4a4a": "white"}>
117-
SHARED
117+
YOUR FILES
118118
</Text>
119119
</StyledSharedButton>
120120
)
@@ -124,7 +124,7 @@ const DownloadButton:React.FunctionComponent<{ onClick: () => void, white?: bool
124124
<InboxIcon white={!white} margin="8px 0 0 0" width="35px" height="25px"/>
125125
<Divider margin="0 5px 0 0" background={white? "#e9e9e9": "white"} height="42px" width="0.5px" opacity="0.1" />
126126
<Text margin="12px 0 0 8px" fontSize="0.7em" color={white ? "#4a4a4a" : "white"} fontWeight="bold">
127-
DOWNLOADS
127+
THEIR FILES
128128
</Text>
129129
</StyledSharedButton>
130130
)

0 commit comments

Comments
 (0)