From 1e75b3d874973dd71ea74b158ebeb501d9ac68a3 Mon Sep 17 00:00:00 2001
From: Reverite
Date: Fri, 20 Sep 2019 18:18:22 -0700
Subject: Fix link footer component
---
.../glitch/features/ui/components/link_footer.js | 38 ++--------------------
1 file changed, 3 insertions(+), 35 deletions(-)
(limited to 'app/javascript/flavours/glitch/features')
diff --git a/app/javascript/flavours/glitch/features/ui/components/link_footer.js b/app/javascript/flavours/glitch/features/ui/components/link_footer.js
index 04a2e9761..71291fae9 100644
--- a/app/javascript/flavours/glitch/features/ui/components/link_footer.js
+++ b/app/javascript/flavours/glitch/features/ui/components/link_footer.js
@@ -4,38 +4,6 @@ import PropTypes from 'prop-types';
import { FormattedMessage, defineMessages, injectIntl } from 'react-intl';
import { Link } from 'react-router-dom';
import { invitesEnabled, version, repository, source_url } from 'flavours/glitch/util/initial_state';
-<<<<<<< HEAD
-import { signOutLink } from 'flavours/glitch/util/backend_links';
-
-const LinkFooter = () => (
-
-);
-
-LinkFooter.propTypes = {
-};
-=======
import { signOutLink, securityLink } from 'flavours/glitch/util/backend_links';
import { logOut } from 'flavours/glitch/util/log_out';
import { openModal } from 'flavours/glitch/actions/modal';
@@ -63,7 +31,6 @@ class LinkFooter extends React.PureComponent {
onLogout: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
};
->>>>>>> glitch
handleLogoutClick = e => {
e.preventDefault();
@@ -91,9 +58,10 @@ class LinkFooter extends React.PureComponent {
glitch-soc/mastodon (v{version}),
+ github: pluralcafe/mastodon (v{version}),
+ Glitchsoc: glitch-soc/mastodon,
Mastodon: Mastodon }}
/>
--
cgit
From 333b5e25f0a615a9518d402ef10dceb70190a52f Mon Sep 17 00:00:00 2001
From: Reverite
Date: Thu, 3 Oct 2019 16:02:27 -0700
Subject: Small changes
---
app/javascript/flavours/glitch/features/ui/components/link_footer.js | 2 +-
.../flavours/glitch/features/ui/components/onboarding_modal.js | 2 +-
config/webpacker.yml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
(limited to 'app/javascript/flavours/glitch/features')
diff --git a/app/javascript/flavours/glitch/features/ui/components/link_footer.js b/app/javascript/flavours/glitch/features/ui/components/link_footer.js
index 71291fae9..f8d0d528d 100644
--- a/app/javascript/flavours/glitch/features/ui/components/link_footer.js
+++ b/app/javascript/flavours/glitch/features/ui/components/link_footer.js
@@ -61,7 +61,7 @@ class LinkFooter extends React.PureComponent {
defaultMessage='GlitchCafe is open source software, based on {Glitchsoc} which is a friendly fork of {Mastodon}. You can contribute or report issues on GitHub at {github}.'
values={{
github: pluralcafe/mastodon (v{version}),
- Glitchsoc: glitch-soc/mastodon,
+ Glitchsoc: glitch-soc/mastodon,
Mastodon: Mastodon }}
/>
diff --git a/app/javascript/flavours/glitch/features/ui/components/onboarding_modal.js b/app/javascript/flavours/glitch/features/ui/components/onboarding_modal.js
index 7419e2cd9..935c26be6 100644
--- a/app/javascript/flavours/glitch/features/ui/components/onboarding_modal.js
+++ b/app/javascript/flavours/glitch/features/ui/components/onboarding_modal.js
@@ -141,7 +141,7 @@ const PageSix = ({ admin, domain }) => {
diff --git a/config/webpacker.yml b/config/webpacker.yml
index a80144b92..9accd6152 100644
--- a/config/webpacker.yml
+++ b/config/webpacker.yml
@@ -7,7 +7,7 @@ default: &default
public_output_path: packs
cache_path: tmp/cache/webpacker
check_yarn_integrity: false
- webpack_compile_output: true
+ webpack_compile_output: false
# Additional paths webpack should lookup modules
# ['app/assets', 'engine/foo/app/assets']
--
cgit
From b2c43eeece54980657875b29507e503531b010de Mon Sep 17 00:00:00 2001
From: Reverite
Date: Wed, 13 Nov 2019 20:04:23 -0500
Subject: Only display 1 trending tag
---
.../flavours/glitch/features/getting_started/components/trends.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'app/javascript/flavours/glitch/features')
diff --git a/app/javascript/flavours/glitch/features/getting_started/components/trends.js b/app/javascript/flavours/glitch/features/getting_started/components/trends.js
index 0734ec72b..c60f78f7e 100644
--- a/app/javascript/flavours/glitch/features/getting_started/components/trends.js
+++ b/app/javascript/flavours/glitch/features/getting_started/components/trends.js
@@ -38,7 +38,7 @@ export default class Trends extends ImmutablePureComponent {
- {trends.take(3).map(hashtag => )}
+ {trends.take(1).map(hashtag => )}
);
}
--
cgit