-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAutoGTD.ahk
67 lines (63 loc) · 3.05 KB
/
AutoGTD.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
;*******************************************************************************
; Information
;*******************************************************************************
; Title: AutoGTD v1.1
; Date: 14 Aug 2015
; Author: Dean Householder <[email protected]>
; AutoGTD is a set of Outlook Macros to help implement the Getting Things Done
; concepts into Outlook. It provides configurable shortcuts which are able to
; move emails to folders, add categories, reminders, and flags to emails. It
; can perform customized searches and then move all remaining emails to a folder.
; All of these types of actions can be mapped to single character shortcuts that
; you choose.
;*******************************************************************************
; License
;*******************************************************************************
; AutoGTD - Outlook Hotkeys
; Copyright (C) 2012 Dean Householder
;
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program. If not, see <http://www.gnu.org/licenses/>.
;
; You can contact the author by email at [email protected]
;*******************************************************************************
; Variables
;*******************************************************************************
AppVersion = 1.2
AppName = AutoGTD
AppNameFull = AutoGTD - Outlook Hotkeys
AppFileName = AutoGTD
ININame = AutoGTD.ini
AuthorName = Dean Householder
AuthorEmail = [email protected]
AuthorWebsite = http://www.autogtd.com/
AuthorWebsiteHelp = http://www.autogtd.com/help
ShortcutFile = %A_Startup%\%AppName%.lnk
;*******************************************************************************
; Load Includes
;*******************************************************************************
#Include %A_ScriptDir%\includes\commonfunctions.ahk
#Include %A_ScriptDir%\includes\macrofunctions.ahk
#Include %A_ScriptDir%\includes\editorfunctions.ahk
#Include %A_ScriptDir%\includes\top.ahk
#Include %A_ScriptDir%\includes\iniread.ahk
#Include %A_ScriptDir%\includes\runchecks.ahk
#Include %A_ScriptDir%\includes\strings.ahk
#Include %A_ScriptDir%\includes\editorhotkeymath.ahk
#Include %A_ScriptDir%\includes\macrolabels.ahk
#Include %A_ScriptDir%\includes\editor.ahk
#Include %A_ScriptDir%\includes\Gdip.ahk
#Include %A_ScriptDir%\includes\mappedhotkeys.ahk
#Include %A_ScriptDir%\includes\traylabels.ahk
#Include %A_ScriptDir%\includes\editorsavelabel.ahk
#Include %A_ScriptDir%\includes\scrollbar.ahk