-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ComposeGears/task/update-readme
update README.md
- Loading branch information
Showing
1 changed file
with
50 additions
and
12 deletions.
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,20 +1,58 @@ | ||
Intellij IDEA / Android Studio plugin to generate Compose ImageVector from SVG/XML | ||
<div align="center"> | ||
<img alt="Icon" src="plugin/src/main/resources/META-INF/pluginIcon.svg" width="200" /> | ||
</div> | ||
|
||
<h1 align="center">Valkyrie</h1> | ||
<h2 align="center">Intellij IDEA / Android Studio plugin to generate Compose ImageVector from SVG/XML</h2> | ||
|
||
## Key features | ||
|
||
- build using [Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform) | ||
and [Tiamat](https://github.com/ComposeGears/Tiamat) navigation library | ||
- support SVG/XML | ||
- convenient formatting for generated icon | ||
- skip default parameters to reduce visual noise | ||
- convenient code formatting for generated ImageVector icon | ||
- skip default ImageVector path parameters to reduce visual noise | ||
- support drag and drop inside IDE | ||
|
||
## Requirements | ||
- Intellij IDEA 2024.1+ | ||
- Android Studio Koala+ | ||
|
||
### Gradle commands | ||
Build plugin: `./gradlew buildPlugin` and get latest from "build/distributions/" folder | ||
or take latest build from "artifacts" folder | ||
- Intellij IDEA 2024.1+ | ||
- Android Studio Koala+ | ||
|
||
## Installation | ||
|
||
- Manually: | ||
|
||
Download the [latest release](https://github.com/ComposeGears/Valkyrie/releases/latest) | ||
or [build your self](#Building) and install it manually using | ||
<kbd>Settings</kbd> -> <kbd>Plugins</kbd> -> <kbd>⚙️</kbd> -> <kbd>Install plugin from disk...</kbd> | ||
|
||
## Building | ||
|
||
Use `./gradlew buildPlugin` to build plugin locally. Artifact will be available in `plugin/build/distributions/` path | ||
|
||
other available gradle commands: | ||
|
||
- run plugin in IDE: `./gradlew runIde` | ||
|
||
- check dependencies: `./gradlew dependencyUpdates` | ||
|
||
- run tests: `./gradlew test` | ||
|
||
## License | ||
|
||
``` | ||
Developed by ComposeGears 2024 | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
<hr> | ||
Check dependencies: `./gradlew dependencyUpdates` | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
<hr> | ||
Run tests: `./gradlew test` | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
``` |