Update fontawesome and new threads logoooo

This commit is contained in:
Peter Cottle 2024-09-18 10:37:42 -04:00
parent a9de1a7c24
commit 22986ef0a5
19 changed files with 19 additions and 568 deletions

View file

@ -54,7 +54,7 @@ class CommandsHelperBarView extends React.Component {
this.fireCommand('help general; git help');
}.bind(this)
}, {
icon: 'signout',
icon: 'fa-solid fa-right-from-bracket',
onClick: function() {
this.props.onExit();
}.bind(this)

View file

@ -41,7 +41,7 @@ class HelperBarView extends React.Component {
target="_blank"
href={item.href}
title={item.title}>
<i className={'icon-' + item.icon} />
<i className={item.icon} />
{' '}
</a>
);
@ -53,7 +53,7 @@ class HelperBarView extends React.Component {
onClick={item.onClick}
title={item.title}>
{item.text ? item.text :
<i className={'icon-' + item.icon} />
<i className={item.icon} />
}
{' '}
</a>

View file

@ -145,7 +145,7 @@ class IntlHelperBarView extends React.Component{
this.fireCommand("locale it_IT; levels");
}.bind(this),
},{
icon: 'signout',
icon: 'fa-solid fa-right-from-bracket',
onClick: function() {
this.props.onExit();
}.bind(this)

View file

@ -51,7 +51,7 @@ class MainHelperBarView extends React.Component {
getItems() {
return [{
icon: 'question-sign',
icon: 'fa-solid fa-question',
onClick: function() {
this.setState({
shownBar: BARS.COMMANDS
@ -59,7 +59,7 @@ class MainHelperBarView extends React.Component {
}.bind(this),
title: 'Show commands'
}, {
icon: 'globe',
icon: 'fa-solid fa-language',
onClick: function() {
this.setState({
shownBar: BARS.INTL
@ -68,9 +68,9 @@ class MainHelperBarView extends React.Component {
title: 'Show available languages'
}, {
newPageLink: true,
icon: 'twitter',
href: 'https://twitter.com/petermcottle',
title: 'Follow me on Twitter'
icon: 'fa-brands fa-threads',
href: 'https://www.threads.net/@pcottle',
title: 'Follow me on Threads'
}];
}