From b2070f8123722d88b275b5735f2b333c75898de5 Mon Sep 17 00:00:00 2001 From: Moritz Wirger Date: Sat, 15 Jan 2022 12:39:03 +0100 Subject: [PATCH] Update README and add security notice --- CHANGELOG.md | 7 +++++++ README.md | 11 ++++++++--- example/lib/main.dart | 2 +- example/pubspec.lock | 2 +- pubspec.yaml | 2 +- 5 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7918973..44a800f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.0.0-dev.3 + +### Update README and add security notice + - Add Discord Server and link to releases to README + - Add security notice to example and README + - Fix feature description of README + ## 1.0.0-dev.2 ### Fix flutter version diff --git a/README.md b/README.md index 4f84457..12ec3b8 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,15 @@ +[![Discord](https://img.shields.io/discord/781219798931603527.svg?label=enwi&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/YxVyJWX62h) +[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/enwi/darttindie?label=release)](https://github.com/enwi/darttindie/releases) + # DartTindie Dart wrapper for Tindie Order API +> Note: Never publish your Tindie API Key! It is a secret and should remain one! + ## Features - - Get all orders (last 30) - - Get all shipped orders (last 30) - - Get all unshipped orders (last 30) + - Get all orders (last 20) + - Get all shipped orders (last 20) + - Get all unshipped orders (last 20) ## Getting started ``` diff --git a/example/lib/main.dart b/example/lib/main.dart index 9d873ca..b577350 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -29,6 +29,7 @@ class MyHomePage extends StatefulWidget { class _MyHomePageState extends State { final tindie = Tindie( + // Note: Never publish your Tindie API Key! It is a secret and should remain one! apikey: 'enter your api key', username: 'enter your username', ); @@ -43,7 +44,6 @@ class _MyHomePageState extends State { title: const Text('Tindie Order Demo'), ), body: Column( - // mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.start, children: [ Row( diff --git a/example/pubspec.lock b/example/pubspec.lock index a9c062a..fba859e 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -49,7 +49,7 @@ packages: path: ".." relative: true source: path - version: "1.0.0-dev.2" + version: "1.0.0-dev.3" fake_async: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 7e7b896..71c14d8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: darttindie description: Simple Dart wrapper for Tindie Order API -version: 1.0.0-dev.2 +version: 1.0.0-dev.3 homepage: https://github.com/enwi/DartTindie environment: