Skip to content

Commit d038000

Browse files
authored
Merge pull request #82 from databucket/3.4.2
v.3.4.2
2 parents 61894f4 + 49e1e40 commit d038000

20 files changed

Lines changed: 245 additions & 94 deletions

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'pl.databucket'
9-
version = '3.4.1'
9+
version = '3.4.2'
1010
targetCompatibility = 8
1111
sourceCompatibility = 8
1212

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"homepage": ".",
33
"name": "databucket",
4-
"version": "3.4.1",
4+
"version": "3.4.2",
55
"private": true,
66
"dependencies": {
77
"@material-ui/core": "4.12.4",

frontend/src/components/dialogs/InfoDialog.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default function InfoDialog() {
6262
>
6363
<img style={{marginLeft: '100px', marginTop: '20px'}} src={DatabucketLogo} alt='' width='399' height='65'/>
6464
<div style={{margin: '20px'}}>
65-
<Typography color='secondary'>Version: <b>3.4.1</b></Typography>
65+
<Typography color='secondary'>Version: <b>3.4.2</b></Typography>
6666
<Link target='_blank' href='https://www.databucket.pl' color="primary">www.databucket.pl</Link><br/>
6767
<Link target='_blank' href='https://github.com/databucket/databucket-server' color="textSecondary">Source code</Link><br/>
6868
<Link target='_blank' href='https://github.com/databucket/databucket-server/wiki' color="textSecondary">Documentation</Link><br/>

frontend/src/components/login/ChangePasswordPage.jsx renamed to frontend/src/components/public/ChangePasswordPage.jsx

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -96,23 +96,16 @@ export default function ChangePasswordPage() {
9696
<Typography className="Title" variant="h5">
9797
Change password
9898
</Typography>
99-
{/*// additional control to block setting default password by Chrome*/}
100-
<FormControl disabled={true} style={{height: '0px', width: '0px'}}>
101-
<Input
102-
name="pass"
103-
type='password'
104-
value={null}
105-
disabled={true}
106-
// visible={false}
107-
/>
108-
</FormControl>
10999
<FormControl className="LoginInputText">
110100
<InputLabel htmlFor="standard-adornment-password">Current password</InputLabel>
111101
<Input
112102
name="password"
113103
type='password'
114104
value={password}
115105
onChange={onChange}
106+
onFocus={(event) => {
107+
event.target.setAttribute('autocomplete', 'off');
108+
}}
116109
/>
117110
</FormControl>
118111
<FormControl className="LoginInputText">
@@ -122,6 +115,9 @@ export default function ChangePasswordPage() {
122115
type='password'
123116
value={newPassword}
124117
onChange={onChange}
118+
onFocus={(event) => {
119+
event.target.setAttribute('autocomplete', 'off');
120+
}}
125121
/>
126122
</FormControl>
127123
<FormControl className="LoginInputText">
@@ -131,6 +127,9 @@ export default function ChangePasswordPage() {
131127
type='password'
132128
value={newPasswordConfirmation}
133129
onChange={onChange}
130+
onFocus={(event) => {
131+
event.target.setAttribute('autocomplete', 'off');
132+
}}
134133
/>
135134
</FormControl>
136135
<div className="Button">
File renamed without changes.

frontend/src/components/login/ForgotPasswordPage.css renamed to frontend/src/components/public/ForgotPasswordPage.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
width: 100%;
5050
margin-top: 50px;
5151
margin-left: 40px;
52-
margin-bottom: 10px;
52+
margin-bottom: 15px;
5353
display: flex;
5454
flex-direction: column;
5555
align-items: flex-start;
File renamed without changes.
File renamed without changes.

frontend/src/components/login/LoginPage.jsx renamed to frontend/src/components/public/LoginPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export default function LoginPage() {
291291
<div className="ContainerClass">
292292
{<img src={Logo} alt=''/>}
293293
{paper()}
294-
<Typography variant="caption">3.4.1</Typography>
294+
<Typography variant="caption">3.4.2</Typography>
295295
<MessageBox
296296
config={messageBox}
297297
onClose={() => setMessageBox({...messageBox, open: false})}

frontend/src/components/login/SignUpPage.css renamed to frontend/src/components/public/SignUpPage.css

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
.ContainerClass {
1+
.ContainerClassSingUp {
22
display: flex;
33
flex-direction: column;
44
align-items: center;
55
justify-content: center;
66
padding: 10vh;
77
}
88

9-
.PaperClass {
9+
.PaperClassSingUp {
1010
margin-top: 40px;
1111
display: flex;
1212
min-width: 370px;
@@ -19,49 +19,49 @@
1919
padding: 20px 0px 0px 0px;
2020
}
2121

22-
.Title {
23-
padding: 30px;
22+
.TitleSingUp {
23+
padding: 10px;
2424
}
2525

26-
.Description {
26+
.DescriptionSingUp {
2727
padding: 30px;
28+
/*margin-left: 30px;*/
2829
}
2930

30-
.TitleGrid {
31+
.TitleGridSingUp {
3132
padding: 30px;
3233
width: 100%;
3334
/*overflow: auto;*/
3435
}
3536

36-
.Button {
37+
.ButtonSingUp {
3738
width: 100%;
38-
margin-top: 10px;
3939
padding: 20px;
4040
}
4141

42-
.EmailInputText {
42+
.EmailInputTextSingUp {
4343
height: 70px;
4444
width: 85%;
4545
overflow: auto;
4646
}
4747

48-
.UsernameInputText {
48+
.UsernameInputTextSingUp {
4949
height: 70px;
5050
width: 85%;
5151
overflow: auto;
5252
}
5353

54-
.PasswordText {
54+
.PasswordTextSingUp {
5555
height: 70px;
5656
width: 85%;
5757
overflow: auto;
5858
}
5959

60-
.BackLink {
60+
.BackLinkSingUp {
6161
width: 100%;
62-
margin-top: 50px;
62+
margin-top: 20px;
6363
margin-left: 40px;
64-
margin-bottom: 10px;
64+
margin-bottom: 15px;
6565
display: flex;
6666
flex-direction: column;
6767
align-items: flex-start;

0 commit comments

Comments
 (0)