mirror of
https://github.com/GothenburgBitFactory/taskshell.git
synced 2025-06-26 10:54:29 +02:00
Initial Commit
This commit is contained in:
commit
bdd20c3d0c
8 changed files with 181 additions and 0 deletions
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal file
|
@ -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
|
13
AUTHORS
Normal file
13
AUTHORS
Normal file
|
@ -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:
|
||||
|
||||
|
23
COPYING
Normal file
23
COPYING
Normal file
|
@ -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
|
5
Changelog
Normal file
5
Changelog
Normal file
|
@ -0,0 +1,5 @@
|
|||
0.9 () -
|
||||
|
||||
|
||||
------ start -----------------------------------
|
||||
|
37
INSTALL
Normal file
37
INSTALL
Normal file
|
@ -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
|
||||
---------------
|
||||
|
||||
---
|
23
LICENSE
Normal file
23
LICENSE
Normal file
|
@ -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
|
45
NEWS
Normal file
45
NEWS
Normal file
|
@ -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.
|
18
README.md
Normal file
18
README.md
Normal file
|
@ -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.
|
Loading…
Add table
Add a link
Reference in a new issue