about summary refs log tree commit diff stats
path: root/widgets/account.go
Commit message (Expand)AuthorAgeFilesLines
...
* Implement :cd commandDrew DeVault2019-03-141-0/+5
* Implement message store side of message fetchingDrew DeVault2019-03-141-2/+2
* Lay out message list widget basic designDrew DeVault2019-03-141-4/+7
* Fetch valid UIDs from server after opening dirDrew DeVault2019-03-101-6/+29
* Improve error reportingDrew DeVault2019-03-101-3/+2
* Flesh out command parsing & handlingDrew DeVault2019-03-101-1/+1
* Start building out command subsystemDrew DeVault2019-03-101-1/+9
* Fix buildElias Naur2019-02-101-1/+1
* Implement Container interface in widgets/Drew DeVault2019-01-201-0/+4
* Send commands up to the top-level aerc widgetDrew DeVault2019-01-141-4/+10
* Handle errors from worker initializationDrew DeVault2019-01-131-1/+1
* Swap message list placeholder for spinnerDrew DeVault2019-01-131-1/+3
* Handle connection errors properlyDrew DeVault2019-01-131-3/+4
* Simplify approach to directory listDrew DeVault2019-01-131-5/+17
* Filter dirlist according to user configDrew DeVault2019-01-131-1/+1
* Add directory list widgetDrew DeVault2019-01-131-23/+26
* Move ex line into accountDrew DeVault2019-01-131-26/+49
* Move status line into account, update behaviorDrew DeVault2019-01-131-9/+35
* Initialize worker in account widgetDrew DeVault2019-01-131-2/+50
* Add basic account widget, populate real acct viewsDrew DeVault2019-01-131-0/+41
/akkartik/mu/commit/html/078table.mu.html?h=main&id=4690ce81e079fc58cae8d6d583e5e3eb3ed81a83'>4690ce81 ^
a654e4ec ^
e5c11a51 ^
3e1349d2 ^

dcc060c7 ^

a654e4ec ^



e5c11a51 ^






















a654e4ec ^

dcc060c7 ^
e5c11a51 ^
a654e4ec ^
204dae92 ^






201458e3 ^
204dae92 ^











201458e3 ^
204dae92 ^











201458e3 ^
204dae92 ^










201458e3 ^
204dae92 ^








201458e3 ^
204dae92 ^


201458e3 ^

204dae92 ^







201458e3 ^



204dae92 ^












201458e3 ^



204dae92 ^











201458e3 ^
204dae92 ^





dcc060c7 ^


a654e4ec ^
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173