Skip to content
This repository has been archived by the owner on Jul 31, 2022. It is now read-only.

Commit

Permalink
chore: Small changes for v0.3.2
Browse files Browse the repository at this point in the history
- Add css to make it responsive
- Change zip structure to make it work in Firefox
- Add quotes
- Bump version
  • Loading branch information
Mark1626 committed Apr 14, 2019
1 parent ab9d7a6 commit 9455770
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Coming Soon

## Building from source

*Note that you will need to have [Node.js](https://nodejs.org) installed.*
*Note that you will need to have [Node.js](https://nodejs.org) and Yarn installed.*

```bash
yarn install
NODE_ENV=production grunt
yarn build
```

The final build will be in build folder.
The final build will be in home-blocks folder.
* Go to Manage Extensions in Chrome
* Select Developer Mode
* Load Unpacked
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Home Blocks",
"version": "0.0.2",
"version": "0.3.2",
"description": "Custom home page!",
"chrome_url_overrides": {
"newtab": "index.html"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Home-Blocks",
"version": "0.3",
"version": "0.3.2",
"devDependencies": {
"@tivac/eslint-plugin-svelte": "^1.2.1",
"cross-env": "^5.1.5",
Expand All @@ -24,7 +24,7 @@
},
"scripts": {
"dev_build": "cross-env NODE_ENV=development webpack --progress --colors --watch",
"build": "NODE_ENV=production grunt && zip -r home-blocks.zip home-blocks/",
"build": "NODE_ENV=production grunt && cd home-blocks; zip -r -FS ../home-blocks.zip *",
"dev": "webpack-dev-server --hot --port 3000",
"lint": "eslint --ext .html,.js src/",
"test": "echo 'Add tests'"
Expand Down
13 changes: 9 additions & 4 deletions public/assets/quotes.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,32 @@
"inspiration": [
"He never lost heart, and never looked back. He marched in one direction, and that direction was dead ahead.",
"Non Visum Vindere",
"You miss 100% of the shots you don't take",
"Eyes are Useless when the Mind is Blind",
"life is 10% what happens to me and 90% how I react to it",
"Expect the Unexpected",
"I went to a bookstore and asked the saleswoman, “where’s the self-help section?” She said if she told me, it would defeat the purpose."
"I went to a bookstore and asked the saleswoman, “where’s the self-help section?” She said if she told me, it would defeat the purpose.",
"To live and let live"
],
"zen": [
"",
"僧問:狗子還有佛性也無? 師云:無。",
"仏に逢えば仏を殺せ",
"逢佛殺佛"
],
"other": [
"In whatever way you identify with Me, in the same way do I carry out your wishes"
],
"philosophy": [
"Never attribute to malice that which is adequately explained by stupidity.",
"Pluralitas non est ponenda sine necessitate",
"What can be asserted without evidence can be dismissed without evidence",
"Know thyself"
],
"mark": [
"Do not ask a question you know the answer to",
"Do not ask a question you do not want to know the answer to",
"Do not ask a question you do not want to be asked"
"Don't ask a question you know the answer to",
"Don't ask a question you don't want to know the answer to",
"Don't ask a question you don't want to be asked"
],
"security": [
"MYSQL Server 5.5.45 secretly runs two parallel databases for people who say 'S-Q-L' and 'SEQUEL'",
Expand Down
6 changes: 4 additions & 2 deletions public/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ button:focus {
position: relative;
}

.inline {
padding: 0 100px;
@media only screen and (min-width: 1000px) {
.inline {
padding: 0 100px;
}
}

.top-buttons, .bottom-buttons{
Expand Down

0 comments on commit 9455770

Please sign in to comment.