Skip to content

Commit

Permalink
doc: bump version / update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
haberdashPI committed Aug 23, 2021
1 parent 0faa48b commit 03876ac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Alert"
uuid = "28312eec-4d86-447d-83ad-bc2b262de792"
authors = ["David Little <[email protected]> and contributors"]
version = "1.0.1"
version = "1.1.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ Table of Contents:
- [The alert function](#the-alert-function)
- [The @alert macro](#the-alert-macro)
- [The REPL hook](#the-repl-hook)
- [Changing backends](#changing-backends)
- [Built-in backends](#built-in-backends)
- [Troubleshooting](#troubleshooting)
- [Extensions](#extensions)

Expand Down Expand Up @@ -78,6 +80,15 @@ catch e
end
```

## Changing backends

You can implement any backend you want for `alert`. See the docstring for `Alert.set_alert_backend!` for more details.

### Built-in backends

- `apple_alert!` allows you to modify some UX details of the alert notification
on MacOS. See its docstring.

## Troubleshooting

- **Notification fails to display on Windows**: check to make sure you have Notifications turned on in "Notifications & actions" in your OS settings. ![Window of the Windows 10 "Notifications & actions"](https://aws1.discourse-cdn.com/business5/uploads/julialang/optimized/3X/b/5/b55776f64fa7dae966a3773bca40e3627a1a480b_2_960x750.png)
Expand Down

2 comments on commit 03876ac

@haberdashPI
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/43390

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.0 -m "<description of version>" 03876ac604d2c66815e3e881d3e9aae8837bc78c
git push origin v1.1.0

Please sign in to comment.