-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…n-commits-history bugfix/#127 Fix for broken commits history and a few other improvements
- Loading branch information
Showing
20 changed files
with
7,041 additions
and
11,961 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
APP_VERSION=8.2.48 | ||
APP_VERSION=8.2.58 | ||
PAYPAL_URL=https://www.paypal.me/ArtemSolovev | ||
OPENCOLLECTIVE_URL=https://opencollective.com/artem-solovev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "gloc", | ||
"version": "8.2.48", | ||
"version": "8.2.58", | ||
"description": "Browser extension - counts locs on GitHub pages", | ||
"authors": [ | ||
"Artem Vadimovich Solovev <[email protected]> (https://github.com/artem-solovev)" | ||
|
@@ -27,14 +27,16 @@ | |
"zip": "grunt", | ||
"build:prod": "webpack --config webpack.config.prod && grunt", | ||
"build:dev": "webpack --config webpack.config.dev && grunt", | ||
"version:up": "npm version patch --no-git-tag-version --force && node ./scripts/upAppVersion.js && git add package.json package-lock.json .env manifest.json" | ||
"version:up": "npm version patch --no-git-tag-version --force && node ./scripts/upAppVersion.js && git add package.json .env manifest.json" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "npm run version:up" | ||
} | ||
}, | ||
"dependencies": { | ||
"@material-ui/core": "^4.11.4", | ||
"@material-ui/styles": "^4.11.4", | ||
"@types/node": "^12.12.14", | ||
"@types/react": "^16.9.13", | ||
"@types/react-dom": "^16.9.4", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import * as React from 'react'; | ||
|
||
import Grid from '@material-ui/core/Grid'; | ||
import Typography from '@material-ui/core/Typography'; | ||
|
||
import appConfig from '../../../Common/helpers/appConfig'; | ||
|
||
export default class PopupPage extends React.PureComponent { | ||
render() { | ||
const gloc = chrome.i18n.getMessage('shortName'); | ||
const github = chrome.i18n.getMessage('github'); | ||
|
||
return ( | ||
<Grid | ||
container | ||
direction="row" | ||
justify="space-between" | ||
> | ||
<Grid item> | ||
<img | ||
src='img/icon128.png' | ||
width='50' | ||
style={{ | ||
verticalAlign: 'middle', | ||
marginRight: '2px', | ||
}} | ||
/> | ||
</Grid> | ||
|
||
<Grid item> | ||
<Typography | ||
variant={'h5'} | ||
> | ||
{github} | ||
| ||
{gloc} | ||
</Typography> | ||
|
||
<Typography | ||
variant={'caption'} | ||
> | ||
Version: {appConfig.appVersion} | ||
</Typography> | ||
</Grid> | ||
|
||
<Grid item> | ||
header | ||
</Grid> | ||
</Grid> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { Theme, createStyles } from '@material-ui/core'; | ||
|
||
export default (theme: Theme): ReturnType<typeof createStyles> => createStyles({ | ||
card: { | ||
padding: theme.spacing(3), | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { WithStyles } from '@material-ui/core'; | ||
|
||
import styles from './styles'; | ||
|
||
export type IProps = WithStyles<typeof styles>; |
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
...odules/Popup/components/Footer/Footer.tsx → ...dules/Popup/components/_Footer/Footer.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
/* eslint-disable */ | ||
|
||
import * as React from 'react'; | ||
import Iframe from 'react-iframe'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { IIframe } from 'react-iframe/types'; | ||
|
||
export const decorationProps = { | ||
githubFrame: { | ||
scrolling: 'no', | ||
width: '84px', | ||
height: '19px', | ||
align: 'middle', | ||
url: 'https://ghbtns.com/github-btn.html?user=artem-solovev&repo=gloc&type=star&count=true', | ||
} as IIframe, | ||
}; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.