mirror of https://github.com/sualko/cloud_bbb
Compare commits
5 Commits
15bbc841e6
...
47077fe3bd
Author | SHA1 | Date |
---|---|---|
Jonas | 47077fe3bd | |
Baptiste Fotia | e2c58cd791 | |
zak39 | 4d280b46e1 | |
Jonas | 537964ee8b | |
brtbr | d63c4dbba3 |
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -6,6 +6,31 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## 2.7.3 (2024-12-03)
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- missing icon and adapt dialog style to NC30 by @smarinier in [#304](https://github.com/littleredbutton/cloud_bbb/pull/304)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- readme, screenshots and project files. by @smarinier in [#300](https://github.com/littleredbutton/cloud_bbb/pull/300)
|
||||||
|
- remove NC25 support by @smarinier in [#302](https://github.com/littleredbutton/cloud_bbb/pull/302)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- max number of rooms shloud take only owned rooms in account by @smarinier in [#296](https://github.com/littleredbutton/cloud_bbb/pull/296)
|
||||||
|
- admin interface displays groups gid instead of displayname by @smarinier in [#295](https://github.com/littleredbutton/cloud_bbb/pull/295)
|
||||||
|
- style lint warnings and typescript compiler need upgrade by @smarinier in [#294](https://github.com/littleredbutton/cloud_bbb/pull/294)
|
||||||
|
|
||||||
|
### Misc
|
||||||
|
|
||||||
|
- psalm github actions by @smarinier in [#298](https://github.com/littleredbutton/cloud_bbb/pull/298)
|
||||||
|
- update php versions for tests in github actions by @smarinier in [#297](https://github.com/littleredbutton/cloud_bbb/pull/297)
|
||||||
|
- expose app capabilities by @smarinier in [#293](https://github.com/littleredbutton/cloud_bbb/pull/293)
|
||||||
|
- make clean-dev and release:build by @smarinier in [#303](https://github.com/littleredbutton/cloud_bbb/pull/303)
|
||||||
|
- psalm bump 5.0 by @smarinier in [#301](https://github.com/littleredbutton/cloud_bbb/pull/301)
|
||||||
|
- Release/2.7.3 by @smarinier in [#307](https://github.com/littleredbutton/cloud_bbb/pull/307)
|
||||||
|
|
||||||
## 2.7.2 (2024-10-08)
|
## 2.7.2 (2024-10-08)
|
||||||
### Misc
|
### Misc
|
||||||
- rebuild frontend client
|
- rebuild frontend client
|
||||||
|
|
|
@ -89,7 +89,7 @@ const EditRoomDialog: React.FC<Props> = ({ room, restriction, updateProperty, op
|
||||||
return <option key={key} value={key}>{label}</option>;
|
return <option key={key} value={key}>{label}</option>;
|
||||||
})}
|
})}
|
||||||
</select>
|
</select>
|
||||||
{(value === Access.Password && room.password) && <CopyToClipboard text={room.password}><input type="text" readOnly={true} className="icon-clippy" value={room.password} /></CopyToClipboard>}
|
{(value === Access.Password && room.password) && <CopyToClipboard text={room.password} options={{format:'text/plain'}}><input type="text" readOnly={true} className="icon-clippy" value={room.password} /></CopyToClipboard>}
|
||||||
{descriptions[field] && <em>{descriptions[field]}</em>}
|
{descriptions[field] && <em>{descriptions[field]}</em>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -35,7 +35,7 @@ const RecordingRow: React.FC<Props> = ({recording, isAdmin, deleteRecording, sto
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td className="share icon-col">
|
<td className="share icon-col">
|
||||||
<CopyToClipboard text={recording.url}>
|
<CopyToClipboard text={recording.url} options={{format:'text/plain'}}>
|
||||||
<button className="action-item copy-to-clipboard" title={t('bbb', 'Copy to clipboard')}>
|
<button className="action-item copy-to-clipboard" title={t('bbb', 'Copy to clipboard')}>
|
||||||
<span className="icon icon-clippy icon-visible" ></span>
|
<span className="icon icon-clippy icon-visible" ></span>
|
||||||
</button>
|
</button>
|
||||||
|
|
|
@ -230,7 +230,7 @@ const RoomRow: React.FC<Props> = (props) => {
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td className="share icon-col">
|
<td className="share icon-col">
|
||||||
<CopyToClipboard text={api.getRoomUrl(room)}>
|
<CopyToClipboard text={api.getRoomUrl(room)} options={{format:'text/plain'}}>
|
||||||
<button className="action-item copy-to-clipboard" title={t('bbb', 'Copy to clipboard')}>
|
<button className="action-item copy-to-clipboard" title={t('bbb', 'Copy to clipboard')}>
|
||||||
<span className="icon icon-clippy icon-visible" ></span>
|
<span className="icon icon-clippy icon-visible" ></span>
|
||||||
</button>
|
</button>
|
||||||
|
|
Loading…
Reference in New Issue