Skip to content

Commit 0daf9cf

Browse files
authored
Release 1.1.0
Features: Add Settings menu; Add block notification sound control; Add block notification sound selector; Add specific fee tracker; Add specific fee notification settings tab; Add extension update notification; Design features: Bold font for tabs; Improve block tracker disabling design; Update extension icon; Change tracking design; Update texts; Code improves: Add alias imports; Update build action; Add postcss; Global refactoring; Improve typing; Doc improves: Add ChromeWebStore link to Readme
2 parents 4c99812 + a75eb7a commit 0daf9cf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+2546
-320
lines changed

.github/workflows/build.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
# This workflow will do a clean installation of node dependencies, build the source code and run tests across different versions of node
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
41
name: build
52

63
on:
74
push:
85
branches: [ master, develop ]
96
pull_request:
10-
branches: [ master ]
7+
branches: [ master, develop ]
118

129
jobs:
1310
build:
@@ -17,13 +14,16 @@ jobs:
1714
strategy:
1815
matrix:
1916
node-version: [20.x]
20-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2117

2218
steps:
23-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
20+
2421
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v1
22+
uses: actions/setup-node@v3
2623
with:
2724
node-version: ${{ matrix.node-version }}
28-
- run: npm install
29-
- run: npm run prod
25+
26+
- name: Build
27+
run: |
28+
npm install
29+
npm run prod

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
<p>Extension for track Bitcoin blocks and fees via Mempool space</p>
77

8+
<a rel="noreferrer noopener" target="_blank" href="https://chromewebstore.google.com/detail/bitcoin-blocks-tracker/jhdbfjhembciojemihcimllmbibiakim">
9+
<img alt="Chrome Web Store" src="https://img.shields.io/badge/Chrome-141e24.svg?&style=for-the-badge&logo=google-chrome&logoColor=white">
10+
</a>
811
<a href="https://github.com/IvanSavoskin/bitcoin-blocks-tracker-extension">
912
<img src="https://img.shields.io/github/languages/top/IvanSavoskin/bitcoin-blocks-tracker-extension?style=flat-square&logo=github" alt="GitHub top language" />
1013
</a>

custom_typing/png.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module "*.png" {
2+
const content: string;
3+
export default content;
4+
}

custom_typing/svg.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module "*.svg" {
2+
const content: string;
3+
export default content;
4+
}

custom_typing/types.d.ts

-62
This file was deleted.

custom_typing/wav.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module "*.wav" {
2+
const content: string;
3+
export default content;
4+
}

0 commit comments

Comments
 (0)