Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
hugolgst committed Aug 8, 2019
2 parents 510ed04 + bfbcd8f commit b281cfb
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 2 deletions.
59 changes: 59 additions & 0 deletions public/changelog/august-2019.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Releasing Olivia 2.0
## ⚡ Global features
### 🛠 User cache
I've released a system of cache located in the client of the user, there is no database so Olivia does not keep any data on the user.

## ⚡ New features [*olivia-ai/olivia*](https://github.com/olivia-ai/olivia)

### 💬 The *math* module
You can compute simples math operations or complicates, Olivia can too use the number of decimals you asked

> Calculate 4 x 3
> That makes 12
> Calculate cos(0.7) * 3.5 with 5 decimals
> That makes 2.67695
### 💬 The *movies* module
Your personal assistant can suggest you movies in different genres, here is the list of available genres:
`Action, Adventure, Animation, Children, Comedy, Crime, Documentary, Drama, Fantasy, Film-Noir, Horror, Musical, Mystery, Romance, Sci-Fi, Thriller, War and Western`
She choose the best-rated movie in this genre if it is not in the list of movies Olivia already suggested to you (stored in the user cache).
Olivia can too suggest you when you don't ask like when you say:

> I'm bored
> I propose you a movie of Adventure, Animation “Akira (1988)” which is rated 4.07/5
However, you must have told Olivia about your movies preferences:

> I like movies of Adventure
> Understood, I send this information to your client.
But you can of course simply ask for a movie:

> Can you find a movie of Fantasy for me please?
> Sure, I found this movie “Luna Papa (1999)” rated 4.25/5
### 💬 The *name* module
Olivia can remember your name by simply telling her:

> My name is Hugo
> Great! Hi Hugo
see **#User cache** for more information about where your name is stored.

## ⚡ New features [*olivia-ai/olivia-ai.org*](https://github.com/olivia-ai/olivia-ai.org)
### 🖥 Chat page
The chat page has been re-built entirely, it now feels more like a personal assistant.
There is a big animated-button in the center, when you click on it you can speak to Olivia and it moves more quickly

![](https://i.imgur.com/krD50iK.png)

### 🖥 Home page
There is now information about the Progressive Web Application and the Open Source project

![](https://i.imgur.com/1TavDGn.png)

### 🖥 The changelog
The page where you are is the new changelog

![](https://i.imgur.com/Hez4tNP.png)
29 changes: 27 additions & 2 deletions src/views/Changelog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,15 @@
<header class="timeline-header">
<span class="tag is-medium is-primary">Latest</span>
</header>
<div class="timeline-item">

<div class="timeline-item is-primary">
<div class="timeline-marker is-primary"></div>
<div class="timeline-content">
<p class="heading">August 2019</p>
<p class="content">
<vue-markdown :source="august2019">
</vue-markdown>
</p>
</div>
</div>
<header class="timeline-header">
<span class="tag is-primary">2019</span>
Expand Down Expand Up @@ -47,3 +54,21 @@
</div>
</div>
</template>

<script>
import VueMarkdown from 'vue-markdown'
export default {
data() {
return {
august2019: 'Loading...'
}
},
components: {
VueMarkdown
},
mounted() {
import('../../public/changelog/august-2019.md').then(res => this.august2019 = res.default)
}
}
</script>

0 comments on commit b281cfb

Please sign in to comment.