alexandria-book-collection-manager 0.6.9.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (293) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rubocop.yml +68 -0
  4. data/.rubocop_todo.yml +200 -0
  5. data/CHANGELOG.md +23 -0
  6. data/COPYING +339 -0
  7. data/ChangeLog.0 +3598 -0
  8. data/Gemfile +9 -0
  9. data/INSTALL.rdoc +156 -0
  10. data/PACKAGING +36 -0
  11. data/README.md +88 -0
  12. data/RELEASE_CHECKLIST +18 -0
  13. data/Rakefile +264 -0
  14. data/TODO +24 -0
  15. data/alexandria-book-collection-manager.gemspec +35 -0
  16. data/alexandria.desktop.in +10 -0
  17. data/bin/alexandria +82 -0
  18. data/doc/AUTHORS +60 -0
  19. data/doc/BUGS +31 -0
  20. data/doc/FAQ +369 -0
  21. data/doc/HACKING +19 -0
  22. data/doc/NEWS +341 -0
  23. data/doc/alexandria.1 +120 -0
  24. data/doc/cuecat_support.rdoc +67 -0
  25. data/lib/alexandria.rb +85 -0
  26. data/lib/alexandria/about.rb +82 -0
  27. data/lib/alexandria/book_providers.rb +411 -0
  28. data/lib/alexandria/book_providers/adlibris.rb +235 -0
  29. data/lib/alexandria/book_providers/amazon_aws.rb +261 -0
  30. data/lib/alexandria/book_providers/amazon_ecs_util.rb +405 -0
  31. data/lib/alexandria/book_providers/barnes_and_noble.rb +229 -0
  32. data/lib/alexandria/book_providers/bol_it.rb +162 -0
  33. data/lib/alexandria/book_providers/deastore.rb +277 -0
  34. data/lib/alexandria/book_providers/douban.rb +135 -0
  35. data/lib/alexandria/book_providers/ibs_it.rb +149 -0
  36. data/lib/alexandria/book_providers/mcu.rb +177 -0
  37. data/lib/alexandria/book_providers/proxis.rb +205 -0
  38. data/lib/alexandria/book_providers/pseudomarc.rb +185 -0
  39. data/lib/alexandria/book_providers/renaud.rb +142 -0
  40. data/lib/alexandria/book_providers/siciliano.rb +271 -0
  41. data/lib/alexandria/book_providers/thalia.rb +197 -0
  42. data/lib/alexandria/book_providers/web.rb +59 -0
  43. data/lib/alexandria/book_providers/webster_it.rb +173 -0
  44. data/lib/alexandria/book_providers/worldcat.rb +251 -0
  45. data/lib/alexandria/book_providers/z3950.rb +422 -0
  46. data/lib/alexandria/config.rb +8 -0
  47. data/lib/alexandria/console.rb +31 -0
  48. data/lib/alexandria/execution_queue.rb +96 -0
  49. data/lib/alexandria/export_library.rb +536 -0
  50. data/lib/alexandria/import_library.rb +316 -0
  51. data/lib/alexandria/import_library_csv.rb +270 -0
  52. data/lib/alexandria/logging.rb +159 -0
  53. data/lib/alexandria/models/book.rb +72 -0
  54. data/lib/alexandria/models/library.rb +714 -0
  55. data/lib/alexandria/net.rb +53 -0
  56. data/lib/alexandria/preferences.rb +324 -0
  57. data/lib/alexandria/scanners.rb +42 -0
  58. data/lib/alexandria/scanners/cuecat.rb +118 -0
  59. data/lib/alexandria/scanners/keyboard.rb +57 -0
  60. data/lib/alexandria/smart_library.rb +525 -0
  61. data/lib/alexandria/ui.rb +53 -0
  62. data/lib/alexandria/ui/builder_base.rb +43 -0
  63. data/lib/alexandria/ui/callbacks.rb +389 -0
  64. data/lib/alexandria/ui/completion_models.rb +228 -0
  65. data/lib/alexandria/ui/dialogs/about_dialog.rb +59 -0
  66. data/lib/alexandria/ui/dialogs/acquire_dialog.rb +640 -0
  67. data/lib/alexandria/ui/dialogs/alert_dialog.rb +68 -0
  68. data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +43 -0
  69. data/lib/alexandria/ui/dialogs/barcode_animation.rb +159 -0
  70. data/lib/alexandria/ui/dialogs/book_properties_dialog.rb +210 -0
  71. data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +432 -0
  72. data/lib/alexandria/ui/dialogs/export_dialog.rb +172 -0
  73. data/lib/alexandria/ui/dialogs/import_dialog.rb +205 -0
  74. data/lib/alexandria/ui/dialogs/misc_dialogs.rb +85 -0
  75. data/lib/alexandria/ui/dialogs/new_book_dialog.rb +639 -0
  76. data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +153 -0
  77. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +67 -0
  78. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +587 -0
  79. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +56 -0
  80. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +432 -0
  81. data/lib/alexandria/ui/dndable.rb +81 -0
  82. data/lib/alexandria/ui/gtk_thread_help.rb +88 -0
  83. data/lib/alexandria/ui/icons.rb +100 -0
  84. data/lib/alexandria/ui/iconview.rb +91 -0
  85. data/lib/alexandria/ui/iconview_tooltips.rb +162 -0
  86. data/lib/alexandria/ui/init.rb +93 -0
  87. data/lib/alexandria/ui/libraries_combo.rb +75 -0
  88. data/lib/alexandria/ui/listview.rb +310 -0
  89. data/lib/alexandria/ui/main_app.rb +67 -0
  90. data/lib/alexandria/ui/multi_drag_treeview.rb +150 -0
  91. data/lib/alexandria/ui/sidepane.rb +194 -0
  92. data/lib/alexandria/ui/sound.rb +107 -0
  93. data/lib/alexandria/ui/ui_manager.rb +1308 -0
  94. data/lib/alexandria/undo_manager.rb +78 -0
  95. data/lib/alexandria/utils.rb +30 -0
  96. data/lib/alexandria/version.rb +24 -0
  97. data/lib/alexandria/web_themes.rb +75 -0
  98. data/misc/sounds/README +15 -0
  99. data/misc/sounds/bad_scan.csd +62 -0
  100. data/misc/sounds/good_scan.csd +61 -0
  101. data/misc/sounds/scanning.csd +46 -0
  102. data/po/ChangeLog +488 -0
  103. data/po/Makefile +44 -0
  104. data/po/README +29 -0
  105. data/po/commit-po +72 -0
  106. data/po/cs.po +1437 -0
  107. data/po/cy.po +1521 -0
  108. data/po/de.po +1400 -0
  109. data/po/el.po +1379 -0
  110. data/po/es.po +1376 -0
  111. data/po/fr.po +1420 -0
  112. data/po/ga.po +1359 -0
  113. data/po/gl.po +1397 -0
  114. data/po/it.po +1406 -0
  115. data/po/ja.po +1355 -0
  116. data/po/mk.po +1373 -0
  117. data/po/nb.po +1386 -0
  118. data/po/nl.po +1405 -0
  119. data/po/pl.po +1373 -0
  120. data/po/pt.po +1398 -0
  121. data/po/pt_BR.po +1409 -0
  122. data/po/ru.po +1372 -0
  123. data/po/sk.po +1380 -0
  124. data/po/sv.po +1402 -0
  125. data/po/uk.po +1423 -0
  126. data/po/zh_TW.po +1394 -0
  127. data/schemas/alexandria.schemas +300 -0
  128. data/share/alexandria/glade/acquire_dialog__builder.glade +201 -0
  129. data/share/alexandria/glade/book_properties_dialog__builder.glade +910 -0
  130. data/share/alexandria/glade/main_app__builder.glade +229 -0
  131. data/share/alexandria/glade/new_book_dialog__builder.glade +379 -0
  132. data/share/alexandria/glade/preferences_dialog__builder.glade +733 -0
  133. data/share/alexandria/icons/alexandria.png +0 -0
  134. data/share/alexandria/icons/alexandria_small.png +0 -0
  135. data/share/alexandria/icons/book.png +0 -0
  136. data/share/alexandria/icons/book_icon.png +0 -0
  137. data/share/alexandria/icons/book_small.png +0 -0
  138. data/share/alexandria/icons/cuecat.png +0 -0
  139. data/share/alexandria/icons/cuecat_inactive.png +0 -0
  140. data/share/alexandria/icons/favorite_tag.png +0 -0
  141. data/share/alexandria/icons/less.png +0 -0
  142. data/share/alexandria/icons/library.png +0 -0
  143. data/share/alexandria/icons/library_small.png +0 -0
  144. data/share/alexandria/icons/lookup.png +0 -0
  145. data/share/alexandria/icons/more.png +0 -0
  146. data/share/alexandria/icons/no_cover.png +0 -0
  147. data/share/alexandria/icons/smart_library.png +0 -0
  148. data/share/alexandria/icons/smart_library_small.png +0 -0
  149. data/share/alexandria/icons/star_set.png +0 -0
  150. data/share/alexandria/icons/star_unset.png +0 -0
  151. data/share/alexandria/icons/view_as_icons.png +0 -0
  152. data/share/alexandria/icons/view_as_list.png +0 -0
  153. data/share/alexandria/ui/menus.xml +91 -0
  154. data/share/alexandria/ui/popups.xml +91 -0
  155. data/share/alexandria/web-themes/clean/clean.css +85 -0
  156. data/share/alexandria/web-themes/clean/preview.jpg +0 -0
  157. data/share/alexandria/web-themes/list/list.css +105 -0
  158. data/share/alexandria/web-themes/list/preview.jpg +0 -0
  159. data/share/app-icon/16x16/alexandria.png +0 -0
  160. data/share/app-icon/16x16/alexandria.svg +263 -0
  161. data/share/app-icon/22x22/alexandria.png +0 -0
  162. data/share/app-icon/22x22/alexandria.svg +465 -0
  163. data/share/app-icon/24x24/alexandria.png +0 -0
  164. data/share/app-icon/32x32/alexandria.png +0 -0
  165. data/share/app-icon/32x32/alexandria.svg +813 -0
  166. data/share/app-icon/32x32/alexandria.xpm +241 -0
  167. data/share/app-icon/48x48/alexandria.png +0 -0
  168. data/share/app-icon/scalable/alexandria.svg +700 -0
  169. data/share/gnome/help/alexandria/C/about.xml +44 -0
  170. data/share/gnome/help/alexandria/C/adding-books.xml +339 -0
  171. data/share/gnome/help/alexandria/C/alexandria.xml +185 -0
  172. data/share/gnome/help/alexandria/C/bugs.xml +18 -0
  173. data/share/gnome/help/alexandria/C/editing-book-properties.xml +124 -0
  174. data/share/gnome/help/alexandria/C/exporting.xml +81 -0
  175. data/share/gnome/help/alexandria/C/figures/adding_books_acquire_from_scanner_process.png +0 -0
  176. data/share/gnome/help/alexandria/C/figures/adding_books_add_by_isbn.png +0 -0
  177. data/share/gnome/help/alexandria/C/figures/adding_books_isbn_import.png +0 -0
  178. data/share/gnome/help/alexandria/C/figures/adding_books_manual_details.png +0 -0
  179. data/share/gnome/help/alexandria/C/figures/adding_books_rename_library_after_import.png +0 -0
  180. data/share/gnome/help/alexandria/C/figures/adding_books_search_results.png +0 -0
  181. data/share/gnome/help/alexandria/C/figures/editing_book_properties_info.png +0 -0
  182. data/share/gnome/help/alexandria/C/figures/editing_book_properties_loaning.png +0 -0
  183. data/share/gnome/help/alexandria/C/figures/exporting_information_html.png +0 -0
  184. data/share/gnome/help/alexandria/C/figures/getting_started_first_launched.png +0 -0
  185. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view.png +0 -0
  186. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view_search.png +0 -0
  187. data/share/gnome/help/alexandria/C/figures/settings_providers_new_z3950.png +0 -0
  188. data/share/gnome/help/alexandria/C/figures/smart_libraries_new_smart_library.png +0 -0
  189. data/share/gnome/help/alexandria/C/figures/working_with_libraries_library_pane.png +0 -0
  190. data/share/gnome/help/alexandria/C/getting-started.xml +154 -0
  191. data/share/gnome/help/alexandria/C/gnu-fdl-1.2.xml +543 -0
  192. data/share/gnome/help/alexandria/C/introduction.xml +142 -0
  193. data/share/gnome/help/alexandria/C/searching.xml +90 -0
  194. data/share/gnome/help/alexandria/C/settings.xml +140 -0
  195. data/share/gnome/help/alexandria/C/smart-libraries.xml +160 -0
  196. data/share/gnome/help/alexandria/C/working-with-libraries.xml +76 -0
  197. data/share/gnome/help/alexandria/ChangeLog +99 -0
  198. data/share/gnome/help/alexandria/fr/alexandria.xml +2292 -0
  199. data/share/gnome/help/alexandria/fr/figures/alexandria_add_button.png +0 -0
  200. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_isbn_1.png +0 -0
  201. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_search_1.png +0 -0
  202. data/share/gnome/help/alexandria/fr/figures/alexandria_add_manually.png +0 -0
  203. data/share/gnome/help/alexandria/fr/figures/alexandria_add_z3950.png +0 -0
  204. data/share/gnome/help/alexandria/fr/figures/alexandria_close_button.png +0 -0
  205. data/share/gnome/help/alexandria/fr/figures/alexandria_edit_info.png +0 -0
  206. data/share/gnome/help/alexandria/fr/figures/alexandria_export_web_page.png +0 -0
  207. data/share/gnome/help/alexandria/fr/figures/alexandria_importing.png +0 -0
  208. data/share/gnome/help/alexandria/fr/figures/alexandria_library_pane.png +0 -0
  209. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view.png +0 -0
  210. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view_search.png +0 -0
  211. data/share/gnome/help/alexandria/fr/figures/alexandria_loaning.png +0 -0
  212. data/share/gnome/help/alexandria/fr/figures/alexandria_main_window.png +0 -0
  213. data/share/gnome/help/alexandria/fr/figures/alexandria_remove_button.png +0 -0
  214. data/share/gnome/help/alexandria/ja/about.xml +33 -0
  215. data/share/gnome/help/alexandria/ja/adding-books.xml +314 -0
  216. data/share/gnome/help/alexandria/ja/alexandria.xml +172 -0
  217. data/share/gnome/help/alexandria/ja/bugs.xml +11 -0
  218. data/share/gnome/help/alexandria/ja/editing-book-properties.xml +100 -0
  219. data/share/gnome/help/alexandria/ja/exporting.xml +98 -0
  220. data/share/gnome/help/alexandria/ja/figures/adding_books_acquire_from_scanner_process.png +0 -0
  221. data/share/gnome/help/alexandria/ja/figures/adding_books_add_by_isbn.png +0 -0
  222. data/share/gnome/help/alexandria/ja/figures/adding_books_isbn_import.png +0 -0
  223. data/share/gnome/help/alexandria/ja/figures/adding_books_manual_details.png +0 -0
  224. data/share/gnome/help/alexandria/ja/figures/adding_books_rename_library_after_import.png +0 -0
  225. data/share/gnome/help/alexandria/ja/figures/adding_books_search_results.png +0 -0
  226. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_info.png +0 -0
  227. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_loaning.png +0 -0
  228. data/share/gnome/help/alexandria/ja/figures/exporting_information_html.png +0 -0
  229. data/share/gnome/help/alexandria/ja/figures/getting_started_first_launched.png +0 -0
  230. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view.png +0 -0
  231. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view_search.png +0 -0
  232. data/share/gnome/help/alexandria/ja/figures/settings_providers_new_z3950.png +0 -0
  233. data/share/gnome/help/alexandria/ja/figures/smart_libraries_new_smart_library.png +0 -0
  234. data/share/gnome/help/alexandria/ja/figures/working_with_libraries_library_pane.png +0 -0
  235. data/share/gnome/help/alexandria/ja/getting-started.xml +144 -0
  236. data/share/gnome/help/alexandria/ja/gnu-fdl-1.2.xml +541 -0
  237. data/share/gnome/help/alexandria/ja/introduction.xml +134 -0
  238. data/share/gnome/help/alexandria/ja/searching.xml +104 -0
  239. data/share/gnome/help/alexandria/ja/settings.xml +129 -0
  240. data/share/gnome/help/alexandria/ja/smart-libraries.xml +140 -0
  241. data/share/gnome/help/alexandria/ja/working-with-libraries.xml +88 -0
  242. data/share/menu/alexandria +7 -0
  243. data/share/omf/alexandria/alexandria-C.omf.in +27 -0
  244. data/share/omf/alexandria/alexandria-fr.omf.in +30 -0
  245. data/share/sounds/alexandria/bad_scan.ogg +0 -0
  246. data/share/sounds/alexandria/bad_scan.wav +0 -0
  247. data/share/sounds/alexandria/good_scan.ogg +0 -0
  248. data/share/sounds/alexandria/good_scan.wav +0 -0
  249. data/share/sounds/alexandria/scanning.ogg +0 -0
  250. data/share/sounds/alexandria/scanning.wav +0 -0
  251. data/spec/alexandria/library_spec.rb +205 -0
  252. data/spec/alexandria/preferences_spec.rb +22 -0
  253. data/spec/alexandria/scanners/cuecat_spec.rb +68 -0
  254. data/spec/alexandria/smart_library_spec.rb +22 -0
  255. data/spec/alexandria/ui/dialogs_spec.rb +90 -0
  256. data/spec/alexandria/ui/iconview_spec.rb +27 -0
  257. data/spec/alexandria/ui/listview_spec.rb +28 -0
  258. data/spec/alexandria/ui/main_app_spec.rb +48 -0
  259. data/spec/alexandria/ui/sidepane_spec.rb +27 -0
  260. data/spec/alexandria/ui/ui_manager_spec.rb +26 -0
  261. data/spec/alexandria/ui/ui_utilities_spec.rb +60 -0
  262. data/spec/alexandria/utilities_spec.rb +50 -0
  263. data/spec/data/libraries/0.6.1-noisbn/My Library/0201398257.yaml +10 -0
  264. data/spec/data/libraries/0.6.1-noisbn/My Library/1565920007.yaml +10 -0
  265. data/spec/data/libraries/0.6.1/My Library/0192812173.yaml +9 -0
  266. data/spec/data/libraries/0.6.1/My Library/0201398257.cover +0 -0
  267. data/spec/data/libraries/0.6.1/My Library/0201398257.yaml +10 -0
  268. data/spec/data/libraries/0.6.1/My Library/1565920007.yaml +10 -0
  269. data/spec/data/libraries/0.6.2/My Library/9780140266146.cover +0 -0
  270. data/spec/data/libraries/0.6.2/My Library/9780140266146.yaml +16 -0
  271. data/spec/data/libraries/0.6.2/My Library/9780140278781.cover +0 -0
  272. data/spec/data/libraries/0.6.2/My Library/9780140278781.yaml +21 -0
  273. data/spec/data/libraries/0.6.2/My Library/9780571147168.cover +0 -0
  274. data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +20 -0
  275. data/spec/data/libraries/0.6.2/My Library/9780575079038.cover +0 -0
  276. data/spec/data/libraries/0.6.2/My Library/9780575079038.yaml +20 -0
  277. data/spec/data/libraries/0.6.2/My Library/9780755322800.cover +0 -0
  278. data/spec/data/libraries/0.6.2/My Library/9780755322800.yaml +20 -0
  279. data/spec/spec_helper.rb +46 -0
  280. data/tasks/rdoc.rake +6 -0
  281. data/tasks/setup.rb +30 -0
  282. data/tasks/spec.rake +29 -0
  283. data/tasks/test.rake +38 -0
  284. data/test/application_test.rb +39 -0
  285. data/test/book_test.rb +34 -0
  286. data/test/data/isbns.txt +3 -0
  287. data/test/isbn_test.rb +68 -0
  288. data/test/providers_test.rb +254 -0
  289. data/test/test_helper.rb +42 -0
  290. data/util/rake/fileinstall.rb +313 -0
  291. data/util/rake/gettextgenerate.rb +158 -0
  292. data/util/rake/omfgenerate.rb +79 -0
  293. metadata +452 -0
