From bdd20c3d0c092859bbfab06fdcae5cd086aae945 Mon Sep 17 00:00:00 2001 From: Federico Hernandez Date: Sun, 8 Jun 2014 22:27:38 +0200 Subject: [PATCH] Initial Commit --- .gitignore | 17 +++++++++++++++++ AUTHORS | 13 +++++++++++++ COPYING | 23 +++++++++++++++++++++++ Changelog | 5 +++++ INSTALL | 37 +++++++++++++++++++++++++++++++++++++ LICENSE | 23 +++++++++++++++++++++++ NEWS | 45 +++++++++++++++++++++++++++++++++++++++++++++ README.md | 18 ++++++++++++++++++ 8 files changed, 181 insertions(+) create mode 100644 .gitignore create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 Changelog create mode 100644 INSTALL create mode 100644 LICENSE create mode 100644 NEWS create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa8ce07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +cmake.h +auto.h +commit.h +Makefile +src/tasksh +*~ +.*.swp +package-config/osx/binary/task +CMakeFiles +CMakeCache.txt +cmake_install.cmake +install_manifest.txt +_CPack_Packages +CPackConfig.cmake +CPackSourceConfig.cmake +patches +*.exe diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..668d1d9 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,13 @@ +The development of tasksh was made possible by the significant +contributions of the following people: + + Paul Beckingham (Principal Author) + Federico Hernandez (Principal Author) + +The following submitted code, packages or analysis, and deserve special thanks: + + +Thanks to the following, who submitted detailed bug reports and excellent +suggestions: + + diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..5c86fbc --- /dev/null +++ b/COPYING @@ -0,0 +1,23 @@ +tasksh - a shell/frontend for ithe command line task list manager taskwarrior. + +Copyright 2006 - 2014, Paul Beckingham, Federico Hernandez. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +http://www.opensource.org/licenses/mit-license.php diff --git a/Changelog b/Changelog new file mode 100644 index 0000000..4125866 --- /dev/null +++ b/Changelog @@ -0,0 +1,5 @@ +0.9 () - + + +------ start ----------------------------------- + diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..6ea2ac9 --- /dev/null +++ b/INSTALL @@ -0,0 +1,37 @@ +Installation Instructions +------------------------- + +Please follow the instructions below to build tasksh with cmake. + + +Pre-requisites +-------------- + +You will need the CMake build system installed in order to build tasksh +from source. + +More information on cmake can be obtained at http://cmake.org + + +Basic Installation +------------------ + +Build and configurations options +-------------------------------- + +Localizations +------------- + +Uninstallation +-------------- + +Tasksh Build Notes +----------------------- + +Operating System Notes +---------------------- + +Troubleshooting +--------------- + +--- diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..5c86fbc --- /dev/null +++ b/LICENSE @@ -0,0 +1,23 @@ +tasksh - a shell/frontend for ithe command line task list manager taskwarrior. + +Copyright 2006 - 2014, Paul Beckingham, Federico Hernandez. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +http://www.opensource.org/licenses/mit-license.php diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..778ee6f --- /dev/null +++ b/NEWS @@ -0,0 +1,45 @@ + +New Features in tasksh 0.9 + + +New commands in tasksh 0.9 + + +New configuration options in tasksh 0.9 + + +Newly deprecated features in tasksh 0.9 + + +Removed features in 0.9 + + +Known Issues + + +Tasksh has been built and tested on the following configurations: + + * OS X + * Fedora + * Ubuntu + * Debian + * Arch Linux + * FreeBSD + * Cygwin 1.7 + +--- + +While Tasksh has undergone testing, bugs are sure to remain. If you +encounter a bug, please enter a new issue at: + + http://bug.tasktools.org + +Or you can also report the issue in the forums at: + + http://answers.tasktools.org + +Or just send a message to: + + support@taskwarrior.org + +Thank you. diff --git a/README.md b/README.md new file mode 100644 index 0000000..5af5213 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Disclaimer during ongoing development + +The development branch is a work in progress and may not pass all quality tests, +therefore it may harm your data. While we welcome bug reports from the +development branch, we do not guarantee proper or timely fixes. + +- Make proper backups. +- Broken functionality may arise from ongoing development work. +- Be aware that using the development branch involves risks. + +--- + +Thank you for taking a look at tasksh!! + +--- + +Tasksh is released under the MIT license. For details check the LICENSE +file.