This repository has been archived by the owner on Jul 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add changelog, update cargo.toml and readme
- Loading branch information
1 parent
b188ffe
commit 83af7bc
Showing
3 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
### Added | ||
* Add monthly dow trigger | ||
* Add monthly trigger | ||
* Add Changelog | ||
|
||
### Changed | ||
* Improve documentation | ||
* Change triggers to accept bools instead of i16 | ||
* Update cargo toml | ||
* Update readme | ||
|
||
## [0.0.1] - 2022-04-10 | ||
### Added | ||
* Add ability to set settings on task | ||
* Add ability to set principal | ||
* Add repetition (untested) | ||
* Add create logon task | ||
* Add weekly task example | ||
* Add time trigger example | ||
* Create LICENSE | ||
* Create builder/schedule for daily triggers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "planif" | ||
authors = ["mattrobineau"] | ||
authors = ["Matt Robineau <[email protected]>"] | ||
description = "planif is a builder pattern wrapper for the windows task scheduler API of windows-rs." | ||
license = "MIT" | ||
repository = "https://github.com/mattrobineau/planif" | ||
version = "0.0.1" | ||
version = "0.0.2" | ||
edition = "2021" | ||
keywords = ["scheduled", "task", "windows"] | ||
categories = ["os::windows-apis"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters