-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [2.0.0](v1.0.4...v2.0.0) (2021-11-14) * Merge pull request #7 from armand1m/release/v2 ([798d6d8](798d6d8)), closes [#7](#7) ### Bug Fixes * add missing fixtures ([6b5be8a](6b5be8a)) * code import script ([a0e4887](a0e4887)) * node notifier vulnerabities ([dfab3f3](dfab3f3)) * remove signale and hash geocache ([1ad4a30](1ad4a30)) * test cache path and add hash key ([b7c9446](b7c9446)) ### Features * [email protected] ([706cc5c](706cc5c)) * **v2:** new type-safe API introduced ([8276816](8276816)) ### BREAKING CHANGES * the entire API changed in favour of a function-based API instead of classes. * the entire API changed in favor of a function based API instead of classes.
- Loading branch information
1 parent
798d6d8
commit e54a190
Showing
20 changed files
with
2,855 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,31 @@ | ||
# [2.0.0](https://github.com/armand1m/papercut/compare/v1.0.4...v2.0.0) (2021-11-14) | ||
|
||
|
||
* Merge pull request #7 from armand1m/release/v2 ([798d6d8](https://github.com/armand1m/papercut/commit/798d6d82424c7f2f6ccd3eee5c34004b394a1042)), closes [#7](https://github.com/armand1m/papercut/issues/7) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* add missing fixtures ([6b5be8a](https://github.com/armand1m/papercut/commit/6b5be8ad78140ca1e8811b5a3fc95ac7a1686506)) | ||
* code import script ([a0e4887](https://github.com/armand1m/papercut/commit/a0e4887cdc7beaf02416b24d7d871c7c7ea2401d)) | ||
* node notifier vulnerabities ([dfab3f3](https://github.com/armand1m/papercut/commit/dfab3f34f9c127f97d9f6db874b43f4654fe5fb8)) | ||
* remove signale and hash geocache ([1ad4a30](https://github.com/armand1m/papercut/commit/1ad4a30bea2fa175e9b6d8063e05bd6e802ee017)) | ||
* test cache path and add hash key ([b7c9446](https://github.com/armand1m/papercut/commit/b7c9446aae1464983288ec5df9f29594ca4f4d59)) | ||
|
||
|
||
### Features | ||
|
||
* [email protected] ([706cc5c](https://github.com/armand1m/papercut/commit/706cc5c212964e0606ebda66c1d1e2f595e46056)) | ||
* **v2:** new type-safe API introduced ([8276816](https://github.com/armand1m/papercut/commit/827681680736d83918566a9f5c4c7972781117ed)) | ||
|
||
|
||
### BREAKING CHANGES | ||
|
||
* the entire API changed in favour of a function-based API | ||
instead of classes. | ||
* the entire API changed in favor of a function based API | ||
instead of classes. | ||
|
||
## [1.0.4](https://github.com/armand1m/papercut/compare/v1.0.3...v1.0.4) (2021-08-29) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
:root { | ||
--light-hl-0: #000000; | ||
--dark-hl-0: #D4D4D4; | ||
--light-hl-1: #795E26; | ||
--dark-hl-1: #DCDCAA; | ||
--light-hl-2: #AF00DB; | ||
--dark-hl-2: #C586C0; | ||
--light-hl-3: #001080; | ||
--dark-hl-3: #9CDCFE; | ||
--light-hl-4: #A31515; | ||
--dark-hl-4: #CE9178; | ||
--light-hl-5: #0000FF; | ||
--dark-hl-5: #569CD6; | ||
--light-hl-6: #0070C1; | ||
--dark-hl-6: #4FC1FF; | ||
--light-hl-7: #267F99; | ||
--dark-hl-7: #4EC9B0; | ||
--light-hl-8: #098658; | ||
--dark-hl-8: #B5CEA8; | ||
--light-code-background: #FFFFFF; | ||
--dark-code-background: #1E1E1E; | ||
} | ||
|
||
@media (prefers-color-scheme: light) { :root { | ||
--hl-0: var(--light-hl-0); | ||
--hl-1: var(--light-hl-1); | ||
--hl-2: var(--light-hl-2); | ||
--hl-3: var(--light-hl-3); | ||
--hl-4: var(--light-hl-4); | ||
--hl-5: var(--light-hl-5); | ||
--hl-6: var(--light-hl-6); | ||
--hl-7: var(--light-hl-7); | ||
--hl-8: var(--light-hl-8); | ||
--code-background: var(--light-code-background); | ||
} } | ||
|
||
@media (prefers-color-scheme: dark) { :root { | ||
--hl-0: var(--dark-hl-0); | ||
--hl-1: var(--dark-hl-1); | ||
--hl-2: var(--dark-hl-2); | ||
--hl-3: var(--dark-hl-3); | ||
--hl-4: var(--dark-hl-4); | ||
--hl-5: var(--dark-hl-5); | ||
--hl-6: var(--dark-hl-6); | ||
--hl-7: var(--dark-hl-7); | ||
--hl-8: var(--dark-hl-8); | ||
--code-background: var(--dark-code-background); | ||
} } | ||
|
||
body.light { | ||
--hl-0: var(--light-hl-0); | ||
--hl-1: var(--light-hl-1); | ||
--hl-2: var(--light-hl-2); | ||
--hl-3: var(--light-hl-3); | ||
--hl-4: var(--light-hl-4); | ||
--hl-5: var(--light-hl-5); | ||
--hl-6: var(--light-hl-6); | ||
--hl-7: var(--light-hl-7); | ||
--hl-8: var(--light-hl-8); | ||
--code-background: var(--light-code-background); | ||
} | ||
|
||
body.dark { | ||
--hl-0: var(--dark-hl-0); | ||
--hl-1: var(--dark-hl-1); | ||
--hl-2: var(--dark-hl-2); | ||
--hl-3: var(--dark-hl-3); | ||
--hl-4: var(--dark-hl-4); | ||
--hl-5: var(--dark-hl-5); | ||
--hl-6: var(--dark-hl-6); | ||
--hl-7: var(--dark-hl-7); | ||
--hl-8: var(--dark-hl-8); | ||
--code-background: var(--dark-code-background); | ||
} | ||
|
||
.hl-0 { color: var(--hl-0); } | ||
.hl-1 { color: var(--hl-1); } | ||
.hl-2 { color: var(--hl-2); } | ||
.hl-3 { color: var(--hl-3); } | ||
.hl-4 { color: var(--hl-4); } | ||
.hl-5 { color: var(--hl-5); } | ||
.hl-6 { color: var(--hl-6); } | ||
.hl-7 { color: var(--hl-7); } | ||
.hl-8 { color: var(--hl-8); } | ||
pre, code { background: var(--code-background); } |
Oops, something went wrong.