Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed Aug 2, 2020
1 parent c44a5e1 commit d72adfc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,21 @@
## 0.2.0 - 2020-08-02

- Add drag and drop feature to portal
- Add lines numbers to text viewer
- Filter lines in text viewer
- Lazy render text viewer
- Add forward navigation
- Preserve viewer selection on navigation
- Preserve filter text on navigation
- Disable navigation buttons when not possible

## 0.1.1 - 2020-07-26

- Special case rendering urls encoded as strings
- Simplify filtering
- Improve tree viewer complex key handling

## 0.1.0 - 2020-07-24

- Initial release

4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -27,13 +27,13 @@ The UX will probably evolve over time and user feedback is welcome!
To start a repl with portal, run the clojure cli with:

```bash
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.1.1"}}}'
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.2.0"}}}'
```

or for a node clojurescript repl, do:

```bash
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.1.1"}
clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.2.0"}
org.clojure/clojurescript {:mvn/version "1.10.758"}}}' \
-m cljs.main -re node
```
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>djblue</groupId>
<artifactId>portal</artifactId>
<version>0.1.1</version>
<version>0.2.0</version>
<name>portal</name>
<description>A clojure tool to navigate through your data.</description>
<url>https://github.com/djblue/portal</url>
Expand All @@ -15,7 +15,7 @@
</licenses>
<scm>
<url>https://github.com/djblue/portal</url>
<tag>0.1.1</tag>
<tag>0.2.0</tag>
</scm>
<dependencies>
<dependency>
Expand Down

0 comments on commit d72adfc

Please sign in to comment.