GitXplorerGitXplorer
l

alfred-rs

public
47 stars
6 forks
2 issues

Commits

List of commits on branch master.
Unverified
206111292e0031f73d1180571631237e6d16f0f3

Update README for v4.0.2

committed 5 years ago
Unverified
2c60cdb9cd9c44d76b476a205d3355814710fa3b

Update my name and email

committed 5 years ago
Unverified
5096b9200ef7653b17638040f4ecc73b0c92fdbb

Bump version to v4.0.1

llilyball committed 7 years ago
Unverified
559c3d87e83e26cfd99eef0b190bf26bc7c4b99c

Make to_json on Item and its helper types public

llilyball committed 7 years ago
Unverified
a3453e13f9b206972fa8664f2c0ba98c170e4c05

Merge pull request #6 from alin23/master

llilyball committed 7 years ago
Unverified
381fc3a523aafacfdf8e8601334ce2a54b01f5ea

Make into_json public

aalin23 committed 7 years ago

README

The README file for this repository.

alfred-rs

Build Status crates.io/crates/alfred

Rust library to help with creating Alfred Workflows.

API Documentation

Installation

Add the following to your Cargo.toml file:

[dependencies]

alfred = "4.0"

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Version History

4.0.2

  • Update crate metadata.

4.0.1

  • Make Builder.into_json public.
  • Make Item.to_json public, along with to_json methods on its helper types.

4.0.0

  • Add support for per-modifier icons.
  • Add support for outputting workflow variables.
  • Add support for outputting per-item workflow variables.
  • Add support for outputting per-modifier workflow variables.
  • Derive a few more traits on the types provided by this crate.

3.0.3

Add 2 more functions for reading workflow environment variables.

3.0.2

Update documentation links for crates.io.

3.0.1

Update serde_json to 1.0.

3.0

Switch from rustc-serialize to serde_json for our JSON support.

2.0.1

Add new module alfred::env for accessing the Alfred workflow environment variables.

2.0.0

Moved XML output into its own module alfred::xml and introduced a new module alfred::json for the new Alfred 3 JSON format.

Updated Item and ItemBuilder with the extended modifier functionality and support for the QuickLook URL.

1.0.1

Dual-licensed under MIT and APACHE.

1.0.0

Rust 1.0 is out!

0.3.1

Remove #[unsafe_destructor], which no longer exists in the latest nightlies.

0.3.0

Switch from IntoCow<'a, str> to Into<Cow<'a, str>>. This is technically a breaking change, but it is unlikely to affect anyone.

0.2.2

Compatibility with the latest Rust nightly.

0.2.1

Compatibility with the latest Rust nightly.

0.2

Switch from std::old_io to std::io.

0.1.1

Compatibility with the Rust nightly for 2015-02-21.

0.1

Compatibility with the Rust 1.0 Alpha release.