forked from kirienko/gourmet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4190 lines (2996 loc) · 164 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2014-08-17 Bernhard Reiter <ockham@raz.or.at>
* Bump version to 0.17.5.
2014-08-03 Bernhard Reiter <ockham@raz.or.at>
* Get rid of obsolete progress_func argument.
2014-07-27 Bernhard Reiter <ockham@raz.or.at>
* Fix twisted logic of of this line's previous change.
* When exporting, don't check for linked reciped if all recipes are exported.
2014-06-14 Steffen Pankratz <kratz00>
* Fixed crash in MCB importer
2014-06-05 Bernhard Reiter <ockham@raz.or.at>
* Mention Unix distributions in INSTALL.md.
2014-06-02 Bernhard Reiter <ockham@raz.or.at>
* Merge translations.
* Use *.po files from Launchpad.
* Remove obsolete po/xx_XX.po files.
* Update po/.
* When saving a shopping list as a menu, add the time in its title.
2014-06-01 Bernhard Reiter <ockham@raz.or.at>
* Fix links in InfoBars under Windows, also for threaded export/import.
* Fix links in InfoBars under Windows.
* Bump version to 0.17.4.
* Move offer_url() to reccard.py.
* Fix guess_singulars() in defaults_en_GB.py by copying it from defaults_en.py.
* Fix guess_plurals() in defaults_en_GB.py by copying it from defaults_en.py.
* Remove obsolete offer_url related functions.
2014-05-29 Jessica Eccles <pounamu>
* fixed typo
* added appdata file Fixes #759
2014-05-29 Bernhard Reiter <ockham@raz.or.at>
* Remove incorrect width and height attributes from gourmet.appdata.xml.in.
* Add gourmet.appdata.xml.in to po/POTFILES.in, MANIFEST.in, and setup.py.
* I18nize gourmet.appdata.xml.in.
* Fix error in gourmet.appdata.xml.in.
2014-05-27 Jessica Eccles <pounamu>
* changed keyboard shortcuts as per Tom's comment Fixes #264
* added requested keyboard shortcuts Fixes #264
2014-05-21 Bernhard Reiter <ockham@raz.or.at>
* In reccard, import launch_url.
* Have xml_importer accept unicode filenames.
2014-05-19 Bernhard Reiter <ockham@raz.or.at>
* Little fix in case get_pluralized_form is passed an empty string.
* When adding a recipe to the shopping list that's already there,
increase the amounts of ingredients accordingly.
2014-05-11 Bernhard Reiter <ockham@raz.or.at>
* INSTALL.md: add ReportLab download link.
2014-05-10 Bernhard Reiter <ockham@raz.or.at>
* Use InfoBar for message in duplicate finder after website import.
* Move import/export progress bar to InfoBar.
* Replace Jump to button in successful export infobar by link to file.
* When exporting from recipe card, display InfoBar there.
* In offer_url(), use InfoBar instead of MessageDialog.
2014-05-06 Bernhard Reiter <ockham@raz.or.at>
* I18n offer_url parameters.
* Revert "Don't use Gtk.InfoBar yet as it requires pyGtk >= 2.22.
We'll keep this in a branch for now."
2014-05-04 Bernhard Reiter <ockham@raz.or.at>
* MCB plugin: create XML in temporary directory.
* MCB plugin: Handle yields/servings properly.
* Add MCB plugin to default_active_plugin_sets.
* Add lxml dependencies to setup.py (required for MCB plugin on Windows).
* Rename mcb-plugin to mycookbook_plugin.
* Update ChangeLog.
2014-05-03 Bernhard Reiter <ockham@raz.or.at>
* Fix rating export and import for the MCB plugin.
* Update ChangeLog.
2014-05-02 Bernhard Reiter <ockham@raz.or.at>
* Fix the MCB plugin's Export all function.
2014-04-28 Bernhard Reiter <ockham@raz.or.at>
* Update ChangeLog.
2014-04-20 Bernhard Reiter <ockham@raz.or.at>
* Wrap a PIL import.
* Add Fink section to INSTALL.md
* Change manage.py location and contents for Django 1.6.
* Remove a couple of spurious imports from the MCB plugin.
* Add MyCookbook plugin files to po/POTFILES.in.
2014-04-20 thierry
* timestamp changed
* Add MyCookbook export plugin.
2014-04-19 thierry
* fix segfault
2014-04-14 Bernhard Reiter <ockham@raz.or.at>
* In the web plugin, fix the link to the Gourmet website.
* Replace compressed jQuery v1.4.2 by uncompressed v1.11.0.
2014-04-03 Bernhard Reiter <ockham@raz.or.at>
* Bump version to 0.17.3.
* Add xml.dom to packages included by cx_Freeze.
2014-04-02 Bernhard Reiter <ockham@raz.or.at>
* Add FAQ item on setting display resolution.
2014-03-23 Bernhard Reiter <ockham@raz.or.at>
* Use playbin2 instead of deprecated playbin for gst sound playback.
* More on OS X.
* Add MacPorts section to INSTALL.md
2014-03-20 Bernhard Reiter <ockham@raz.or.at>
* Update ChangeLog.
* Add note about code signing .msi file to INSTALL.md.
* Bump version to 0.17.2.
2014-03-16 Bernhard Reiter <ockham@raz.or.at>
* Remove a couple of spurious lines from setup.cfg.
* Update ChangeLog.
* Bump version to 0.17.1.
* Remove build_rpms.py and related.
* Remove obsolete lines from print plugin code.
* Add space to command invoking Adobe reader.
2014-03-09 Bernhard Reiter <ockham@raz.or.at>
* Add cx_Freeze requirement to INSTALL.md.
* Remove EclipseNSIS paragraph from CODING.md.
* Update CODING, rename to CODING.md.
* Update README.md and INSTALL.md.
2014-03-08 Bernhard Reiter <ockham@raz.or.at>
* Remove some obsolete code meant for PyGTK < 2.6.
* Require Python 2.7 in README.md.
* Add two imports to plugins/import_export/gxml_plugin/gxml2_importer.py.
2014-02-26 Bernhard Reiter <ockham@raz.or.at>
* Fix a number of regressions in html_exporter.py.
* Update ChangeLog.
2014-02-25 Bernhard Reiter <ockham@raz.or.at>
* Remove redundant newlines from error message.
* Update *.po[t] files and add/fix some German and Austrian strings.
* Update ChangeLog.
* Fix a translation bug in de_DE.po.
* Remove *.mo files that ware accidentally added to git.
2014-02-24 Bernhard Reiter <ockham@raz.or.at>
* Update gourmet.desktop.in.
* Shorten years listing in copyright notice.
* Add Flattr donations button to About dialog.
2014-02-23 Bernhard Reiter <ockham@raz.or.at>
* Fix loading of FAQ from recipe card and shopping UI.
* Fix web browser invocation from About dialog under Windows.
* Remove obsolete exception clause.
* Under Windows, use Adobe Reader to print reportlab created PDF.
2014-02-22 Bernhard Reiter <ockham@raz.or.at>
* Simplify loading of LICENSE file into About dialog.
* Add donations text and buttons to the About dialog.
* Update ChangeLog.
2014-02-20 Bernhard Reiter <ockham@raz.or.at>
* Add 2014 to copyright years.
2014-02-18 Bernhard Reiter <ockham@raz.or.at>
* Some gourmet/backends/db.py cleanup.
* When connecting to a MySQL database, force UTF-8 charset.
2014-02-09 Bernhard Reiter <ockham@raz.or.at>
* Replace deprecated PoolListener by @event.listens_for decorator.
2014-02-08 Bernhard Reiter <ockham@raz.or.at>
* Remove \r escape sequence from sl.po.
* Change Yield unit accelerator in batch editor, update po files.
* Fix a translation bug in nl.po.
* Fix bug in Dutch translation.
2014-01-23 Bernhard Reiter <ockham@raz.or.at>
* UTF-8-decode ingkey in shopping_key_editor_plugin.
2014-01-21 Bernhard Reiter <ockham@raz.or.at>
* Fix a regression introduced by the last commit.
2014-01-20 Bernhard Reiter <ockham@raz.or.at>
* When de-activating Browse Recipes plugin, remove its tab.
2014-01-12 Bernhard Reiter <ockham@raz.or.at>
* Fix a typo.
2014-01-11 Lyra <lyra2108@gmail.com>
* FIX: Create a shopping list even if one entry hasn't an amount
2014-01-06 Bernhard Reiter <ockham@raz.or.at>
* Some cleanup.
* Clean up gourmet/exporters/exporter.py a bit.
* Update MANIFEST.in.
* Remove tools/ directory.
* Remove an obsolete reportlab version check and related code.
2014-01-05 Thomas M. Hinkle <tmhinkle@gmail.com>
* Hackishly remove indents needed after if statement to workaround build error.
* Allow null units to be looked up. Otherwise, we can never get conversions for things like "3 eggs."
* Remove GourmetWindows.pyw
2014-01-05 Bernhard Reiter <ockham@raz.or.at>
* Revert "Fix stupid mistake."
2014-01-04 Bernhard Reiter <ockham@raz.or.at>
* Check if active_plugin is really there.
2014-01-03 Bernhard Reiter <ockham@raz.or.at>
* Add myself as maintainer in setup.py.
* Add 2012, 2013 to copyright years.
* Add comment to setup.py.
* Remove obsolete README.windows.md.
* Fix stupid mistake.
* Fix a typo in INSTALL.md.
* Update TODO, rename to TODO.md.
* Update CODING.
* Add more Windows building instructions to INSTALL.md.
* Disable the PDFPrintPlugin under Windows as poppler doesn't work there.
* Use Python logging instead of printing a traceback.
* Migrate from py2exe to cx_Freeze.
* Set data_dir correctly if Gourmet is frozen.
* Update IPython requirement in INSTALL.md.
* Update ChangelLog.
2014-01-02 Bernhard Reiter <ockham@raz.or.at>
* Remove NSIS related files.
2014-01-01 Bernhard Reiter <ockham@raz.or.at>
* Replace PIL by Pillow requirement.
* Move *.gourmet-plugin.in files to gourmet/plugins/.
* Remove an obsolete line.
* Replace pywin32 requirement by a ctypes function call.
* Small whitespace fix.
* Remove missing signal handlers.
* Bump version to 0.17.0.
* Fix a translation bug in po/de.po.
2013-12-15 Bernhard Reiter <ockham@raz.or.at>
* Add reportlab packages to setup.py so py2exe includes them.
2013-11-19 Bernhard Reiter <ockham@raz.or.at>
* De-dupe AboutDotComWebParser class.
* Move duplicate code into a common base class member.
* Remove some redundant code.
* Remove obsolete KeyManagerOldSchool class.
* Remove duplicate code from gourmet/recipeManager.py.
* Remove duplicate file gourmet/convertGui.py.
2013-11-15 Bernhard Reiter <ockham@raz.or.at>
* Fix wildcard imports.
2013-11-13 Bernhard Reiter <ockham@raz.or.at>
* Fix another PIL import.
2013-11-02 Joe Sapp <joe@babyjoe>
* Remove "Application" from desktop entry
2013-01-11 Bernhard Reiter <ockham@raz.or.at>
* s/options/args/ to make bin/gourmet launch.
2013-01-11 Jeff Raber <jeff.raber@gmail.com>
* Replace deprecated optparse with argparse, per issue 683 [1]
2013-10-12 Bernhard Reiter <ockham@raz.or.at>
* Fix a typo that broke the nutritional information plugin DB upgrade.
2013-10-11 Bernhard Reiter <ockham@raz.or.at>
* Remove some more metakit remnants.
* Update po[t] files.
* Remove legacy_db (i.e. metakit) stuff.
2013-10-10 Bernhard Reiter <ockham@raz.or.at>
* Clean up recindex.py.
* Clean up GourmetRecipeManager.py.
* Clean up reccard.py
2013-09-30 Bernhard Reiter <ockham@raz.or.at>
* In PDF export, print title only once (as heading).
2013-09-20 Bernhard Reiter <ockham@raz.or.at>
* Only set_current_folder if get_user_special_dir(USER_DIRECTORY_PICTURES) isn't None.
2013-09-09 Bernhard Reiter <ockham@raz.or.at>
* Update *.po[t] files.
* Fix batch editing of categories.
* Translate attributes in batch editor's confirmation message box.
* In Batch Editor, replace "Servings" by "Yield" and "Yield Unit" rows.
* Small fix to ui/catalog/README.
* Remove some obsolete code checking for old gtk versions.
* Remove some spurious imports from recindex.py.
2013-09-06 Bernhard Reiter <ockham@raz.or.at>
* s/ui/ui_string/ fix in a couple of files.
2013-09-01 Bernhard Reiter <ockham@raz.or.at>
* Remove some spurious Image (i.e. PIL) imports.
2013-08-30 Bernhard Reiter <ockham@raz.or.at>
* Update Changelog.
2013-08-29 Bernhard Reiter <ockham@raz.or.at>
* Update version to 0.16.1 in gourmet/version.py.
* Update MANIFEST.in.
* Update translation files.
2013-08-28 Bernhard Reiter <ockham@raz.or.at>
* Little schema.org parser improvement.
* Properly raise an exception in print_plugin.py.
* Fix a translation bug in po/de_AT.po.
* Update allrecipes.com test recipe URL.
In (commented out and still dysfunctional part of) testImporters.py.
2013-08-27 Bernhard Reiter <ockham@raz.or.at>
* Drop Python version 2.6 in INSTALL.md.
* Add PYTHON_ARGCOMPLETE_OK string to bin/gourmet.
* Remove some obsolete imports from gourmet/importers/html_importer.py.
* Fix testImporters.py.
* Merge pull request #724 from sappjw/master
Replace more 'Image' imports with Pillow-compatible blocks
* Fix allrecipes.com importer, by extending our newly created schema_org_parser.
Also add a test gourmet/test/test_allrecipes_com_plugin.py which is capable of
testing the importer offline, using gourmet/test/recipe_files/allrecipes_com.html.
(Trying to integrate such an offline test into the existing, commented-out
allrecipes.com test in gourmet/test/testImporters.py proved a nightmare as
the importer code is tightly interwoven with the web page download and interactive
importer functions.)
Fixes #261
* Make ica.se importer aware of a recipe's yields property.
* Scrap more schema.org/Recipe fields.
* Remove obsolete gtk import from gourmet/importers/generic_recipe_parser.py.
* Have ica_se tests check for presence of category field.
* Factor schema.org parsing out of ica_se_plugin.py into a newly created schema_org_parser.py.
* Have gourmet/test/test_ica_se_plugin.py also test for cooktime parsing.
* Small fix for more a expressive test result.
* Small fix, mainly for future BeautifulSoup4 compliance.
* Move foodnetwork and ica.se importer tests to gourmet/test/.
2013-08-27 Joe Sapp <joe@babyjoe>
* Replace more 'Image' imports with Pillow-compatible blocks
2013-08-25 Bernhard Reiter <ockham@raz.or.at>
* Fix testImporters.py.
Among other things, use a temporary in-memory SQLite database for testing.
2013-08-24 Bernhard Reiter <ockham@raz.or.at>
* Truncate Source field in PDF export.
Fixes #721
2013-08-10 Bernhard Reiter <ockham@raz.or.at>
* One more string exception to fix.
2013-08-09 Bernhard Reiter <ockham@raz.or.at>
* s/thinkle.github.com/thinkle.github.io/
2013-08-06 Bernhard Reiter <ockham@raz.or.at>
* Merge pull request #723 from gyp/master
importing gettext in exportManager as it has localized strings
2013-08-06 Peter Gyongyosi <gyp@balabit.hu>
* importing gettext in exportManager as it has localized strings
This fixes https://bugs.launchpad.net/gourmet/+bug/1157969
2013-08-04 Bernhard Reiter <ockham@raz.or.at>
* Add INSTALL.md.
2013-07-30 Bernhard Reiter <ockham@raz.or.at>
* Add db upgrade logic for the fix introduced with the previous commit.
Fixes #711.
* Merge pull request #722 from rleibman/master
Fixing issue with mysql, VARCHAR requires a length
2013-07-30 Roberto Leibman <roberto@leibmanland.com>
* Fixing issue with mysql, VARCHAR requires a length, I figure 255 is probably good enough
2013-06-01 Bernhard Reiter <ockham@raz.or.at>
* Remove obsolete tools/upgrade_pre_script.py.
* Remove hardwired sys.path.append('/usr/share/gourmet') lines.
2013-05-27 Bernhard Reiter <ockham@raz.or.at>
* Additional fix for plugins/python_shell/ipython_view.py.
* Fix interactive shell plugin to work with current IPython versions.
Achieved by updating plugins/python_shell/ipython_view.py
(which was taken from the Accerciser project)
to the commit before Accerciser's Python3 migration [1],
reverting their previous PyGI migration [2].
[1] https://git.gnome.org/browse/accerciser/commit/?id=b9bb2f48eebbf9f21ca633b6ecd6a58d6befe04a
[2] https://git.gnome.org/browse/accerciser/commit/?id=48b8c06d598f84943ab7a0af1259408b7409484d
* Prepare plugins/python_shell/ipython_view.py for update.
2013-05-17 Bernhard Reiter <ockham@raz.or.at>
* Remove a bunch of unused imports.
* Fix setup.py so it works on non-Windows platforms again.
* Remove obsolete checks for PyGTK version < 2.8.
* Remove obsolete gtk_extras/ThumbnailGenerator.py.
* Remove obsolete gtk_extras/chooserNotebook.py.
* Remove obsolete gtk_extras/fauxDruid.py.
* Remove obsolete gtk_extras/FauxActionGroups.py.
2013-05-07 jens persson <jens@persson.cx>
* Buglet found with tests and som whitespace triming in foodnetwork plugin
* Add tests for foodnetwork plugin
* Fix buglet discovered due to tests
* Add tests for ica.se plugin
2013-04-20 Bernhard Reiter <ockham@raz.or.at>
* Merge pull request #715 from MrShark/master
An importer for ica.se (Swedish storechain)
2013-04-11 jens persson <jens@persson.cx>
* First shot on an importer for ica.se
2013-04-06 Bernhard Reiter <ockham@raz.or.at>
* Revert "Add back gnomeprinter.py." (Accidental commit, meant to be in a new branch.)
This reverts commit acad0d848f7c0567bf553dae27d7e6bbd3fe67a4.
* Add FAQ item about Gourmet's data storage location.
* Add back gnomeprinter.py.
* Remove obsolete PIL import.
* Add 'Francouzská' and 'Indická' (French and Indian) to defaults_sk.py
* Add "French" and "Asian/Indian" to Cuisine defaults.
Fixes #713.
2013-03-25 Bernhard Reiter <ockham@raz.or.at>
* Add Development Tools section (taken from the Wiki).
* Move Windows version warning to README.windows.md.
2013-03-23 Bernhard Reiter <ockham@raz.or.at>
* Fix a bug in defaults_ru.py
2013-03-12 Bernhard Reiter <ockham@raz.or.at>
* Merge setup_win.py into setup.py.
Also add some extra functionality to include required Gtk+ Theme files.
* Add __init__.py to web_plugin to turn it into a module.
Otherwise, there's an error with py2exe.
2013-03-10 Bernhard Reiter <ockham@raz.or.at>
* Add (Eclipse's) .settings/ dir to .gitignore
* Fix a bug in get_pluralized_form.
2013-03-09 Bernhard Reiter <ockham@raz.or.at>
* Remove some obsolete imports from gourmet/importers/html_importer.py.
* Remove obsolete Queue import from gourmet/importers/imageBrowser.py.
This was causing problems with py2exe.
* Add *.pyo files to .gitignore.
2013-03-06 Bernhard Reiter <ockham@raz.or.at>
* Fix a bug that caused gourmet to fail when LC_ALL=C
2013-03-06 Bernhard Reiter <ockham@raz.or.at>
* Remove -dev suffix from version in gourmet/version.py.
* Update MANIFEST.in.
Running "python setup.py sdist" will now exactly reproduce
the current git state.
* Add .project to .gitignore.
* Remove gourmet/.gitignore as omission of *.pyc files is recursively
covered by our root .gitignore
* Remove bin/gourmet-importer and bin/gourmet-importer-profile.
Both are apparently unused, unmaintained and severely outdated.
* Remove translation scripts from po/ as they're obsoleted
by distutils-extra (see CODING file).
* Replace 'import Image' by 'try: from PIL import Image
except ImportError: import Image'.
Rationale: http://lists.debian.org/debian-python/2013/02/msg00017.html
* Update Gourmet and Python version in windows/gourmet-installer.nsi.
* Update *.po files to match current source.
* Update *.po files from Launchpad Translations.
* Add author_email field to setup.py.
* Update MANIFEST.in.
* Remove windows/Gourmet.pyw from po/POTFILES.in.
2013-03-04 Bernhard Reiter <ockham@raz.or.at>
* Remove obsolete files.
* Update LICENSE (new FSF address).
* Remove windows/Gourmet.pyw as it's obsoleted by bin/gourmet.
* Fix some py2exe parameters.
2013-03-03 Bernhard Reiter <ockham@raz.or.at>
* Fix directory locations in setup_win.py.
* Fix import path in setup_win.py
2013-02-27 Bernhard Reiter <ockham@raz.or.at>
* Backup when upgrading the DB to v0.16.
* Remove obsolete comment.
* Remove obsolete file gourmet/PngImagePluginUpToDate.py.
* Simplify a conditional expression.
* Avoid a KeyError when pressing Enter on an empty search entry.
* Remove gourmet/importers/mealmaster_importer.py from po/POTFILES.in.
2013-02-20 Bernhard Reiter <ockham@raz.or.at>
* Remove gourmet/importers/mealmaster_importer.py as it's obsolete.
That file lives now in gourmet/plugins/import_export/mealmaster_plugin/.
* Remove shebangs from non-executable files.
* Change wording of README.md a bit.
* Merge pull request #694 from MrShark/master
Make working in a virtualenv easier
2013-02-14 jens persson <jens@persson.cx>
* Update documentation
* changed /usr/bin/python to /usr/bin/env python to alow usage in virtualenvs
* Remove hardcoded install path
2013-02-06 Bernhard Reiter <ockham@raz.or.at>
Fix #288.
2013-02-05 Bernhard Reiter <ockham@raz.or.at>
* Remove some clauses that checked for SQLALchemy < 0.6 as we're relying on >= 0.7 anyway now.
* Add Integer primary key columns (named 'id') to all remaining tables.
2013-02-04 Bernhard Reiter <ockham@raz.or.at>
Remove pickle_key and pickle_val options from dbDic.
2013-02-03 Thomas Mills Hinkle <tom@pebble>
* gourmet/convert.py (integerp): Restore NUMBER_END_NO_RANGE_REGEXP
(integerp): Quick fix to NumberEnry
* gourmet/backends/db.py (regexp): Fix sqlite custom function
error -- regexp searching now works. This closes #691. This bug
was caused by a change in SQLAlchemy behavior 0.6->0.7.
2013-02-02 Thomas Mills Hinkle <tom@pebble>
* gourmet/plugins/import_export/mealmaster_plugin/mealmaster_importer.py (mmf_constants.__init__): servings->yields
* gourmet/plugins/import_export/krecipe_plugin/krecipe_importer.py (KrecHandler): servingsyields->
* gourmet/importers/importer.py (Importer.commit_rec): Update servings->yields.
* gourmet/backends/db.py (RecData.add_rec): Update servings/yields
code.
* gourmet/exporters/exportManager.py
(ExportManager.offer_multiple_export): Fix bug #234, #691.
2013-02-01 Bernhard Reiter <ockham@raz.or.at>
Unpickle Booleans and Strings that have erroneously remained pickled in the
database during previous Metakit -> SQLite -> SQLAlchemy database migrations.
Fixes #678.
2013-01-30 Bernhard Reiter <ockham@raz.or.at>
* Rename gourmet/sound_gnome.py to gourmet/sound_gst.py.
* Restructure directory layout once again.
Move images, icons, sound, and style directories to data/;
this is in preparation of a possible future move to DistutilExtra's
auto setup (see #679).
* Install FAQ and LICENSE to share/doc/gourmet/.
* Prepend chromium-browser to list of *.html document launchers.
* Prepend libreoffice to list of *.rtf document launchers.
* When exporting, point Save as dialog to user's Documents directory by default.
2013-01-29 Thomas Mills Hinkle <tom@pebble>
* gourmet/plugins/nutritional_information/nutrition.py
(NutritionData.get_matches): Make sure get_matches returns a list
as expected, not None.
(NutritionData.get_nutinfo_for_item): Handle empty units correctly.
(NutritionData.get_conversion_for_amt): Handle empty units correctly.
* gourmet/plugins/import_export/mealmaster_plugin/mealmaster_exporter.py (mealmaster_exporter.__init__): Fix boneheaded typo.
(mealmaster_exporter.write_attr): Update servings-->yields
(mealmaster_exporter.write_attr): Reduce padding to conform to MMF standard
(mealmaster_exporter.write_categories): Reduce padding to conform to MMF standard
(mealmaster_exporter.write_ing): Allow for empty units (fix boneheaded error)
* gourmet/plugins/import_export/html_plugin/html_exporter.py
(html_exporter.write_text): Fix NAME_TO_ATTR lookup issue w/
plugins.
* gourmet/plugins/field_editor/fieldEditor.py
(FieldEditor.fieldChangedCB): Fix possible issue with NAME_TO_ATTR
lookups and plugins searching for attributes that don't exist
there.
* gourmet/plugins/import_export/mealmaster_plugin/mealmaster_importer.py
(mmf_constants.__init__): Respect new Gourmet norms regarding
standard ingredient abbreviations (remove periods, mostly)
* gourmet/plugins/import_export/mealmaster_plugin/mealmaster_exporter.py
(mealmaster_exporter.__init__): Make sure category comes first as
per mealmaster specs.
(mealmaster_exporter.__init__): Remove redundant/stupid code
(mealmaster_exporter.write_ing): Fix ingredient code and make more
robust against future changes in defaults.
2013-01-25 Bernhard Reiter <ockham@raz.or.at>
* Mention BeautifulSoup in the Extra Requirements section of README.md.
* Merge pull request #689 from jraber/unbundleBeautifulSoup
Removed bundled (old) versions of BeautifulSoup.py
* Change back perms for bin/gourmet to 755.
2013-01-17 Jeff Raber <jeff.raber@gmail.com>
Removed bundled (old) versions of BeautifulSoup.py
BeautifulSoup.py seems to be available in the common linux distros. Otherwise, it can
be installed with 'pip install BeautifulSoup'
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=895228
2013-01-15 Bernhard Reiter <ockham@raz.or.at>
Add slogan to README.md ;-)
2013-01-12 Thomas Mills Hinkle <tom@pebble>
* gourmet/importers/importManager.py: gettext fix
2013-01-12 Bernhard Reiter <ockham@raz.or.at>
* Add new Integer primary keys to the shopcats, shopcatsorder, and pantry tables.
Those tables had Text columns as primary keys, which, when used with MySQL,
requires an extra parameter specifying the length of the substring that MySQL
is supposed to use for the key. Thus, we're adding columns named id of type
Integer and make them the new primary keys instead.
Fixes #681.
* Move *.gourmet-plugin files to plugins/, install to share/gourmet/plugins.
This is required for python-distutils-extra to be able
to translate and install *.gourmet-plugin files properly.
2013-01-09 Bernhard Reiter <ockham@raz.or.at>
* Change data/recipe.dtd perms from 755 to 644.
* .gitignore: Remove obsolete lines, add .pydevproject. .cvsignore: Delete.
2013-01-07 Bernhard Reiter <ockham@raz.or.at>
* Enable building of *.mo and *.gourmet-plugin files during development.
Furthermore, update CODING with instructions, and remove
bin/gourmet_in_place as it's now obsolete.
* Modify file locations in built settings.py, not the one in the source tree.
2013-01-06 Thomas Mills Hinkle <tom@pebble>
* gourmet/GourmetRecipeManager.py (RecGui.setup_main_window): Make sure search entry has focus.
* gourmet/plugins/listsaver/shoppingSaverPlugin.py: gettext fix
* gourmet/plugins/key_editor/recipeEditorPlugin.py: gettext fix
* gourmet/plugins/import_export/pdf_plugin/print_plugin.py: Fix gettext
2013-01-06 Bernhard Reiter <ockham@raz.or.at>
* Remove obsolete cruft from windows/ directory.
* Update website, download link and Tom's email address in NSIS script.
* In the HTML output, don't translate class names.
Otherwise, this would require CSS selectors to be also localized and would
not work across languages. That's obviously not how it should be done.
* Remove modules_check and other cruft from setup.py
This hasn't been used or updated for a while, and as it isn't really
supported by distutils, it has been more a source of redundancy (read
confusion and maintenance burden) in conjunction with dependencies
listed in our README.
* Rename README to README.md, and use Markdown to style it.
* Remove bin/__init__.py as it's obsolete now.
* Minor line layout fix.
* Replace our custom tools/gourmet_distutils.py by a python-distutils-extra dependency.
* Update po/POTFILES.in and po/gourmet.pot.
2013-01-05 Bernhard Reiter <ockham@raz.or.at>
* Replace some wildcard imports.
* Remove some cruft from gourmet/__init__.py.
2013-01-02 Bernhard Reiter <ockham@raz.or.at>
* Update requirements in the README file.
* Update setup.cfg to at least somewhat reflect current RPM based distributions.
* Remove rpm/gourmet.fedora.spec and rpm_build.sh.
This stuff was severely outdated, duplicates information from setup.py and
setup.cfg (if we're really going to keep providing RPMs which hasn't been done
during the past releases), and is maintained better at Fedora anyway.
* Change more URLS from Sourceforge to GitHub.
2013-01-01 Bernhard Reiter <ockham@raz.or.at>
* Change old SourceForge URLs to new GitHub ones where applicable.
* Move practically all program information to version.py and import it from there into setup.py and setup_win.py.
* Fix some install locations.
* Add back toolbar, with an option in the preferences dialog to hide it.
* Don't fall back to version = 0.11.0 in setup.py.
* Simplify some code.
2012-12-31 Bernhard Reiter <ockham@raz.or.at>
Remove BUG_URL link from gglobals.py as its both outdated and not used anywhere.
2012-12-30 Bernhard Reiter <ockham@raz.or.at>
* Don't use Gtk.InfoBar yet as it requires pyGtk >= 2.22. We'll keep this in a branch for now.
* Remove obsolete line from gglobals.py
* Move info.py contents back into version.py as we got rid of the critical circular dependency with OptionParser.py.
* Remove checks for gtk.CellRendererCombo as it has been part of GTK since v2.6.
* Determine location of installed files properly.
* Another stylesheet path fix in html_exporter.py.
2012-12-28 Bernhard Reiter <ockham@raz.or.at>
* Add *.html pattern to html_exporter_plugin.py's saveas_filters.
* Fix default.css location in HTML exporter plugin.
* Remove custom file type widget from FileSelectorDialog.
* Remove FileChooserSaveAs.py as it has long been obsoleted by gtk_extras/dialog_extras.py.
2012-12-25 Bernhard Reiter <ockham@raz.or.at>
* Let tools.gourmet_distutils.py take care of translation and installation of gourmet.desktop.
* Install png and svg icons to locations that enable desktop environments to pick proper file.
See http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html#directory_layout
2012-12-19 Bernhard Reiter <ockham@raz.or.at>
Remove obsolete GourmetFauxThreads.py and GourmetThreads.py.
2012-12-17 Bernhard Reiter <ockham@raz.or.at>
* Fix db.py to allow (dev) version suffices like 0.16.0-dev.
* Add patch to include schema.org metadata for HTML exporter by SF user freedo.
See https://sourceforge.net/tracker/?func=detail&aid=3519632&group_id=108118&atid=649654
and http://www.schema.org/Recipe, respectively.
* Add plurals handling fix by A. Katz.
"Just a quick patch to fix a bug in default.py.
The function for converting a plural to a singular unit had two issues.
a) WORD_TO_SING_PLUR_PAIR keys are lowercase but the word being handed to the function could be in any case
b) if the word is not in WORD_TO_SING_PLUR_PAIR it does nothing, this patch tries lang.guess_singulars before
giving up."
See https://sourceforge.net/tracker/?func=detail&aid=3420657&group_id=108118&atid=649654
2012-11-27 Bernhard Reiter <ockham@raz.or.at>
Remove obsolete line from setup.py
2012-11-26 Bernhard Reiter <ockham@raz.or.at>
* Fix gourmet/backends/db.py so it works with SQLAlchemy >= 0.7.
* Remove po/*/LC_MESSAGES/gourmet.mo files as they are generated at build time from po/*.po files.
2012-11-22 Bernhard Reiter <ockham@raz.or.at>
Remove obsolete file (now in gourmet/plugins/import_export/mastercook_import_plugin/)
2012-05-25 Thomas Hinkle <tmhinkle@gmail.com>
* Fixed conflict
* ++gettext
2012-04-27 Tom <tom@localhost6.localdomain6>
* gourmet/plugins/unit_display_prefs/__init__.py: import gettext
* gourmet/plugins/python_shell/__init__.py: import gettext
* gourmet/plugins/nutritional_information/nutrition.py (NutritionData.get_nutinfo): remove verbosity
* gourmet/plugins/nutritional_information/nutPrefsPlugin.py: import gettext
* gourmet/plugins/nutritional_information/main_plugin.py: import gettext
* gourmet/plugins/field_editor/__init__.py: import gettext
* gourmet/plugins/email_plugin/emailer_plugin.py: import gettext
* gourmet/plugins/duplicate_finder/recipeMergerPlugin.py: import gettext
* gourmet/plugin_gui.py: import gettext
* gourmet/info.py: import gettext
* gourmet/plugin_loader.py (Pluggable.get_plugin_by_module): Add
convenience function for grabbing plugin instances.
2012-04-22 Bernhard Reiter <ockham@raz.or.at>
Bump version number to 0.16.0-dev
2012-03-06 Bernhard Reiter <ockham@raz.or.at>
* Remove gettext_setup.py as its logic has been split in settings.py and gglobals.py (and info.py)
* Remove some obsolete logic from setup.py.
* Move localized stuff from version.py to newly created info.py to avoid circular dependencies.
* Move logic that searches for the data files path from gglobals.py to newly created settings.py.
* Wrap the path finding stuff in bin/_preamble.py in a function
* Add __init__.py to the bin/ directory so we can import it as a module.
* Rename --data-directory cmdline option to --gourmet-base.
* Fix occurrences of HELP_FILE constant.
2012-02-27 Bernhard Reiter <ockham@raz.or.at>
* Remove --image-directory and --ui-directory cmd line options, as those are now subdirectories of --data-directory.
* Replace custom inquiry if existing file should be overwritten by GTK one.
2012-02-26 Bernhard Reiter <ockham@raz.or.at>
* Replace create_manifest.py by MANIFEST.in
* Remove some more duplicates
2012-02-20 Bernhard Reiter <ockham@raz.or.at>
Minor setup.py fix
2012-02-16 Bernhard Reiter <ockham@raz.or.at>
Remove tools/gourmet_distutils as it's unused (there's still tools/gourmet_distutils.py)
2012-02-12 Bernhard Reiter <ockham@raz.or.at>
* Move website URL from GRM.py to version.py
* Replace old splash screen by new one
* Change directory layout once more. Looks good now, but still a lot of code fixes ahead.
2012-02-11 Bernhard Reiter <ockham@raz.or.at>
* Un-hardwire intltool's path under windows in setup.py
* Fix FAQ and LICENSE locations in code
* Update setup.cfg, mostly to use .bz2 compression
* Restructure data/ directory
* Add images/gourmet.svg, and remove a couple of outdated images.
* Rename glade/ directory to ui/
* Restructure directory layout to comply more to
http://as.ynchrono.us/2007/12/filesystem-structure-of-python-project_21.html
2012-02-10 Thomas Hinkle <tmhinkle@gmail.com>
* Fixed density of sugar (I think I'd used the density from a chemistry,
rather than a cooking, site, which didn't account for the air between
the sugar crystals when you measure it)
* Don't fail if elib.intl isn't present -- print a warning instead.
* Glade-->UI
2012-02-09 Bernhard Reiter <ockham@raz.or.at>
Rename i18n/ directory to po/ so intltool-update --maintain will work
2012-02-08 Bernhard Reiter <ockham@raz.or.at>
* Images cleanup
* Remove a stray .po file
* Rename gladed command line option to uid
* Rename some more methods from glade to ui (or builder)
* s/gladebase/uibase/g
* Use updated i18n/de.po from Launchpad
2012-02-07 Bernhard Reiter <ockham@raz.or.at>
* Replace custom hack in setup_gettext.py by elib.intl module
* Add Lauchpad header to i18n/de.po
2012-02-06 Bernhard Reiter <ockham@raz.or.at>
Update i18n/gourmet.pot translation template
2012-02-05 Bernhard Reiter <ockham@raz.or.at>
* New German translations by nobody (at) t4b.me
* i18n string unification fixes by nobody (at) t4b.me
* Another i18n fix
2012-02-01 Bernhard Reiter <ockham@raz.or.at>
* Yet another (somewhat prominent) i18n fix.
* Internationalize src/lib/plugins/import_export/archive_plugin/zip_importer_plugin.py
* s/ = /=/ in the *.gourmet-plugin.in files, which previously impeded
localization, as intltool-merge can't deal with whitespaces on the wrong places.
2012-01-31 Bernhard Reiter <ockham@raz.or.at>
* Fix i18n/POTFILES.in to properly include .gourmet-plugin.in files
* Add Russian localization files i18n/ru.po and src/lib/defaults/defaults_ru.py
by Alexander Prokoudine, from our Sourceforge patch tracker: see
https://sourceforge.net/tracker/?func=detail&aid=2858486&group_id=108118&atid=649654
and https://sourceforge.net/tracker/?func=detail&aid=2858485&group_id=108118&atid=649654
* Fix sort of a typo
* Replace occurrences of .props.someproperty by {g|s}et_property('someproperty') to fix bug #3480177
* Replace occurrences of .props.someproperty by {g|s}et_property('someproperty') to fix bug #3480177
* Another fix to make i18n work.
2012-01-30 Bernhard Reiter <ockham@raz.or.at>
Small i18n related fix.
2012-01-29 Bernhard Reiter <ockham@raz.or.at>
* Add domain=gourmet attribute to the interface tag in the .ui files