@@ -0,0 +1,3598 @@
1
+ alexandria (0.6.2) unstable; urgency=low
2
+
3
+ * Revision of the Italian translation
4
+ * Added anonymous patch
5
+ * [#11170] cuecat userland support:
6
+ - http://rubyforge.org/tracker/index.php?func=detail&aid=11170&group_id=205&atid=865
7
+ - I don't have a cuecat, and I don't know whether this patch is OK.
8
+
9
+ -- Marco Costantini <costanti@science.unitn.it> Mon, 18 Jun 2007 18:28:55 -0400
10
+
11
+ * Updated providers Worldcat and bol.it
12
+
13
+ -- Marco Costantini <costanti@science.unitn.it> Fri, 27 Apr
14
+
15
+
16
+ * CSV list export:
17
+ - the file has extension "csv"
18
+ - fixed in case that authors is [] or elements are missing
19
+ * ONIX export:
20
+ - removed an unnecessary .to_s
21
+ - removed use of CGI.escapeHTML, whch is unnecessary
22
+ - fixed in case that ISBN is missing
23
+ * BibTeX export:
24
+ - fixed in case that authors is [] or elements are missing
25
+ - exported also book.publishing_year
26
+ * HTML export:
27
+ - added meta "Author", "Description", "Keywords"
28
+ * Tellico export:
29
+ - added info on wether the book has been read or loaned
30
+ * Tellico import:
31
+ - imported notes
32
+
33
+ -- 2007-04-06 Marco Costantini <costanti@science.unitn.it>
34
+
35
+ 2007-02-24 to 2007-04-02 Marco Costantini <costanti@science.unitn.it>
36
+
37
+ * added new Z39.50 provider "Servizio Bibliotecario Nazionale (Italy)"
38
+ * added the FAQ
39
+ * added hotkey "<control>O" for preferences
40
+ * allowed manual entry of books without author (for instance
41
+ 9788841574195 has no author)
42
+ * in the "Book Properties Dialog", added "cancel" button, and
43
+ renamed "close" button to "save"
44
+ * improved error messages
45
+ * ignored empty lines when importing a list of ISBNs
46
+ * added info in case that Alexandria can't load optional libraries
47
+ * book_providers.rb: added debug message in case that a book is
48
+ not found
49
+ * book_properties_dialog.rb: keeps ISBN-13 instead to convert to ISBN
50
+ * publishing_year is converted to integer when quitting,
51
+ importing a Tellico library, or with some providers
52
+ * clean.css: added foreground color, see
53
+ http://www.w3.org/QA/Tips/color for the reason
54
+ * import_library.rb smart_library.rb main_app.rb: changed
55
+ variable name from MAX_STARS to MAX_RATING_STARS, and replaced
56
+ some occurrences of '5' with MAX_RATING_STARS
57
+ * library.rb: canonicalise_ean now removes dashes and spaces
58
+ * added debug info about which provider the book has been found at
59
+ * export_library.rb:
60
+ - export_library.rb: changed from "Generated" to "Generated on
61
+ #{Date.today()}", when exporting to BibTex or HTML web page
62
+ - Added optional requirement "image_size", in order to provide
63
+ data for the images like
64
+ height='143' width='95'
65
+ when exporting to HTML web page or to Tellico
66
+ ** HTML export:
67
+ - Changed type from Transitional to Strict when exporting to
68
+ HTML web page
69
+ - used CGI.escapeHTML when exporting HTML web page (for the
70
+ moment, CGI.escapeHTML is not used for title and authors,
71
+ because they may contain HTML entities (bug to be fixed on the
72
+ providers site))
73
+ ** ONIX export:
74
+ - exported publishing_year, and modified PublisherName to fit
75
+ more strict requirements
76
+ - reordered elements, in order to make it valid XML
77
+ - Added element Publisher/PublishingRole = '01' when exporting to ONIX
78
+ - fixed "ProductWebSite" -> "ProductWebsite" when exporting ONIX
79
+ ** Tellico export:
80
+ - removed description of the field "rating", which is already
81
+ present in recent Tellico versions
82
+ - renamed things from "bookcase" to "tellico"
83
+ - changed doctype and syntaxVersion to version 7 (the earliest
84
+ version for which there is still a DTD) in order to allow the
85
+ library to be imported also by older versions of Tellico.
86
+ - added attribute "id", required by tellico.dtd
87
+ - added export of publishing_year
88
+
89
+ * import_library.rb:
90
+ - now some messages are displayed only if $DEBUG
91
+ ** Tellico import
92
+ - added rating
93
+ - checked that "rating" is in [1,2,3,4,5]. If not, "rating" is ignored.
94
+ - canonicalise_ean is used (because Tellico returns EAN with dashes)
95
+ - fixed import, even if "authors" is empty
96
+
97
+ * test_providers.rb
98
+ - improved test of thalia.rb: added foreign book, DVD, CD
99
+ - added test for provider LOC and a book with non-ASCII letters
100
+ - test of provider MCU: added test that bugs [#2533] and [#2518]
101
+ are fixed
102
+ - added test of SBN, LOC and BL, and grouped together tests of
103
+ providers depending on optional libraries
104
+
105
+ * z3950.rb:
106
+ - refactored
107
+ - the user must specify charset, when adding new providers. default
108
+ charset is ISO-8859-1
109
+ - now, when searching by ISBN, the ISBN of the returned book is
110
+ the ISBN used in the search. This because ruby/zoom has a bug,
111
+ and may return a cutted ISBN, or because the z39.50 server may
112
+ return more than one ISBN.
113
+ - when searching by ISBN, only one record is asked from the provider
114
+ - added element_set_name = 'F', in order to return the 'full'
115
+ set of data (SBN default is 'brief')
116
+ - added support for books without ISBN
117
+ - fixed bug, publish_year can be unbound
118
+ - added function url(book) for LOC and BL
119
+ - added info about Copac
120
+ - returns output even if author is empty
121
+ - uses Library.canonicalise_isbn on input and
122
+ Library.canonicalise_ean on output
123
+ - fixed bug about publish_year for BL
124
+ - publisher and edition are nil instead of ""
125
+ - now returns [Book.new(...)] instead of [Book.new(...), nil]
126
+ (where nil is the image). This is required to pass the test.
127
+ - other minor changes
128
+
129
+ * various fixes and updates for the providers:
130
+ - adlibris.rb bn.rb bol_it.rb dea_store_it.rb ibs_it.rb ls.rb
131
+ renaud.rb thalia.rb webster_it.rb worldcat.rb :
132
+ added to the function to_book of each provider code like
133
+ raise NoResultsError if /not found/.match(data) != nil
134
+ - worldcat.rb improved
135
+ - worldcat.rb: allowed to return nul as ISBN (this provider
136
+ lists also old books without ISBN)
137
+ - ls.rb fixed the typo Siliciano -> Siciliano
138
+ - ls.rb: added code for imported books, and replaced non-ASCII
139
+ chars with dots
140
+ - webster_it.rb: updated, site now supports ISBN-13
141
+ - webster_it.rb improved for handling books like 9788830417588
142
+ with wrong image
143
+ - adlibris.rb: fixed authors and publish_year
144
+ - proxis.rb:
145
+ -- now returns the ISBN-13
146
+ -- fixed 'url',which requires ISBN-10
147
+ -- in the user preferences, changed "Locale" to "Language",
148
+ which is more meaningful, corresponds closer to the code, and
149
+ is for a different topic of "Locale" used by Amazon
150
+ - ibs_it.rb: partially updated, to make it work again. It is
151
+ still necessary to fix authors, edition, publish_year
152
+ - BL fixed "authors"
153
+ - thalia.rb: updated
154
+ - dea_store_it.rb:
155
+ -- minor improvements
156
+ -- updated (the site has switched to ISBN-13)
157
+ -- added optional load of rubygems (rubygems may be required or
158
+ not by hpricot (used by mechanize), and may be installed or not)
159
+ -- modified to return "Surname, Name"
160
+ - renaud.rb: now supports also books in the section for youngs
161
+
162
+ * various minor changes
163
+
164
+ 2007-02-23 Marco Costantini <costanti@science.unitn.it>
165
+
166
+ * repaired mcu.rb
167
+ * Now thalia supports also music, DVD, software, games
168
+ * ls: added search by title/author
169
+ * now all the providers (except proxis) return EAN
170
+ * minor fixed changes
171
+
172
+ 2007-02-20 Marco Costantini <costanti@science.unitn.it
173
+
174
+ * New providers: webster.it, deastore.com, worldcat.org,
175
+ bol.it.
176
+ * several fixes and updates for various providers
177
+ * added info about the Wikipedia page for each provider (if any)
178
+ * added the country of the provider after the name
179
+ * converted the encoding from UTF-8, when searching by
180
+ title/author/keyword
181
+ * converted the output from the provider to UTF-8
182
+ * used CGI::unescapeHTML for renaud and thalia
183
+ * now most providers return EAN instead of ISBN-10
184
+ * added Library.canonicalise_isbn for the providers that don't
185
+ yet use EAN, so that now EAN can be used with every provider
186
+ file
187
+ * for the function url, the check that the book has the ISBN
188
+ has been moved to only one place in the ui library
189
+ * provider amadeus renamed to thalia (Amadeus was bought by
190
+ Thalia)
191
+ * the requirement Ruby/Amazon is now optional
192
+ * now nul is returned instead of "", "n/a", or "Unknown
193
+ Binding", when the provider doesn't return a value
194
+ * other minor and cosmetic changes
195
+
196
+ 2007-01-20 Joseph Method <tristil@gmail.com>
197
+
198
+ * Switched from cvs to svn, and inaugurated alexandria-commits
199
+ list. Testing now. Again.
200
+
201
+ 2007-01-17 Pascal Terjan <pterjan@linuxfr.org>
202
+
203
+ * lib/alexandria/ui/main_app.rb:
204
+
205
+ Fix bug [#5911] Can't close About Dialog with Close button
206
+
207
+ 2006-03-29 Claudio Belotti <bel8@lili.it>
208
+
209
+ * lib/alexandria/book_providers/ibs_it.rb
210
+ - Download covers to .ibs_it.cache using referer
211
+ - Cleanup the cache at exit
212
+
213
+ * lib/alexandria/ui/new_book_dialog.rb
214
+ - In tree view handle cover as files (and not only as urls)
215
+
216
+ 2006-03-02 Laurent Sansonetti <lrz@gnome.org>
217
+
218
+ * lib/alexandria/ui/new_smart_library_dialog.rb:
219
+
220
+ Close the dialog when destroyed.
221
+
222
+ 2006-02-27 Aymeric Nys <aymeric@nnx.com>
223
+
224
+ * lib/alexandria/export_library.rb
225
+
226
+ - Add CVS export:
227
+
228
+ 2006-02-27 Laurent Sansonetti <lrz@gnome.org>
229
+
230
+ * AUTHORS,
231
+ lib/alexandria.rb:
232
+
233
+ Added Aymeric.
234
+
235
+ * README:
236
+
237
+ - Mention that Ruby/ZOOM is optional ;
238
+ - Mention that Revolution is optional.
239
+
240
+ * lib/alexandria/ui/completion_models.rb:
241
+
242
+ Use the Evolution contacts database to furnish borrowers
243
+ auto-completion, via the Revolution library. If this library is
244
+ not present on the system this feature is disabled.
245
+
246
+ * lib/alexandria/ui.rb,
247
+ lib/alexandria/ui/main_app.rb:
248
+
249
+ Check at runtime if Ruby/Pango has ellipzise support, and use it
250
+ accordingly.
251
+
252
+ 2006-01-05 Laurent Sansonetti <lrz@gnome.org>
253
+
254
+ * TODO:
255
+
256
+ Smart libraries feature is complete.
257
+
258
+ * lib/alexandria/smart_library.rb:
259
+
260
+ When running for the first time (e.g. the ~/alexandria/.smart_libraries
261
+ directory does not exist) provide some default smart libraries (all
262
+ favorite and loaned books).
263
+
264
+ * lib/alexandria/library.rb,
265
+ lib/alexandria/ui/main_app.rb:
266
+
267
+ Separate regular libraries from smart ones in the sidepane using a
268
+ separator.
269
+
270
+ 2006-01-04 Laurent Sansonetti <lrz@gnome.org>
271
+
272
+ * lib/alexandria/export_library.rb,
273
+ lib/alexandria/library.rb,
274
+ lib/alexandria/smart_library.rb,
275
+ lib/alexandria/ui/book_properties_dialog_base.rb,
276
+ lib/alexandria/ui/main_app.rb,
277
+ lib/alexandria/ui/new_book_dialog_manual.rb:
278
+ lib/alexandria/ui/import_dialog.rb:
279
+
280
+ - Make sure smart libraries are exportable ;
281
+ - Provide a default title for the Add Book Manually / Book Properties
282
+ dialogs when the target book title is empty ;
283
+ - Added a keyboard shortcut for the Import button of the Import dialog ;
284
+ - Make sure the latest regular library is not deletable ;
285
+ - Misc fixes.
286
+
287
+ * data/alexandria/glade/book_properties_dialog.glade,
288
+ lib/alexandria/ui/book_properties_dialog_base.rb:
289
+
290
+ Removed the clear cover button in the books properties dialog and added
291
+ a button to the cover file chooser dialog instead that does the same
292
+ thing.
293
+
294
+ * lib/alexandria/ui/main_app.rb:
295
+
296
+ Make sure all tree view columns (in both libraries and books views)
297
+ are ellipsizable at their end.
298
+
299
+ * data/alexandria/glade/book_properties_dialog.glade,
300
+ data/alexandria/icons/smart_library.png,
301
+ data/alexandria/icons/smart_library_small.png,
302
+ data/alexandria/ui/popups.xml,
303
+ lib/alexandria/export_library.rb,
304
+ lib/alexandria/library.rb,
305
+ lib/alexandria/smart_library.rb,
306
+ lib/alexandria/ui.rb,
307
+ lib/alexandria/ui/acquire_dialog.rb,
308
+ lib/alexandria/ui/import_dialog.rb,
309
+ lib/alexandria/ui/main_app.rb,
310
+ lib/alexandria/ui/new_book_dialog.rb,
311
+ lib/alexandria/ui/new_smart_library_dialog.rb,
312
+ lib/alexandria/ui/smart_library_properties_dialog.rb,
313
+ lib/alexandria/ui/smart_library_properties_dialog_base.rb:
314
+
315
+ - More work on the smart libraries (feature is almost complete) ;
316
+ - Various refactoring changes / enhancements.
317
+
318
+ 2006-01-02 Laurent Sansonetti <lrz@gnome.org>
319
+
320
+ Update copyright to 2006 to all source files.
321
+
322
+ * lib/alexandria/ui/main_app.rb:
323
+
324
+ Fixed right click on the books list view and make sure we grab the focus
325
+ on the target widget.
326
+
327
+ 2005-12-28 Laurent Sansonetti <lrz@gnome.org>
328
+
329
+ * lib/alexandria/ui/book_properties_dialog_base.rb:
330
+
331
+ Remembers the latest directory selected by the file chooser, so that we
332
+ use this directory for the next cover open action.
333
+
334
+ * lib/alexandria/ui/new_book_dialog.rb:
335
+
336
+ Fixed assertion while packing the pixbuf cell renderer.
337
+
338
+ * lib/alexandria/ui/main_app.rb:
339
+
340
+ - Added a keyboard shortcut (CTRL+SHIFT+N) for the manual add book
341
+ action ;
342
+
343
+ - Make sure we observe libraries that have just been added, and we remove
344
+ ourself from the observers list when the library has been removed. This
345
+ fixes a bug when books added in new libraries were not displayed.
346
+
347
+ 2005-12-15 Laurent Sansonetti <lrz@gnome.org>
348
+
349
+ * TODO,
350
+ data/alexandria/ui/menus.xml,
351
+ lib/alexandria.rb,
352
+ lib/alexandria/book.rb,
353
+ lib/alexandria/library.rb,
354
+ lib/alexandria/undo_manager.rb,
355
+ lib/alexandria/ui/main_app.rb,
356
+ lib/alexandria/ui/new_book_dialog_manual.rb:
357
+
358
+ - Introduced Undo/Redo functionality for move and deletion actions ;
359
+ - Added some various very small improvements.
360
+
361
+ 2005-12-09 Laurent Sansonetti <lrz@gnome.org>
362
+
363
+ * data/alexandria/glade/book_properties_dialog.glade,
364
+ lib/alexandria/ui/book_properties_dialog_base.rb:
365
+
366
+ - Added a clear button just before the cover that set the default book
367
+ icon back ;
368
+ - Added some tooltips to add/remove authors, clear cover and change cover
369
+ buttons.
370
+
371
+ * lib/alexandria/ui/book_properties_dialog.rb:
372
+
373
+ Make sure we never set the ISBN entry to nil if the book is ISBN-less.
374
+
375
+ * lib/alexandria/ui/main_app.rb:
376
+
377
+ - Renamed 'Set Rating' to 'My rating' ;
378
+ - Reworded rating 1..5 menu items.
379
+
380
+ 2005-12-07 Laurent Sansonetti <lrz@gnome.org>
381
+
382
+ * data/alexandria/ui/menus.xml,
383
+ data/alexandria/ui/popups.xml,
384
+ lib/alexandria/ui/main_app.rb:
385
+
386
+ - Added contextual popup and Edit menu actions to set the rating of the
387
+ selected books ;
388
+ - When right clicking on the books view, select the item/row if the mouse
389
+ if on an item/row.
390
+
391
+ * lib/alexandria/book.rb:
392
+
393
+ Simplify the code.
394
+
395
+ * data/alexandria/ui/popups.xml,
396
+ lib/alexandria/ui/main_app.rb:
397
+
398
+ When right clicking in the libraries view, if the mouse is not on an item
399
+ show another popup menu with New Library and New Smart Library actions.
400
+
401
+ * data/alexandria/glade/preferences_dialog.glade,
402
+ lib/alexandria/ui/preferences_dialog.rb:
403
+
404
+ Set the providers tree view as reorderable with drag-and-drop.
405
+
406
+ * lib/alexandria/ui/main_app.rb:
407
+
408
+ - Work around the beginning of a drag when running a dialog within the
409
+ GtkIconView's item-activated or GtkTreeView's row-activated signal
410
+ handlers ;
411
+ - When right clicking, if the mouse is not on an item, deselect everything
412
+ before showing the popup menu.
413
+
414
+ * README:
415
+
416
+ We now require Ruby-GNOME2 0.14.0 or later.
417
+
418
+ 2005-12-02 Laurent Sansonetti <lrz@gnome.org>
419
+
420
+ * lib/alexandria/ui.rb,
421
+ lib/alexandria/ui/main_app.rb,
422
+ lib/alexandria/ui/multi_drag_treeview.rb:
423
+
424
+ Introduce drag-and-drop from any books view to the library view.
425
+
426
+ * README:
427
+
428
+ - Mention Ruby/Pango as a new dependency ;
429
+ - Mention GTK+ 2.8.0 or greater as recommended (but optional) as
430
+ it brings DND for the icon view.
431
+
432
+ * TODO:
433
+
434
+ One thing less.
435
+
436
+ 2005-11-25 Laurent Sansonetti <lrz@gnome.org>
437
+
438
+ * lib/alexandria/smart_library.rb,
439
+ lib/alexandria/ui/new_smart_library_dialog.rb,
440
+ lib/alexandria/ui/smart_library_properties_dialog_base.rb:
441
+
442
+ More work on smart libraries.
443
+
444
+ 2005-11-24 Mathieu Leduc-Hamel <arrak@arrak.org>
445
+
446
+ * lib/alexandria/book_providers/renaud.rb:
447
+
448
+ Implementing the publish year field.
449
+
450
+ 2005-11-18 Laurent Sansonetti <lrz@gnome.org>
451
+
452
+ * data/alexandria/glade/book_properties_dialog.glade:
453
+
454
+ Added some space between the Add/Remove authors buttons in the book
455
+ properties dialog.
456
+
457
+ * lib/alexandria/smart_library.rb,
458
+ lib/alexandria/ui/new_smart_library_dialog.rb,
459
+ lib/alexandria/ui/smart_library_properties_dialog_base.rb:
460
+
461
+ More work on smart libraries.
462
+
463
+ 2005-11-17 Laurent Sansonetti <lrz@gnome.org>
464
+
465
+ * data/alexandria/ui/menus.xml,
466
+ lib/alexandria.rb,
467
+ lib/alexandria/smart_library.rb,
468
+ lib/alexandria/ui.rb,
469
+ lib/alexandria/ui/main_app.rb,
470
+ lib/alexandria/ui/new_smart_library_dialog.rb,
471
+ lib/alexandria/ui/smart_library_properties_dialog_base.rb:
472
+
473
+ Some work on smart libraries (in progress).
474
+
475
+ 2005-11-16 Pascal Terjan <pterjan@linuxfr.org>
476
+
477
+ * lib/alexandria/book_providers/proxis.rb:
478
+
479
+ Support publish year for Proxis.
480
+
481
+ 2005-11-16 Laurent Sansonetti <lrz@gnome.org>
482
+
483
+ * lib/alexandria/ui/main_app.rb:
484
+
485
+ - Show tooltips for combo toolbar items ;
486
+ - Filter the books views directly when the filter entry has been modified,
487
+ not upon validation.
488
+
489
+ * data/alexandria/glade/book_properties_dialog.glade,
490
+ data/alexandria/glade/preferences_dialog.glade,
491
+ lib/alexandria/book.rb,
492
+ lib/alexandria/import_library.rb,
493
+ lib/alexandria/utils.rb,
494
+ lib/alexandria/book_providers/amadeus.rb,
495
+ lib/alexandria/book_providers/amazon.rb,
496
+ lib/alexandria/book_providers/bn.rb,
497
+ lib/alexandria/book_providers/ibs_it.rb,
498
+ lib/alexandria/book_providers/mcu.rb,
499
+ lib/alexandria/book_providers/proxis.rb,
500
+ lib/alexandria/book_providers/renaud.rb,
501
+ lib/alexandria/book_providers/z3950.rb,
502
+ lib/alexandria/ui/book_properties_dialog.rb,
503
+ lib/alexandria/ui/main_app.rb,
504
+ lib/alexandria/ui/new_book_dialog_manual.rb,
505
+ lib/alexandria/ui/preferences_dialog.rb,
506
+ schemas/alexandria.schemas:
507
+
508
+ Introduced publish year notion for books.
509
+
510
+ 2005-11-14 Laurent Sansonetti <lrz@gnome.org>
511
+
512
+ * lib/alexandria/book_providers.rb,
513
+ lib/alexandria/ui/preferences_dialog.rb:
514
+
515
+ Make Ruby/ZOOM dependency optional, and hide the advanced check box in the
516
+ providers preferences window when there is no abstract provider.
517
+
518
+ 2005-11-10 Laurent Sansonetti <lrz@gnome.org>
519
+
520
+ * TODO:
521
+
522
+ Removed done points, added undo/redo.
523
+
524
+ * lib/alexandria/ui/main_app.rb:
525
+
526
+ Added actions tooltips. Combo boxes in the toolbar do not have tooltips
527
+ yet.
528
+
529
+ 2005-11-09 Laurent Sansonetti <lrz@gnome.org>
530
+
531
+ * lib/alexandria/book_providers/renaud.rb (#url):
532
+
533
+ Make sure we return nil if the book ISBN is not set.
534
+
535
+ 2005-11-08 Laurent Sansonetti <lrz@gnome.org>
536
+
537
+ * data/alexandria/glade/new_book_dialog.glade,
538
+ lib/alexandria/ui/new_book_dialog.rb:
539
+
540
+ - Properly kill active threads when destroying the window and starting a
541
+ new search ;
542
+ - Disable the whole window while searching.
543
+
544
+ * AUTHORS,
545
+ lib/alexandria.rb:
546
+
547
+ Added Mathieu.
548
+
549
+ 2005-11-08 Mathieu Leduc-Hamel <arrak@arrak.org>
550
+
551
+ * lib/alexandria/book_providers.rb,
552
+ lib/alexandria/book_providers/renaud.rb:
553
+
554
+ Added a provider to the Renaud-Bray library (Quebec).
555
+
556
+ 2005-11-08 Laurent Sansonetti <lrz@gnome.org>
557
+
558
+ * lib/alexandria/ui/export_dialog.rb,
559
+ lib/alexandria/ui/import_dialog.rb:
560
+
561
+ Do not launch the action when the window is destroyed.
562
+
563
+ 2005-10-15 Alexander McCormmach <alexander@tunicate.org>
564
+
565
+ * lib/alexandria/ui/main_app.rb:
566
+
567
+ - Fixed rating column's min and max width to approx. five times
568
+ the width of the star pixbuf.
569
+
570
+ * schemas/alexandria.schemas:
571
+
572
+ - Added schema for cols_width property.
573
+
574
+ 2005-10-15 Laurent Sansonetti <lrz@gnome.org>
575
+
576
+ * AUTHORS,
577
+ lib/alexandria.rb:
578
+
579
+ Added Alexander.
580
+
581
+ 2005-10-15 Alexander McCormmach <alexander@tunicate.org>
582
+
583
+ * lib/alexandria/ui/main_app.rb:
584
+
585
+ - Giving the filter entry box initial input focus ;
586
+ - Fixed the reload keyboard shortcut ;
587
+ - Remember the books table column widths.
588
+
589
+ * data/alexandria/glade/main_app.glade:
590
+
591
+ Side pane close button shouldn't grab input focus.
592
+
593
+ * lib/alexandria/ui/book_properties_dialog.rb,
594
+ lib/alexandria/ui/new_book_dialog_manual.rb:
595
+
596
+ Fixed 'pressed' GtkButton events to 'clicked'.
597
+
598
+ 2005-10-13 Laurent Sansonetti <lrz@gnome.org>
599
+
600
+ * lib/alexandria/macui/Icons.rb,
601
+ lib/alexandria/macui/ImportController.rb,
602
+ lib/alexandria/macui/MainController.rb,
603
+ lib/alexandria/macui/TableView.rb,
604
+ lib/alexandria/macui/MainWindow.nib/info.nib,
605
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
606
+
607
+ - Fixed the end of the import action ;
608
+ - Double click on a row in the libraries table view will edit ;
609
+ - Added ellipsis after action names in some popup menus ;
610
+ - Set the vertical scrollbar as autohide in the libraries table view ;
611
+ - Double click outside a row in the libraries table view will create a
612
+ new library ;
613
+ - Double click outside a row in the books table view or a cell in the
614
+ books matrix will open the add book sheet ;
615
+ - Some cleaning.
616
+
617
+ 2005-10-02 Laurent Sansonetti <lrz@gnome.org>
618
+
619
+ * lib/alexandria/library.rb,
620
+ lib/alexandria/ui/book_properties_dialog.rb,
621
+ lib/alexandria/ui/book_properties_dialog_base.rb,
622
+ lib/alexandria/ui/new_book_dialog_manual.rb:
623
+
624
+ Fix for Ruby 1.8.3 YAML/Bignum bug, we now serialize the loaning date as
625
+ a Time object and not an Epoch duration anymore. Backward compatibility
626
+ should be preserved by the fix.
627
+
628
+ 2005-09-18 Laurent Sansonetti <lrz@gnome.org>
629
+
630
+ * data/alexandria/glade/acquire_dialog.glade,
631
+ data/alexandria/ui/menus.xml,
632
+ lib/alexandria/ui/acquire_dialog.rb,
633
+ lib/alexandria/ui.rb,
634
+ lib/alexandria/ui/main_app.rb:
635
+
636
+ Initial work on the new acquire barcodes dialog.
637
+
638
+ * lib/alexandria/ui/libraries_combo.rb:
639
+
640
+ New file that shares code to populate a combo box with libraries.
641
+
642
+ * data/alexandria/glade/new_book_dialog.glade,
643
+ lib/alexandria/ui/new_book_dialog.rb:
644
+
645
+ - Removed all scanning stuff ;
646
+ - The libraries popup menu now display a "New Library" item that
647
+ automatically generates a library then adds the books in it ;
648
+ - Fixed the help error transcient window.
649
+
650
+ * lib/alexandria/library.rb:
651
+
652
+ Shared the generation of library names.
653
+
654
+ * lib/alexandria/ui/book_properties_dialog.rb,
655
+ lib/alexandria/ui/new_book_dialog_manual.rb,
656
+ lib/alexandria/ui/preferences_dialog.rb:
657
+
658
+ Fixed the help error transcient window.
659
+
660
+ * lib/alexandria/ui/export_dialog.rb,
661
+ lib/alexandria/ui/import_dialog.rb:
662
+
663
+ - Added missing Help buttons ;
664
+ - In the Import dialog, there is no more library name field, the name of
665
+ the destination library is now automatically generated based on the
666
+ selected file base name.
667
+
668
+ * data/alexandria/ui/popups.xml:
669
+
670
+ Added an 'Export' action in the libraries contextual popup menu.
671
+
672
+ 2005-09-11 Laurent Sansonetti <lrz@gnome.org>
673
+
674
+ * lib/alexandria/macui/MainController.rb:
675
+
676
+ Disable view online information menu items for providers that does not
677
+ provide a URL for the selected book.
678
+
679
+ * lib/alexandria/macui/BookInfoController.rb,
680
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
681
+ lib/alexandria/macui/MainWindow.nib/info.nib,
682
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
683
+
684
+ In the books properties window, disable the previous/next buttons if the
685
+ given library has only one book.
686
+
687
+ 2005-08-29 Laurent Sansonetti <lrz@gnome.org>
688
+
689
+ * lib/alexandria/export_library.rb:
690
+
691
+ - Fixed the indentation of the code introduced by the previous commit ;
692
+ - Sorted all exporters by their name ;
693
+ - Changed the BibTex exporter name to 'BibTeX' instead of 'BibTex format'.
694
+
695
+ 2005-08-28 Claudio Belotti <bel8@lilik.it>
696
+
697
+ * lib/alexandria/export_library.rb:
698
+
699
+ Added BibTex format exporter.
700
+
701
+ 2005-08-24 Laurent Sansonetti <lrz@gnome.org>
702
+
703
+ * README:
704
+
705
+ Fixed indentation.
706
+
707
+ === Alexandria 0.6.0 ===
708
+
709
+ 2005-08-24 Laurent Sansonetti <lrz@gnome.org>
710
+
711
+ * lib/alexandria/book_providers/bn.rb:
712
+
713
+ Fix regression.
714
+
715
+ * lib/alexandria/preferences.rb:
716
+
717
+ Fix default values handling.
718
+
719
+ * README,
720
+ NEWS:
721
+
722
+ Updated for 0.6.0.
723
+
724
+ 2005-08-17 Laurent Sansonetti <lrz@gnome.org>
725
+
726
+ * README:
727
+
728
+ Added Ruby/ZOOM in the dependencies list.
729
+
730
+ 2005-08-12 Laurent Sansonetti <lrz@gnome.org>
731
+
732
+ * lib/alexandria/ui/main_app.rb:
733
+
734
+ - Fixed the filtering actions ;
735
+ - Disable the 'View Online Information' actions if the according providers
736
+ do not provide a URL for the selected book.
737
+
738
+ 2005-08-03 Laurent Sansonetti <lrz@gnome.org>
739
+
740
+ * lib/alexandria/ui/main_app.rb:
741
+
742
+ - Stores the books notes in the model, to make filtering faster ;
743
+ - Added a 'Match everything' filtering option.
744
+
745
+ * lib/alexandria/ui/new_book_dialog_manual.rb:
746
+
747
+ Use the new icon as the default cover image.
748
+
749
+ * lib/alexandria/ui/main_app.rb,
750
+ lib/alexandria/macui/MainController.rb:
751
+
752
+ Clarify the GNOME status bar or the Cocoa main window's title by
753
+ displaying "X unrated books" instead of "X books, X unrated" when all the
754
+ books are unrated.
755
+
756
+ * lib/alexandria/.cvsignore,
757
+ lib/alexandria/pre-setup.rb,
758
+ lib/alexandria/preferences.rb:
759
+
760
+ Automatically generates a default_preferences.rb file at install time,
761
+ that basically contains a hash with the name and the default value of
762
+ variables described in the .schema file. This hash is inspected each time
763
+ GConf returns nil for a given variable. This should fix all issues
764
+ related to the installation of GConf schemas.
765
+
766
+ 2005-08-02 Laurent Sansonetti <lrz@gnome.org>
767
+
768
+ * alexandria.xcodeproj/project.pbxproj:
769
+
770
+ Fixed the installation of zoom.bundle and marc.rb.
771
+
772
+ * lib/alexandria/book_providers.rb:
773
+
774
+ When removing an abstract provider, remove it from the 'providers_priority'
775
+ list as well (if it is there).
776
+
777
+ * lib/alexandria/preferences.rb:
778
+
779
+ - When replacing a variable with an empty array, simply unset the
780
+ variable, as GConf apparently does not support this by throwing an error ;
781
+ - Implemented the deletion of variables.
782
+
783
+ * lib/alexandria/ui/icons.rb:
784
+
785
+ Use icon_book.png instead if icon.png as the default book icon.
786
+
787
+ * lib/alexandria/ui/main_app.rb:
788
+
789
+ Resize all icons to have the same height (and not the same width as
790
+ before).
791
+
792
+ * lib/alexandria/ui/new_book_dialog.rb:
793
+
794
+ - Do not download book covers when the URI is nil ;
795
+ - Make downloaded book covers smaller, and resize them to have the same
796
+ height exactly as in the main icon view.
797
+
798
+ * lib/alexandria/ui/preferences_dialog.rb:
799
+
800
+ Implemented the abstract providers infrastructure (adding, editing and
801
+ removing new providers).
802
+
803
+ * lib/alexandria/book_providers/amazon.rb:
804
+
805
+ Added a backward compatibility hack to upgrade the old developer token
806
+ to a new one.
807
+
808
+ * lib/alexandria/utils.rb:
809
+
810
+ Removed a debug statement.
811
+
812
+ * lib/alexandria/book_providers/z3950.rb:
813
+
814
+ - SUTRS decoding: remove trailing dots when squeeze whitespaces from the
815
+ title ;
816
+ - Fix path to the MARC library.
817
+
818
+ * lib/alexandria/macui/AddBookController.rb:
819
+
820
+ When displaying the results of a search and multiple books with the same
821
+ title, display the ISBN if the edition is not available.
822
+
823
+ 2005-08-02 Laurent Sansonetti <lrz@gnome.org>
824
+
825
+ * lib/alexandria/macui/MainController.rb:
826
+
827
+ Refilter the model when a book has been modified and when the model is
828
+ already filtered.
829
+
830
+ * lib/alexandria/book_providers.rb:
831
+
832
+ It is now possible to instantiate abstract providers by subclassing
833
+ their classes.
834
+
835
+ * lib/alexandria/preferences.rb:
836
+
837
+ Execute all calls to NSUserDefaults in the main thread.
838
+
839
+ * lib/alexandria/book_providers/z3950.rb:
840
+
841
+ Added builtin Library of Congress and British Library providers.
842
+
843
+ 2005-07-28 Laurent Sansonetti <lrz@gnome.org>
844
+
845
+ * lib/alexandria/macui/PreferencesController.rb,
846
+ lib/alexandria/macui/MainWindow.nib/info.nib,
847
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
848
+
849
+ - Set the preferences window title back to normal when leaving the
850
+ new provider sheet ;
851
+ - Set the first preferences window tabview item as default.
852
+
853
+ 2005-07-27 Laurent Sansonetti <lrz@gnome.org>
854
+
855
+ * lib/alexandria/book_providers/z3950.rb:
856
+
857
+ Completed the Z39.50 provider.
858
+
859
+ 2005-07-26 Laurent Sansonetti <lrz@gnome.org>
860
+
861
+ * alexandria.xcodeproj/project.pbxproj,
862
+ data/alexandria/icons/lookup.png,
863
+ lib/alexandria.rb,
864
+ lib/alexandria/book_providers.rb,
865
+ lib/alexandria/import_library.rb,
866
+ lib/alexandria/preferences.rb,
867
+ lib/alexandria/book_providers/amazon.rb,
868
+ lib/alexandria/book_providers/proxis.rb,
869
+ lib/alexandria/book_providers/z3950.rb,
870
+ lib/alexandria/macui/AddBookController.rb,
871
+ lib/alexandria/macui/PreferencesController.rb,
872
+ lib/alexandria/macui/main.m,
873
+ lib/alexandria/macui/main.rb,
874
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
875
+ lib/alexandria/macui/MainWindow.nib/info.nib,
876
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
877
+
878
+ - Completed the abstract providers infrastructure ;
879
+ - Added a lookup button in the add book dialog ;
880
+ - Fixed a bug in the generation of the ruby load path ;
881
+ - Added Ruby/ZOOM and the YAZ library in the target ;
882
+ - In the ISBN-list import, start importing if there is at least one
883
+ valid ISBN in the file ;
884
+ - Misc fixes.
885
+
886
+ 2005-07-19 Topher Cyll <christophercyll@gmail.com>
887
+
888
+ * lib/alexandria/scanners.rb,
889
+ lib/alexandria/scanners/cuecat.rb:
890
+
891
+ Added userland CueCat scanner module and a scanner registry.
892
+
893
+ 2005-07-18 Laurent Sansonetti <lrz@gnome.org>
894
+
895
+ * AUTHORS,
896
+ lib/alexandria.rb:
897
+
898
+ Added Jiri.
899
+
900
+ 2005-07-14 Laurent Sansonetti <lrz@gnome.org>
901
+
902
+ * lib/alexandria/macui/BookIconCell.m:
903
+
904
+ Correctly truncates book titles, the previous implementation was not
905
+ working all the time.
906
+
907
+ 2005-07-13 Laurent Sansonetti <lrz@gnome.org>
908
+
909
+ * alexandria.xcode/.cvsignore,
910
+ alexandria.xcode/project.pbxproj,
911
+ alexandria.xcodeproj/.cvsignore,
912
+ alexandria.xcodeproj/project.pbxproj:
913
+
914
+ - Switching to Xcode 2.1 (.xcode -> .xcodeproj) ;
915
+ - The build target in Xcode now generates an all-in-one binary.
916
+
917
+ * lib/alexandria.rb,
918
+ lib/alexandria/macui.rb,
919
+ lib/alexandria/macui/Info.plist,
920
+ lib/alexandria/macui/Matrix.rb,
921
+ lib/alexandria/macui/main.m,
922
+ lib/alexandria/macui/main.rb:
923
+
924
+ - Follow latest change ;
925
+ - When clicking on a selected cell in the matrix with the shift key
926
+ pressed at the same time, deselect the cell.
927
+
928
+ 2005-07-10 Laurent Sansonetti <lrz@gnome.org>
929
+
930
+ * lib/alexandria/macui/MainController.rb,
931
+ lib/alexandria/macui/Matrix.rb,
932
+ lib/alexandria/macui/Utils.m,
933
+ lib/alexandria/macui/MainWindow.nib/info.nib,
934
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
935
+
936
+ - Added autoscroll in the matrix ;
937
+ - Improved performances of the new selection ;
938
+ - Fixed a lot of small bugs.
939
+
940
+ 2005-07-05 Laurent Sansonetti <lrz@gnome.org>
941
+
942
+ * lib/alexandria/macui/MainController.rb,
943
+ lib/alexandria/macui/Matrix.rb:
944
+
945
+ Overrides the selection drawing of the matrix to mimic the Finder.
946
+
947
+ 2005-07-04 Laurent Sansonetti <lrz@gnome.org>
948
+
949
+ * lib/alexandria/macui/MainController.rb,
950
+ lib/alexandria/macui/Matrix.rb,
951
+ lib/alexandria/macui/MainWindow.nib/info.nib,
952
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
953
+
954
+ Finally fixed the matrix to accept to be the key view of the window.
955
+
956
+ 2005-07-03 Laurent Sansonetti <lrz@gnome.org>
957
+
958
+ * lib/alexandria/export_library.rb:
959
+
960
+ Removed a duplicated 'EOS' statement introduced in the previous commit.
961
+
962
+ * lib/alexandria/macui/AddBookController.rb,
963
+ lib/alexandria/macui/MainController.rb,
964
+ lib/alexandria/macui/Matrix.rb,
965
+ lib/alexandria/macui/TableView.rb:
966
+
967
+ - Fix a bug when deselecting all cells in the matrix after a right click ;
968
+ - Fix a bug when ending a drag-and-drop in the table view that could
969
+ start editing the cell ;
970
+ - In the results table of the add book dialog, write the edition if a
971
+ book has more than one edition.
972
+
973
+ 2005-07-02 Laurent Sansonetti <lrz@gnome.org>
974
+
975
+ * lib/alexandria/macui/MainController.rb,
976
+ lib/alexandria/macui/Matrix.rb,
977
+ lib/alexandria/macui/TableView.rb:
978
+
979
+ - Added some contextual popup menus in both libraries and books views ;
980
+ - Disable the export menu item if the selected library is empty.
981
+
982
+ * lib/alexandria/book_providers.rb,
983
+ lib/alexandria/macui/AddBookController.rb,
984
+ lib/alexandria/macui/BooksDataSource.rb,
985
+ lib/alexandria/macui/MainController.rb,
986
+ lib/alexandria/macui/Matrix.rb,
987
+ lib/alexandria/macui/PreferencesController.rb,
988
+ lib/alexandria/macui/TableView.rb,
989
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
990
+ lib/alexandria/macui/MainWindow.nib/info.nib,
991
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
992
+
993
+ - Fixed some bugs in the Add Book window ;
994
+ - Fixed a bug related to the empty selection of table views ;
995
+ - Added 'View/Online Information At' menu ;
996
+ - Added books table view column sorting ;
997
+ - Added books matrix sorting (via 'View/Arrange Icons By' menu).
998
+
999
+ 2005-06-30 Laurent Sansonetti <lrz@gnome.org>
1000
+
1001
+ * lib/alexandria/book_providers/mcu.rb,
1002
+ lib/alexandria/book_providers/proxis.rb:
1003
+
1004
+ Use our new String#convert API instead of GLib.convert.
1005
+
1006
+ * alexandria.xcode/project.pbxproj,
1007
+ lib/alexandria/preferences.rb,
1008
+ lib/alexandria/macui/Info.plist,
1009
+ lib/alexandria/macui/MainController.rb,
1010
+ lib/alexandria/macui/PreferencesController.rb,
1011
+ lib/alexandria/macui/MainWindow.nib/info.nib:
1012
+
1013
+ Introduced preferences persistence.
1014
+
1015
+ 2005-06-29 Laurent Sansonetti <lrz@gnome.org>
1016
+
1017
+ * lib/alexandria/macui/MainController.rb:
1018
+
1019
+ Make sure the text input from the search toolbar item is converted
1020
+ to UTF8.
1021
+
1022
+ 2005-06-28 Owain Evans <o.evans@gmail.com>
1023
+
1024
+ * lib/alexandria/ui/new_book_dialog.rb:
1025
+
1026
+ Make the new book dialog accept upc barcodes from the clipboard.
1027
+
1028
+ 2005-06-28 Laurent Sansonetti <lrz@gnome.org>
1029
+
1030
+ * lib/alexandria/utils.rb,
1031
+ lib/alexandria/macui/AddBookController.rb,
1032
+ lib/alexandria/macui/BookInfoController.rb,
1033
+ lib/alexandria/macui/BooksDataSource.rb:
1034
+
1035
+ Fixed encoding issues by forcing encoding to all displayed strings to
1036
+ UTF8.
1037
+
1038
+ 2005-06-27 Liam Davison <carnegie@liamjdavison.info>
1039
+
1040
+ * lib/alexandria/export_library.rb:
1041
+
1042
+ Added <FromCompany> attribute to the ONIX export. Company is simply set
1043
+ to 'Alexandria'.
1044
+ Moved <SentDate> attribute to correct position in ONIX export. Header
1045
+ should now be valid.
1046
+
1047
+ 2005-06-26 Laurent Sansonetti <lrz@gnome.org>
1048
+
1049
+ * lib/alexandria/book_providers.rb:
1050
+
1051
+ Avoid infinite loop when calling BookProviders::Preferences[] with an
1052
+ integer.
1053
+
1054
+ * alexandria.xcode/project.pbxproj,
1055
+ data/alexandria/icons/view_as_icons.png,
1056
+ data/alexandria/icons/view_as_list.png,
1057
+ lib/alexandria/macui.rb,
1058
+ lib/alexandria/macui/MainController.rb,
1059
+ lib/alexandria/macui/PreferencesController.rb,
1060
+ lib/alexandria/macui/TableView.rb,
1061
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1062
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1063
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1064
+
1065
+ - Preferences pane ;
1066
+ - 'View As...' toolbar items ;
1067
+ - Misc fixes.
1068
+
1069
+ 2005-06-18 Laurent Sansonetti <lrz@gnome.org>
1070
+
1071
+ * lib/alexandria/execution_queue.rb:
1072
+
1073
+ Fixed a bug in the .current method.
1074
+
1075
+ * lib/alexandria/macui/BookInfoController.rb,
1076
+ lib/alexandria/macui/BooksDataSource.rb,
1077
+ lib/alexandria/macui/MainController.rb,
1078
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1079
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1080
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1081
+
1082
+ - Added manual addition of books ;
1083
+ - Draw a gray border around covers in the icon view ;
1084
+ - Misc fixes.
1085
+
1086
+ 2005-06-17 Laurent Sansonetti <lrz@gnome.org>
1087
+
1088
+ * lib/alexandria/import_library.rb:
1089
+
1090
+ In the ISBN-list text file import, call the iterate callback when
1091
+ downloading covers.
1092
+
1093
+ * lib/alexandria/execution_queue.rb:
1094
+
1095
+ Maintain the latest created object in a class variable.
1096
+
1097
+ * alexandria.xcode/project.pbxproj,
1098
+ lib/alexandria/macui.rb,
1099
+ lib/alexandria/macui/AddBookController.rb,
1100
+ lib/alexandria/macui/Icons.rb,
1101
+ lib/alexandria/macui/ImportController.rb,
1102
+ lib/alexandria/macui/MainController.rb,
1103
+ lib/alexandria/macui/Utils.m,
1104
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1105
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1106
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1107
+
1108
+ - Import pane ;
1109
+ - Redesigned the add book dialog to use popup buttons instead of combo
1110
+ boxes ;
1111
+ - Misc fixes.
1112
+
1113
+ 2005-06-16 Laurent Sansonetti <lrz@gnome.org>
1114
+
1115
+ * lib/alexandria/library.rb:
1116
+
1117
+ Handle low-case 'x' when validating ISBN/EAN/...
1118
+
1119
+ * lib/alexandria/book_providers/amadeus.rb,
1120
+ lib/alexandria/book_providers/amazon.rb,
1121
+ lib/alexandria/book_providers/bn.rb,
1122
+ lib/alexandria/book_providers/ibs_it.rb,
1123
+ lib/alexandria/book_providers/mcu.rb,
1124
+ lib/alexandria/book_providers/proxis.rb:
1125
+
1126
+ Make sure #url methods return nil if the given book is ISBN-less.
1127
+
1128
+ * lib/alexandria/export_library.rb:
1129
+
1130
+ In the ONIX export, do not write ProductWebsite elements for providers
1131
+ that return nil URLs.
1132
+
1133
+ 2005-06-15 Laurent Sansonetti <lrz@gnome.org>
1134
+
1135
+ * lib/alexandria/export_library.rb (#export_as_html):
1136
+
1137
+ Create the directory if it does not exist yet.
1138
+
1139
+ * alexandria.xcode/project.pbxproj,
1140
+ lib/alexandria/macui.rb,
1141
+ lib/alexandria/macui/AddBookController.rb,
1142
+ lib/alexandria/macui/BookInfoController.rb,
1143
+ lib/alexandria/macui/BooksDataSource.rb,
1144
+ lib/alexandria/macui/ExportController.rb,
1145
+ lib/alexandria/macui/MainController.rb,
1146
+ lib/alexandria/macui/Matrix.rb,
1147
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1148
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1149
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1150
+
1151
+ - Unified title/toolbar look in the main window ;
1152
+ - DND from the books list view ;
1153
+ - Export pane ;
1154
+ - Shows errors in the add book sheet ;
1155
+ - Misc fixes.
1156
+
1157
+ 2005-06-14 Laurent Sansonetti <lrz@gnome.org>
1158
+
1159
+ * alexandria.xcode/project.pbxproj,
1160
+ data/alexandria/icons/book_icon.png,
1161
+ lib/alexandria/macui.rb,
1162
+ lib/alexandria/macui/BookIconCell.m,
1163
+ lib/alexandria/macui/BookInfoController.rb,
1164
+ lib/alexandria/macui/BooksDataSource.rb,
1165
+ lib/alexandria/macui/LibrariesDataSource.rb,
1166
+ lib/alexandria/macui/MainController.rb,
1167
+ lib/alexandria/macui/Matrix.rb,
1168
+ lib/alexandria/macui/TableView.rb,
1169
+ lib/alexandria/macui/Utils.m,
1170
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1171
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1172
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1173
+
1174
+ Work in progress on the Cocoa port (icon view, DND, bug fixes...).
1175
+
1176
+ 2005-06-13 Dafydd Harries <daf@muse.19inch.net>
1177
+
1178
+ * lib/alexandria/web_themes.rb:
1179
+
1180
+ Fix bug in load method introduced by last change to same.
1181
+
1182
+ 2005-06-12 Dafydd Harries <daf@muse.19inch.net>
1183
+
1184
+ * lib/alexandria/ui/new_book_dialog.rb:
1185
+
1186
+ Download and display images for book searches.
1187
+
1188
+ 2005-06-12 Dafydd Harries <daf@muse.19inch.net>
1189
+
1190
+ * lib/alexandria/book_providers.rb:
1191
+
1192
+ Always raise NoResultsError if there were no results, rather than
1193
+ leaving this up to individual book providers. Also, clean up
1194
+ whitespace.
1195
+
1196
+ 2005-06-11 Laurent Sansonetti <lrz@gnome.org>
1197
+
1198
+ * lib/alexandria/library.rb:
1199
+
1200
+ Ignores whitespace characters when extracting numbers for ISBN/EAN/etc..
1201
+
1202
+ 2005-06-07 Laurent Sansonetti <lrz@gnome.org>
1203
+
1204
+ * lib/alexandria/macui/MainController.rb,
1205
+ lib/alexandria/macui/TitledImageCell.m,
1206
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1207
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1208
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1209
+
1210
+ - Automatically show the toolbar when it is hidden and the Find menu item
1211
+ is activated ;
1212
+ - Center text in the titled image cell plus removed some dead code.
1213
+
1214
+ 2005-06-06 Laurent Sansonetti <lrz@gnome.org>
1215
+
1216
+ * lib/alexandria/macui/MainController.rb,
1217
+ lib/alexandria/macui/TitledImageCell.m,
1218
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1219
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1220
+
1221
+ Work in progress (fixed a lot of bugs in the titled image cell and added
1222
+ a Find main menu item that switches to the search toolbar item).
1223
+
1224
+ 2005-06-05 Laurent Sansonetti <lrz@gnome.org>
1225
+
1226
+ * lib/alexandria/macui/AboutController.rb,
1227
+ lib/alexandria/macui/BookInfoController.rb,
1228
+ lib/alexandria/macui/BooksDataSource.rb,
1229
+ lib/alexandria/macui/MainController.rb,
1230
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1231
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1232
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1233
+
1234
+ Work in progress (make the cover view editable, introduced a date
1235
+ picker for the loaning, some fixes).
1236
+
1237
+ 2005-06-04 Laurent Sansonetti <lrz@gnome.org>
1238
+
1239
+ * lib/alexandria/web_themes.rb:
1240
+
1241
+ Simplified and commented the load method.
1242
+
1243
+ * data/alexandria/icons/book.png,
1244
+ data/alexandria/icons/book_small.png,
1245
+ data/alexandria/icons/less.png,
1246
+ data/alexandria/icons/more.png,
1247
+ data/alexandria/icons/no_cover.png:
1248
+
1249
+ New icons.
1250
+
1251
+ * alexandria.xcode/project.pbxproj,
1252
+ lib/alexandria/macui.rb,
1253
+ lib/alexandria/book_providers/z3950.rb,
1254
+ lib/alexandria/macui/AboutController.rb,
1255
+ lib/alexandria/macui/BookInfoController.rb,
1256
+ lib/alexandria/macui/Icons.rb,
1257
+ lib/alexandria/macui/LibrariesDataSource.rb,
1258
+ lib/alexandria/macui/MainController.rb,
1259
+ lib/alexandria/macui/RatingField.rb,
1260
+ lib/alexandria/macui/TableView.rb,
1261
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1262
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1263
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1264
+
1265
+ Work in progress on the Cocoa port, added book properties, an about
1266
+ dialog and a lot of fixes.
1267
+
1268
+ 2005-06-04 Dafydd Harries <daf@muse.19inch.net>
1269
+
1270
+ * lib/alexandria/web_themes.rb:
1271
+
1272
+ Ignore CVS directories when looking for themes.
1273
+
1274
+ 2005-06-01 Laurent Sansonetti <lrz@gnome.org>
1275
+
1276
+ * lib/alexandria/ui/book_properties_dialog.rb:
1277
+
1278
+ Fixes the closing of the dialog (the bug was introduced by the latest
1279
+ Library#select commit).
1280
+
1281
+ 2005-05-30 Laurent Sansonetti <lrz@gnome.org>
1282
+
1283
+ * alexandria.xcode/project.pbxproj,
1284
+ lib/alexandria.rb,
1285
+ lib/alexandria/macui.rb,
1286
+ lib/alexandria/macui/BookInfoController.rb,
1287
+ lib/alexandria/macui/BooksDataSource.rb,
1288
+ lib/alexandria/macui/MainController.rb,
1289
+ lib/alexandria/macui/RatingCell.m,
1290
+ lib/alexandria/macui/TableView.rb,
1291
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1292
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1293
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1294
+
1295
+ Work in progress on the Cocoa port (slowly but surely).
1296
+
1297
+ 2005-05-26 Laurent Sansonetti <lrz@gnome.org>
1298
+
1299
+ * data/alexandria/icons/book.png,
1300
+ data/alexandria/icons/book_small.png,
1301
+ data/alexandria/icons/library.png,
1302
+ data/alexandria/icons/library_small.png:
1303
+
1304
+ New icons, by Stefanie Dijoux.
1305
+
1306
+ * lib/alexandria/book_providers.rb:
1307
+
1308
+ Removed a debug log.
1309
+
1310
+ * lib/alexandria/library.rb (Library#select):
1311
+
1312
+ Rewrote to return a Library and not an Array.
1313
+
1314
+ * alexandria.xcode/project.pbxproj,
1315
+ lib/alexandria/macui.rb,
1316
+ lib/alexandria/utils.rb,
1317
+ lib/alexandria/macui/AddBookController.rb,
1318
+ lib/alexandria/macui/BooksDataSource.rb,
1319
+ lib/alexandria/macui/LibrariesDataSource.rb,
1320
+ lib/alexandria/macui/LibrariesTableView.rb,
1321
+ lib/alexandria/macui/MainController.rb,
1322
+ lib/alexandria/macui/TableView.rb,
1323
+ lib/alexandria/macui/TitledImageCell.m,
1324
+ lib/alexandria/macui/main.rb,
1325
+ lib/alexandria/macui/MainWindow.nib/classes.nib,
1326
+ lib/alexandria/macui/MainWindow.nib/info.nib,
1327
+ lib/alexandria/macui/MainWindow.nib/keyedobjects.nib:
1328
+
1329
+ Work in progress on the Cocoa port.
1330
+
1331
+ 2005-05-22 Laurent Sansonetti <lrz@gnome.org>
1332
+
1333
+ * AUTHORS,
1334
+ lib/alexandria.rb:
1335
+
1336
+ Added Owain.
1337
+
1338
+ 2005-05-22 Owain Evans <o.evans@gmail.com>
1339
+
1340
+ * lib/alexandria/library.rb:
1341
+
1342
+ Support for American UPC barcodes.
1343
+
1344
+ 2005-05-20 Laurent Sansonetti <lrz@gnome.org>
1345
+
1346
+ Initial revision of the Cocoa version.
1347
+
1348
+ * alexandria.xcode,
1349
+ lib/alexandria/macui.rb,
1350
+ lib/alexandria/utils.rb,
1351
+ lib/alexandria/macui/AddBookController.rb,
1352
+ lib/alexandria/macui/BooksDataSource.rb,
1353
+ lib/alexandria/macui/Info.plist,
1354
+ lib/alexandria/macui/LibrariesDataSource.rb,
1355
+ lib/alexandria/macui/LibrariesTableView.rb,
1356
+ lib/alexandria/macui/MainController.rb,
1357
+ lib/alexandria/macui/main.m,
1358
+ lib/alexandria/macui/main.rb,
1359
+ lib/alexandria/macui/MainWindow.nib:
1360
+
1361
+ Added.
1362
+
1363
+ * lib/alexandria.rb,
1364
+ lib/alexandria/book_providers.rb,
1365
+ lib/alexandria/library.rb,
1366
+ lib/alexandria/preferences.rb,
1367
+ lib/alexandria/book_providers/amazon.rb,
1368
+ lib/alexandria/book_providers/proxis.rb,
1369
+ lib/alexandria/ui/icons.rb:
1370
+
1371
+ Refactored to share more code with the Cocoa code.
1372
+
1373
+ 2005-04-18 Laurent Sansonetti <lrz@gnome.org>
1374
+
1375
+ * AUTHORS,
1376
+ lib/alexandria.rb:
1377
+
1378
+ Added Lucas.
1379
+
1380
+ 2005-04-11 Laurent Sansonetti <lrz@gnome.org>
1381
+
1382
+ * lib/alexandria/ui/main_app.rb:
1383
+
1384
+ Do not print the '%d unrated books' status line when all books have
1385
+ been rated.
1386
+
1387
+ * lib/alexandria/ui/book_properties_dialog_base.rb,
1388
+ lib/alexandria/ui/completion_models.rb:
1389
+
1390
+ Auto-complete borrowers.
1391
+
1392
+ * TODO:
1393
+
1394
+ Updated.
1395
+
1396
+ 2005-04-09 Laurent Sansonetti <lrz@gnome.org>
1397
+
1398
+ * data/alexandria/icons/favorite_tag.png:
1399
+
1400
+ Added.
1401
+
1402
+ * lib/alexandria/ui/icons.rb,
1403
+ lib/alexandria/ui/main_app.rb:
1404
+
1405
+ Tag icons with a heart image when the books they represent have a rating
1406
+ of 5.
1407
+
1408
+ * lib/alexandria/book_providers.rb,
1409
+ lib/alexandria/book_providers/z3950.rb,
1410
+ lib/alexandria/ui/preferences_dialog.rb:
1411
+
1412
+ More work on the abstract providers.
1413
+
1414
+ 2005-04-09 Laurent Sansonetti <lrz@gnome.org>
1415
+
1416
+ * lib/alexandria/book_providers/z3950.rb:
1417
+
1418
+ Added (not complete though).
1419
+
1420
+ * data/alexandria/glade/preferences_dialog.glade:
1421
+
1422
+ Introduced an expert mode which shows Add and Remove providers buttons.
1423
+
1424
+ * lib/alexandria/book_providers.rb:
1425
+
1426
+ Introduced the concept of abstract providers (not complete though).
1427
+
1428
+ * lib/alexandria/ui/preferences_dialog.rb:
1429
+
1430
+ Introduced an Add Provider dialog (not complete though).
1431
+
1432
+ 2005-04-08 Laurent Sansonetti <lrz@gnome.org>
1433
+
1434
+ * AUTHORS,
1435
+ lib/alexandria.rb:
1436
+
1437
+ Added Ligia.
1438
+
1439
+ 2005-04-07 Claudio Belotti <bel8@lilik.it>
1440
+
1441
+ * tests/test_provider.rb:
1442
+
1443
+ Added a test for the Internet Bookshop Italia provider.
1444
+
1445
+ 2005-04-07 Pascal Terjan <pterjan@linuxfr.org>
1446
+
1447
+ * lib/alexandria/book_providers/proxis.rb:
1448
+
1449
+ Fix previous fix
1450
+
1451
+ * tests/test_providers.rb:
1452
+
1453
+ Test that the result of ISBN search has the right ISBN
1454
+
1455
+ 2005-04-06 Laurent Sansonetti <lrz@gnome.org>
1456
+
1457
+ * AUTHORS,
1458
+ lib/alexandria.rb:
1459
+
1460
+ Added Claudio.
1461
+
1462
+ 2005-04-06 Claudio Belotti <bel8@lilik.it>
1463
+
1464
+ * lib/alexandria/book_providers/ibs_it.rb:
1465
+
1466
+ Added (provided to the Internet Bookshop Italia).
1467
+
1468
+ * lib/alexandria/book_providers.rb,
1469
+ schemas/alexandria.schemas:
1470
+
1471
+ Follow latest change.
1472
+
1473
+ 2005-04-05 Laurent Sansonetti <lrz@gnome.org>
1474
+
1475
+ * data/alexandria/glade/book_properties_dialog.glade,
1476
+ data/alexandria/glade/new_book_dialog.glade,
1477
+ data/alexandria/glade/preferences_dialog.glade,
1478
+ lib/alexandria/ui/book_properties_dialog.rb,
1479
+ lib/alexandria/ui/main_app.rb,
1480
+ lib/alexandria/ui/new_book_dialog.rb,
1481
+ lib/alexandria/ui/new_book_dialog_manual.rb,
1482
+ lib/alexandria/ui/preferences_dialog.rb:
1483
+
1484
+ Added an Help button in the Add Book, Add Book Manual, Book Properties and
1485
+ Preferences dialogs that is connected to the Docbook manual.
1486
+
1487
+ 2005-04-04 Laurent Sansonetti <lrz@gnome.org>
1488
+
1489
+ * doc/*:
1490
+
1491
+ - Moved the docbook file and the figures in data/gnome/help/alexandria/C ;
1492
+ - Moved the OMF file in data/omf ;
1493
+ - This directory is now empty.
1494
+
1495
+ * data/omf/alexandria/pre-setup.rb,
1496
+ data/omf/alexandria/post-install.rb:
1497
+
1498
+ Generates and installs the OMF file.
1499
+
1500
+ * post-clean.rb:
1501
+
1502
+ Removes the generated OMF file.
1503
+
1504
+ * lib/alexandria/pre-setup.rb:
1505
+
1506
+ Writes the real data dir.
1507
+
1508
+ * lib/alexandria/ui.rb:
1509
+
1510
+ Setups the GNOME application to use the data dir determined at the
1511
+ install.
1512
+
1513
+ * lib/alexandria/ui/main_app.rb,
1514
+ data/alexandria/ui/menus.xml:
1515
+
1516
+ Integrated the help manual in the main menu.
1517
+
1518
+ 2005-04-03 Pascal Terjan <pterjan@linuxfr.org>
1519
+
1520
+ * lib/alexandria/book_providers/proxis.rb:
1521
+
1522
+ Workaround proxis returning all editions of a book in ISBN search
1523
+
1524
+ 2005-04-03 Laurent Sansonetti <lrz@gnome.org>
1525
+
1526
+ * lib/alexandria/ui/alert_dialog.rb:
1527
+
1528
+ Make the labels selectable.
1529
+
1530
+ * lib/alexandria/library.rb:
1531
+
1532
+ The class is now observable, and sends notifications when books are
1533
+ added, updated or removed from the library.
1534
+
1535
+ * lib/alexandria/ui/completion_models.rb,
1536
+ lib/alexandria/ui/main_app.rb:
1537
+
1538
+ Observes the libraries and update the models accordingly.
1539
+
1540
+ 2005-04-01 Laurent Sansonetti <lrz@gnome.org>
1541
+
1542
+ Introduced completion in the manual add book and book properties dialogs.
1543
+ The design is not yet finished, and is susceptible to change.
1544
+
1545
+ * lib/alexandria/ui/completion_models.rb:
1546
+
1547
+ Added.
1548
+
1549
+ * lib/alexandria/ui.rb,
1550
+ lib/alexandria/ui/book_properties_dialog_base.rb,
1551
+ lib/alexandria/ui/main_app.rb:
1552
+
1553
+ - Follow latest change ;
1554
+ - Tweaked the model loading code to make it faster ;
1555
+ - Auto-resize the books list view columns.
1556
+
1557
+ === Alexandria 0.5.1 ===
1558
+
1559
+ 2005-03-27 Laurent Sansonetti <lrz@gnome.org>
1560
+
1561
+ * NEWS,
1562
+ README:
1563
+
1564
+ Updated for 0.5.1.
1565
+
1566
+ * tests/test_provider.rb:
1567
+
1568
+ Added a test for the Amadeus Buch provider.
1569
+
1570
+ 2005-03-26 Laurent Sansonetti <lrz@gnome.org>
1571
+
1572
+ * TODO:
1573
+
1574
+ Documentation is done!
1575
+
1576
+ * AUTHORS,
1577
+ lib/alexandria.rb:
1578
+
1579
+ Added Liam.
1580
+
1581
+ 2005-03-25 Laurent Sansonetti <lrz@gnome.org>
1582
+
1583
+ * data/alexandria/glade/preferences_dialog.glade:
1584
+
1585
+ - Use alternating colours for rows in the providers list ;
1586
+ - Make the dialog resizable.
1587
+
1588
+ * lib/alexandria/library.rb:
1589
+
1590
+ Preserves backward compatibility when saving a book by resetting the
1591
+ saved_ident property if it does not exist.
1592
+
1593
+ 2005-03-25 Dafydd Harries <daf@muse.19inch.net>
1594
+
1595
+ * lib/alexandria/ui/export_dialog.rb:
1596
+
1597
+ Say "already exists" rather than "is already existing".
1598
+
1599
+ 2005-03-25 Dafydd Harries <daf@muse.19inch.net>
1600
+
1601
+ * data/alexandria/glade/preferences_dialog.glade:
1602
+
1603
+ Rename the "List Columns" tab to "List View".
1604
+
1605
+ 2005-03-25 Dafydd Harries <daf@muse.19inch.net>
1606
+
1607
+ * data/alexandria/glade/new_book_dialog.glade:
1608
+
1609
+ Use alternating colours for rows in the search results list.
1610
+
1611
+ 2005-03-24 Laurent Sansonetti <lrz@gnome.org>
1612
+
1613
+ * lib/alexandria/ui/new_book_dialog.rb:
1614
+
1615
+ Remembers (within the live scope of the application though) the latest
1616
+ selected criterion in the Add Book dialog and automatically switches to
1617
+ it when the dialog is shown.
1618
+
1619
+ 2005-03-23 Laurent Sansonetti <lrz@gnome.org>
1620
+
1621
+ * lib/alexandria/book_providers/amazon.rb:
1622
+
1623
+ Caches in ~/.alexandria/.amazon_cache/ instead of /tmp/cache.
1624
+
1625
+ 2005-03-22 Laurent Sansonetti <lrz@gnome.org>
1626
+
1627
+ * lib/alexandria/library.rb:
1628
+
1629
+ Really ignores hidden directories in ~/.alexandria/.
1630
+
1631
+ * lib/alexandria/web_themes.rb:
1632
+
1633
+ Allows user-specific themes in ~/.alexandria/.web-themes/.
1634
+
1635
+ * AUTHORS,
1636
+ lib/alexandria.rb:
1637
+
1638
+ Added Rene.
1639
+
1640
+ 2005-03-22 Rene Samselnig <sandman@sdm-net.org>
1641
+
1642
+ * lib/alexandria/book_providers/amadeus.rb:
1643
+
1644
+ Added amadeusbuch.at provider.
1645
+
1646
+ * lib/alexandria/book_providers.rb,
1647
+ schemas/alexandria.schemas:
1648
+
1649
+ Follow latest change.
1650
+
1651
+ 2005-03-22 Dafydd Harries <daf@muse.19inch.net>
1652
+
1653
+ * po/genpot.sh:
1654
+
1655
+ Add a comment mentioning that the script needs to be run inside the
1656
+ po/ directory.
1657
+
1658
+ 2005-03-22 Dafydd Harries <daf@muse.19inch.net>
1659
+
1660
+ * README:
1661
+
1662
+ Update with the URL of the newly created intltool webpage.
1663
+
1664
+ 2005-03-21 Laurent Sansonetti <lrz@gnome.org>
1665
+
1666
+ * lib/alexandria/book_providers.rb:
1667
+
1668
+ Be more intelligent when building the list of providers by taking into
1669
+ account nil values from the GConf schema.
1670
+
1671
+ * data/alexandria/COPYING:
1672
+
1673
+ Removed.
1674
+
1675
+ * lib/alexandria/ui/about_dialog.rb:
1676
+
1677
+ Do not display the whole GPL text, just the header.
1678
+
1679
+ 2005-03-20 Laurent Sansonetti <lrz@gnome.org>
1680
+
1681
+ * lib/alexandria/library.rb (Library.move):
1682
+
1683
+ Removes books with the same ident before adding them in the array.
1684
+
1685
+ * lib/alexandria/ui/main_app.rb:
1686
+
1687
+ - Display an confirmation message when trying to move a book into a
1688
+ library that already has a book with the same ident ;
1689
+ - Properly setup the moves action after an import process.
1690
+
1691
+ 2005-03-19 Mirko Maischberger <mirko@lilik.it>
1692
+
1693
+ * lib/alexandria.rb: Added myself as italian translator.
1694
+
1695
+ 2005-03-19 Laurent Sansonetti <lrz@gnome.org>
1696
+
1697
+ * lib/alexandria/ui/book_properties_dialog.rb:
1698
+
1699
+ - Do not save the book properties on destroy ;
1700
+ - Display an error message when trying to set an EAN/ISBN that is already
1701
+ used by another book in the same library ;
1702
+ - Do not set the saved ident of the book here, let Library#save do it
1703
+ in order to not duplicate entries.
1704
+
1705
+ * lib/alexandria/ui/new_book_dialog_manual.rb:
1706
+
1707
+ - Forgot to mark some translatable strings ;
1708
+ - Display an error message when trying to add a book with an EAN/ISBN
1709
+ that is already used by another book in the same library.
1710
+
1711
+ * .cvsignore:
1712
+
1713
+ Added alexandria.desktop and alexandria.desktop.in.h.
1714
+
1715
+ 2005-03-19 Dafydd Harries <daf@muse.19inch.net>
1716
+
1717
+ * alexandria.desktop.in:
1718
+
1719
+ Add an Icon field.
1720
+
1721
+ 2005-03-19 Dafydd Harries <daf@muse.19inch.net>
1722
+
1723
+ * genpot.sh:
1724
+
1725
+ - Remove reference to removed bin/alexandria.
1726
+
1727
+ - Change reference to alexandria.desktop.in to point to .., so that
1728
+ the script works when run in the po/ directory.
1729
+
1730
+ - Add a comment explaining that the script should be run from the po/
1731
+ directory.
1732
+
1733
+ 2005-03-19 Dafydd Harries <daf@muse.19inch.net>
1734
+
1735
+ * post-clean.rb:
1736
+
1737
+ Add this script in order to remove various automatically generated
1738
+ files.
1739
+
1740
+ 2005-03-19 Dafydd Harries <daf@muse.19inch.net>
1741
+
1742
+ Implement i18n of the .desktop file using intltool.
1743
+
1744
+ * alexandria.desktop:
1745
+
1746
+ Removed, as it is now automatically generated.
1747
+
1748
+ * alexandria.desktop.in:
1749
+
1750
+ This is the old .desktop file, with some fields marked for
1751
+ translation.
1752
+
1753
+ * po/genpot.sh:
1754
+
1755
+ Call intltool-extract to generate alexandria.desktop.in.h, and pass
1756
+ that file to xgettext.
1757
+
1758
+ * pre-setup.rb:
1759
+
1760
+ Call intltool-merge to generate alexandria.desktop with translations.
1761
+
1762
+ * README:
1763
+
1764
+ Mention the dependency on intltool.
1765
+
1766
+ 2005-03-19 Dafydd Harries <daf@muse.19inch.net>
1767
+
1768
+ * ChangeLog,
1769
+ NEWS:
1770
+
1771
+ Convert to UTF-8.
1772
+
1773
+ 2005-03-14 Laurent Sansonetti <lrz@gnome.org>
1774
+
1775
+ * lib/alexandria/ui/new_book_dialog_manual.rb:
1776
+
1777
+ Manually added books were not automatically added in the library in memory.
1778
+
1779
+ 2005-03-13 Laurent Sansonetti <lrz@gnome.org>
1780
+
1781
+ * lib/alexandria/ui/main_app.rb:
1782
+
1783
+ Pack the cover as non-expandable in the list view.
1784
+
1785
+ === Alexandria 0.5.0 ===
1786
+
1787
+ 2005-03-13 Laurent Sansonetti <lrz@gnome.org>
1788
+
1789
+ * README,
1790
+ NEWS:
1791
+
1792
+ Final tweak for 0.5.0.
1793
+
1794
+ 2005-03-12 Laurent Sansonetti <lrz@gnome.org>
1795
+
1796
+ * data/alexandria/icons/alexandria.png,
1797
+ data/alexandria/icons/alexandria_small.png:
1798
+
1799
+ New icon, by Stefanie Dijoux.
1800
+
1801
+ * AUTHORS,
1802
+ lib/alexandria.rb:
1803
+
1804
+ Added Stefanie.
1805
+
1806
+ 2005-03-12 Pascal Terjan <pterjan@linuxfr.org>
1807
+
1808
+ * lib/alexandria/book_providers/proxis.rb:
1809
+
1810
+ Fixed to work again.
1811
+
1812
+ 2005-03-12 Laurent Sansonetti <lrz@gnome.org>
1813
+
1814
+ * lib/alexandria/book_providers/bn.rb:
1815
+
1816
+ Fixed the regexp once again.
1817
+
1818
+ 2005-03-11 Laurent Sansonetti <lrz@gnome.org>
1819
+
1820
+ * NEWS:
1821
+
1822
+ Mentions the amazon.[fr|ca] support.
1823
+
1824
+ 2005-03-09 Laurent Sansonetti <lrz@gnome.org>
1825
+
1826
+ * AUTHORS,
1827
+ lib/alexandria.rb:
1828
+
1829
+ Added David.
1830
+
1831
+ * README,
1832
+ NEWS:
1833
+
1834
+ Prepared for the upcoming 0.5.0.
1835
+
1836
+ 2005-03-07 Laurent Sansonetti <lrz@gnome.org>
1837
+
1838
+ * data/alexandria/glade/book_properties_dialog.glade,
1839
+ data/alexandria/glade/main_app.glade,
1840
+ data/alexandria/glade/new_book_dialog.glade:
1841
+
1842
+ Marked '*' and 'Alexandria' as not translable.
1843
+
1844
+ * lib/alexandria/ui/main_app.rb.
1845
+ lib/alexandria/ui/new_book_dialog.rb:
1846
+
1847
+ Fixed wording (thanks to David Weinehall).
1848
+
1849
+ 2005-03-06 Laurent Sansonetti <lrz@gnome.org>
1850
+
1851
+ * lib/alexandria/ui/main_app.rb,
1852
+ lib/alexandria/ui/book_properties_dialog_base.rb,
1853
+ lib/alexandria/book_providers.rb,
1854
+ lib/alexandria/ui/export_dialog.rb:
1855
+
1856
+ Fixed wording (thanks to David Weinehall).
1857
+
1858
+ 2005-03-05 Laurent Sansonetti <lrz@gnome.org>
1859
+
1860
+ * lib/alexandria/ui/main_app.rb:
1861
+
1862
+ - Restored the possibility to filter books by notes ;
1863
+ - Filtering text field is more robust ;
1864
+ - Make sure we do not select a library before having setup the moves
1865
+ action at the beginning.
1866
+
1867
+ 2005-03-03 Laurent Sansonetti <lrz@gnome.org>
1868
+
1869
+ * lib/alexandria/book_providers/mcu.rb:
1870
+
1871
+ Mark the name of the provider as translatable.
1872
+
1873
+ 2005-03-02 Laurent Sansonetti <lrz@gnome.org>
1874
+
1875
+ * lib/alexandria/ui/main_app.rb:
1876
+
1877
+ Do not add the books twice in the library.
1878
+
1879
+ 2005-03-01 Laurent Sansonetti <lrz@gnome.org>
1880
+
1881
+ * lib/alexandria/book_providers/amazon.rb:
1882
+
1883
+ Setup the online information url according to the selected locale.
1884
+
1885
+ 2005-02-28 Constantine Evans <cevans@costinet.org>
1886
+
1887
+ * lib/alexandria/book_providers/amazon.rb:
1888
+
1889
+ Added workaround for an Amazon US encoding bug. See comments in code
1890
+ for details.
1891
+
1892
+ 2005-02-28 Laurent Sansonetti <lrz@gnome.org>
1893
+
1894
+ * lib/alexandria/library.rb:
1895
+
1896
+ Specialized the ISBN validation exceptions.
1897
+
1898
+ * lib/alexandria/ui/book_properties_dialog.rb,
1899
+ lib/alexandria/ui/new_book_dialog.rb,
1900
+ lib/alexandria/ui/new_book_dialog_manual.rb:
1901
+
1902
+ Follow latest change.
1903
+
1904
+ * lib/alexandria/ui/new_book_dialog.rb:
1905
+
1906
+ Fixes #974 (when a book returned by a search by title/authors/keyword
1907
+ contains an invalid ISBN, propose the user to either add the book with a
1908
+ blank ISBN or cancel the add).
1909
+
1910
+ 2005-02-25 Laurent Sansonetti <lrz@gnome.org>
1911
+
1912
+ * lib/alexandria/ui/main_app.rb,
1913
+ data/alexandria/glade/main_app.glade:
1914
+
1915
+ - Filter the model with a Gtk::TreeModelFilter ;
1916
+ - Each view has its own Gtk::TreeModelSort ;
1917
+ - Freeze/unfreeze the icon view each time the model changes ;
1918
+ - Dispatch the library load in a separate thread (code is commented).
1919
+
1920
+ 2005-02-24 Laurent Sansonetti <lrz@gnome.org>
1921
+
1922
+ * lib/alexandria/ui/main_app.rb:
1923
+
1924
+ More fixes.
1925
+
1926
+ 2005-02-23 Laurent Sansonetti <lrz@gnome.org>
1927
+
1928
+ * lib/alexandria/library.rb,
1929
+ lib/alexandria/ui/main_app.rb:
1930
+
1931
+ Fixes some defects introduced by the view model change.
1932
+
1933
+ 2005-02-22 Laurent Sansonetti <lrz@gnome.org>
1934
+
1935
+ * lib/alexandria/ui/main_app.rb:
1936
+
1937
+ Changed all references to book.isbn to retrieve iterators model to
1938
+ book.ident.
1939
+
1940
+ * AUTHORS,
1941
+ lib/alexandria.rb:
1942
+
1943
+ Added Constantine.
1944
+
1945
+ 2005-02-22 Constantine Evans <cevans@costinet.org>
1946
+
1947
+ * lib/alexandria/book.rb
1948
+
1949
+ Added ident and saved_ident to hold isbn or hash used for filenames.
1950
+
1951
+ * lib/alexandria/library.rb
1952
+
1953
+ - Changed save() to use ident instead of isbn. Note that giving a new_isbn
1954
+ to save is not necessary now - the Book class tracks ident changes.
1955
+
1956
+ - Changed all references to book.isbn for filenames to book.ident.
1957
+
1958
+ - Changed yaml() to allow String and Book arguments like cover().
1959
+
1960
+ * lib/alexandria/ui/book_properties_dialog.rb,
1961
+ lib/alexandria/ui/new_book_dialog_manual.rb
1962
+
1963
+ Changed to use new filename system and allow blank ISBN.
1964
+
1965
+ 2005-02-22 Laurent Sansonetti <lrz@gnome.org>
1966
+
1967
+ * data/alexandria/COPYING:
1968
+
1969
+ Added.
1970
+
1971
+ * data/alexandria/glade/main_app.glade,
1972
+ lib/alexandria/preferences.rb,
1973
+ lib/alexandria/ui/about_dialog.rb,
1974
+ lib/alexandria/ui/book_properties_dialog.rb,
1975
+ lib/alexandria/ui/main_app.rb:
1976
+
1977
+ - use Gtk::AboutDialog instead of Gnome::About ;
1978
+ - use Gtk::IconView instead of Gnome::IconList ;
1979
+ - improved performances.
1980
+
1981
+ 2005-02-18 Laurent Sansonetti <lrz@gnome.org>
1982
+
1983
+ * tests/test_providers.rb:
1984
+
1985
+ Added.
1986
+
1987
+ * tests/test.rb:
1988
+
1989
+ Follow latest change.
1990
+
1991
+ * lib/alexandria/preferences.rb:
1992
+
1993
+ Fixed deprecated call to GConf::Client.new.
1994
+
1995
+ * AUTHORS,
1996
+ lib/alexandria.rb:
1997
+
1998
+ Added Kevin and Javier.
1999
+
2000
+ 2005-02-18 Javier Fernández-Sanguino Peña <jfs@debian.org>
2001
+
2002
+ * lib/alexandria/book_providers/mcu.rb:
2003
+
2004
+ Added.
2005
+
2006
+ * lib/alexandria/book_providers.rb,
2007
+ schemas/alexandria.schemas:
2008
+
2009
+ Follow previous change.
2010
+
2011
+ 2005-02-18 Kevin Schultz <schultkl@ieee.org>
2012
+
2013
+ * lib/alexandria/book_providers/bn.rb:
2014
+
2015
+ Fixed BN.com query regexes.
2016
+
2017
+ 2005-02-18 Laurent Sansonetti <lrz@gnome.org>
2018
+
2019
+ * lib/alexandria/ui/main_app.rb,
2020
+ data/alexandria/glade/main_app.glade,
2021
+ data/alexandria/ui/popups.xml:
2022
+
2023
+ Added a popup menu for the library list.
2024
+
2025
+ 2005-02-10 Dafydd Harries <daf@muse.19inch.net>
2026
+
2027
+ * alexandria.desktop:
2028
+
2029
+ Contributed by Hanna Wallach.
2030
+
2031
+ 2005-01-24 Dafydd Harries <daf@muse.19inch.net>
2032
+
2033
+ * lib/alexandria/library.rb:
2034
+
2035
+ Fix tracker bug #1026, where EAN numbers with a checksum of 10 were
2036
+ incorrectly marked as invalid.
2037
+
2038
+ * test/test_isbn.rb:
2039
+
2040
+ Add a regression test for bug #1026.
2041
+
2042
+ 2005-01-20 Laurent Sansonetti <lrz@gnome.org>
2043
+
2044
+ * Updated all copyrights to 2005 (except .po files).
2045
+
2046
+ 2005-01-20 Zachary Landau <kapheine@hypa.net>
2047
+
2048
+ * CUECAT_SUPPORT:
2049
+
2050
+ Added.
2051
+
2052
+ 2005-01-19 Laurent Sansonetti <lrz@gnome.org>
2053
+
2054
+ * data/alexandria/glade/book_properties_dialog.glade,
2055
+ lib/alexandria/ui/book_properties_dialog_base.rb:
2056
+
2057
+ - Added two additional event boxes to control the rating, one to reset
2058
+ the rating (0) and one to set it to the highest value (5) ;
2059
+ - Display "One day" when the loaning date is yesterday.
2060
+
2061
+ * lib/alexandria/ui/main_app.rb:
2062
+
2063
+ When deleting more than one books, display a single alert dialog instead
2064
+ of an alert dialog for each book.
2065
+
2066
+ * lib/alexandria/book_providers.rb:
2067
+
2068
+ - Catchs the SocketError exception when calling providers, and returns
2069
+ an appropriate message ;
2070
+ - Fixed indentation.
2071
+
2072
+ * lib/alexandria/library.rb:
2073
+
2074
+ - In Library.load, mkdir the directory if it does not already exist,
2075
+ outside of the Dir.chdir block (to avoid nested blocks within threads) ;
2076
+ - Fixed indentation.
2077
+
2078
+ * lib/alexandria/ui/export_dialog.rb:
2079
+
2080
+ Fixed a wording bug plus a GTK table attachment bug.
2081
+
2082
+ * lib/alexandria/import_library.rb,
2083
+ lib/alexandria/ui/import_dialog.rb:
2084
+
2085
+ - The import dialog now displays the progress of the operation, and
2086
+ throws alert boxes when an error occured in the meantime ;
2087
+ - Fixed some things.
2088
+
2089
+ * lib/alexandria/execution_queue.rb:
2090
+
2091
+ Added.
2092
+
2093
+ * lib/alexandria.rb:
2094
+
2095
+ Follows previous change.
2096
+
2097
+ * README:
2098
+
2099
+ Removed the reference to 0.4.x for the bn.com upgrading note.
2100
+
2101
+ 2005-01-13 Laurent Sansonetti <lrz@gnome.org>
2102
+
2103
+ * lib/alexandria/export_library.rb,
2104
+ lib/alexandria/import_library.rb:
2105
+
2106
+ Added.
2107
+
2108
+ * lib/alexandria/library.rb:
2109
+
2110
+ Splitted.
2111
+
2112
+ * lib/alexandria.rb,
2113
+ lib/alexandria/ui/export_dialog.rb,
2114
+ lib/alexandria/ui/import_dialog.rb:
2115
+
2116
+ Follow changes.
2117
+
2118
+ 2005-01-10 Laurent Sansonetti <lrz@gnome.org>
2119
+
2120
+ * data/alexandria/web-themes/clean/clean.css,
2121
+ data/alexandria/web-themes/clean/preview.jpg,
2122
+ lib/alexandria/web_themes.rb:
2123
+
2124
+ Added.
2125
+
2126
+ * lib/alexandria.rb,
2127
+ lib/alexandria/library.rb,
2128
+ lib/alexandria/ui/export_dialog.rb:
2129
+
2130
+ Introduced XHTML export.
2131
+
2132
+ * lib/alexandria/ui/alert_dialog.rb:
2133
+
2134
+ Fixed indentation.
2135
+
2136
+ 2005-01-07 Laurent Sansonetti <lrz@gnome.org>
2137
+
2138
+ * lib/alexandria/ui/preferences_dialog.rb:
2139
+
2140
+ - Disable the Setup button if the selected provider does not have any
2141
+ preferences to setup, instead of displaying a dialog (HIG) ;
2142
+ - Fixed indentation.
2143
+
2144
+ 2005-01-01 Dafydd Harries <daf@muse.19inch.net>
2145
+
2146
+ * lib/alexandria/library.rb:
2147
+
2148
+ Fix a bug where importing an ISBN list file would cause a crash when
2149
+ an ISBN in the list did not have a cover image.
2150
+
2151
+ 2004-12-15 Laurent Sansonetti <lrz@gnome.org>
2152
+
2153
+ * AUTHORS,
2154
+ lib/alexandria.rb:
2155
+
2156
+ Added Takayuki.
2157
+
2158
+ 2004-12-15 Takayuki Kusano <AE5T-KSN@asahi-net.or.jp>
2159
+
2160
+ * lib/alexandria/library.rb:
2161
+
2162
+ Improved the ISBN-list import code to support EAN.
2163
+
2164
+ 2004-12-15 Laurent Sansonetti <lrz@gnome.org>
2165
+
2166
+ * lib/alexandria/ui/import_dialog.rb,
2167
+ lib/alexandria/ui/export_dialog.rb,
2168
+ lib/alexandria/library.rb:
2169
+
2170
+ - Changed the Tellico archive file extention from 'bc' to 'tc' ;
2171
+ - In the export dialog, in case the user tries to use a library name
2172
+ that is already used, grab the focus on the library name text field
2173
+ after the alert message.
2174
+
2175
+ 2004-12-14 Laurent Sansonetti <lrz@gnome.org>
2176
+
2177
+ * TODO:
2178
+
2179
+ Removed points that have been implemented.
2180
+
2181
+ * data/alexandria/glade/book_properties_dialog.glade,
2182
+ lib/alexandria/book.rb,
2183
+ lib/alexandria/ui/book_properties_dialog.rb,
2184
+ lib/alexandria/ui/book_properties_dialog_base.rb,
2185
+ lib/alexandria/ui/new_book_dialog_manual.rb:
2186
+
2187
+ Introduced very basic loaning support (is the book borrowed?,
2188
+ who borrowed it? and when?).
2189
+
2190
+ 2004-11-08 Dafydd Harries <daf@muse.19inch.net>
2191
+
2192
+ * post-install.rb:
2193
+
2194
+ Don't do anything if ENV['GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL'] is
2195
+ set. This makes it easier to build the package without gconftool-2
2196
+ being installed.
2197
+
2198
+ 2004-11-05 Dafydd Harries <daf@muse.19inch.net>
2199
+
2200
+ * pre-setup.rb:
2201
+
2202
+ Raise an exception if msgfmt failed.
2203
+
2204
+ === Alexandria 0.4.0 ===
2205
+
2206
+ 2004-11-05 Laurent Sansonetti <lrz@gnome.org>
2207
+
2208
+ * NEWS,
2209
+ README:
2210
+
2211
+ Updated for 0.4.0.
2212
+
2213
+ * lib/alexandria/library.rb:
2214
+
2215
+ - Tellico Import: check for either 'bookcase.xml' or 'tellico.xml'
2216
+ as the XML file ;
2217
+ - Tellico Import: check for either 'bookcase' or 'tellico' as the
2218
+ root element inside the XML ;
2219
+ - Tellico Import: check for either 2 or 5 as the collection type ;
2220
+ - ONIX and Tellico Export: rename the .cover extention either to
2221
+ 'jpg' or 'gif' according to the file type.
2222
+ - Tellico Export: remove the 'www' part of the namespace address.
2223
+
2224
+ 2004-11-02 Laurent Sansonetti <lrz@gnome.org>
2225
+
2226
+ * lib/alexandria/library.rb:
2227
+
2228
+ - Added an experimental Tellico importer ;
2229
+ - Refactored the #save_cover method.
2230
+
2231
+ * lib/alexandria/ui/import_dialog.rb:
2232
+
2233
+ - Fixed the parent reference of alert dialogs ;
2234
+ - Fixed a crash when pressing the escape key.
2235
+
2236
+ * lib/alexandria.rb:
2237
+
2238
+ Fixed a crash when the 'http_proxy' environment variable was not set.
2239
+
2240
+ 2004-11-01 Laurent Sansonetti <lrz@gnome.org>
2241
+
2242
+ * lib/alexandria/ui/import_dialog.rb:
2243
+
2244
+ Added.
2245
+
2246
+ * lib/alexandria.rb:
2247
+
2248
+ Erase the 'http_proxy' environment variable if its content is invalid.
2249
+
2250
+ * lib/alexandria/library.rb:
2251
+
2252
+ - Refactored (moved the save cover code here);
2253
+ - Introduced an ISBN-list import and export ;
2254
+
2255
+ * lib/alexandria/ui.rb:
2256
+
2257
+ Requires the import_dialog.rb file.
2258
+
2259
+ * lib/alexandria/ui/export_dialog.rb:
2260
+
2261
+ - Fixed the default button (text = "Export", no icon) ;
2262
+ - Commented the XHTML combo item ;
2263
+ - Added an ISBN-list combo item.
2264
+
2265
+ * lib/alexandria/ui/main_app.rb:
2266
+
2267
+ - Refactored ;
2268
+ - Follows the import dialog.
2269
+
2270
+ * lib/alexandria/ui/new_book_dialog.rb:
2271
+
2272
+ Follows the library.rb refactoring.
2273
+
2274
+ 2004-10-28 Laurent Sansonetti <lrz@gnome.org>
2275
+
2276
+ * lib/alexandria/ui/main_app.rb:
2277
+
2278
+ Update the entries of the Move menu accordingly, when a library is
2279
+ created, renamed, or removed.
2280
+
2281
+ 2004-10-12 Laurent Sansonetti <lrz@gnome.org>
2282
+
2283
+ Features the manual addition of books and the
2284
+ move of books within libraries.
2285
+
2286
+ * data/alexandria/ui/menus.xml,
2287
+ data/alexandria/ui/popups.xml:
2288
+
2289
+ Added AddBookManual and Move tags.
2290
+
2291
+ * lib/alexandria.rb:
2292
+
2293
+ - Added more authors/translators ;
2294
+ - Removed the documenters tab.
2295
+
2296
+ * data/alexandria/glade/info_book_dialog.glade,
2297
+ lib/alexandria/ui/info_book_dialog.rb:
2298
+
2299
+ Removed.
2300
+
2301
+ * lib/alexandria/ui/book_properties_dialog.rb,
2302
+ lib/alexandria/ui/book_properties_dialog_base.rb,
2303
+ lib/alexandria/ui/new_book_dialog_manual.rb,
2304
+ data/alexandria/glade/book_properties_dialog.glade:
2305
+
2306
+ Added.
2307
+
2308
+ * lib/alexandria/library.rb:
2309
+
2310
+ - Introduced Library.move ;
2311
+ - Improved Library#save(book), to rename the .yaml
2312
+ file if the ISBN has changed.
2313
+
2314
+ * lib/alexandria/ui.rb:
2315
+
2316
+ Requires the new files.
2317
+
2318
+ * lib/alexandria/ui/main_app.rb:
2319
+
2320
+ - Follow the changes related to the manual addition of
2321
+ books and the move of books;
2322
+ - Clean up whitespace/indentation ;
2323
+ - When renaming a library in the sidepane, do not try
2324
+ to check if a library already exists with the new
2325
+ name if the new name corresponds to the name of the
2326
+ selected library.
2327
+
2328
+ 2004-10-23 Dafydd Harries <daf@muse.19inch.net>
2329
+
2330
+ * lib/alexandria/library.rb:
2331
+
2332
+ Clean up whitespace/indentation.
2333
+
2334
+ * test,
2335
+ * test/test.rb,
2336
+ * test/test_isbn.rb:
2337
+
2338
+ Initial set of unit tests, dealing with ISBNs.
2339
+
2340
+ 2004-10-12 Laurent Sansonetti <lrz@gnome.org>
2341
+
2342
+ * lib/alexandria/ui/main_app.rb:
2343
+
2344
+ Raises an error dialog when trying to rename a library to an empty
2345
+ name, or when the name is already used by another library.
2346
+
2347
+ 2004-10-12 Laurent Sansonetti <lrz@gnome.org>
2348
+
2349
+ General reformat of the code.
2350
+
2351
+ * data/alexandria/glade/info_book_dialog.glade,
2352
+ lib/alexandria/library.rb,
2353
+ lib/alexandria/ui/info_book_dialog.rb:
2354
+
2355
+ - Now possible to change the cover of a book via the Properties dialog ;
2356
+ - The data model has been altered: the small covers are now automatically
2357
+ generated from the medium covers, so they do not need to be downloaded
2358
+ anymore, and the extension of the medium cover is ".cover".
2359
+
2360
+ * lib/alexandria/book_providers/amazon.rb,
2361
+ lib/alexandria/book_providers/bn.rb,
2362
+ lib/alexandria/book_providers/proxis.rb,
2363
+ lib/alexandria/ui/icons.rb,
2364
+ lib/alexandria/ui/main_app.rb,
2365
+ lib/alexandria/ui/new_book_dialog.rb:
2366
+
2367
+ Follows data model changes.
2368
+
2369
+ * lib/alexandria/ui/export_dialog.rb:
2370
+
2371
+ Changed the ONIX archive extension (xml.tbz2 -> onix.tbz2).
2372
+
2373
+ * TODO:
2374
+
2375
+ Refresh.
2376
+
2377
+ 2004-09-30 Laurent Sansonetti <lrz@gnome.org>
2378
+
2379
+ * AUTHORS:
2380
+
2381
+ - Reformatted ;
2382
+ - Added Robby.
2383
+
2384
+ * TODO:
2385
+
2386
+ Refresh.
2387
+
2388
+ 2004-10-01 Robby Stephenson <robby@periapsis.org>
2389
+
2390
+ * lib/alexandria/library.rb,
2391
+ lib/alexandria/ui/export_dialog.rb:
2392
+
2393
+ Introduced Tellico (ex. Bookcase) .zip archive export.
2394
+
2395
+ 2004-09-30 Laurent Sansonetti <lrz@gnome.org>
2396
+
2397
+ * data/alexandria/glade/info_book_dialog.glade,
2398
+ data/alexandria/glade/preferences_dialog.glade,
2399
+ lib/alexandria/ui/main_app.rb:
2400
+
2401
+ s/Edition/Binding.
2402
+
2403
+ * data/alexandria/glade/info_book_dialog.glade,
2404
+ lib/alexandria/book.rb,
2405
+ lib/alexandria/ui/info_book_dialog.rb,
2406
+ lib/alexandria/ui/main_app.rb:
2407
+
2408
+ The book properties dialog has been modified to allow the
2409
+ edition of all fields (title, authors, etc...). The cover
2410
+ still needs some code to be changed though.
2411
+
2412
+ * lib/alexandria/ui/export_dialog.rb:
2413
+
2414
+ Fixed the ONIX archive extention to .tbz2 instead of tgz.
2415
+
2416
+ * lib/alexandria/book_providers.rb:
2417
+
2418
+ Splitted a translatable string.
2419
+
2420
+ 2004-09-19 Laurent Sansonetti <lrz@gnome.org>
2421
+
2422
+ * lib/alexandria/ui/main_app.rb:
2423
+
2424
+ - Show more feedback on the status bar ;
2425
+ - Added keyboard shortcuts for the Import/Export actions.
2426
+
2427
+ * lib/alexandria/ui/new_book_dialog.rb:
2428
+
2429
+ Splitted some translatable strings.
2430
+
2431
+ * lib/alexandria/library.rb (#n_rated, #n_unrated):
2432
+
2433
+ Added.
2434
+
2435
+ 2004-09-14 Laurent Sansonetti <lrz@gnome.org>
2436
+
2437
+ * lib/alexandria/library.rb,
2438
+ lib/alexandria/ui/export_dialog.rb:
2439
+
2440
+ Introduced an experimental ONIX export.
2441
+
2442
+ * lib/alexandria/ui/new_book_dialog.rb,
2443
+ data/alexandria/glade/new_book_dialog.glade:
2444
+
2445
+ - Migrated another GtkCombo to GtkComboBox ;
2446
+ - Fixed a bug introduced in the previous commit.
2447
+
2448
+ 2004-09-11 Laurent Sansonetti <lrz@gnome.org>
2449
+
2450
+ * README:
2451
+
2452
+ - Requires Ruby-GNOME2 0.10.1 ;
2453
+ - Requires Ruby-GetText 0.6.1 ;
2454
+ - Added information for the "/apps/alexandria/providers_priority" &
2455
+ Barnes and Noble provider upgrading issue.
2456
+
2457
+ * lib/alexandria/ui/main_app.rb:
2458
+
2459
+ - Fixed keyboard shortcut for "Show Sidepane" (F9) ;
2460
+ - Fixed library creation ;
2461
+ - Fixed the alignment of cell renderers in the sidepane treeview ;
2462
+ - Fixed indentation.
2463
+
2464
+ * lib/alexandria/ui/new_book_dialog.rb,
2465
+ data/alexandria/glade/new_book_dialog.glade,
2466
+ lib/alexandria/ui/preferences_dialog.rb:
2467
+
2468
+ Migrated to Gtk::ComboBox.
2469
+
2470
+ 2004-09-10 Laurent Sansonetti <lrz@gnome.org>
2471
+
2472
+ * lib/alexandria/ui/new_book_dialog.rb,
2473
+ schemas/alexandria.schemas:
2474
+
2475
+ Moved the CUECAT_DEV constant to a GConf variable.
2476
+
2477
+ 2004-09-10 Zachary P. Landau <kapheine@hypa.net>
2478
+
2479
+ * lib/alexandria/ui/new_book_dialog.rb,
2480
+ data/alexandria/glade/new_book_dialog.glade
2481
+
2482
+ Added CueCat support.
2483
+
2484
+ * data/alexandria/icons/cuecat.png,
2485
+ data/alexandria/icons/cuecat_inactive.png:
2486
+
2487
+ Added.
2488
+
2489
+ 2004-09-08 Laurent Sansonetti <lrz@gnome.org>
2490
+
2491
+ * TODO:
2492
+
2493
+ Updated.
2494
+
2495
+ * make_release.sh:
2496
+
2497
+ Improved.
2498
+
2499
+ * lib/alexandria/book_providers.rb:
2500
+
2501
+ - Fixed catching of the Timeout::Error exception ;
2502
+ - Added a $DEBUG trace before calling each provider.
2503
+
2504
+ * lib/alexandria/ui/main_app.rb:
2505
+
2506
+ Set correct border width for toolitems.
2507
+
2508
+ 2004-09-07 Laurent Sansonetti <lrz@gnome.org>
2509
+
2510
+ * data/alexandria/glade/main_app.glade:
2511
+
2512
+ Removed the toolbar, popups and menubar definitions.
2513
+
2514
+ * lib/alexandria/ui/main_app.rb:
2515
+
2516
+ Introduced GtkUIManager to handle the toolbar, popups and
2517
+ menubar.
2518
+
2519
+ * data/alexandria/ui/menus.xml,
2520
+ data/alexandria/ui/popups.xml:
2521
+
2522
+ Added.
2523
+
2524
+ 2004-08-25 Laurent Sansonetti <lrz@gnome.org>
2525
+
2526
+ * lib/alexandria/ui.rb:
2527
+
2528
+ Removed '.rb' suffixes in require statements.
2529
+
2530
+ * data/alexandria/glade/main_app.glade:
2531
+
2532
+ Added a "Online Information at" menu item in the popup
2533
+ menu of a book.
2534
+
2535
+ * lib/alexandria/ui/main_app.rb:
2536
+
2537
+ - Fills the "Online Information at" menu item ;
2538
+ - Fixed a bug when sorting by rating books that aren't rated yet ;
2539
+ - Refactored a bit.
2540
+
2541
+ * lib/alexandria/book.rb:
2542
+
2543
+ Set the default rating to 0 instead of 3.
2544
+
2545
+ * lib/alexandria/book_providers/bn.rb:
2546
+
2547
+ Added.
2548
+
2549
+ * lib/alexandria/book_providers.rb:
2550
+
2551
+ - Includes the BN provider.
2552
+ - Moved the HTTP proxy code there;
2553
+ - Introduced GenericProvider#fullname.
2554
+
2555
+ * lib/alexandria/book_providers/amazon.rb:
2556
+
2557
+ - Removed the GLib.convert call, that seems unnecessary ;
2558
+ - Follow changes in book_provider.rb.
2559
+
2560
+ * lib/alexandria/book_providers/proxis.rb,
2561
+ lib/alexandria/ui/preferences_dialog.rb:
2562
+
2563
+ Follow changes in book_provider.rb.
2564
+
2565
+ * schemas/alexandria.schemas:
2566
+
2567
+ Added BN in the providers_priority variable.
2568
+
2569
+ 2004-08-24 Laurent Sansonetti <lrz@gnome.org>
2570
+
2571
+ * data/alexandria/glade/main_app.glade:
2572
+
2573
+ Added Library/Import and Library/Export.
2574
+
2575
+ * lib/alexandria/ui/export_dialog.rb:
2576
+
2577
+ Added.
2578
+
2579
+ * lib/alexandria/book.rb:
2580
+
2581
+ Removed unnecessary require statements.
2582
+
2583
+ * lib/alexandria/library.rb:
2584
+
2585
+ Added code for the compressed XML export.
2586
+
2587
+ * lib/alexandria/ui.rb,
2588
+ lib/alexandria/ui/main_app.rb:
2589
+
2590
+ Follows Alexandria::ExportDialog.
2591
+
2592
+ 2004-08-17 Laurent Sansonetti <lrz@gnome.org>
2593
+
2594
+ * lib/alexandria/ui/main_app.rb,
2595
+ schemas/alexandria.schemas:
2596
+
2597
+ Remember if Alexandria was maximized or not, by saving that state
2598
+ in the /apps/alexandria/maximized GConf variable (#765).
2599
+
2600
+ 2004-08-04 Laurent Sansonetti <lrz@gnome.org>
2601
+
2602
+ * data/alexandria/glade/new_book_dialog.glade,
2603
+ lib/alexandria/ui/new_book_dialog.rb:
2604
+
2605
+ - Do not try to add the book if the add button is disabled ;
2606
+ - Grab the focus on the ISBN entry at the beginning (#760) ;
2607
+ - Autoselect the criterion when the user clicks on an insensitive
2608
+ widget (#761).
2609
+
2610
+ 2004-07-31 Dafydd Harries <daf@muse.19inch.net>
2611
+
2612
+ * lib/alexandria/book_providers.rb:
2613
+
2614
+ Replace "TooMuchResultsError" with "TooManyResultsError".
2615
+
2616
+ 2004-07-24 Dafydd Harries <daf@muse.19inch.net>
2617
+
2618
+ * lib/alexandria/library.rb:
2619
+
2620
+ Fix bug #752, where the ISBN checksum didn't get converted to an X
2621
+ when it was a 10.
2622
+
2623
+ 2004-07-21 Laurent Sansonetti <lrz@gnome.org>
2624
+
2625
+ * TODO:
2626
+
2627
+ Updated.
2628
+
2629
+ * lib/alexandria/book_providers/amazon.rb:
2630
+
2631
+ Squeezes extra spaces.
2632
+
2633
+ * lib/alexandria/ui/new_book_dialog.rb:
2634
+
2635
+ Appends the edition and the publisher in the search results list
2636
+ for books that have the same title and authors.
2637
+
2638
+ 2004-07-11 Laurent Sansonetti <lrz@gnome.org>
2639
+
2640
+ * data/alexandria/glade/new_book_dialog.glade:
2641
+
2642
+ Modified the ISBN text entry to allow 18 characters instead
2643
+ of 13.
2644
+
2645
+ * bin/pre-setup.rb:
2646
+
2647
+ Added. This generates bin/alexandria with a dummy #! line that
2648
+ will be replaced with the correct Ruby path by install.rb.
2649
+
2650
+ * bin/alexandria:
2651
+
2652
+ Removed.
2653
+
2654
+ * bin/.cvsignore:
2655
+
2656
+ Added. Ignores bin/alexandria since it's now a generated file.
2657
+
2658
+ === Alexandria 0.3.1 ===
2659
+
2660
+ 2004-07-10 Laurent Sansonetti <lrz@gnome.org>
2661
+
2662
+ * NEWS:
2663
+
2664
+ Updated for 0.3.1.
2665
+
2666
+ 2004-07-10 Dafydd Harries <daf@muse.19inch.net>
2667
+
2668
+ * lib/alexandria/library.rb,
2669
+ lib/alexandria/ui/new_book_dialog.rb:
2670
+
2671
+ - Proper support for EAN numbers. Also, ISBN numbers are tidied more
2672
+ consistently.
2673
+
2674
+ * lib/alexandria/ui/main_app.rb:
2675
+
2676
+ - Remove custom sorting functions as they appear not to make anything
2677
+ work better and may actually cause some problems, such as bug #698.
2678
+
2679
+ 2004-07-09 Laurent Sansonetti <lrz@gnome.org>
2680
+
2681
+ * lib/alexandria/book_providers.rb,
2682
+ lib/alexandria/book_providers/amazon.rb,
2683
+ lib/alexandria/book_providers/proxis.rb,
2684
+ lib/alexandria/ui/new_book_dialog.rb:
2685
+
2686
+ - Improved exception handling ;
2687
+ - Fixed the Amazon provider to perform another lookup using the
2688
+ next locale when the previous one gives no results.
2689
+
2690
+ 2004-07-08 Laurent Sansonetti <lrz@gnome.org>
2691
+
2692
+ * lib/alexandria/book_providers.rb:
2693
+
2694
+ Fixed the providers calling mechanism (if a provider raises an
2695
+ exception we call the next one if any, otherwise we pass the exception
2696
+ to the main app).
2697
+
2698
+ 2004-07-05 Laurent Sansonetti <lrz@gnome.org>
2699
+
2700
+ * lib/alexandria/ui/main_app.rb:
2701
+
2702
+ - Fixed a bug when trying to sort icons by rating when books didn't
2703
+ have rating yet ;
2704
+ - Fixed a bug in the sorting method (edition and publisher was
2705
+ inversed).
2706
+
2707
+ 2004-07-04 Laurent Sansonetti <lrz@gnome.org>
2708
+
2709
+ * data/alexandria/glade/new_book_dialog.glade,
2710
+ lib/alexandria/ui/new_book_dialog.rb:
2711
+
2712
+ - Removed the first label ;
2713
+ - The dialog is now resizable on search purposes.
2714
+
2715
+ * lib/alexandria/library.rb:
2716
+
2717
+ Fixed a bug when removing a book that doesn't have any cover image.
2718
+
2719
+ === Alexandria 0.3.0 ===
2720
+
2721
+ 2004-07-03 Laurent Sansonetti <lrz@gnome.org>
2722
+
2723
+ * README:
2724
+
2725
+ Updated for 0.3.0.
2726
+
2727
+ * RELEASE_CHECKLIST:
2728
+
2729
+ Added the README step.
2730
+
2731
+ 2004-06-30 Laurent Sansonetti <lrz@gnome.org>
2732
+
2733
+ * NEWS:
2734
+
2735
+ Updated for 0.3.0.
2736
+
2737
+ 2004-06-27 Laurent Sansonetti <lrz@gnome.org>
2738
+
2739
+ * RELEASE_CHECKLIST,
2740
+ make_release.sh:
2741
+
2742
+ Added.
2743
+
2744
+ * lib/alexandria.rb:
2745
+
2746
+ Includes version.rb (automatically generated).
2747
+
2748
+ * lib/alexandria/.cvsignore:
2749
+
2750
+ Ignores version.rb.
2751
+
2752
+ * lib/alexandria/pre-setup.rb:
2753
+
2754
+ Generates version.rb.
2755
+
2756
+ 2004-06-25 Laurent Sansonetti <lrz@gnome.org>
2757
+
2758
+ * README:
2759
+
2760
+ Incremented Ruby/Amazon's version (0.8.2 -> 0.8.3).
2761
+
2762
+ * lib/alexandria/preferences.rb:
2763
+
2764
+ Added code to retrieve GNOME HTTP proxy configuration.
2765
+
2766
+ * lib/alexandria/book_providers/amazon.rb,
2767
+ lib/alexandria/book_providers/proxis.rb:
2768
+
2769
+ Pass HTTP connections to the proxy defined in the GNOME configuration
2770
+ if exists.
2771
+
2772
+ 2004-06-23 Laurent Sansonetti <lrz@gnome.org>
2773
+
2774
+ * data/alexandria/glade/preferences_dialog.glade,
2775
+ lib/alexandria/ui/preferences_dialog.rb:
2776
+
2777
+ Implemented "up" and "down" buttons in the providers list.
2778
+
2779
+ * schemas/alexandria.schemas:
2780
+
2781
+ Added the "providers_priority" variable.
2782
+
2783
+ * lib/alexandria/book_providers.rb,
2784
+ lib/alexandria/book_providers/amazon.rb,
2785
+ lib/alexandria/book_providers/proxis.rb:
2786
+
2787
+ - Introduced GenericProviders, the base class for all providers ;
2788
+ - Introduced providers priority.
2789
+
2790
+ 2004-06-22 Pascal Terjan <pterjan@linuxfr.org>
2791
+
2792
+ * lib/alexandria/book_providers/proxis.rb:
2793
+
2794
+ - Moved book creation to parse_book ;
2795
+ - Added a preference for the language ;
2796
+ - Encode search criterion.
2797
+
2798
+ 2004-06-21 Laurent Sansonetti <lrz@gnome.org>
2799
+
2800
+ * lib/alexandria/book.rb:
2801
+
2802
+ Splitted.
2803
+
2804
+ * lib/alexandria/book_providers/amazon.rb,
2805
+ lib/alexandria/book_providers/proxis.rb,
2806
+ lib/alexandria/book_providers.rb,
2807
+ lib/alexandria/book_providers,
2808
+ lib/alexandria/library.rb:
2809
+
2810
+ - Added ;
2811
+ - The Proxis provider has been contributed by Pascal Terjan ;
2812
+ - Do not save covers that are blank ;
2813
+ - The book providers factory should handle multiple providers now.
2814
+
2815
+ * lib/alexandria/ui/icons.rb:
2816
+
2817
+ Uses the default icon when the cover files don't exist.
2818
+
2819
+ * lib/alexandria/ui/preferences_dialog.rb:
2820
+
2821
+ Handles providers that don't provide any preference, and display
2822
+ an error message when the user tries to setup them.
2823
+
2824
+ 2004-06-20 Pascal Terjan <pterjan@linuxfr.org>
2825
+
2826
+ * lib/alexandria/ui/main_app.rb,
2827
+ bin/alexandria:
2828
+
2829
+ Don't split string inside multibyte character (#660)
2830
+
2831
+ 2004-06-20 Laurent Sansonetti <lrz@gnome.org>
2832
+
2833
+ * lib/alexandria/ui/main_app.rb,
2834
+ lib/alexandria/ui/new_book_dialog.rb:
2835
+
2836
+ It is now possible to add multiple books at once, by selecting
2837
+ several books in the search results list.
2838
+
2839
+ 2004-06-19 Laurent Sansonetti <lrz@gnome.org>
2840
+
2841
+ * data/alexandria/glade/new_book_dialog.glade,
2842
+ lib/alexandria/ui/new_book_dialog.rb,
2843
+ lib/alexandria/book.rb:
2844
+
2845
+ - Improved the add new book dialog to allow searches by authors and
2846
+ keyword ;
2847
+ - Validate ISBNs before sending them to providers ;
2848
+ - Perform an ISBN search when enter is detected in the ISBN entry ;
2849
+ - Fixed a bug in the Amazon provider, when some books that are not
2850
+ released yet don't have a 'manufacturer' attribute.
2851
+
2852
+ 2004-06-19 Dafydd Harries <daf@muse.19inch.net>
2853
+
2854
+ * lib/alexandria/book.rb:
2855
+
2856
+ Rewrote the ISBN code to be more Rubyish and made it allow 13-digit
2857
+ EAN numbers.
2858
+
2859
+ 2004-06-18 Laurent Sansonetti <lrz@gnome.org>
2860
+
2861
+ * lib/alexandria/ui/new_book_dialog.rb:
2862
+
2863
+ Fixed a bug when Alexandria crashed in the add new book dialog when the
2864
+ clipboard was empty.
2865
+
2866
+ 2004-06-16 Laurent Sansonetti <lrz@gnome.org>
2867
+
2868
+ * data/alexandria/glade/new_book_dialog.glade,
2869
+ lib/alexandria/ui/new_book_dialog.rb:
2870
+
2871
+ Autofill the ISBN entry with the clipboard contents upon focus.
2872
+
2873
+ * lib/alexandria/book.rb:
2874
+
2875
+ Added code to validate ISBNs.
2876
+
2877
+ * README:
2878
+
2879
+ - Updated the list of features ;
2880
+ - Added "gconftool-2 --shutdown" to the install steps.
2881
+
2882
+ 2004-06-15 Laurent Sansonetti <lrz@gnome.org>
2883
+
2884
+ * AUTHORS,
2885
+ lib/alexandria.rb:
2886
+
2887
+ Added Pascal, added language prefixes after each translator.
2888
+
2889
+ * data/alexandria/glade/new_book_dialog.glade,
2890
+ lib/alexandria/ui/new_book_dialog.rb:
2891
+
2892
+ - The dialog is now automatically resized according to the selected criterion ;
2893
+ - Performs the search when 'enter' is pressed in the title entry ;
2894
+ - Performs the add when a double left click is detected on a result row ;
2895
+ - Fixed some small UI issues.
2896
+
2897
+ * lib/alexandria/ui/main_app.rb:
2898
+
2899
+ Sorts the current library after a book has been added.
2900
+
2901
+ 2004-06-14 Laurent Sansonetti <lrz@gnome.org>
2902
+
2903
+ * lib/alexandria/book.rb,
2904
+ data/alexandria/glade/new_book_dialog.glade,
2905
+ lib/alexandria/ui/new_book_dialog.rb:
2906
+
2907
+ Modified to allow title searches (as well as ISBN searches).
2908
+
2909
+ 2004-06-14 Pascal Terjan <pterjan@linuxfr.org>
2910
+
2911
+ * lib/alexandria.rb, lib/alexandria/book.rb,
2912
+ lib/alexandria/ui/about_dialog.rb, lib/alexandria/ui/main_app.rb,
2913
+ lib/alexandria/ui/new_book_dialog.rb, lib/alexandria/ui/preferences_dialog.rb:
2914
+
2915
+ Enforce use of UTF-8 for gettext
2916
+
2917
+ 2004-06-14 Laurent Sansonetti <lrz@gnome.org>
2918
+
2919
+ * data/.cvsignore:
2920
+
2921
+ Added.
2922
+
2923
+ 2004-06-14 Dafydd Harries <daf@muse.19inch.net>
2924
+
2925
+ * lib/alexandria/ui/main_app.rb:
2926
+
2927
+ Ngettextise some strings.
2928
+
2929
+ * po/ChangeLog:
2930
+
2931
+ New ChangeLog for translation changes.
2932
+
2933
+ 2004-06-13 Laurent Sansonetti <lrz@gnome.org>
2934
+
2935
+ * data/post-clean.rb:
2936
+
2937
+ Added. This script removes the 'locale' directory.
2938
+
2939
+ 2004-06-13 Dafydd Harries <daf@muse.19inch.net>
2940
+
2941
+ * pre-setup.rb:
2942
+
2943
+ Removed requirement of ruby-gettext since all this does is run
2944
+ msgfmt.
2945
+
2946
+ === Alexandria 0.2.0 ===
2947
+
2948
+ 2004-06-13 Laurent Sansonetti <lrz@gnome.org>
2949
+
2950
+ * NEWS:
2951
+
2952
+ Final update for 0.2.0.
2953
+
2954
+ * lib/alexandria.rb,
2955
+ lib/alexandria/book.rb:
2956
+
2957
+ - extend the GetText module (thanks to Masao Mutoh) ;
2958
+ - added translator names for the about box.
2959
+
2960
+ * AUTHORS: updated and reformatted.
2961
+
2962
+ 2004-06-13 Masao Mutoh <mutoh@highway.ne.jp>
2963
+
2964
+ * po/ja.po:
2965
+
2966
+ New Japanese translation.
2967
+
2968
+ 2004-06-12 Dafydd Harries <daf@muse.19inch.net>
2969
+
2970
+ * po/cy.po:
2971
+
2972
+ New Welsh translation.
2973
+
2974
+ 2004-06-11 Laurent Sansonetti <lrz@gnome.org>
2975
+
2976
+ * lib/alexandria/ui/main_app.rb:
2977
+
2978
+ Update the title when the selected library has been renamed.
2979
+
2980
+ 2004-06-10 Laurent Sansonetti <lrz@gnome.org>
2981
+
2982
+ * NEWS:
2983
+
2984
+ Updated for the future 0.2.0 release.
2985
+
2986
+ 2004-06-08 Laurent Sansonetti <lrz@gnome.org>
2987
+
2988
+ * README:
2989
+
2990
+ - Corrected the name of the ruby-gettext project ;
2991
+ - Fixed the required GNOME version to 2.6.
2992
+
2993
+ * data/alexandria/glade/main_app.glade:
2994
+
2995
+ Removed some tooltips.
2996
+
2997
+ * lib/alexandria.rb,
2998
+ lib/alexandria/ui/main_app.rb,
2999
+ lib/alexandria/ui/preferences_dialog.rb:
3000
+
3001
+ Marked a few strings to be translated.
3002
+
3003
+ * po/fr.po:
3004
+
3005
+ Updated.
3006
+
3007
+ 2004-06-07 Laurent Sansonetti <lrz@gnome.org>
3008
+
3009
+ Introduced i18n. Almost all the investigation has been made by
3010
+ Dafydd.
3011
+
3012
+ * pre-setup.rb,
3013
+ po/fr.po,
3014
+ po/genpot.sh:
3015
+
3016
+ Added.
3017
+
3018
+ * data/alexandria/glade/info_book_dialog.glade,
3019
+ data/alexandria/glade/main_app.glade:
3020
+
3021
+ Empted strings that shouldn't be translated.
3022
+
3023
+ * bin/alexandria,
3024
+ lib/alexandria.rb,
3025
+ lib/alexandria/book.rb,
3026
+ lib/alexandria/ui/about_dialog.rb,
3027
+ lib/alexandria/ui/glade_base.rb,
3028
+ lib/alexandria/ui/main_app.rb,
3029
+ lib/alexandria/ui/new_book_dialog.rb:
3030
+
3031
+ Localised strings using Ruby/GetText.
3032
+
3033
+ 2004-06-06 Laurent Sansonetti <lrz@gnome.org>
3034
+
3035
+ * schemas/alexandria.schemas,
3036
+ post-install.rb:
3037
+
3038
+ Added. GConf2 schemas have been introduced.
3039
+
3040
+ * lib/alexandria/ui/main_app.rb:
3041
+
3042
+ Refactored the code since GConf preferences have now default values.
3043
+
3044
+ 2004-06-05 Laurent Sansonetti <lrz@gnome.org>
3045
+
3046
+ * bin/alexandria:
3047
+
3048
+ Prints the release version upon exceptions.
3049
+
3050
+ * data/alexandria/glade/main_app.glade,
3051
+ lib/alexandria/ui/main_app.rb:
3052
+
3053
+ Added a search field in the toolbar to filter books. Refactored a bit
3054
+ the existing code.
3055
+
3056
+ 2004-06-04 Dafydd Harries <daf@muse.19inch.net>
3057
+
3058
+ * lib/alexandria/ui/main_app.rb:
3059
+
3060
+ Fix a bug where Alexandria would crash when GConf keys hadn't been
3061
+ set. Laurent did all the hard work, I just helped with the debugging.
3062
+
3063
+ * data/alexandria/icons/star_set.png
3064
+ data/alexandria/icons/star_unset.png:
3065
+
3066
+ New icons. The old ones looked nasty against darker backgrounds due
3067
+ rough edges. The new ones look more or less the same as the old ones.
3068
+ They could probably use a little tweaking. They were drawn as SVGs but
3069
+ committed as PNGs.
3070
+
3071
+ * data/alexandria/icons/star_ok.png
3072
+ data/alexandria/icons/star_nok.png:
3073
+
3074
+ Deleted.
3075
+
3076
+ * lib/alexandria/ui/main_app.rb
3077
+ lib/alexandria/ui/info_book_dialog.rb:
3078
+
3079
+ Modified to use the new constants for the new icons.
3080
+
3081
+ 2004-05-29 Laurent Sansonetti <lrz@gnome.org>
3082
+
3083
+ * README:
3084
+
3085
+ Updated with recent libraries.
3086
+
3087
+ * data/alexandria/glade/main_app.glade,
3088
+ lib/alexandria/ui/main_app.rb:
3089
+
3090
+ Added the possibility to sort icons (via the main or
3091
+ popup menus).
3092
+
3093
+ 2004-05-27 Laurent Sansonetti <lrz@gnome.org>
3094
+
3095
+ * README:
3096
+
3097
+ Incremented Ruby/Amazon version (0.8.1 -> 0.8.2).
3098
+
3099
+ * data/alexandria/glade/preferences_dialog.glade,
3100
+ lib/alexandria/book.rb,
3101
+ lib/alexandria/ui/main_app.rb,
3102
+ lib/alexandria/ui/preferences_dialog.rb:
3103
+
3104
+ Implemented the preferences backend for the preferences
3105
+ dialog box.
3106
+
3107
+ 2004-05-26 Laurent Sansonetti <lrz@gnome.org>
3108
+
3109
+ * data/alexandria/icons/book.png:
3110
+
3111
+ Added.
3112
+
3113
+ * lib/alexandria/book.rb:
3114
+
3115
+ Added Book::DEFAULT_RATING.
3116
+
3117
+ * lib/alexandria/ui/icons.rb:
3118
+
3119
+ Added .small_cover and .medium_cover functions.
3120
+
3121
+ * lib/alexandria/ui/info_book_dialog.rb:
3122
+
3123
+ Follow book.rb changes and refresh the book views if the
3124
+ properties has changed.
3125
+
3126
+ * lib/alexandria/ui/main_app.rb:
3127
+
3128
+ - Rating is shown in the tree view ;
3129
+ - Fixed several sorting bugs in the tree view ;
3130
+ - Now saves the size of the main window properly ;
3131
+ - book.png is displayed when the provided cover image is blank ;
3132
+ - Refactored some parts of the code.
3133
+
3134
+ 2004-05-25 Laurent Sansonetti <lrz@gnome.org>
3135
+
3136
+ * data/alexandria/glade/info_book_dialog.glade,
3137
+ data/alexandria/icons/star_nok.png,
3138
+ data/alexandria/icons/star_ok.png,
3139
+ lib/alexandria/book.rb,
3140
+ lib/alexandria/ui/info_book_dialog.rb:
3141
+
3142
+ Added rating support.
3143
+
3144
+ * data/alexandria/glade/new_book_dialog.glade,
3145
+ lib/alexandria/ui/new_book_dialog.rb:
3146
+
3147
+ User is not able to enter ISBN which contains "-" character(s).
3148
+
3149
+ * TODO:
3150
+
3151
+ Updated (added rating support).
3152
+
3153
+ 2004-05-24 Laurent Sansonetti <lrz@gnome.org>
3154
+
3155
+ * data/alexandria/glade/preferences_dialog.glade:
3156
+
3157
+ Fixed the wording (called -> queried), thanks to Dafydd.
3158
+
3159
+ * TODO:
3160
+
3161
+ Added.
3162
+
3163
+ 2004-05-21 Laurent Sansonetti <lrz@gnome.org>
3164
+
3165
+ * lib/alexandria/ui/main_app.rb:
3166
+
3167
+ Saves and restores sidepane slider position and the last selected
3168
+ library.
3169
+
3170
+ 2004-05-20 Laurent Sansonetti <lrz@gnome.org>
3171
+
3172
+ * lib/alexandria/preferences.rb:
3173
+
3174
+ Added with a single implementation using GConf.
3175
+
3176
+ * lib/alexandria.rb:
3177
+
3178
+ Required preferences.rb and added an URL which leads to the
3179
+ RubyForge bug tracker.
3180
+
3181
+ * lib/alexandria/ui/main_app.rb:
3182
+
3183
+ - Saves and restores preferences (window position and size,
3184
+ whether toolbar, statusbar and sidepane are active, and whether
3185
+ the books are viewed as icons or list) ;
3186
+
3187
+ - Implemented the 'report_bug' handler, where the default web
3188
+ browser is started.
3189
+
3190
+ * data/alexandria/glade/main_app.glade:
3191
+
3192
+ - Embed the sidepane's header in a Gtk::Frame (like Evolution) ;
3193
+ - Added a toolbar separator between "Refresh" and "View as Icons|List".
3194
+
3195
+ 2004-05-18 Laurent Sansonetti <lrz@gnome.org>
3196
+
3197
+ * data/alexandria/glade/main_app.glade,
3198
+ lib/alexandria/ui/main_app.rb:
3199
+
3200
+ Added a close button in the sidepane's header.
3201
+
3202
+ 2004-05-17 Laurent Sansonetti <lrz@gnome.org>
3203
+
3204
+ * lib/alexandria/book.rb:
3205
+
3206
+ Fixed encoding problems in the Amazon provider,
3207
+ which seems to encode strings in UTF-8 twice (?!).
3208
+
3209
+ * lib/alexandria.rb:
3210
+
3211
+ Sets $DEBUG if ENV['DEBUG'] is defined.
3212
+
3213
+ * lib/alexandria/ui/new_book_dialog.rb:
3214
+
3215
+ Removed code to handle EINVAL exception, this was
3216
+ a workaround for a FreeBSD bug which seems to have
3217
+ disappeared.
3218
+
3219
+ 2004-05-15 Laurent Sansonetti <lrz@gnome.org>
3220
+
3221
+ * data/alexandria/glade/preferences_dialog.glade:
3222
+
3223
+ Added a "General" tab in which you can configure
3224
+ visible columns for the "View as List" mode.
3225
+
3226
+ * lib/alexandria/book.rb:
3227
+
3228
+ Removed bad tabulations.
3229
+
3230
+ * lib/alexandria/ui/main_app.rb,
3231
+ data/alexandria/glade/main_app.glade:
3232
+
3233
+ - Fixed bad signals and added "Help/Submit Bug Report",
3234
+ which is still not implemented yet ;
3235
+ - Don't clear the iconlist if it's empty (to avoid a
3236
+ GLib warning).
3237
+
3238
+ 2004-04-30 Laurent Sansonetti <lrz@gnome.org>
3239
+
3240
+ * data/alexandria/glade/info_book_dialog.glade,
3241
+ data/alexandria/glade/new_book_dialog.glade,
3242
+ data/alexandria/glade/preferences_dialog.glade:
3243
+
3244
+ Use the 'clicked' signal instead of 'pressed' for
3245
+ Gtk::Button's.
3246
+
3247
+ * data/alexandria/glade/preferences_dialog.glade,
3248
+ lib/alexandria/ui/preferences_dialog.rb:
3249
+
3250
+ - Removed the network proxy tab ;
3251
+ - Improved accessibility (via keyboard accelerators) and
3252
+ HIG compliance ;
3253
+ - Double click on a provider opens its setup dialog.
3254
+
3255
+ * lib/alexandria/book.rb:
3256
+
3257
+ - Refactored the YAML object, by removing the following
3258
+ fields: saved, small_cover and medium_cover ;
3259
+ - Improved the loading and saving procedures.
3260
+
3261
+ * lib/alexandria/ui/about_dialog.rb:
3262
+
3263
+ Fixed the transient (parent) window.
3264
+
3265
+ * lib/alexandria/ui/info_book_dialog.rb:
3266
+
3267
+ - Follow changes in book.rb ;
3268
+ - Save the notes in the YAML file if they changed.
3269
+
3270
+ * lib/alexandria/ui/main_app.rb:
3271
+
3272
+ Follow changes in book.rb, about_dialog.rb and info_book_dialog.rb.
3273
+
3274
+ * lib/alexandria/ui/new_book_dialog.rb:
3275
+
3276
+ Follow changes in book.rb.
3277
+
3278
+ 2004-04-22 Laurent Sansonetti <lrz@gnome.org>
3279
+
3280
+ * data/alexandria/glade/info_book_dialog.glade,
3281
+ lib/alexandria/book.rb,
3282
+ lib/alexandria/ui/info_book_dialog.rb:
3283
+
3284
+ - Redesigned the layout of the Book Property dialog, adding
3285
+ a notebook and packing the cover image in a frame ;
3286
+ - Introduced notes (not yet saved though).
3287
+
3288
+ 2004-04-21 Laurent Sansonetti <lrz@gnome.org>
3289
+
3290
+ * data/alexandria/glade/preferences_dialog.glade:
3291
+
3292
+ Fixed the wording (thanks to rene).
3293
+
3294
+ * lib/alexandria/book.rb:
3295
+
3296
+ Introduced BookProviders' Preferences.
3297
+
3298
+ * lib/alexandria/ui/new_book_dialog.rb:
3299
+
3300
+ Follow book.rb changes.
3301
+
3302
+ * lib/alexandria/ui/preferences_dialog.rb:
3303
+
3304
+ Constructs a dynamic dialog box according to the preferences
3305
+ of the selected provider.
3306
+
3307
+ 2004-04-20 Laurent Sansonetti <lrz@gnome.org>
3308
+
3309
+ * data/alexandria/glade/preferences_dialog.glade,
3310
+ lib/alexandria/ui/preferences_dialog.rb,
3311
+ lib/alexandria/ui.rb,
3312
+ lib/alexandria/ui/main_app.rb:
3313
+
3314
+ Added a basic Preferences dialog.
3315
+
3316
+ * lib/alexandria/book.rb:
3317
+
3318
+ Refactored.
3319
+
3320
+ 2004-04-17 Laurent Sansonetti <lrz@gnome.org>
3321
+
3322
+ * README:
3323
+
3324
+ Fixed a typo.
3325
+
3326
+ 2004-04-16 Laurent Sansonetti <lrz@gnome.org>
3327
+
3328
+ * HACKING:
3329
+
3330
+ New file.
3331
+
3332
+ * lib/alexandria.rb,
3333
+ AUTHORS:
3334
+
3335
+ Added Daffyd and Zachary.
3336
+
3337
+ * bin/alexandria,
3338
+ lib/alexandria.rb,
3339
+ lib/alexandria/book.rb,
3340
+ lib/alexandria/ui.rb,
3341
+ lib/alexandria/ui/about_dialog.rb,
3342
+ lib/alexandria/ui/alert_dialog.rb,
3343
+ lib/alexandria/ui/glade_base.rb,
3344
+ lib/alexandria/ui/icons.rb,
3345
+ lib/alexandria/ui/info_book_dialog.rb,
3346
+ lib/alexandria/ui/main_app.rb,
3347
+ lib/alexandria/ui/new_book_dialog.rb:
3348
+
3349
+ Prefixed with GPL header (required by the the license).
3350
+
3351
+ * data/alexandria/glade/main_app.glade:
3352
+
3353
+ Set the 'Rules Hint' property of tree views to true.
3354
+
3355
+ 2004-04-15 Dafydd Harries <daf@muse.19inch.net>
3356
+
3357
+ * lib/alexandria/ui/alert_dialog.rb:
3358
+
3359
+ Make the ErrorDialog use markup for the error.
3360
+
3361
+ * lib/alexandria/ui/main_app.rb:
3362
+
3363
+ Allow more characters in library names, and improve the error message
3364
+ for invalid names by including the invalid character found.
3365
+
3366
+ === Alexandria 0.1.2 ===
3367
+
3368
+ 2004-04-15 Laurent Sansonetti <lrz@gnome.org>
3369
+
3370
+ * lib/alexandria.rb,
3371
+ NEWS:
3372
+
3373
+ Updated for 0.1.2.
3374
+
3375
+ 2004-04-15 Zachary P. Landau <kapheine@hypa.net>
3376
+
3377
+ * lib/alexandria/ui/main_app.rb,
3378
+ lib/alexandria/ui/new_book_dialog.rb:
3379
+
3380
+ Default to the currently selected library in the Add Book Dialog.
3381
+
3382
+ 2004-04-15 Laurent Sansonetti <lrz@gnome.org>
3383
+
3384
+ * lib/alexandria/book.rb:
3385
+
3386
+ - Ported to the latest Ruby/Amazon release (0.8.1) ;
3387
+ - Fixed a bug when Amazon doesn't provide the 'authors' for a book.
3388
+
3389
+ * README:
3390
+
3391
+ Alexandria now requires Ruby/Amazon 0.8.1 or newer.
3392
+
3393
+ === Alexandria 0.1.1 ===
3394
+
3395
+ 2004-04-12 Laurent Sansonetti <lrz@gnome.org>
3396
+
3397
+ * lib/alexandria/book.rb:
3398
+
3399
+ Creates ~/.alexandria if it doesn't exist.
3400
+
3401
+ === Alexandria 0.1.0 ===
3402
+
3403
+ 2004-04-12 Laurent Sansonetti <lrz@gnome.org>
3404
+
3405
+ * NEWS:
3406
+
3407
+ New file.
3408
+
3409
+ * README,
3410
+ lib/alexandria/ui/main_app.rb,
3411
+ lib/alexandria/ui/new_book_dialog.rb:
3412
+
3413
+ Fixed the spelling of some strings.
3414
+
3415
+ * bin/alexandria:
3416
+
3417
+ Added some code to help users report bugs.
3418
+
3419
+ 2004-04-11 Laurent Sansonetti <lrz@gnome.org>
3420
+
3421
+ * lib/alexandria/ui/main_app.rb:
3422
+
3423
+ - Fixed the length of icons titles to 20 instead of 15 ;
3424
+ - Changes the title of the main window according to the
3425
+ selected library.
3426
+
3427
+ * data/alexandria/glade/main_app.glade,
3428
+ lib/alexandria/ui/main_app.rb:
3429
+
3430
+ Sets the history of the option menu in the toolbar (View as...)
3431
+ each time the view is changed.
3432
+
3433
+ * lib/alexandria/book.rb:
3434
+
3435
+ Fixed a bug introduced in the latest commit entry.
3436
+
3437
+ 2004-04-08 Laurent Sansonetti <lrz@gnome.org>
3438
+
3439
+ * lib/alexandria/book.rb:
3440
+
3441
+ Rescues the TimerError exception raised by Ruby/Amazon (when
3442
+ it could not reach amazon.com), and displays a meaningful
3443
+ error dialog box.
3444
+
3445
+ * data/alexandria/glade/main_app.glade,
3446
+ lib/alexandria/ui/main_app.rb:
3447
+
3448
+ Auto-sensitize File/Properties and Edit/Delete according to
3449
+ the current focus.
3450
+
3451
+ 2004-04-07 Laurent Sansonetti <lrz@gnome.org>
3452
+
3453
+ * lib/alexandria/book.rb,
3454
+ lib/alexandria/ui/main_app.rb:
3455
+
3456
+ Implemented the possibility to delete a library.
3457
+
3458
+ 2004-04-06 Laurent Sansonetti <lrz@gnome.org>
3459
+
3460
+ * data/alexandria/glade/main_app.glade,
3461
+ lib/alexandria/ui/main_app.rb,
3462
+ lib/alexandria/ui/new_book_dialog.rb:
3463
+
3464
+ - Displays an error dialog when the user picks a new name for a
3465
+ library which contains at least one illegal character ;
3466
+
3467
+ - Automatically show the sidepane upon "New Library", because it
3468
+ may be hidden ;
3469
+
3470
+ - Fixed a bug in the random name chooser (for "New Library") ;
3471
+
3472
+ - Displays an error dialog when the user tries to add a book
3473
+ which already exists in the selected library ;
3474
+
3475
+ - Displays smaller names on the icon view (max 15 characters).
3476
+
3477
+ 2004-04-05 Laurent Sansonetti <lrz@gnome.org>
3478
+
3479
+ * lib/alexandria/book.rb:
3480
+
3481
+ Fixed a bug when loading books (the reference to the Library obj
3482
+ is not saved in the YAML description).
3483
+
3484
+ * lib/alexandria/ui/main_app.rb:
3485
+
3486
+ Implemented the "New Library" feature.
3487
+
3488
+ 2004-04-04 Laurent Sansonetti <lrz@gnome.org>
3489
+
3490
+ * lib/alexandria/book.rb,
3491
+ lib/alexandria/ui/main_app.rb,
3492
+ lib/alexandria/ui/new_book_dialog.rb:
3493
+
3494
+ Libraries (in the side pane) are now 'editable' (means that it's
3495
+ possible to rename them).
3496
+
3497
+ 2004-04-03 Laurent Sansonetti <lrz@gnome.org>
3498
+
3499
+ * data/alexandria/glade/main_app.glade,
3500
+ lib/alexandria/ui/main_app.rb:
3501
+
3502
+ Properties [menu|popup] items are now disabled unless a single book
3503
+ is selected.
3504
+
3505
+ * data/alexandria/glade/info_book_dialog.glade,
3506
+ data/alexandria/glade/new_book_dialog.glade:
3507
+
3508
+ Fixed Gtk::Button response IDs.
3509
+
3510
+ * data/alexandria/glade/main_app.glade,
3511
+ lib/alexandria/ui/main_app.rb:
3512
+
3513
+ - Added statusbar information about current selection ;
3514
+ - Added "View as [Icons|List]" in the popup menus.
3515
+
3516
+ 2004-04-01 Laurent Sansonetti <lrz@gnome.org>
3517
+
3518
+ * data/alexandria/glade/main_app.glade:
3519
+
3520
+ Moved 'Edit/Delete' after 'Edit/[De]select All'.
3521
+
3522
+ * lib/alexandria/book.rb,
3523
+ lib/alexandria/ui/main_app.rb:
3524
+
3525
+ Implemented the 'Delete' book action.
3526
+
3527
+ * lib/alexandria/ui/alert_dialog.rb,
3528
+ lib/alexandria/ui/error_dialog.rb,
3529
+ lib/alexandria/ui.rb:
3530
+
3531
+ Renamed error_dialog.rb in alert_dialog.rb.
3532
+
3533
+ 2004-03-31 Laurent Sansonetti <lrz@gnome.org>
3534
+
3535
+ * data/alexandria/glade/main_app.glade,
3536
+ lib/alexandria/ui/main_app.rb:
3537
+
3538
+ - Removed obsolete callbacks ;
3539
+ - Added a popup menu for multiple selections and a default one
3540
+ when nothing is selected yet ;
3541
+ - Implemented the 'Refresh' action.
3542
+
3543
+ 2004-03-31 Laurent Sansonetti <lrz@gnome.org>
3544
+
3545
+ * data/alexandria/glade/main_app.glade,
3546
+ lib/alexandria/ui/main_app.rb:
3547
+
3548
+ Added 'Edit/Select All' and 'Edit/Deselect All'.
3549
+
3550
+ 2004-03-30 Laurent Sansonetti <lrz@gnome.org>
3551
+
3552
+ * data/alexandria/icons/alexandria_small.png,
3553
+ data/alexandria/icons/library.png,
3554
+ data/alexandria/icons/library_small.png,
3555
+ lib/alexandria/ui/icons.rb:
3556
+
3557
+ Added.
3558
+
3559
+ * data/alexandria/glade/main_app.glade,
3560
+ data/alexandria/glade/new_book_dialog.glade,
3561
+ lib/alexandria/book.rb,
3562
+ lib/alexandria/ui.rb,
3563
+ lib/alexandria/ui/about_dialog.rb,
3564
+ lib/alexandria/ui/main_app.rb,
3565
+ lib/alexandria/ui/new_book_dialog.rb:
3566
+
3567
+ - Implemented the side pane ;
3568
+ - Implemented 'View as Icons/List' ;
3569
+ - Added popup menu for single selections ;
3570
+ - The new book dialog has been modified to accept a library
3571
+ in which the book will be added ;
3572
+ - Added 'New Library', 'Refresh' and 'View as Icons/List' on
3573
+ the toolbar.
3574
+
3575
+ 2004-03-21 Laurent Sansonetti <lrz@gnome.org>
3576
+
3577
+ * lib/alexandria/ui/main_app.rb:
3578
+
3579
+ - Implemented libraries tree view in the sidepane
3580
+ - Implemented 'View/Toolbar' and 'View/Statusbar'
3581
+ - Added and implemented 'View/Side pane'
3582
+
3583
+ * lib/alexandria/book.rb:
3584
+ Removed our check on the ISBN number (since it can contain
3585
+ non-numerical data and it seems that Ruby/Amazon checks it
3586
+ for us already).
3587
+
3588
+ * data/alexandria/glade/main_app.glade:
3589
+
3590
+ - Following changes in main_app.rb
3591
+ - Added a Home item in the toolbar
3592
+ - Added Go menu with a Home menu item
3593
+ - Renamed 'Tool Bar' -> 'Toolbar' (View menu)
3594
+ - Renamed 'Status Bar' -> 'Statusbar' (View menu)
3595
+
3596
+ 2004-03-20 Laurent Sansonetti <lrz@gnome.org>
3597
+
3598
+ Initial RubyForge import.