Skip to content

Commit

Permalink
Add new types of currencies i.e. AUD, CHF, CAD, GBP
Browse files Browse the repository at this point in the history
  • Loading branch information
pbojan committed Jun 10, 2018
1 parent c55393d commit 34d13a3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Cinnamon Desklet that displays the current price of more than **220+ coins** and their daily percent changes.

![Desklet screenshot](screenshot.png)

## Usage Help

#### Installation
Expand Down Expand Up @@ -41,7 +43,7 @@ Cinnamon Desklet that displays the current price of more than **220+ coins** and

## Bugs/Feedback

If you find any bugs or stability issues please create an issue [here](https://github.com/pbojan/cryptocoins/issues) or send an email to [p.bojan@live.com](mailto:p.bojan@live.com).
If you find any bugs or stability issues please create an issue [here](https://github.com/pbojan/cryptocoins-desklet-cinnamon/issues) or send an email to [p.bojan@live.com](mailto:p.bojan@live.com).

If you have ideas for new features or improvements please send an email to [p.bojan@live.com](mailto:p.bojan@live.com).

Expand Down
2 changes: 1 addition & 1 deletion files/cryptocoins@pbojan/desklet.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const DESKLET_ROOT = imports.ui.deskletManager.deskletMeta[UUID].path;
const WIDTH = 220;
const WIDTH_ICON = 50;
const PADDING = 10;
const HELP_URL = "https://github.com/pbojan/cryptocoins#usage-help";
const HELP_URL = "https://github.com/pbojan/cryptocoins-desklet-cinnamon#usage-help";

const httpSession = new Soup.SessionAsync();
Soup.Session.prototype.add_feature.call(httpSession, new Soup.ProxyResolverDefault());
Expand Down
6 changes: 5 additions & 1 deletion files/cryptocoins@pbojan/settings-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,11 @@
"tooltip": "In which currency to show information on the ticker",
"options": {
"USD ($)": "usd",
"EUR (€)": "eur"
"EUR (€)": "eur",
"AUD (A$)": "aud",
"CAD (C$)": "cad",
"CHF (Fr.)": "chf",
"GBP (£)": "gbp"
}
},

Expand Down

0 comments on commit 34d13a3

Please sign in to comment.