diff options
Diffstat (limited to 'ChangeLog.txt')
-rw-r--r-- | ChangeLog.txt | 199 |
1 files changed, 199 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index 9b4fe7d..6b75515 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -36,6 +36,116 @@ | |||
36 | Backported from LL's 1.22 RC3. | 36 | Backported from LL's 1.22 RC3. |
37 | 37 | ||
38 | 38 | ||
39 | 2008-12-10 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
40 | |||
41 | * linden/indra/newview/llinventoryview.cpp: | ||
42 | Use NType to find inventory icon name. | ||
43 | * linden/indra/newview/llinventoryview.h: | ||
44 | Ditto. | ||
45 | |||
46 | |||
47 | * linden/indra/newview/llinventoryview.cpp: | ||
48 | Clearing search shouldn't clear filter type. | ||
49 | |||
50 | |||
51 | 2008-12-09 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
52 | |||
53 | * linden/indra/newview/llinventoryview.cpp: | ||
54 | Start fetching inventory when quick filter changes. | ||
55 | |||
56 | |||
57 | * linden/indra/newview/llinventoryview.cpp: | ||
58 | Refresh filter text when quick filter changes. | ||
59 | |||
60 | |||
61 | * linden/indra/newview/llfolderview.cpp: | ||
62 | Refactored; added LLInventoryFilter::rebuildFilterText(). | ||
63 | * linden/indra/newview/llfolderview.h: | ||
64 | Ditto. | ||
65 | |||
66 | |||
67 | * linden/indra/newview/llfolderview.cpp: | ||
68 | Updated Inventory window filter text generation. | ||
69 | It was putting the wrong types in the title when | ||
70 | filtering. [#25] | ||
71 | |||
72 | |||
73 | 2008-12-08 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
74 | |||
75 | * linden/indra/newview/llinventoryview.cpp: | ||
76 | Hooked up Body Parts quickfilter and checkbox. | ||
77 | |||
78 | |||
79 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml: | ||
80 | Added Quick Filter item for Body Parts. | ||
81 | |||
82 | |||
83 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory_view_finder.xml: | ||
84 | Added Show Filters checkbox for Body Parts. | ||
85 | |||
86 | |||
87 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory_view_finder.xml: | ||
88 | Converted Show Filters window to relative positioning. | ||
89 | |||
90 | |||
91 | * linden/indra/newview/llfolderview.cpp: | ||
92 | Inventory filtering is now done by NType. | ||
93 | |||
94 | |||
95 | * linden/indra/newview/llinventorybridge.cpp: | ||
96 | LLInvFVBridge and derived classes have NTypes. | ||
97 | * linden/indra/newview/llinventorybridge.h: | ||
98 | Ditto. | ||
99 | * linden/indra/newview/llpanelinventory.cpp: | ||
100 | Ditto. | ||
101 | |||
102 | |||
103 | * linden/indra/newview/llfolderview.h: | ||
104 | Added LLFolderViewEventListener::getNInventoryType() | ||
105 | Pure virtual method, overridden in derived classes. | ||
106 | |||
107 | |||
108 | * linden/indra/newview/llinventoryview.cpp: | ||
109 | LLInventoryView uses new inventory type. | ||
110 | |||
111 | |||
112 | * linden/indra/llinventory/llinventory.cpp: | ||
113 | Recalculate ntype when changing type or flags. | ||
114 | |||
115 | |||
116 | * linden/indra/llinventory/llinventory.cpp: | ||
117 | Added LLInventoryItem::recalcNInventoryType(). | ||
118 | * linden/indra/llinventory/llinventory.h: | ||
119 | Ditto. | ||
120 | |||
121 | |||
122 | * linden/indra/llinventory/llinventory.cpp: | ||
123 | Added calc_ntype() function. | ||
124 | * linden/indra/llinventory/llinventory.h: | ||
125 | Ditto. | ||
126 | |||
127 | |||
128 | * linden/indra/llinventory/llwearabletype.h: | ||
129 | Moved enum EWearableType to its own file. | ||
130 | Was in newview/llwearable.h, now in llinventory/llwearabletype.h. | ||
131 | This allows it to be used in llinventory code. | ||
132 | * linden/indra/newview/llwearable.h: | ||
133 | Ditto. | ||
134 | |||
135 | |||
136 | 2008-12-07 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
137 | |||
138 | * linden/indra/llinventory/llinventory.cpp: | ||
139 | Added LLInventoryItem::mNInventoryType (new type) field. | ||
140 | Will always by NIT_NONE so far. | ||
141 | * linden/indra/llinventory/llinventory.h: | ||
142 | Ditto. | ||
143 | |||
144 | |||
145 | * linden/indra/llinventory/llinventorytype.h: | ||
146 | New bitfield enumerator for inventory types. | ||
147 | |||
148 | |||
39 | 2008-12-01 McCabe Maxsted <hakushakukun@gmail.com> | 149 | 2008-12-01 McCabe Maxsted <hakushakukun@gmail.com> |
40 | 150 | ||
41 | * linden/indra/newview/app_settings/settings.xml: | 151 | * linden/indra/newview/app_settings/settings.xml: |
@@ -82,6 +192,64 @@ | |||
82 | Switched Invite and Leave buttons in group panel. | 192 | Switched Invite and Leave buttons in group panel. |
83 | 193 | ||
84 | 194 | ||
195 | 2008-11-23 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
196 | |||
197 | * linden/indra/newview/llinventoryview.cpp: | ||
198 | Read filter labels from LLTrans, no hard-coding. | ||
199 | |||
200 | |||
201 | * linden/indra/newview/skins/default/xui/en-us/strings.xml: | ||
202 | Defined strings for filter types (to allow translation). | ||
203 | |||
204 | |||
205 | 2008-11-22 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
206 | |||
207 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory_view_finder.xml: | ||
208 | Cleaned up Show Filters floater XML. | ||
209 | |||
210 | |||
211 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml: | ||
212 | Added separators to Quick Filter. | ||
213 | |||
214 | |||
215 | * linden/indra/llui/llcombobox.cpp: | ||
216 | Combobox widget now supports separators in XUI. | ||
217 | |||
218 | |||
219 | * linden/indra/newview/llinventoryview.cpp: | ||
220 | Renamed "Clothing" filter to "Clothing / Body Parts". | ||
221 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml: | ||
222 | Ditto. | ||
223 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory_view_finder.xml: | ||
224 | Ditto. | ||
225 | |||
226 | |||
227 | * linden/indra/newview/llinventoryview.cpp: | ||
228 | Renamed "Show All Items" filter to "All Types". | ||
229 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml: | ||
230 | Ditto. | ||
231 | |||
232 | |||
233 | * linden/indra/newview/llinventoryview.cpp: | ||
234 | Renamed "Show All Items" to "All Types". | ||
235 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml: | ||
236 | Ditto. | ||
237 | |||
238 | |||
239 | * linden/indra/newview/llinventoryview.cpp: | ||
240 | Bogus quick filter strings should be ignored. | ||
241 | |||
242 | |||
243 | * linden/indra/newview/llinventoryview.cpp: | ||
244 | Disabled testing output when changing quick filter. | ||
245 | |||
246 | |||
247 | * linden/indra/newview/llinventoryview.cpp: | ||
248 | Quick Filter combo box refreshes properly. | ||
249 | * linden/indra/newview/llinventoryview.h: | ||
250 | Ditto. | ||
251 | |||
252 | |||
85 | 2008-11-22 McCabe Maxsted <hakushakukun@gmail.com> | 253 | 2008-11-22 McCabe Maxsted <hakushakukun@gmail.com> |
86 | 254 | ||
87 | * linden\indra\newview\skins\default\colors_base.xml: | 255 | * linden\indra\newview\skins\default\colors_base.xml: |
@@ -116,6 +284,37 @@ | |||
116 | Friends show yellow in minimap (VWR-3336). | 284 | Friends show yellow in minimap (VWR-3336). |
117 | 285 | ||
118 | 286 | ||
287 | 2008-11-11 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
288 | |||
289 | * linden/indra/newview/llinventoryview.cpp: | ||
290 | Show Filters window refreshes properly. | ||
291 | |||
292 | |||
293 | 2008-11-08 Jacek Antonelli <jacek.antonelli@gmail.com> | ||
294 | |||
295 | * linden/indra/newview/llinventoryview.cpp: | ||
296 | Added 'Custom' filter option (opens filters window). | ||
297 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml: | ||
298 | Ditto. | ||
299 | |||
300 | |||
301 | * linden/indra/newview/llinventoryview.cpp: | ||
302 | Quick Filter works, but is a bit rough. | ||
303 | It doesn't refresh its display when you change tabs, | ||
304 | and the Show Filters window doesn't refresh either. | ||
305 | |||
306 | |||
307 | * linden/indra/newview/llinventoryview.cpp: | ||
308 | Added commit callback for Quick Filter. | ||
309 | * linden/indra/newview/llinventoryview.h: | ||
310 | Ditto. | ||
311 | |||
312 | |||
313 | * linden/indra/newview/skins/default/xui/en-us/floater_inventory.xml: | ||
314 | Added XUI for the Quick Filter combo box. | ||
315 | |||
316 | |||
317 | |||
119 | 2008-10-18 McCabe Maxsted <hakushakukun@gmail.com> | 318 | 2008-10-18 McCabe Maxsted <hakushakukun@gmail.com> |
120 | 319 | ||
121 | * linden\indra\newview\skins\default\xui\en-us\menu_viewer.xml: | 320 | * linden\indra\newview\skins\default\xui\en-us\menu_viewer.xml: |