Skip to content

Commit

Permalink
commitLog: add details
Browse files Browse the repository at this point in the history
  • Loading branch information
NLthijs48 committed May 20, 2024
1 parent 9629a15 commit 85750ce
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions src/activities/happening/commitLog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,40 @@ import {HobbyInformation} from '../ActivityInformation';
import CommitIcon from '@mui/icons-material/Commit';
import React from 'react';
import ActivityType from '../ActivityType';
import HighlightType from '../HighlightType';
import commits from './commitLog/commits.png';
import filters from './commitLog/filters.png';

const commitLog: HobbyInformation = {
activityType: ActivityType.Hobby,
name: 'CommitLog',
slug: 'happeningCommitLog',
oneliner: (
<div>Happening plugin to view commits made in a GitHub or BitBucket repository, receives updates using webhooks from them.</div>
),
oneliner: <div>Happening plugin to view commits made in a GitHub or BitBucket repository.</div>,
description:
'Created as a way to notify a group of people of changes in a project. I used it to notify other Minecraft server administrators about changes to internal plugins. It worked with GitHub and BitBucket repositories, relying on their webhooks for updates. Using webhooks meant it was easy to set up, and also worked for private repositories without hard to configure authentication.',
from: 'December 2015',
till: 'July 2017', // Last updates
Icon: CommitIcon,
website: 'https://github.com/NLthijs48/CommitLog',
highlights: [
{
type: HighlightType.Link,
href: 'https://github.com/NLthijs48/CommitLog',
title: 'Source code on GitHub',
},
{
type: HighlightType.Image,
image: commits,
title: 'Most recent commits from a repository',
caption:
'Shows a list of commits from all connected repositories (GoCraft and ErrorSink are repositories). It shows the author and commit message as well.',
},
{
type: HighlightType.Image,
image: filters,
title: 'Filters can be applied on the commit list',
caption: 'Filter by repository and/or author to view specific changes, simply tap a repository or author name.',
},
],
};

export default commitLog;
Binary file added src/activities/happening/commitLog/commits.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/activities/happening/commitLog/filters.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 85750ce

Please sign in to comment.