🔧 Configuration specification
This commit is contained in:
@@ -1,4 +1,3 @@
|
|||||||
# http://editorconfig.org
|
|
||||||
root = true
|
root = true
|
||||||
|
|
||||||
[*]
|
[*]
|
||||||
|
|||||||
@@ -126,3 +126,4 @@ enforcement ladder](https://github.com/mozilla/diversity).
|
|||||||
For answers to common questions about this code of conduct, see the FAQ at
|
For answers to common questions about this code of conduct, see the FAQ at
|
||||||
https://www.contributor-covenant.org/faq. Translations are available at
|
https://www.contributor-covenant.org/faq. Translations are available at
|
||||||
https://www.contributor-covenant.org/translations.
|
https://www.contributor-covenant.org/translations.
|
||||||
|
|
||||||
|
|||||||
@@ -17,10 +17,6 @@ graph LR
|
|||||||
- `master` is the release branch, we will make tag and publish version on this branch.
|
- `master` is the release branch, we will make tag and publish version on this branch.
|
||||||
- If it is a document modification, it can be submitted to this branch.
|
- If it is a document modification, it can be submitted to this branch.
|
||||||
|
|
||||||
## Commit Log
|
|
||||||
|
|
||||||
please use <https://github.com/tw93/cz-emoji-chinese>
|
|
||||||
|
|
||||||
## More
|
## More
|
||||||
|
|
||||||
It is a good habit to create a feature request issue to discuss whether the feature is necessary before you implement it. However, it's unnecessary to create an issue to claim that you found a typo or improved the readability of documentation, just create a pull request.
|
It is a good habit to create a feature request issue to discuss whether the feature is necessary before you implement it. However, it's unnecessary to create an issue to claim that you found a typo or improved the readability of documentation, just create a pull request.
|
||||||
|
|||||||
1
cli.js
vendored
1
cli.js
vendored
@@ -1,2 +1,3 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
import './dist/cli.js';
|
import './dist/cli.js';
|
||||||
|
|
||||||
|
|||||||
3
icns2png.py
vendored
3
icns2png.py
vendored
@@ -10,7 +10,6 @@ except ImportError:
|
|||||||
os.system("pip install Pillow")
|
os.system("pip install Pillow")
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
now_dir = os.path.dirname(os.path.abspath(__file__))
|
now_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
icons_dir = os.path.join(now_dir, "src-tauri", "icons")
|
icons_dir = os.path.join(now_dir, "src-tauri", "icons")
|
||||||
@@ -34,5 +33,3 @@ if __name__ == "__main__":
|
|||||||
image_32.save(image_32_path, "ICO")
|
image_32.save(image_32_path, "ICO")
|
||||||
print("png file write success.")
|
print("png file write success.")
|
||||||
print(f"There are {len(os.listdir(png_dir))} png picture in ", png_dir)
|
print(f"There are {len(os.listdir(png_dir))} png picture in ", png_dir)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user