Skip to content

Commit

Permalink
Merge branch 'master' into addUserInfo-naturalcrit#1908
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Ambatte authored Dec 24, 2022
2 parents 45b52b5 + 4e7a96b commit dc73664
Show file tree
Hide file tree
Showing 4 changed files with 257 additions and 198 deletions.
33 changes: 31 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,42 @@ pre {
font-family: 'Open Sans';
font-size: 0.9em;
}


```

## changelog
For a full record of development, visit our [Github Page](https://github.com/naturalcrit/homebrewery).

### Friday 23/12/2022 - v3.5.0
{{taskList

##### Jeddai

* [x] Only brew owners or invited authors can edit a brew

- Visiting an `/edit` page of a brew that does not list you as an author will result in an error page. Authors can be added to any brew by opening its {{fa,fa-info-circle}} **Properties** menu and typing the author's username (case-sensitive) into the **Invited Authors** bubble.
- Warn user if a newer brew version has been saved on another device

Fixes issues [#1987](https://github.com/naturalcrit/homebrewery/issues/1987)
}}

\page

### Monday 05/12/2022 - v3.4.1
{{taskList

##### G-Ambatte

* [x] Fix Account page incorrect last login time

Fixes issues [#2521](https://github.com/naturalcrit/homebrewery/issues/2521)

##### Gazook

* [x] Fix crashing on iOS and Safari browsers

Fixes issues [#2531](https://github.com/naturalcrit/homebrewery/issues/2531)
}}

### Saturday 10/12/2022 - v3.4.2
{{taskList

Expand Down
2 changes: 1 addition & 1 deletion client/homebrew/editor/metadataEditor/metadataEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ const MetadataEditor = createClass({
{this.renderAuthors()}

<StringArrayEditor label='invited authors' valuePatterns={[/.+/]}
validators={[(v)=>!this.props.metadata.authors.includes(v)]}
validators={[(v)=>!this.props.metadata.authors?.includes(v)]}
placeholder='invite author' unique={true}
values={this.props.metadata.invitedAuthors}
notes={['Invited authors are case sensitive.', 'After adding an invited author, send them the edit link. There, they can choose to accept or decline the invitation.']}
Expand Down
Loading

0 comments on commit dc73664

Please sign in to comment.