Skip to content

Commit

Permalink
Updated docs for 1.1.0
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Prior <[email protected]>
  • Loading branch information
WhereIsX and ryanprior committed May 29, 2020
1 parent f49839a commit ffde173
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 13 deletions.
17 changes: 17 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

## [1.1.0] - 2020-05-29

### Added
- flag: `--use` to use a different base url
- flag: `--init` to interactively create settings file, with specified base url
- file: read settings from `~/.config/meet/settings.yml`
- environment variable: allows specifying settings directory with `XDG_CONFIG_HOME`

### Changed
- setting: uses `base_url` from settings.yml if available

## 1.0.0 - 2020-05-22
- first tagged version

[1.1.0]: https://github.com/ryanprior/meet/compare/1.0.0...1.1.0
27 changes: 15 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,20 @@ https://meet.jit.si/iN9SYLvP/HackOnMeet

### Options

| feature | short | long | description |
|---------|-----------|--------------------|----------------------------------------------|
| style | `-s` | `--snake` | use snake_case for meeting title |
| | `-d` | `--dash` | use dashes for meeting title |
| | `-t` | `--title` | use TitleCase for meeting title (default) |
| | `-S` | `--shout` | use SHOUT👏️CASE🗯️ for meeting title |
| | `-3` | `--heart` | use ❣️heart❤️style❣️ for meeting title |
| | `-j TEXT` | `--emoji=TEXT` | put `TEXT` between words of meeting title |
| open | `-o` | `--open` | open url in your browser after a short pause |
| | `-O` | `--open-immediate` | open url in your browser immediately |
| copy | `-c` | `--copy` | copy url to clipboard using `xsel` |
| send | `-k USER` | `--send-kb=USER` | send url to `USER` on Keybase |
| feature | short | long | description |
|----------|-----------|--------------------|----------------------------------------------|
| settings | | `--init` | initialize meet settings |
| | `-u URL` | `--use URL` | use URL for this meeting |
| style | `-s` | `--snake` | use snake_case for meeting title |
| | `-d` | `--dash` | use dashes for meeting title |
| | `-t` | `--title` | use TitleCase for meeting title (default) |
| | `-S` | `--shout` | use SHOUT👏️CASE🗯️ for meeting title |
| | `-3` | `--heart` | use ❣️heart❤️style❣️ for meeting title |
| | `-j TEXT` | `--emoji=TEXT` | put `TEXT` between words of meeting title |
| open | `-o` | `--open` | open url in your browser after a short pause |
| | `-O` | `--open-immediate` | open url in your browser immediately |
| copy | `-c` | `--copy` | copy url to clipboard using `xsel` |
| send | `-k USER` | `--send-kb=USER` | send url to `USER` on Keybase |

## Installation

Expand All @@ -60,6 +62,7 @@ To install `meet` from source, you will need these dependencies:
- make
- [crystal](https://crystal-lang.org/)
- coreutils
- readline

Crystal has these transitive dependencies: `gcc`, `pkg-config`, `libpcre3-dev`,
`libevent-dev`.
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: meet
version: 1.0.0
version: 1.1.0
dependencies:
readline:
github: crystal-lang/crystal-readline

0 comments on commit ffde173

Please sign in to comment.