Clean up
This commit is contained in:
parent
5c7ca2abc5
commit
8a522c9cdd
4 changed files with 19 additions and 9 deletions
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
|
@ -70,3 +70,13 @@ jobs:
|
|||
asset_path: ./manifest.json
|
||||
asset_name: manifest.json
|
||||
asset_content_type: application/json
|
||||
- name: Upload CSS
|
||||
id: upload-css
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: ./src/styles.css
|
||||
assest_name: styles.css
|
||||
asset_content_type: text/css
|
||||
|
|
14
README.md
14
README.md
|
@ -2,7 +2,7 @@
|
|||
|
||||
  
|
||||
|
||||
**IMPORTANT NOTICE:** Due to the introduction of the new Live Preview feature, this plugin needed to be almost entirely rewritten. Currently the plugin only displays the only the word and character count with selecting text features. ALL other features have been scrapped and will be ported in future updates. **DO NOT UPDATE** If you want to use the legacy editor since their is no backwards compatibility yet (I know I'm lazy but I wanted to release the fix, its been too long).
|
||||
**IMPORTANT NOTICE:** Due to the introduction of the new Live Preview feature, this plugin needed to be almost entirely rewritten. It will be unstable for a while so please report bugs on github.
|
||||
|
||||
This plugin is the same as the built-in **Word Count** plugin, except when you select text, it will count the selected word instead of the whole document. I recommend turning off the built-in **Word Count** because this plugin is designed to replace that. This plugin also has the ability to store statistics about your vault.
|
||||
|
||||
|
@ -19,12 +19,6 @@ This plugin is the same as the built-in **Word Count** plugin, except when you s
|
|||
- Total Files in vault.
|
||||
- Highly Customizable status bar that can be adapted to your needs.
|
||||
|
||||
### TODO
|
||||
|
||||
- [ ] add statistic view
|
||||
- [ ] add more statistics (make suggestions)
|
||||
- [ ] add goals
|
||||
|
||||
## Contributors
|
||||
|
||||
- @leoccyao
|
||||
|
@ -44,3 +38,9 @@ This plugin is the same as the built-in **Word Count** plugin, except when you s
|
|||
- @lammersma
|
||||
- @aknighty74
|
||||
- @dhruvik7
|
||||
|
||||
### Support Me
|
||||
|
||||
If you enjoyed the plugin you can support me by clicking the button below. I am currently a student so anything helps.
|
||||
|
||||
[<img src="https://cdn.buymeacoffee.com/buttons/v2/default-violet.png" alt="BuyMeACoffee" width="100">](https://www.buymeacoffee.com/lukeleppan)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "better-word-count",
|
||||
"name": "Better Word Count",
|
||||
"version": "0.8.1",
|
||||
"version": "0.9.0",
|
||||
"description": "Counts the words of selected text in the editor.",
|
||||
"author": "Luke Leppan",
|
||||
"authorUrl": "https://lukeleppan.com",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "better-word-count",
|
||||
"version": "0.8.1",
|
||||
"version": "0.9.0",
|
||||
"description": "Counts the words of selected text in the editor.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in a new issue