This commit is contained in:
David Ralph
2019-12-13 12:58:51 +00:00
parent 7f49a412aa
commit dc013deaad
5 changed files with 18 additions and 12 deletions

1
.gitignore vendored
View File

@@ -5,4 +5,5 @@ build/
# Files
package-lock.json
yarn-error.log
yarn.lock

View File

@@ -5,8 +5,6 @@
Fast, open and free-to-use new tab page for most modern browsers.
*This is the code for the extension. If you are looking for the website code, please go [here](https://github.com/TurboMarshmello/muetab.xyz), or for the API docs go [here](https://apidocs.muetab.xyz)*
## Features
* Fast and free
* Supports multiple browsers
@@ -44,7 +42,7 @@ Development/Other: Read the [Development](#development) section.
</ol>
<h5>Starting</h5>
<ol>
<li> <code>git clone https://github.com/ohlookitsderpy/Mue</code> (If you don't have Git just go to <b>Clone or
<li> <code>git clone https://github.com/muetab/mue</code> (If you don't have Git just go to <b>Clone or
download</b> and click <b>Download ZIP</b>)
<li> Open a terminal and run these commands: (in the Mue directory)
<li> <code>yarn</code> (or <code>npm i</code>)
@@ -112,6 +110,8 @@ Once I find a method to do it automatically, I will update this section accordin
[Opera Forum](https://forums.opera.com/topic/25046/how-to-disable-completely-the-speed-dial/14) - Portions of code to add Opera support
[Google Fonts](https://fonts.google.com/specimen/Lexend+Deca) - Lexend Deca font
### Translations
[ohlookitsderpy](https://github.com/ohlookitsderpy) - English (Quotes and Messages)

View File

@@ -1,23 +1,29 @@
{
"name": "mue",
"private": true,
"author": "David \"ohlookitsderpy\" Ralph <d.ralph@muetab.xyz> (https://derpyenterprises.org)",
"maintainers": [
"David \"ohlookitsderpy\" Ralph <d.ralph@muetab.xyz> (https://derpyenterprises.org)",
"Alex \"TurboMarshmello\" Sparkes <a.sparkes@muetab.xyz> (https://github.com/TurboMarshmello)"
],
"description": "Fast, open and free-to-use new tab page for most modern browsers.",
"repository": {
"url": "github:muetab/mue"
},
"homepage": "https://muetab.xyz",
"bugs": "https://github.com/muetab/mue/issues/new?assignees=&labels=bug&template=bug-report.md&title=%5BBUG%5D",
"license": "BSD-3-Clause",
"version": "2.0.1",
"version": "0.6.0",
"dependencies": {
"@material-ui/core": "^4.7.0",
"@material-ui/core": "^4.7.2",
"@material-ui/icons": "^4.5.1",
"@muetab/quotes": "^1.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.2.0"
"react-scripts": "3.3.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint": "^6.7.2",
"node-sass": "^4.13.0"
},
"scripts": {
@@ -35,8 +41,7 @@
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
"last 1 firefox version"
]
}
}
}

View File

@@ -21,7 +21,7 @@ export default class Clock extends React.Component {
date: `${('0' + h).slice(-2)}:${('0' + t.getMinutes()).slice(-2)}`, ampm: h >= 12 ? 'AM' : 'PM'
}); // Set time
this.timeout = setTimeout(() => this.startTime(), 500); // Update the clock every 500 milliseconds
this.timeout = setTimeout(() => this.startTime(), 750); // Update the clock every 750 milliseconds
}
componentDidMount() {

View File

@@ -3,7 +3,7 @@ import RefreshIcon from '@material-ui/icons/Refresh';
import LocalPizzaIcon from '@material-ui/icons/LocalPizza';
import React from 'react';
export default class Search extends React.Component {
export default class Navbar extends React.Component {
render() {
return (
<div className='navbar-container'>