Skip to content

Commit

Permalink
0.4.3 release (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkonyi authored Sep 24, 2018
1 parent 3bdb67a commit 1c3079f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Change Log
=================================
## Version 0.4.3 (2019/09/23)
* Added `nsfw` and `spoiler` parameters to `Subreddit.submit` (Thanks @LucasCLuk!)
* Fixed issue where exceptions generated during client authentication could not be caught.

## Version 0.4.2 (2018/09/10)
* Added support for flair. See documentation for `SubredditFlair` and
`SubmissionFlair` for details.
Expand Down Expand Up @@ -74,15 +78,15 @@ of the Flutter Beta 2 release.

### Functionality:
* Basic `Multireddit` functionality:
* Added `Multireddit.parse(reddit, data)` constructor that will create an instance of
* Added `Multireddit.parse(reddit, data)` constructor that will create an instance of
a `Multireddit`, given the correct `Map` of `data`.
* Added `add(subreddit)` method to add the corresponding `subreddit` to the
* Added `add(subreddit)` method to add the corresponding `subreddit` to the
instance of `Multireddit`. `subreddit` can be of type `Subreddit` or `String`.
* Added `delete()` method to delete the multireddit.
* Added `copy()` and `copy(multiName)`, this will create a copy of the `Multireddit` for
* Added `copy()` and `copy(multiName)`, this will create a copy of the `Multireddit` for
for the currently authenticated user and return an instance of the new `Multireddit`
encapsulated as a `Future`. When `multiName` is provided it will set the display name
of the new `Multireddit` to `multiName`.
encapsulated as a `Future`. When `multiName` is provided it will set the display name
of the new `Multireddit` to `multiName`.
* Added getters for the following properties: `keyColor`, `iconName`, `subreddits`, `author`
`displayName`, `visibility`, `weightingScheme`, `canEdit`, `over18`.
* Comment and Submission moderation.
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: draw
version: 0.4.2
version: 0.4.3
description: 'A Reddit API wrapper for Dart, inspired by PRAW.'
homepage: 'https://github.com/draw-dev/DRAW'
authors:
Expand All @@ -12,14 +12,14 @@ environment:
dependencies:
collection: '^1.14.3'
color:
version: '^2.0.2'
git:
git://github.com/draw-dev/Color.git
url: git://github.com/draw-dev/Color.git
ref: 1557edd4e348926597e4139a2b98f11755eba031
http: '^0.11.3+14'
ini:
version: '^1.1.0'
git:
git://github.com/draw-dev/dart-ini.git
url: git://github.com/draw-dev/dart-ini.git
ref: e125c4bd1f62ffa36fc69a5b7f098dc83c11fa68
logging: '^0.11.3+1'
oauth2: '^1.1.0'
path: '^1.4.2'
Expand Down

0 comments on commit 1c3079f

Please sign in to comment.