Skip to content

Commit

Permalink
Merge pull request #14 from robinmitra/rename-to-gimme-quote-desktop
Browse files Browse the repository at this point in the history
Use newer API on Now and rename repo name to include `-desktop` suffix.
  • Loading branch information
robinmitra authored Jun 14, 2019
2 parents 744f293 + fd93752 commit 57b3971
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[![Build Status](https://travis-ci.com/robinmitra/gimme-quote.svg?branch=master)](https://travis-ci.com/robinmitra/gimme-quote)
[![Build Status](https://travis-ci.com/robinmitra/gimme-quote-desktop.svg?branch=master)](https://travis-ci.com/robinmitra/gimme-quote-desktop)

# Introduction

A minimal Electron app for getting your dose of inspirational quotes.

# Installation

Download the latest release from [here](https://github.com/robinmitra/gimme-quote/releases/latest).
Download the latest release from [here](https://github.com/robinmitra/gimme-quote-desktop/releases/latest).

# Development

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "quote-factory",
"version": "0.2.0",
"description": "A minimal app for getting your dose of famous quotes.",
"name": "gimme-quote",
"version": "0.2.1",
"description": "A minimal desktop app for getting your dose of famous quotes.",
"main": "main.js",
"scripts": {
"start": "electron .",
Expand All @@ -10,13 +10,13 @@
"release": "build"
},
"build": {
"appId": "com.robinmitra.gimme-quote",
"appId": "com.robinmitra.gimme-quote-desktop",
"productName": "Gimme Quote",
"mac": {
"category": "public.app-category.lifestyle"
}
},
"repository": "https://github.com/robinmitra/gimme-quote",
"repository": "https://github.com/robinmitra/gimme-quote-desktop",
"keywords": [
"Electron",
"Quotes"
Expand Down
2 changes: 1 addition & 1 deletion src/quoteService.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let remainingQuotes = [];
let reset = false;

exports.initialise = () => axios
.get('https://gimme-quote.appspot.com/')
.get('https://gimme-quote.robinmitra.now.sh/')
.then(res => {
quotes = res.data
.filter(({ quote }) => quote.length < 100)
Expand Down

0 comments on commit 57b3971

Please sign in to comment.