Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f47226f91 | ||
|
|
d26f79a458 | ||
|
|
ce6ff451b0 | ||
|
|
5466f19441 | ||
|
|
0db0ab1b3c | ||
|
|
fd34737330 | ||
|
|
f48f89fbd9 | ||
|
|
7de0a3afa4 | ||
|
|
c5aba94233 | ||
|
|
b7500776fe | ||
|
|
d29ddec34f | ||
|
|
83f71520d2 | ||
|
|
ee15bfa1db | ||
|
|
f2abee3606 | ||
|
|
c6ec416e30 | ||
|
|
9a193e26ec | ||
|
|
2657880ff3 | ||
|
|
497262d23c | ||
|
|
1b745bc505 | ||
|
|
2620714b43 | ||
|
|
4ebf611b91 | ||
|
|
862ae0b969 | ||
|
|
b634dea7ab | ||
|
|
2931be613b | ||
|
|
6d2ecaa15c | ||
|
|
a8c215774b | ||
|
|
0ae2f2a5fd | ||
|
|
9f5a38df60 | ||
|
|
5e30a65689 | ||
|
|
c1de01d594 | ||
|
|
2dd21de678 | ||
|
|
041248e7cc | ||
|
|
cf45f28cc0 | ||
|
|
64243e6ec1 | ||
|
|
473eb628bc | ||
|
|
672611435a | ||
|
|
493bbadb18 |
61
.github/workflows/tests.yaml
vendored
Normal file
61
.github/workflows/tests.yaml
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
name: tests
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
tests:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- name: "Centos 7"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: centos7
|
||||
- name: "Centos 8"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: centos8
|
||||
- name: "Fedora 31"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: fedora31
|
||||
- name: "Fedora 32"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: fedora32
|
||||
- name: "Fedora 33"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: fedora33
|
||||
- name: "Debian Stable"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: debianstable
|
||||
- name: "Debian Testing"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: debiantesting
|
||||
- name: "Ubuntu 18.04"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: ubuntu1804
|
||||
- name: "Ubuntu 20.04"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: ubuntu2004
|
||||
- name: "OpenSUSE 15.0"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: opensuse1500
|
||||
- name: "Archlinux Base (Rolling)"
|
||||
runner: ubuntu-latest
|
||||
dockerfile: arch
|
||||
- name: "Mac OS X 10.13"
|
||||
runner: macos-latest
|
||||
dockerfile: osx
|
||||
runs-on: ${{ matrix.runner }}
|
||||
continue-on-error: ${{ matrix.continue-on-error == true }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build ${{ matrix.name }}
|
||||
env:
|
||||
DOCKER_REGISTRY: docker.pkg.github.com
|
||||
DOCKER_CACHE_IMAGE: docker.pkg.github.com/${{ github.repository }}/taskwarrior_cache
|
||||
GITHUB_USER: ${{ github.actor }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CONTAINER: ${{ matrix.dockerfile }}
|
||||
run: if [[ $CONTAINER != "osx" ]]; then docker-compose build test-$CONTAINER ; fi
|
||||
- name: Test ${{ matrix.name }}
|
||||
run: if [[ $CONTAINER != "osx" ]]; then docker-compose run test-$CONTAINER; else bash test/scripts/test_osx.sh ; fi
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CONTAINER: ${{ matrix.dockerfile }}
|
||||
49
.travis.yml
49
.travis.yml
@@ -1,49 +0,0 @@
|
||||
sudo: required
|
||||
language: generic
|
||||
matrix:
|
||||
include:
|
||||
- name: "Centos 7"
|
||||
os: linux
|
||||
env: CONTAINER=centos7
|
||||
services: docker
|
||||
- name: "Fedora 28"
|
||||
os: linux
|
||||
env: CONTAINER=fedora28
|
||||
services: docker
|
||||
- name: "Fedora 29"
|
||||
os: linux
|
||||
env: CONTAINER=fedora28
|
||||
services: docker
|
||||
- name: "Debian Stable"
|
||||
os: linux
|
||||
env: CONTAINER=debianstable
|
||||
services: docker
|
||||
- name: "Debian Testing"
|
||||
os: linux
|
||||
env: CONTAINER=debiantesting
|
||||
services: docker
|
||||
- name: "Ubuntu 16.04"
|
||||
os: linux
|
||||
env: CONTAINER=ubuntu1604
|
||||
services: docker
|
||||
- name: "Ubuntu 18.04"
|
||||
os: linux
|
||||
env: CONTAINER=ubuntu1804
|
||||
services: docker
|
||||
- name: "OpenSUSE 15.0"
|
||||
os: linux
|
||||
env: CONTAINER=opensuse1500
|
||||
services: docker
|
||||
- name: "Archlinux 2018.01.01"
|
||||
os: linux
|
||||
env: CONTAINER=arch180101
|
||||
services: docker
|
||||
- name: "Mac OS X 10.13"
|
||||
os: osx
|
||||
env: CONTAINER=osx
|
||||
install:
|
||||
# Build the docker container
|
||||
- pushd $TRAVIS_BUILD_DIR
|
||||
- if [[ $CONTAINER != "osx" ]]; then docker-compose build test-$CONTAINER ; fi
|
||||
script:
|
||||
- if [[ $CONTAINER != "osx" ]]; then docker-compose run test-$CONTAINER; else bash test/scripts/test_osx.sh ; fi
|
||||
@@ -7,7 +7,7 @@ include (CheckStructHasMember)
|
||||
set (HAVE_CMAKE true)
|
||||
|
||||
project (task)
|
||||
set (PROJECT_VERSION "2.5.2")
|
||||
set (PROJECT_VERSION "2.5.3")
|
||||
include (CXXSniffer)
|
||||
|
||||
OPTION (ENABLE_WASM "Enable 'wasm' support" OFF)
|
||||
@@ -161,5 +161,5 @@ set (CPACK_SOURCE_IGNORE_FILES "CMakeCache" "CMakeFiles" "CPackConfig" "CPackSo
|
||||
"_CPack_Packages" "cmake_install" "install_manifest" "Makefile$"
|
||||
"test" "package-config" "misc/*" "src/task$" "src/calc$" "performance"
|
||||
"src/libtask.a" "src/columns/libcolumns.a" "src/commands/libcommands.a"
|
||||
".github/" ".travis.yml" "/\\\\.gitignore" "/\\\\.git/" "swp$" "src/lex$")
|
||||
".github/" "/\\\\.gitignore" "/\\\\.git/" "swp$" "src/lex$" ".*tar.gz")
|
||||
include (CPack)
|
||||
|
||||
2
COPYING
2
COPYING
@@ -1,6 +1,6 @@
|
||||
Taskwarrior - a command line task list manager.
|
||||
|
||||
Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
Copyright 2006 - 2021, 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
|
||||
|
||||
11
ChangeLog
11
ChangeLog
@@ -1,4 +1,11 @@
|
||||
2.5.2 () -
|
||||
2.5.3 () -
|
||||
|
||||
- #2375 task hangs then dies when certain tasks are present in a report
|
||||
Thanks to Max Rossmannek, Tomáš Janoušek and Chad Phillips.
|
||||
|
||||
------ current release ---------------------------
|
||||
|
||||
2.5.2 (2020-12-05) - b0c17d11639dc6e783befd89c8508f2abb9b4287
|
||||
|
||||
- TD-64 sync conflict deleted all annotations of the task
|
||||
Thanks to Markus Beppler, Konstantin Vorobyev
|
||||
@@ -152,8 +159,6 @@
|
||||
- Do not set CMP0037 on CMake 3.11.0 and above
|
||||
Thanks to Janik Rabe
|
||||
|
||||
------ current release ---------------------------
|
||||
|
||||
2.5.1 (2016-02-24) 8b4ae3b54b44dfbd00b96cdd6dceb8dfe7cc1ea0
|
||||
|
||||
- TD-104 Unrecognized taskwarrior file format
|
||||
|
||||
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
||||
Taskwarrior - a command line task list manager.
|
||||
|
||||
Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
Copyright 2006 - 2021, 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
|
||||
|
||||
81
NEWS
81
NEWS
@@ -1,81 +1,28 @@
|
||||
This is a bugfix release.
|
||||
|
||||
New Features in Taskwarrior 2.5.2
|
||||
Important fixes in 2.5.3:
|
||||
|
||||
- The 'QUARTER' virutal tag was added.
|
||||
- The 'help' command now takes a 'usage' argument, which displays only the
|
||||
command usage.
|
||||
- Improved compatibility with SmartOS, OmniOS and OpenIndiana.
|
||||
- New DOM references: annotations.count, tw.syncneeded, tw.program, tw.args,
|
||||
tw.width, tw.height, tw.version.
|
||||
- Renovated 'timesheet' command with a more compact report that accepts a
|
||||
filter, and has a default filter showing the last four weeks of completed
|
||||
and started tasks.
|
||||
- The message telling you to sync now indicates how many local changes will be
|
||||
synced.
|
||||
|
||||
New Commands in Taskwarrior 2.5.2
|
||||
|
||||
- The 'purge' command was added, which completely removes old tasks.
|
||||
- Added new 'history.weekly', 'history.daily', 'ghistory.weekly',
|
||||
'ghistory.daily' reports.
|
||||
|
||||
New Configuration Options in Taskwarrior 2.5.2
|
||||
|
||||
- New 'relative' column format for 'date' type columns does what 'remaining'
|
||||
and 'countdown' do, but in one format.
|
||||
- The 'default.scheduled' date/duration works just like 'default.due'.
|
||||
- The 'report.timesheet.filter' setting controls the tasks shown by the
|
||||
'timesheet' command.
|
||||
|
||||
Newly Deprecated Features in Taskwarrior 2.5.2
|
||||
|
||||
- The 'DUETODAY' virtual tag is a synonym for the 'TODAY' virtual tag, and is
|
||||
not needed.
|
||||
- The 'new-uuid' verbosity option is to be removed, as it is redundant, its
|
||||
functionality will be merged with 'new-id' option.
|
||||
- The use of alternate Boolean configuration settings is deprecated. Use values
|
||||
"0" for off, and "1" for on. Avoid used of "on", "off", "true", "t",
|
||||
"false", "f", "yes", "y", "no", "n".
|
||||
- The 'context.program', 'context.args', 'context.width' and 'context.height'
|
||||
DOM references are deprecated, replaced by similarly-named 'tw.xxx'
|
||||
references.
|
||||
|
||||
Removed Features in 2.5.2
|
||||
|
||||
- Removed 'alias._query' default configuration.
|
||||
- There is no longer a 16-color default configuration for some platforms,
|
||||
making all platforms 256-color.
|
||||
- The configuration setting 'burndown.bias' is no longer used.
|
||||
- The algorithm used to estimate completion on the 'burndown' reports has
|
||||
been replaced by something less icky. Estimates are now based on the net
|
||||
completion rate after the peak number of pending tasks.
|
||||
- The unused 'dom' and 'shell.prompt' configuration settings were removed.
|
||||
- Translations are no longer supported.
|
||||
- Taskwarrior no longer hangs with wrapped tasks in the report (#2375).
|
||||
|
||||
Known Issues
|
||||
|
||||
- https://github.com/GothenburgBitFactory/taskwarrior
|
||||
|
||||
Taskwarrior has been built and tested on the following configurations:
|
||||
Taskwarrior 2.5.3 has been built and tested on the following configurations:
|
||||
|
||||
* macOS
|
||||
* Fedora
|
||||
* Ubuntu
|
||||
* Debian
|
||||
* Arch
|
||||
* FreeBSD
|
||||
* CentOS
|
||||
* Archlinux
|
||||
* OpenSUSE
|
||||
* macOS 10.15
|
||||
* Fedora (31, 32, 33)
|
||||
* Ubuntu (18.04, 20.04)
|
||||
* Debian (Stable, Testing)
|
||||
* CentOS (7, 8)
|
||||
|
||||
We expect Taskwarrior to work on other platforms as well.
|
||||
|
||||
---
|
||||
|
||||
While Taskwarrior has undergone testing, bugs are sure to remain. If you
|
||||
encounter a bug, please enter a new issue at:
|
||||
|
||||
https://github.com/GothenburgBitFactory/taskwarrior<Paste>
|
||||
|
||||
Or just send a message to:
|
||||
|
||||
support@GothenburgBitFactory.org
|
||||
|
||||
Thank you.
|
||||
|
||||
https://github.com/GothenburgBitFactory/taskwarrior
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Taskwarrior
|
||||
|
||||
[](https://travis-ci.org/GothenburgBitFactory/taskwarrior)
|
||||
[](https://github.com/GothenburgBitFactory/taskwarrior/actions)
|
||||
|
||||
Thank you for taking a look at Taskwarrior!
|
||||
|
||||
|
||||
@@ -288,7 +288,7 @@ Better yet, create your own, and share it. We will gladly host the theme file
|
||||
on <https://taskwarrior.org>.
|
||||
|
||||
.SH "CREDITS & COPYRIGHTS"
|
||||
Copyright (C) 2006 \- 2020 P. Beckingham, F. Hernandez.
|
||||
Copyright (C) 2006 \- 2021 P. Beckingham, F. Hernandez.
|
||||
|
||||
Taskwarrior is distributed under the MIT license. See
|
||||
https://www.opensource.org/licenses/mit-license.php for more information.
|
||||
|
||||
@@ -147,7 +147,7 @@ Weaknesses:
|
||||
- You need to manage your own server, or gain access to a hosted server.
|
||||
|
||||
.SH "CREDITS & COPYRIGHTS"
|
||||
Copyright (C) 2006 \- 2020 P. Beckingham, F. Hernandez.
|
||||
Copyright (C) 2006 \- 2021 P. Beckingham, F. Hernandez.
|
||||
|
||||
Taskwarrior is distributed under the MIT license. See
|
||||
https://www.opensource.org/licenses/mit-license.php for more information.
|
||||
|
||||
@@ -1332,7 +1332,7 @@ The file that contains the completed ("done") tasks.
|
||||
The file that contains information needed by the "undo" command.
|
||||
|
||||
.SH "CREDITS & COPYRIGHTS"
|
||||
Copyright (C) 2006 \- 2020 P. Beckingham, F. Hernandez.
|
||||
Copyright (C) 2006 \- 2021 P. Beckingham, F. Hernandez.
|
||||
|
||||
Taskwarrior is distributed under the MIT license. See
|
||||
https://www.opensource.org/licenses/mit-license.php for more information.
|
||||
|
||||
@@ -1512,7 +1512,7 @@ Default is "NORMAL". See GnuTLS documentation for full details.
|
||||
.RE
|
||||
|
||||
.SH "CREDITS & COPYRIGHTS"
|
||||
Copyright (C) 2006 \- 2020 P. Beckingham, F. Hernandez.
|
||||
Copyright (C) 2006 \- 2021 P. Beckingham, F. Hernandez.
|
||||
|
||||
This man page was originally written by Federico Hernandez.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/cs-CZ/2020.json
|
||||
# https://holidata.net/cs-CZ/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/da-DK/2020.json
|
||||
# https://holidata.net/da-DK/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/de-AT/2020.json
|
||||
# https://holidata.net/de-AT/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/de-BE/2020.json
|
||||
# https://holidata.net/de-BE/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/de-CH/2020.json
|
||||
# https://holidata.net/de-CH/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/de-DE/2020.json
|
||||
# https://holidata.net/de-DE/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/el-GR/2020.json
|
||||
# https://holidata.net/el-GR/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/en-CA/2020.json
|
||||
# https://holidata.net/en-CA/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/en-GB/2020.json
|
||||
# https://holidata.net/en-GB/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/en-NZ/2020.json
|
||||
# https://holidata.net/en-NZ/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/en-US/2020.json
|
||||
# https://holidata.net/en-US/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/es-CO/2020.json
|
||||
# https://holidata.net/es-CO/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/es-ES/2020.json
|
||||
# https://holidata.net/es-ES/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/es-US/2020.json
|
||||
# https://holidata.net/es-US/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/fi-FI/2020.json
|
||||
# https://holidata.net/fi-FI/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/fr-BE/2020.json
|
||||
# https://holidata.net/fr-BE/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/fr-FR/2020.json
|
||||
# https://holidata.net/fr-FR/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/hr-HR/2020.json
|
||||
# https://holidata.net/hr-HR/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/is-IS/2020.json
|
||||
# https://holidata.net/is-IS/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/it-IT/2020.json
|
||||
# https://holidata.net/it-IT/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/nb-NO/2020.json
|
||||
# https://holidata.net/nb-NO/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/nl-BE/2020.json
|
||||
# https://holidata.net/nl-BE/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/nl-NL/2020.json
|
||||
# https://holidata.net/nl-NL/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/pl-PL/2020.json
|
||||
# https://holidata.net/pl-PL/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/pt-PT/2020.json
|
||||
# https://holidata.net/pt-PT/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/ru-RU/2020.json
|
||||
# https://holidata.net/ru-RU/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/sv-SE/2020.json
|
||||
# https://holidata.net/sv-SE/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# https://holidata.net/tr-TR/2020.json
|
||||
# https://holidata.net/tr-TR/2021.json
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
################################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
################################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -8,18 +8,34 @@ services:
|
||||
security_opt:
|
||||
- label=type:container_runtime_t
|
||||
tty: true
|
||||
test-fedora28:
|
||||
test-centos8:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: test/docker/fedora28
|
||||
dockerfile: test/docker/centos8
|
||||
network_mode: "host"
|
||||
security_opt:
|
||||
- label=type:container_runtime_t
|
||||
tty: true
|
||||
test-fedora29:
|
||||
test-fedora31:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: test/docker/fedora29
|
||||
dockerfile: test/docker/fedora31
|
||||
network_mode: "host"
|
||||
security_opt:
|
||||
- label=type:container_runtime_t
|
||||
tty: true
|
||||
test-fedora32:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: test/docker/fedora32
|
||||
network_mode: "host"
|
||||
security_opt:
|
||||
- label=type:container_runtime_t
|
||||
tty: true
|
||||
test-fedora33:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: test/docker/fedora33
|
||||
network_mode: "host"
|
||||
security_opt:
|
||||
- label=type:container_runtime_t
|
||||
@@ -40,6 +56,14 @@ services:
|
||||
security_opt:
|
||||
- label=type:container_runtime_t
|
||||
tty: true
|
||||
test-ubuntu2004:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: test/docker/ubuntu2004
|
||||
network_mode: "host"
|
||||
security_opt:
|
||||
- label=type:container_runtime_t
|
||||
tty: true
|
||||
test-debianstable:
|
||||
build:
|
||||
context: .
|
||||
@@ -72,10 +96,10 @@ services:
|
||||
security_opt:
|
||||
- label=type:container_runtime_t
|
||||
tty: true
|
||||
test-arch180101:
|
||||
test-arch:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: test/docker/arch180101
|
||||
dockerfile: test/docker/arch
|
||||
network_mode: "host"
|
||||
security_opt:
|
||||
- label=type:container_runtime_t
|
||||
|
||||
1
index.html
Normal file
1
index.html
Normal file
@@ -0,0 +1 @@
|
||||
Taskwarrior Docs
|
||||
@@ -1,7 +1,7 @@
|
||||
#! /usr/bin/perl
|
||||
################################################################################
|
||||
##
|
||||
## Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
## Copyright 2006 - 2021, 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
|
||||
@@ -189,7 +189,7 @@ if (open my $fh, '>:utf8', $file)
|
||||
"# ${url_current}\n",
|
||||
"# ${url_next}\n",
|
||||
"#\n",
|
||||
"# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.\n",
|
||||
"# Copyright 2006 - 2021, Paul Beckingham, Federico Hernandez.\n",
|
||||
"#\n",
|
||||
"# Permission is hereby granted, free of charge, to any person obtaining a copy\n",
|
||||
"# of this software and associated documentation files (the \"Software\"), to deal\n",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
################################################################################
|
||||
#
|
||||
# Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
# Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
# set -g task_complete_attribute_modifiers yes
|
||||
#
|
||||
#
|
||||
# Copyright 2014 - 2020, Roman Inflianskas <infroma@gmail.com>
|
||||
# Copyright 2014 - 2021, Roman Inflianskas <infroma@gmail.com>
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to deal
|
||||
|
||||
@@ -53,7 +53,7 @@ You should then be ready to go.
|
||||
---
|
||||
All four above mentioned files are
|
||||
|
||||
Copyright 2009 - 2020 John Florian
|
||||
Copyright 2009 - 2021 John Florian
|
||||
|
||||
and are available under the MIT license.
|
||||
For the full text of this license, see COPYING.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
" Maintainer: John Florian <jflorian@doubledog.org>
|
||||
" Updated: Thu Dec 10 18:28:26 EST 2009
|
||||
"
|
||||
" Copyright 2009 - 2020 John Florian
|
||||
" Copyright 2009 - 2021 John Florian
|
||||
"
|
||||
" This file is available under the MIT license.
|
||||
" For the full text of this license, see COPYING.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
" Maintainer: John Florian <jflorian@doubledog.org>
|
||||
" Updated: Wed Jul 8 19:46:20 EDT 2009
|
||||
"
|
||||
" Copyright 2009 - 2020 John Florian
|
||||
" Copyright 2009 - 2021 John Florian
|
||||
"
|
||||
" This file is available under the MIT license.
|
||||
" For the full text of this license, see COPYING.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
" Maintainer: John Florian <jflorian@doubledog.org>
|
||||
" Updated: Wed Jul 8 19:46:32 EDT 2009
|
||||
"
|
||||
" Copyright 2009 - 2020 John Florian
|
||||
" Copyright 2009 - 2021 John Florian
|
||||
"
|
||||
" This file is available under the MIT license.
|
||||
" For the full text of this license, see COPYING.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
" Vim syntax file
|
||||
"
|
||||
" Copyright (c) 2014 - 2020 Taskwarrior Team
|
||||
" Copyright (c) 2014 - 2021 Taskwarrior Team
|
||||
" Copyright (c) 2009 - 2014 John Florian
|
||||
"
|
||||
" Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#compdef task
|
||||
#
|
||||
# Copyright 2010 - 2020 Johannes Schlatow
|
||||
# Copyright 2010 - 2021 Johannes Schlatow
|
||||
# Copyright 2009 P.C. Shyamshankar
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2013 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2013 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2013 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2013 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2013 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2013 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2013 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2013 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2013 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2013 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2013 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2013 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2013 - 2020, Göteborg Bit Factory.
|
||||
// Copyright 2013 - 2021, Göteborg Bit Factory.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
@@ -93,7 +93,7 @@ int main (int argc, char** argv)
|
||||
<< format ("calc {1} built for ", VERSION)
|
||||
<< osName ()
|
||||
<< '\n'
|
||||
<< "Copyright (C) 2006 - 2020 P. Beckingham, F. Hernandez."
|
||||
<< "Copyright (C) 2006 - 2021 P. Beckingham, F. Hernandez."
|
||||
<< '\n'
|
||||
<< '\n'
|
||||
<< "Taskwarrior may be copied only under the terms of the MIT license, which may be found in the Taskwarrior source kit."
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright 2006 - 2020, Paul Beckingham, Federico Hernandez.
|
||||
// Copyright 2006 - 2021, 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
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user