mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-13 09:30:53 +00:00
4.14.12
* Added: Setting to hide re-runs in the site's side navigation, or to display them faded out to more obviously differentiate them from original live content. * Added: The `Changelog` will now only display commits with associated releases, by default. Users can optionally display all commits. * Fixed: The error message when a tool-tip failed to render was not being localized. * Fixed: Padding for certain metadata elements such as the `Host` button. * Fixed: The Stream Uptime metadata pop-up not opening in Safari due to the browser's lack of modern JS features. * Fixed: Tool-tips not working within the FFZ Control Center. * Fixed: Tool-tip positioning when in Portrait Mode. * Fixed: The `Current Category` rule type for profiles not matching on directory pages.
This commit is contained in:
parent
3e653c0381
commit
6e93d712bd
10 changed files with 77 additions and 355 deletions
|
@ -4,6 +4,27 @@
|
|||
<h2>{{ t('home.changelog', 'Changelog') }}</h2>
|
||||
</div>
|
||||
|
||||
<div class="tw-mg-b-1 tw-flex tw-align-items-center">
|
||||
<div class="tw-flex-grow-1" />
|
||||
<div class="tw-checkbox tw-relative tw-tooltip-wrapper">
|
||||
<input
|
||||
id="nonversioned"
|
||||
ref="nonversioned"
|
||||
v-model="nonversioned"
|
||||
type="checkbox"
|
||||
class="tw-checkbox__input"
|
||||
>
|
||||
|
||||
<label for="nonversioned" class="tw-checkbox__label">
|
||||
{{ t('home.changelog.show-nonversioned', 'Include non-versioned commits.') }}
|
||||
</label>
|
||||
|
||||
<div class="tw-tooltip tw-balloon--md tw-tooltip--wrap tw-tooltip--down tw-tooltip--align-right">
|
||||
{{ t('home.changelog.about-nonversioned', 'Non-versioned commits are commits to the FrankerFaceZ repository not associated with a release build. They typically represent maintenance or contributions from the community that will be included in a subsequent release.') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ul>
|
||||
<li v-for="commit of display" :key="commit.sha" class="tw-mg-b-2">
|
||||
<div class="tw-flex tw-align-items-center tw-border-b tw-mg-b-05">
|
||||
|
@ -60,6 +81,7 @@ export default {
|
|||
data() {
|
||||
return {
|
||||
error: false,
|
||||
nonversioned: false,
|
||||
loading: false,
|
||||
more: true,
|
||||
commits: []
|
||||
|
@ -75,14 +97,16 @@ export default {
|
|||
let message = commit.commit.message,
|
||||
title = old_commit;
|
||||
|
||||
const match = TITLE_MATCH.exec(message),
|
||||
date = new Date(commit.commit.author.date),
|
||||
active = commit.sha === window.FrankerFaceZ.version_info.commit;
|
||||
const match = TITLE_MATCH.exec(message);
|
||||
|
||||
if ( match ) {
|
||||
title = match[1];
|
||||
message = message.slice(match[0].length);
|
||||
}
|
||||
} else if ( ! this.nonversioned )
|
||||
continue;
|
||||
|
||||
const date = new Date(commit.commit.author.date),
|
||||
active = commit.sha === window.FrankerFaceZ.version_info.commit;
|
||||
|
||||
out.push({
|
||||
title,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue