Skip to content
This repository has been archived by the owner on Feb 26, 2022. It is now read-only.

Commit

Permalink
Releasing v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
S1SYPHOS committed Aug 12, 2020
1 parent d1e85d0 commit 5a51a30
Show file tree
Hide file tree
Showing 1,419 changed files with 204,553 additions and 5 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# EditorConfig
# See https://EditorConfig.org

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{bash,json,php,py}]
indent_style = space
indent_size = 4

[*.{yml,css,html}]
indent_style = space
indent_size = 2
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Set default behaviour to automatically normalize line endings
* text=auto

# Git stuff
.gitattributes export-ignore
.gitignore export-ignore
26 changes: 23 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
# Composer + sensitive files
/composer.lock
/vendor
# Sensitive files
*.cache
yarn.lock

# Auto-generated
/dist

# Composer dependencies that are not needed for the plugin
/vendor/**/.*
/vendor/**/*.json
/vendor/**/*.txt
/vendor/**/*.md
/vendor/**/*.yml
/vendor/**/*.yaml
/vendor/**/*.xml
/vendor/**/*.dist
/vendor/**/readme.php
/vendor/**/LICENSE
/vendor/**/COPYING
/vendor/**/VERSION
/vendor/**/docs/*
/vendor/**/example/*
/vendor/**/examples/*
/vendor/**/test/*
/vendor/**/tests/*
/vendor/**/php4/*
/vendor/getkirby/composer-installer
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,16 @@ You may also change certain options from your `config.php` globally (`'fundevoge
| `'template'` | string | `'donut'` | chart file template |


### Example
Adding some data points, it looks like this:

![Donut Chart, powered by kirby3-donuts](./chart.svg)

.. and with `$isPieChart` being `true`:

![Donut Chart, powered by kirby3-donuts](./chart2.svg)


## Roadmap
- [ ] Add tests

Expand Down
7 changes: 7 additions & 0 deletions chart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions chart2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Kirby v3 wrapper for tiny-phpeanuts",
"type": "kirby-plugin",
"license": "MIT",
"version": "0.3.0",
"version": "1.0.0",
"keywords": ["kirby3", "svg", "charts"],
"homepage": "https://github.com/Fundevogel/kirby3-donuts#readme",
"authors": [
Expand All @@ -20,7 +20,7 @@
"issues": "https://github.com/Fundevogel/kirby3-donuts/issues"
},
"require": {
"fundevogel/tiny-phpeanuts": "^0.3.0",
"fundevogel/tiny-phpeanuts": "0.3.0",
"getkirby/composer-installer": "^1.1"
},
"require-dev": {
Expand Down
7 changes: 7 additions & 0 deletions vendor/autoload.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

// autoload.php @generated by Composer

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInitef6f973937140d5df8860d1f530416ed::getLoader();
1 change: 1 addition & 0 deletions vendor/bin/php-cs-fixer
1 change: 1 addition & 0 deletions vendor/bin/phpunit
Loading

0 comments on commit 5a51a30

Please sign in to comment.