-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
1686 lines (859 loc) · 27.4 KB
/
CHANGES.txt
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
===============================
Change log for sw.allotmentclub
===============================
5.12.1 (2024-07-05)
===================
- Bugfix date calculation CSV booking import.
- Remove address change for Grimmlings.
- Add email variable to every letter.
- Fix deletion of keys and keylists.
- Add attachments to keylist keys.
5.12.0 (2023-12-18)
===================
- Switch Arbeitsstunden from 10 € to 25 €.
- Fix a bug in calculating the energy value.
- Add CSV import view for bookings.
5.11.1 (2023-09-18)
===================
- Allow special text in Energieabrechnung for disconnected energymeters.
5.11.0 (2023-07-30)
===================
- Add assignemnt todos.
5.10.0 (2023-06-19)
===================
- Remove "Kontoinhaber" from Beitrittserklärung.
- Add new and remove old users after new Vorstand was elected.
5.9.0 (2023-03-22)
==================
- Add category to depot items.
5.8.1 (2023-02-25)
==================
- Only add direct debit members to Mitgliedsbeitrag.
- Check iban of members when generating SEPA export.
5.8.0 (2022-12-09)
==================
- Bugfix: Calculation of energy value with advanced pay.
- Move SEPA XML generate to `python-sepaxml` library.
5.7.2 (2022-08-31)
==================
- Improve excel energy list export.
- Download map svg instead of pdf as pdf is broken.
5.7.1 (2022-07-08)
==================
- Fix filename of finances report (contained static year 2018).
- Remove dummy test code in xslx export of energy meters.
- Bugfix export and import of electicity new format.
5.7.0 (2022-06-30)
==================
- Bugfix display of semi html mails.
- Add non-members to energy meter export.
5.6.0 (2022-01-18)
==================
- Add membership fee data to mail data.
5.5.3 (2022-01-10)
==================
- Fix brown bag release.
5.5.2 (2022-01-10)
==================
- Fix map download view a little bit.
5.5.1 (2022-01-04)
==================
- Update sentry integration.
5.5.0 (2022-01-04)
==================
- Add new calculation for membership fee.
5.4.3 (2021-10-03)
==================
- Change address of Leuna Bungalow-Gemeinschaft.
- Improve energy billing procedure.
5.4.2 (2021-03-01)
==================
- Bugfix pyramid 2 update.
5.4.1 (2021-03-01)
==================
- Upgrade to `pyramid` 2.0.
5.4.0 (2021-02-10)
==================
- Remove dashboard.
5.3.1 (2021-02-02)
==================
- Move to private Pypi https://pypi.wehrmann.it.
5.3.0 (2021-01-11)
==================
- Add passive allotments to member vcard export.
- Add delete option to external recipients.
5.2.0 (2021-01-08)
==================
- Auto-fill Mitgliedsantrag and Lastschrifteinzug. (#21)
- Add german date formatting and sorting.
- Filter calendar events for organization ID. (#10)
- Show members bithdays in calendar. (#10)
5.1.1 (2021-01-07)
==================
- Bugfix deletion of some events.
5.1.0 (2021-01-07)
==================
- Small improvements and bugfixes.
- Add Termine page download for Info-Brief. (#10)
5.0.3 (2021-01-07)
==================
- Fix netatmo weather retrieval.
5.0.2 (2021-01-07)
==================
- Add ics export of calendar events. (#10)
5.0.1 (2021-01-07)
==================
- Fix parsing of german dates.
- Render SEPA-Lastschriften into calendar automagically. (#10)
5.0.0 (2021-01-07)
==================
- Implement a calendar. (#10)
4.16.0 (2021-01-05)
===================
- Bugfix edit active members with multiple allotments. (#12)
- Add attachment upload to members. (#11)
- Add filename to protocol attachments. (#16)
4.15.0 (2021-01-04)
===================
- Fix display of double bungalows in Map.
- Add active and passive members (#12)
4.14.0 (2020-12-29)
===================
- Add "Wirtschaftsplan" to the Konto-Typen View.
4.13.1 (2020-11-23)
===================
- Display all external recipients.
- Minor bugfixes.
4.13.0 (2020-10-22)
===================
- Remove some chars from iban when sending electricity mails.
- Add phone, note and organization to external recipients and members.
4.12.6 (2020-10-15)
===================
- Add ah signature.
4.12.5 (2020-08-24)
===================
- Small bugfix importing SEPA-Sammler.
- Add Zählerwechsel for Steinmüller.
- Fix Zählernummer for Schiffmann (222).
4.12.4 (2020-06-27)
===================
- Remove members, that already left the club, from the CalDAV export. (#20)
- Improve contrast in disabled textarea fields. (#14)
4.12.3 (2020-05-28)
===================
- FinTS-Integration now logs an error if a TAN is required.
4.12.2 (2020-05-28)
===================
- Fix brown bag release.
4.12.1 (2020-05-28)
===================
- Bugfix: No longer raise `NotImplemented` in bulletins.
- Add phone and mobile to form letter / mail.
4.12.0 (2020-01-16)
===================
- Integrate SEPA-Sammelüberweisung into SEPA-Sammler.
4.11.0 (2019-11-15)
===================
- Add map attachment to parcels.
- Add XML export of SEPA wire transfers.
4.10.0 (2019-11-11)
===================
- Fix import of energy values.
- Add Zählerwechsel for Dr. Helbig.
- Begin adding attachments to parcels.
4.9.4 (2019-10-30)
==================
- Add sourcemap for javascript code.
4.9.3 (2019-10-30)
==================
- Use sentry in frontend for error reporting.
4.9.2 (2019-10-29)
==================
- Add `product_id` to FinTS connection for better compatability with PSD2.
- Integrate `sentry` for better error reporting.
- Fixed some UI bugs.
4.9.1 (2019-10-21)
==================
- Update fints client to get fetching transactions working after PSD2.
4.9.0 (2019-07-29)
==================
- Add Zählerwechsel for Dr. Kern.
- Improve the creation of SEPA XML.
- Improve the import/export of energy values.
- Send a summary per mail with the key values of the Energieabrechnung.
4.8.0 (2019-06-11)
==================
- No longer show old members in Mitgliedskonten.
- Clean up external recipients by hiding this without an address to the public.
4.7.0 (2019-06-07)
==================
- Display user and edit date on email attachments.
- Remove double whitespace in mails.
- Allow pdf files as attachments to protocols.
4.6.0 (2019-01-28)
==================
- No longer send HTML mails, instead attach the content as pdf.
- Remove exception when logout view is called without being logged in.
4.5.1 (2018-12-07)
==================
- Add tendency to dashboard data.
4.5.0 (2018-12-07)
==================
- Add dashboard.
4.4.4 (2018-12-07)
==================
- Use `pool_pre_ping=True` to fix `terminating connection due to administrator command` ecxeption
in sqlalchemy.
- Save historical netatmo weather data in database.
4.4.3 (2018-11-05)
==================
- Update some dependencies to current release versions.
- Update energy mail contents to newest version.
- Fix energie value calculation if old calculations have no value.
- Fix sending mails with attachments that have unicode characters in filename.
4.4.2 (2018-06-28)
==================
- Add Datum column to account report.
- Fix a table rendering bug when a cell is empty.
4.4.1 (2018-06-28)
==================
- Fix brown bag release.
4.4.0 (2018-06-28)
==================
- Set value per member to 75,- € beginning 2019.
- Add value_last_year to Energieabrechnung.
- Add pdf export of virtual banking accounts.
4.2.2 (2018-06-18)
==================
- Made sure SEPA-SAMMLERS are not imported if no `SEPASammlerEntry` is specified.
4.2.1 (2018-06-11)
==================
- Bugfix: If member has multiple electic meters, energieabrechnung bookings where added for just
one of them.
4.2.0 (2018-05-28)
==================
- Bugfix: If member has multiple electic meters, advanced pay bookings where added for just one of
them.
- Update to pyramid 1.9.2.
- Increase mimetype field for depot uploads.
4.1.1 (2018-03-22)
==================
- Fix value format in XML SEPA export.
- Add option to reprint sent messages.
4.1.0 (2018-02-26)
==================
- Update badges.
- Add integration to circleci 2 and codeclimate.
4.0.4 (2018-02-23)
==================
- Remove auth config from radicale as its moved to the nginx server.
4.0.3 (2018-02-23)
==================
- Make sure radicale does only bind to localhost.
4.0.2 (2018-02-23)
==================
- Fix radicale server startup.
4.0.1 (2018-02-23)
==================
- Remove app-init stuff which was needed by the heroku nginx buildpack.
- Update netatmo client and scope it to only read station data.
- Retrieve banking credentials from pyramid settings instead of from the environment.
4.0.0 (2018-02-15)
==================
- Add compiled frontend code into package.
3.9.0 (2018-02-14)
==================
- Fix install requirements to be able to install them only from pypi.
3.8.0 (2018-02-13)
==================
- Prepare package for the first release on Pypi.
3.7.6 (2018-01-31)
==================
- Print firstname in the signature of letters.
3.7.5 (2018-01-31)
==================
- Print firstname in the signature of mails.
3.7.4 (2018-01-15)
==================
- Fix length validator if value is None.
- Fix import of Rechnungen. Be more verbose if import is broken.
3.7.3 (2018-01-14)
==================
- Fix tests.
3.7.2 (2018-01-14)
==================
- Fix brown bag release.
3.7.1 (2018-01-14)
==================
- Increase time to look back when importing transactions.
3.7.0 (2017-12-22)
==================
- Add validation to most of the form fields.
3.6.1 (2017-12-21)
==================
- Dont save messages sent via application in inbox.
3.6.0 (2017-12-21)
==================
- Show waste water list in application.
- Show property tax b list in application.
- Show energy price values.
3.5.2 (2017-12-05)
==================
- Add [email protected] as CC if mail is sent to just one recipient.
3.5.1 (2017-11-18)
==================
- Fix bug in assigment update form.
- Remove SW from Ende in protocols.
- Add protocol attachment delete view.
3.5.0 (2017-11-08)
==================
- Add member add form.
3.4.9 (2017-11-06)
==================
- Add empty title to external recipients.
3.4.8 (2017-11-03)
==================
- Add a mask icon which gets rendered in Safari pinned tabs.
3.4.7 (2017-10-12)
==================
- Prepare Energieabrechnung 2017.
3.4.6 (2017-09-20)
==================
- Add access for eberhard kietz as Behoerdenbeauftragter.
3.4.5 (2017-09-18)
==================
- Use `mt-940` egg instead of checkout as changes are released now.
- Dont be too strict when rendering PDFs.
- Make protocoll details more robust against wrong user input.
3.4.4 (2017-09-01)
==================
- Repair tests.
3.4.3 (2017-09-01)
==================
- Allow adding MS Word documents and images to mails as attachments.
3.4.2 (2017-08-24)
==================
- Fix bug in generating frontend sources.
3.4.1 (2017-08-24)
==================
- Updated frontend libraries.
3.4.0 (2017-08-22)
==================
- Energieabrechnung is now a ful integrated workflow.
3.3.8 (2017-08-21)
==================
- Fix inbound webhook special date.
3.3.7 (2017-08-18)
==================
- Just retrieve bookings from the last 7 days.
3.3.6 (2017-08-17)
==================
- Add missing frontend images.
3.3.5 (2017-08-17)
==================
- Fix postmark inbound webhook if attachment has a long mimetype.
3.3.4 (2017-08-17)
==================
- No longer raise Exception if SentMessageInfo is non as this results in recursive errors.
3.3.3 (2017-08-17)
==================
- No longer raise Exception if SentMessageInfo is non as this results in recursive errors.
3.3.2 (2017-08-17)
==================
- Fix syntax error in portal.ini.
3.3.1 (2017-08-17)
==================
- Send exceptions per mail.
3.3.0 (2017-08-16)
==================
- Update pyramid to version 1.9.1.
3.2.11 (2017-08-07)
===================
- Add HTML parser for incoming mail.
3.2.10 (2017-07-28)
===================
- Add signature for hs.
3.2.9 (2017-07-27)
==================
- Add fallback if netatmo API is not working.
3.2.8 (2017-07-23)
==================
- Repair download of protocol attachments after upgrade to Python 3.6.
- Decrease font size of bulletins from 20pt to make room for more content.
3.2.7 (2017-07-16)
==================
- Fix duplicate import of SAMMLER-LS.
3.2.6 (2017-07-04)
==================
- Fix import of SAMMLER-LS.
3.2.5 (2017-06-22)
==================
- Change Vorsitzender in all letters to the current one.
3.2.4 (2017-06-19)
==================
- Look wider in the history when retrieving fints items.
3.2.3 (2017-06-19)
==================
- Add new users Andreas Mielke and Constanze Seyfert.
3.2.2 (2017-06-16)
==================
- Use `babel` to format currencies and translate datetimes OS independent.
3.2.1 (2017-06-15)
==================
- Revert back to localized datime and currency formatting as problems on heroku side are solved.
3.2.0 (2017-06-14)
==================
- Update to Pyramid 1.8.4.
- Use the python library `fints` to replace the old `aqbanking` script.
3.1.2 (2017-06-09)
==================
- Add a reply view for messages.
- Use `pytest-catchlog` in favor of `pytest-capturelog` which is no longer maintained.
- Switch to XSLX export for Zählerstände and Einladungsliste MV.
- Fixed download of Betritt and Lastschrift.
3.1.1 (2017-05-30)
==================
- Fix member edit for after switch to Python3.
- Add more debugging output for delivery webhook.
3.1.0 (2017-05-26)
==================
- Fix error if no IP was sent in Postmark webkook.
- Add mail inbox and split old mail view into sent and drafts.
3.0.0 (2017-05-24)
==================
- Bump python version from Python 2.7 to Python 3.6.
3.6
2.12.0 (2017-05-16)
===================
- Bump all versions of packages to the newest ones.
2.11.1 (2017-05-12)
===================
- Fix tests on circleCI.
2.11.0 (2017-05-12)
===================
- Add upport for delivery postmark webhook.
- Add postmark inbound webhook.
2.10.9 (2017-04-27)
===================
- Readd codecov upload (JS) as its no longer broken for circleci.
2.10.8 (2017-03-22)
===================
- No longer display members and users from different organizations in dropdowns.
2.10.7 (2017-03-16)
===================
- Remove codecov upload (JS) as its broken for circleci.
2.10.6 (2017-03-16)
===================
- Fix a bug in deployment process.
2.10.5 (2017-03-16)
===================
- Set member Beitrag to 65,- EUR.
- Increase proxy cache so that the map renders correctly.
2.10.4 (2017-03-09)
===================
- Fix a bug where mails were sent to people in the wrong organization.
2.10.3 (2017-02-21)
===================
- Fix segmentation fault during transaction import.
- No longer reimport transaction before 2017.
2.10.2 (2017-02-07)
===================
- Fix access to other vcf addressbook data.
2.10.1 (2017-02-07)
===================
- Add organization name to vcf addressbook data.
2.10.0 (2017-02-07)
===================
- Support multiple organizations when writing vcf addressbook data.
2.9.0 (2017-02-07)
==================
- Add birthday to members.
- Add script to import members from CSV.
2.8.4 (2017-01-19)
==================
- Also display rain info of the last 24h.
2.8.3 (2017-01-19)
==================
- Improve visual appearance of current temperature.
2.8.2 (2017-01-19)
==================
- Fix some more display bugs on mobile devices.
2.8.1 (2017-01-19)
==================
- Fix a display bug on mobile devices.
2.8.0 (2017-01-19)
==================
- Display current temperature in dashboard.
2.7.5 (2017-01-11)
==================
- Rollback readonly mode as it is not working correctly.
2.7.4 (2017-01-11)
==================
- Switch DAV to readonly mode.
2.7.3 (2017-01-11)
==================
- Debug non starting CardDAV server.
2.7.2 (2017-01-11)
==================
- Debug non starting CardDAV server.
2.7.1 (2017-01-11)
==================
- Fix tests.
2.7.0 (2017-01-11)