Skip to content

Commit

Permalink
init from main extension repo after updating.
Browse files Browse the repository at this point in the history
  • Loading branch information
moojing committed Jan 31, 2025
0 parents commit 638cad6
Show file tree
Hide file tree
Showing 22 changed files with 8,931 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"root": true,
"env": {
"es2020": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"]
}
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# CoinMarketCap Crypto Crawler Changelog

## [Improve User Experience] - 2025-01-19

- fix the crawler issue caused by page structure change.
- add a separated watchlist page to keep track of your favorite coins.
- remove the original `favorite` section in the search result.
- change the shortcut of add to watchlist to be `cmd + w`
- use bignumber.js to handle the price calculation in the currency converter.
- add colored tag with the price direction for each coin in the watchlist and search result.

## [Improve error handling ] - 2022-02-03

- Improve error handling flow to prevent crash when fetching data from CoinMarketCap.

## [Improve CoinMarketCap extensions ] - 2021-12-23

- Add favorite command and change output style for coinmarketcap extension
- Add currency converter for calculating value in USD & in selected crypto currency

## [Update cache mechanism] - 2021-11-10

- make sure that icon image format is png.
- change the day to update cached file to be 15 days because crypto market changes very fast.

## [First Release] - 2021-10-26

- initial release
Binary file added assets/coinmarketcap-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 638cad6

Please sign in to comment.