-
Notifications
You must be signed in to change notification settings - Fork 31
/
NEWS
5138 lines (3469 loc) · 169 KB
/
NEWS
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
Overview of changes in gnome-calculator 47.0
* Updated translations
* Fixed flatpak build !181 (Hari Rana)
* Don't use symbolic icons for the window !182 (Balló György)
Overview of changes in gnome-calculator 47.rc
* Updated translations
* Added brand colors !178 (Brage Fuglseth)
Overview of changes in gnome-calculator 47.beta
* Updated translations
* Fix hex string conversion for bitwise operator !177 (Xiong Nandi)
* Force LTR for buttons !171 (Khalid Abu Shawarib)
* Added kWh, MJ, KJ unit support #417 (Robert Roth)
* Sort conversion categories alphabetically #395 (Robert Roth)
* Removed obsolete bulgarian translations #402 (Robert Roth)
* Only allow alphanumeric values for variable names #396 (Robert Roth)
* Replace base_label with buttons !173 (Clément Mathieu--Drif)
* Updated flathub badge !174 (Brage Fuglseth)
* Use adwaita spinner !175 (Cristopher Davis)
Overview of changes in gnome-calculator 47.alpha
* Updated translations
* Support VND currency #387 (Robert Roth)
* Fixed incorrect event handling #392 (Robert Roth)
* Removed Shift left/right dropdown #330 (Robert Roth)
* Improved popover remove buttons #401 (Robert Roth)
* Use result format instead of number format #399 (Robert Roth)
* Ported to Adwaita adaptive dialogs (Robert Roth)
* Disable undo button if nothing to undo #280 (Robert Roth)
* Metainfo improvements (Andre Klapper)
* Keep last conversion options at launch #351 (Robert Roth)
* Minor improvements to the undo button !166 (Automeris naranja)
* Make sure to use the correct app id for development builds !170 (Christopher Davis)
* Stop using orange accent color !169 (Alice Mikhaylenko)
* A11y announce status changes !172 (Lukáš Tyrychtr)
Overview of changes in gnome-calculator 46.0
* Updated translations
* Metainfo improvements (Alexandre Franke, Andre Klapper)
Overview of changes in gnome-calculator 46.rc
* Updated translations
* Metainfo (homepage, developer id) improvements (Sophie Herold, Robert Roth)
Overview of changes in gnome-calculator 46.beta
* Updated translations
Overview of changes in gnome-calculator 46.alpha
* Updated translations
* Allow substring search in the unit selection drop-downs #338 (Lukáš Tyrychtr)
* libsoup library usage update (Robert Roth)
* appdata updates !158 (Sabri Ünal)
* Ported some components to adwaita !159 (Pig)
* Support Argentine Peso currency #370 (Pacho Ramos)
* Reload conversion rates if in search-provider conversion fails !162 (Vladislav Yegorov)
* Add Troy ounce (ozt) as new unit !109 (Gwyneth Morgan)
Overview of changes in gnome-calculator 45.0.2
* Updated translations
Overview of changes in gnome-calculator 45.0.1
* Retagging release
Overview of changes in gnome-calculator 45.rc
* Updated translations
Overview of changes in gnome-calculator 45.0
* Updated translations
* Search provider performance improvements !154, !155, !156 (Christian Hergert)
* Use numeric font instead of monospace #290 (Robert Roth)
* Fixed electron-volt unit abbreviation #347 (Robert Roth)
* Fixed erroneous Joule unit name #348 (Robert Roth)
* Fixed missing build dependency !157 (Jeremy Bicha)
Overview of changes in gnome-calculator 45.beta
* Updated translations
* Fixed variable and function popover reverse typing #335, #320 (Robert Roth)
* Better left/right cursor key handling !153 (Seth Falco)
* Improved toolbar using Adwaita library !151 (Felipe Kinoshita)
* Flatpak build improvements (Robert Roth)
Overview of changes in gnome-calculator 45.alpha
* Updated translations
* Remember window size #328 !146 (Leonard K, Alice Mikhaylenko)
* Allow opening Main Menu by pressing F10 !142 !149 (Automeris naranja)
* Extend bit-shifting limit #306 !143 (J Sory)
* Added new energy units !143 (J Sory)
* Added TWD support via Bank of Canada rates #27 !148 (Mário Adriano)
* Added legal section for exchange rate source attribution (Robert Roth)
* Added United Nations Treasury exchange rate datasource (Robert Roth)
* Added Jamaican Dollar currency #291 (Robert Roth)
* Added Ukrainian hryvnia currency #278 (Robert Roth)
* Added Nigerian Naira currency #142 (Robert Roth)
* Changed symbolic icon to C on the clear button #336 (Robert Roth)
* Dropped VEF currency support #78 (Robert Roth)
* Use new vala-nightly SDK extension for flatpak (Robert Roth)
Overview of changes in gnome-calculator 44.0
* Updated translations
Overview of changes in gnome-calculator 44.rc
* Updated translations
Overview of changes in gnome-calculator 44.beta
* Updated translations
* Improved factorization !141 (J. Sory)
* Number format selection documentation improvements #321 (Robert Roth)
* Made builtin function descriptions translatable #323 (Robert Roth)
* Fixed display showing 0 on startup #318 (Robert Roth)
* Improved button tooltips !132 (sunflowerskater)
* Added signed int support to programming mode !110 (Erik Wolf)
* i and e constants updated according to ISO 80000-2:2009 !137 (majjejjam)
* Help overlay updates !133 (Sabri Ünal)
* Added preferences shortcut !129 (Sabri Ünal)
* Destroy dialog after clicking cancel #310 (Jaycee Santos)
Overview of changes in gnome-calculator 43.0.1
* Fixed appdata versioning (Robert Roth)
Overview of changes in gnome-calculator 43.0
* Removed old issue tracker references !128 (Jake Dane)
Overview of changes in gnome-calculator 43.rc
* Updated translations
* Fix crash when entering new function name !124 (Nathaniel Russel)
* Fix source view border !121 (Alexander Mikhaylenko)
* Flatpak build update !122 (Bartłomiej Piotrowski)
* Port about window to libadwaita !119 (Christopher Davis)
* Port to libsoup3 !120 (AppleME)
Overview of changes in gnome-calculator 43.alpha
* Updated translations
* Fixed broken undo/redo #266 (Robert Roth)
* Make sure variable name definitions work with whitespace too (Robert Roth)
* Fix translatable strings !116 (Maximiliano)
* Fixed missing implicit multiplication with variable and root #279 (Robert Roth)
* meson warning fixes (Robert Roth)
Overview of changes in gnome-calculator 42.2
* Updated translations
* Fixed incorrect history with bits toggling #281 (Robert Roth)
* Fixed crash when typing in variable popover #282 (Robert Roth)
* Fixed incorrect libxml usage #283 (Luca Bacci, Robert Roth)
Overview of changes in gnome-calculator 42.1
* Updated translations
* Fixed broken undo/redo #266 (Robert Roth)
* Removed automatic closing brace addition #271 (Robert Roth)
* Fixed incorrect percentage symbol precedence handling #236, #275 (Robert Roth)
Overview of changes in gnome-calculator 42.0
* Updated translations
Overview of changes in gnome-calculator 42.rc
* Updated translations
* Use new gnome post_install script !106 (Bobby Rong)
* gcalc build fixes (Daniel Espinoza Ortiz)
* Updated screenshots (Christopher Davis)
* Set default focus to entry (Robert Roth)
Overview of changes in gnome-calculator 42.beta
* Updated Translations
* Fixed build issues with GCI entry controller tests #250 (Robert Roth)
* Force LTR in history view #252 (Robert Roth)
* programing mode: Force bit digits to be always LTR #258 (Yosef Or Boczko)
* Use AdwApplication (Alexander Mikhaylenko)
* ui: Fix styles !105 (Alexander Mikhaylenko)
Overview of changes in gnome-calculator 42.alpha
* Updated Translations
* build: Support flatpak development builds (Óscar Fernández Díaz)
* build: migrated to GTK4 !98 (Cristopher Davis, Robert Roth)
* entry: Added currencies completion provider (Robert Roth)
* entry: Fixed percentage evaluation error #237 (Robert Roth)
* internal: Moved history view from MathDisplay to MathWindow (Robert Roth)
* window: set default width for basic and keyboard mode #240 (Robert Roth)
* buttons: removed destructive action class from clear button #242 (Robert Roth)
* converter: search support in unit selector, separate conversion category selector #108 (Robert Roth)
Overview of changes in gnome-calculator 41.0
* Updated Translations
* Use first translated symbol for conversion with button #219 (Robert Roth)
* Appdata includes hardware support information (Adrien Plazas)
Overview of changes in gnome-calculator 41.rc
* Updated Translations
Overview of changes in gnome-calculator 41.alpha
* Updated Translations
* Adaptive preferences window !85 (Adrien Plazas)
* Fixed currency conversion using convert button #216 (Robert Roth)
* User interface reworked, adaptive UI !81 (Adrien Plazas)
* Enlarged calculator icon in help !82 (Sabri Ünal)
* Code cleanup (Robert Roth)
* Fixed kilohertz shorthand !87 (scootergrisen)
* Fixed donation link !88 (René Genz)
* Added support using calculator without currency conversion for privacy !89 (Ray Strode)
* Added support for function description of custom functions using @ !90 (Martin Jirku)
Overview of changes in gnome-calculator 40.0
* Updated Translations
Overview of changes in gnome-calculator 40.rc
* Updated Translations
* Resize window after switching mode !78 (joshas)
* Fixed compilation warnings (Robert Roth)
* Support offline currency conversion tests #208 (Robert Roth)
* Use official unit on conversion button click #207 (Robert Roth)
* Fixed temperature unit typos #211 (Robert Roth)
* Ellipsize conversion labels #17 (Robert Roth)
* Added Ctrl+Delete shortcut for clearing the current equation #187 (Robert Roth)
* Allow multiple decimal points #166. #5 (Robert Roth)
* Added Ctrl+O shortcut for degrees symbol (Robert Roth)
* Use gtk-sourceview 4.8 !80 (Robert Roth)
Overview of changes in gnome-calculator 40.beta
* Updated Translations
* Fixed CI build (Robert Roth)
* Fixed issues with initial loading of currencies (Robert Roth)
* Rework currency retrieval preparing for currency provider plugins (Robert Roth)
* Fixed commandline conversions #33 (Robert Roth)
* Added currency conversion tests (Robert Roth)
* Added support for frequencies conversion (Dave Hulst)
* Added support for converting to and from weeks (Dave Hulst)
* Added support for converting to and from centuries and decades (Dave Hulst)
* Increase buttons font size #201 (Robert Roth)
* Added % button to Advanced mode (Dave Hulst)
* Show 4 decimals in converter instead of only two #203 (Robert Roth)
* Added style classes to buttons !76 (Dave Hulst)
Overview of changes in gnome-calculator 40.alpha
* Updated Translations
* Use libhandy for window and headerbar !69 (Cristopher Davis)
* Use C instead of Clr in help !70 (scootergrisen)
* Fixed broken currency conversion on first start #199 (Robert Roth)
* Removed duplicate word from help #198 (Robert Roth)
* Added lbs shortcut for pounds conversion (Robert Roth)
* Fixed inconsistent word size (A. M. Roswell)
* Removed unused trunc button from programming mode #41 (Robert Roth)
* Fixed deprecation warnings
* Added Serbian Dinar with fixed rate #49 (Robert Roth)
* Added Bangladeshi Taka with fixed rate #191 (A. M. Roswell)
* Updated mailing list contact to Discourse (Robert Roth)
* Added basic help page for programming mode (A. M. Roswell)
* Added insert character code button (A. M. Roswell)
* Dim inapplicable bits on word size change #189 (A. M. Roswell)
* Make the conversion labels selectable (Robert Roth)
* Do not convert on swap #170 (Robert Roth)
* Word size changer in programming mode !58 (A. M. Roswell)
* Added metric cups conversion unit !53 (Lucy Coleclough)
* Fixed astronomical unit conversion !51 (Thomas Nilsson)
* Fixed feet-based units name, added mph and kph shortcuts #180 (Robert Roth)
* Use shell copy to clipboard action #178 (Robert Roth)
* Fixed preferences of angle units !56 (Delton Ding)
Overview of changes in gnome-calculator 3.38.0
* Updated German translation (Mario Blättermann)
* Updated Catalan translation (Jordi Mas)
* Updated Swedish translation (Anders Jonsson)
* Updated Hungarian translation (Balázs Meskó)
* Updated Danish translation (Ask Hjorth Larsen, Alan Mortensen)
* Updated Greek translation (Efstathios Iosifidis)
Overview of changes in gnome-calculator 3.37.92
* Updated Finnish translation (Jiri Grönroos)
* Updated Galician translation (Fran Diéguez)
* Updated Spanish translation (Daniel Mustieles García)
* Updated Polish translation (Piotr Drąg)
* Updated Turkish translation (Emin Tufan)
* Updated Slovenian translation (Matej Urbančič)
* Updated Croatian translation (Goran Vidović)
* Updated Japanese translation (sicklylife)
* Updated Czech translation (Marek Černocký)
* Updated Brazilian Portuguese translation (Yuri Gomes)
* Updated Persian translation (Daniel Behzadi)
* Updated Dutch translation (Nathan Follens)
* Updated Catalan translation (Jordi Mas)
* Updated British English translation (Zander Brown)
* Updated Serbian translation (Марко М. Костић (Marko M. Kostić))
* Updated Slovak translation (Dušan Kazik)
* Updated Korean translation (Changwoo Ryu)
Overview of changes in gnome-calculator 3.37.90
* Add tooltips for bits in programming mode !46 (Olliver Schinagl)
* Updated French translation (Guillaume Bernard)
* Updated Indonesian translation (Andika Triwidada)
* Updated Ukrainian translation (Daniel Korostil, Yuri Chornoivan)
* Updated Catalan translation (Jordi Mas, Gil Forcada)
* Updated Basque translation (Ibai Oihanguren Sala, Asier Sarasua Garmendia)
* Updated Hebrew translation (Yosef Or Boczko)
* Updated Friulian translation (Fabio Tomat)
* Updated Slovenian translation (Matej Urbančič)
* snap packaging updates (Ken VanDine)
* Added link to website in About #155 (Robert Roth)
* Added speed conversions !49 (Mathieu Heurtevin)
* Updated Romanian translation (Florentina Mușat)
* History view follows preferences #105, #159, #168 (Robert Roth)
* Added month as time unit #158 (Robert Roth)
* Better help for variables example usage #154 (Robert Roth)
* Defined pi variable, added pi button in programming mode #153 (Robert Roth)
* CI build fixes (Robert Roth)
* Updated app icon !47 (Jakub Steiner)
* Fixed bug returning empty string as result #152 (Robert Roth)
* Support latex-style multiplication #164 (Robert Roth)
* Added support for tau constant #46 (Robert Roth)
* Unify constant handling (Robert Roth)
* Separate UI files from sources (Robert Roth)
* Moved number format selection to separate menu #24 (Robert Roth)
* Replaces mode selector shortcuts with Ctrl+Alt (Robert Roth)
* Clear answer if editing right before it #59, #161 (Robert Roth)
* Moved preferences dialog to UI file (Robert Roth)
* Refresh bits panel after calculation #38 (Robert Roth)
* Updated Spanish translation (Daniel Mustieles García)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Kazakh translation (Baurzhan Muftakhidinov)
* Updated Lithuanian translation (Aurimas Černius)
* Updated Chinese translation (Boyuan Yang)
* Updated German translation (Tim Sabsch)
* Removed past author addresses #174 (Robert Roth)
* Updated Swedish translation (Anders Jonsson)
Overview of changes in gnome-calculator 3.36.0
* Updated Catalan translation (Jordi Mas)
* Fixed broken markup in XHosa UI translation (Andre Klapper)
* Updated Swedish translation (Anders Jonsson)
* Updated Italian translation (Janvitus)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated German translation (Tim Sabsch)
* Updated Dutch translation (Nathan Follens)
* Fixed broken markup in Dzongka UI translation (Andre Klapper)
* Updated Czech help translation (Marek Černocký)
* Updated Hungarian translation (Balázs Úr)
Overview of changes in gnome-calculator 3.35.92
* Updated Spanish translation (Daniel Mustieles García)
* Updated Croatian translation (Goran Vidović)
* doc: Don't pass --fatal-warnings to valadoc (Rico Tzschichholz)
* Updated Lithuanian translation (Aurimas Černius)
* Updated Swedish translation (Anders Jonsson)
* Removed obsolete keyboard shortcut #148 (Robert Roth)
* Updated Persian translation (Danial Behzadi)
* Updated Basque translation (Asier Sarasua Garmendia)
* Update British English translation (Bruce Cowan)
* Updated Japanese translation (sicklylife)
* Updated Czech translation (Marek Černocký)
* Updated Turkish translation (Emin Tufan)
* Updated Finnish translation (Jiri Grönroos)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Updated Hungarian translation (Balázs Meskó)
* Updated Chinese (Taiwan) translation (pesder)
* Updated Danish translation (Alan Mortensen)
* Updated Serbian translation (Марко М. Костић (Marko M. Kostić))
* help: Update icon for 3.36 (Andre Klapper)
* Updated Karbi translation (J T)
* Updated Korean translation (Changwoo Ryu)
* Updated French translation (Julien Humbert)
* Updated Polish translation (Piotr Drąg)
Overview of changes in gnome-calculator 3.35.90
* Updated Greek translation (Efstathios Iosifidis)
* Updated Indonesian translation (Sucipto)
* Drop padding around the display !40 (Adrien Plazas)
* Updated Keyboard Shortcuts (Sabri Ünal)
* Handle Escape and Enter correctly with completion #144 (Robert Roth)
* Updated Spanish translation (Daniel Mustieles García)
* Updated Slovak translation (Dušan Kazik)
* Added F10 for primary menu shortcut #148 (Robert Roth)
* Updated Catalan translation (Jordi Mas)
* Updated Friulian translation (Fabio Tomat)
* Updated app icon !43 (Tobias Bernard)
* Updated Malay translation (Umarzuki Mochlis)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Added Rack Units to the conversions !37 (Léo Gillot-Lamure)
* Updated Karbi translation (J T)
* Fixed freeze on calculating atan(+/-i) #139 (Robert Roth)
* Fixed mode shortcuts by removing blocking mnemonics #138 (Robert Roth)
* Implemented result history browsing using alt left/right #129 (Robert Roth)
* Added translator comments for possible modes as command line arguments !38 (Rafael Fontenelle)
Overview of changes in gnome-calculator 3.35.3
* Updated Chinese (Taiwan) translation (Yi-Jyun Pan)
* Updated Spanish translation (Daniel Mustieles)
* Updated Swedish translation (Anders Jonsson)
* Help updates (Andre Klapper)
* Updated Galician translation (Fran Diéguez)
Overview of changes in gnome-calculator 3.35.2
* Updated Italian translation (Milo Casagrande)
* Updated Catalan translation (Jordi Mas)
* Updated Japanese translation (Ryuta Fujii)
* Updated Danish translation (Ask Hjorth Larsen)
* List possible modes in commandline help #112 (Robert Roth)
* Add square feet unit #132 (Robert Roth)
* Base conversion display selectable #123 (Robert Roth)
* Created nightly icon (Jakub Steiner)
* Snap build updates (Heather Ellsworth)
* Updated Spanish translation (Daniel Mustieles)
* GCalc library code fixes (Rico Tzschichholz, Daniel Espinoza Ortiz)
* Update required meson version (Diego Escalante Urrelo)
* Updated Friulian translation (Fabio Tomat)
* Updated Persian translation (Danial Behzadi)
* Adapt code to changed gtk+-3.0 bindings (Rico Tzschichholz)
* Added GCi libary and tests for controllers for widgets (Daniel Espinoza Ortiz)
* Updated Czech translation (Marek Černocký)
* Updated Indonesian translation (Andika Triwidada)
* Solve on = key if input isq not a variable name #22 (Alberto González Palomo)
Overview of changes in gnome-calculator 3.34.0
* Updated Finnish translation (Jiri Grönroos)
Overview of changes in gnome-calculator 3.33.92
* Updated Czech translation (Marek Černocký)
* Updated Finnish translation (Jiri Grönroos)
* Updated German translation (Tim Sabsch)
* Updated Lithuanian translation (Aurimas Černius)
* Updated Polish translation (Piotr Drąg)
* Updated Persian translation (Danial Behzadi)
* Updated Serbian translation (Марко М. Костић (Marko M. Kostić))
* Updated Latvian translation (Rūdolfs Mazurs)
* Updated Galician translation (Fran Diéguez)
* Updated British English translation (Zander)
* Updated Turkish translation (Ahmet Elgün)
* Updated Japanese translation (Ryuta Fujii)
* Updated Catalan translation (Jordi Mas)
* Updated French translation (Charles Monzat)
* Updated Korean translation (Changwoo Ryu)
* README updates (Roger)
Overview of changes in gnome-calculator 3.33.90
* Updated Dutch translation (Nathan Follens)
* Updated Croatian translation (Goran Vidović)
* Updated Swedish translation (Anders Jonsson)
* Updated Friulian translation (Fabio Tomat)
* Updated Slovenian translation (Matej Urbančič)
* Updated Karbi translation (J T)
* Updated Basque translation (Asier Sarasua Garmendia)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Updated Catalan translation (Jordi Mas)
* Updated Romanian translation (Florentina Mușat)
* Flatpak build cleanup (Jordan Petridis)
* Debug messages cleanup (Daniel Espinosa Ortiz)
Overview of changes in gnome-calculator 3.33.3
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Hungarian translation (Balázs Úr)
* Updated Spanish translation (Daniel Mustieles)
* Updated Greek translation (Efstathios Iosifidis)
* calculator library build fixes (Daniel Espinosa Ortiz)
* CI build fixes (Ken VanDine)
* Added mnemonics for primary menu items #113 (Robert Roth)
* Dropped leading zeros octal prefix #114, #109, #110 (Robert Roth)
Overview of changes in gnome-calculator 3.33.2
* Separated calculator library !19 (Daniel Espinosa Ortiz)
* Ensure icon is available for shell (Ken VanDine)
* Updated French translation (Charles Monzat)
* Updated Catalan translation (Jordi Mas)
* Support entering left/right shift with keyboard #98 (Robert Roth)
* Updated Croatian translation (Goran Vidović)
* Fixed CFA conversion rate #102 (Robert Roth)
* Remove copy icon from search provider results #103 (Robert Roth)
* Do not assume octal base for binary numbers #101 (Robert Roth)
* Show thousands separator in unit converter #102 (Robert Roth)
* Use currency name instead of display name for conversion #106 (Robert Roth)
* Quit warns and closes all windows #51 (Robert Roth)
* Avoid normalizing the equation twice in search #104 (Pascal Nowack)
* Ignore keypresses while calculating results #47 (Robert Roth)
* Only allow one decimal point in numbers #5 (Robert Roth)
* Application icon updated in help (Andre Klapper)
* Updated Danish translation (Ask Hjorth Larsen)
* Updated Friulian translation (Fabio Tomat)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Basque translation (Asier Sarasua Garmendia)
* Updated Chinese translation (Dingzhong Chen)
Overview of changes in gnome-calculator 3.32.0
* Updated Esperanto translation (Kristjan Esperanto)
* Updated Korean translation (Changwoo Ryu)
* Updated Slovenian translation (Matej Urbančič)
* Snap build update (Ken VanDine)
Overview of changes in gnome-calculator 3.31.92
* Updated Turkish translation (Emin Tufan)
* Updated French translation (Guillaume Bernard)
* Updated Dutch translation (Nathan Follens)
* Updated Lithuanian translation (Aurimas Černius)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Updated Italian translation (Milo Casagrande)
* Updated Russian translation (Stas Solovey)
* Updated Serbian translation (Марко Костић)
* Updated Friulian translation (Fabio Tomat)
* Updated German translation (Tim Sabsch)
* Updated Vietnamese translation (Trần Ngọc Quân)
* Updated Latvian translation (Rūdolfs Mazurs)
* Updated Finnish translation (Jiri Grönroos)
Overview of changes in gnome-calculator 3.31.91
* Updated Danish translation (Alan Mortensen)
* Updated Kazakh translation (Baurzhan Muftakhidinov)
* Updated Catalan translation (Jordi Mas)
* Updated Swedish translation (Anders Jonsson)
* Updated Czech translation (Marek Cernocky)
* Updated Slovenian translation (Matej Urbančič)
* Updated Japanese translation (Ryuta Fujii)
* Updated Spanish translation (Daniel Mustieles)
* Updated Romanian translation (Daniel Șerbănescu)
* Updated Galician translation (Fran Diéguez)
* Updated Turkish translation (Emin Tufan)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Polish translation ()
* Updated Hungarian translation (Balázs Úr)
* Additional syntax for unit conversion (Tuomas Mikkola)
* Updated Spanish translation (Daniel Mustieles)
* Updated Finnish translation (Jiri Grönroos)
* Updated Friulian translation (Fabio Tomat)
* Updated Galician translation (Fran Diéguez)
Overview of changes in gnome-calculator 3.31.90
* Updated Friulian translation (Fabio Tomat)
* Updated Greek translation (Tom Tryfonidis)
* Updated Swedish translation (Anders Jonsson)
* Updated Spanish translation (Daniel Mustieles)
* Updated Japanese translation (Ryuta Fujii)
* Updated Slovenian translation (Matej Urbančič)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Hungarian translation (Balázs Úr)
* Updated Czech translation (Daniel Rusek)
* Updated Catalan translation (Jordi Maas)
* snap build fixes (Jeremy Bicha)
* Exchange rate update interval preference #58 (Robert Roth)
* Updated and fixed appdata !20 (Harald H.)
* Fix for digit transformed into ^ on double * #91 (Robert Roth)
* Accept comma and decimal point as decimal separator #86 (Robert Roth)
Overview of changes in gnome-calculator 3.31.3
* Added Alt+T shortcut for keyboard mode #81 (Robert Roth)
* Use US prefix for non-imperial units #84 (Robert Roth)
* Updated French translation (Guillaume Bernard)
* Updated Spanish translation (Daniel Mustieles)
* Updated Esperantoo translation (Kristjan Mustieles)
Overview of changes in gnome-calculator 3.31.2
* Readded missing accelerators (Robert Roth)
* Use GLib.List.deep_copy() to fix argument type mismatch (Rico Tzschichholz)
* Write all settings at once using delayed backend (Tomasz Miasko)
* Updated Czech translation (Marek Cernocky)
* Updated Slovenian translation (Matej Urbančič)
* Updated Slovak translation (Dušan Kazik)
Overview of changes in gnome-calculator 3.31.1
* Search provider improvements (Marco Trevisan)
* Copy to clipboard from search result (Marco Trevisan)
* Conversion UI improvements #72 (Robert Roth)
* Functions and variables popover HIG fixes #76 (Robert Roth)
* Port to GtkSourceView 4 (Christian Hergert)
* Remove appmenu (Robert Ancell)
* Application icon and symbolic icon update (Jakub Steiner, Sam Hewitt)
* Fixed new window shell action (Florian Müllner)
* Mark 'in' conversion keyword as translatable #73 (Robert Roth)
* Support for integer decimals in different bases #36 (Marco Trevisan)
* Mark some untranslatable texts as translatable.
* Use application icon in about and window icon instead of generic icon
* Updated Polish translation (Piotr Drąg)
* Updated Swedish translation (Anders Jonsson)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Turkish translation (Emin Tufan Çetin)
* Updated Czech translation (Marek Cernocky)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Updated Hungarian translation (Balázs Meskó)
* Updated Friulian translation (Fabio Tomat)
* Updated Romanian translation (Daniel Șerbănescu)
* Updated Russian translation (Stas Solovey)
* Updated Italian translation (Janvitus)
* Updated German translation (Mario Blättermann)
* Updated Finnish translation (Jiri Grönroos)
* Updated Catalan translation (Jordi Mas)
* Updated Slovenian translation (Matej Urbančič)
* Updated Danish translation (Ask Hjorth Larsen)
* Updated Lithuanian translation (Aurimas Černius)
Overview of changes in gnome-calculator 3.30.0
* Updated Czech translation (Marek Cernocky)
* Updated Swedish translation (Anders Jonsson)
* Updated Friulian translation (Fabio Tomat)
* Updated Finnish translation (Jiri Grönroos)
* Updated Kazakh translation (Baurzhan Muftakhidinov)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Dutch translation (Hannie Dumoleyn)
* Updated Korean translation (Changwoo Ryu, Seong-ho Cho)
* Updated Galician translation (Fran Diéguez)
* Updated Vietnamese translation (Trần Ngọc Quân)
* Updated Hungarian translation (Balázs Meskó)
* Updated Italian translation (Gianvito Cavasoli)
* Updated Latvian translation (Rūdolfs Mazurs)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Updated Croatian translations (Goran Vidović)
* Updated Danish translation (Ask Hjorth Larsen)
Overview of changes in gnome-calculator 3.29.91
* Updated Polish translation (Piotr Drąg)
* Updated Brazilian Portuguese translation (Bruno Lopes da Silva)
* Updated snap to build with meson (Ken VanDine)
* Updated Slovenian translation (Matej Urbančič)
* Updated German translation (Mario Blättermann)
* Updated French tanslation (Alexandre Franke)
* Updated Lithuanian translation (Aurimas Černius)
* Updated Chinese (Taiwan) translation (Yi-Jyun Pan)
* Updated Turkish translation (Emin Tufan Çetin)
* Updated Italian translation (Fernando Governatore)
Overview of changes in gnome-calculator 3.29.90
* Fixed flatpak build issues (Robert Roth)
* Fixed naming of Turkish lira currency (Çağatay Yiğit Şahin)
* Added OARS metadata (Nick Richards)
* CI configuration (Robert Ancell)
* Updated Spanish translation (Daniel Musteles)
* Updated Chinese (Taiwan) translation (Yi-Jyun Pan)
* Updated Romanian translation (Daniel Șerbănescu)
* Updated Catalan translation (Jordi Mas)
* Updated Brazilian Portuguese translation (Bruno Lopes da Silva)
Overview of changes in gnome-calculator 3.29.3
* Fix currencies not loading gitlab#66 (Robert Roth)
* Use Mass instead of Weight for mass units gitlab#67 (Robert Roth)
* Dropped autotools in favour of meson for build (Robert Roth)
* Updated MPC and MPFR to latest release (Arnaud Bonatti)
* Updated Chinese (China) translation (Dingzhong Chen)
* Updated Romanian translation (Daniel Șerbănescu)
* Updated Chinese (Taiwan) translation (Cheng-Chia Tseng)
* Updated Catalan translation (Jordi Mas)
* Updated Croatian translations (Goran Vidović)
* Updated Slovak translation (Dušan Kazik)
* Updated Russian translation (Stas Solovey)
Overview of changes in gnome-calculator 3.28.0
* Updated German translation (Tim Sabsch)
* Updated Czech translation (Marek Černocký)
* Updated Scottish Gaelic translation (GunChleoc)
* Updated French translation (Guillaume Bernard)
* Updated Lithuanian translation (Aurimas Černius)
* Updated Kazakh translation (Baurzhan Muftakhidinov)
* Updated Hungarian translation (Gábor Kelemen)
* Updated Danish translation (Ask Hjorth Larsen)
* Updated Italian translation (Milo Casagrande)
* Updated Croatian translations (gogo)
* Updated Chinese (Taiwan) translation (Chao Hsiung Liao)
* Updated Catalan translation (Jordi Mas)
* Updated Slovenian translation (Matej Urbančič)
* Updated Serbian translation (Марко Костић)
* Updated Serbian Latin translation (Милош Поповић)
* Updated Swedish translation (Anders Jonsson)
Overview of changes in gnome-calculator 3.27.92
* Fixed icon sizes. bgo#793263 (Robert Roth)
* Meson build fixes. bgo #793215 (Robert Roth)
* Calculator display black box fixes. bgo#793157 (Robert Roth)
* Updated Polish translation (Piotr Drąg)
* Updated Turkish translation (Emin Tufan Çetin, Çağrı Dolaz)
* Updated Brazilian Portuguese translation (Rafael Fontenelle, Isaac F. Ferreira Filho)
* Updated Galician translation (Fran Dieguez)
* Updated French translation (Guillaume Bernard)
* Updated Spanish translation (Daniel Mustieles)
* Updated Czech translation (Marek Cernocky)
* Updated Hungarian translation (Balázs Úr)
* Updated Korean translation (Yeol Park)
* Updated Latvian translation (Rūdolfs Mazurs)
* Updated Dutch translation (Justin van Steijn)
Overview of changes in gnome-calculator 3.27.90
* Add snap packaging (Ken VanDine)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Spanish translation (Daniel Mustieles)
* Updated Serbian translation (Марко Костић)
* Updated Swedish translation (Anders Jonsson)
* Updated Slovenian translation (Matej Urbančič)
* Updated German translation (Christian Kirbach)
* Updated Finnish translation (Jiri Grönroos)
* Updated Polish translation (Piotr Drąg)
* Updated Hungarian translation (Balázs Úr)
* Update Catalan translation (Gil Forcada)
* Changed clear symbolic icon with C. bgo#792844 (Robert Roth)
* Made the calculator window resizable. bgo#756920 (Robert Roth)
* Sane required width for history view. bgo#788395 (Robert Roth)
* Support for gcalccmd command-line arguments. bgo#788872 (Robert Roth)
* Ellipsize equation in search provider instead of result. bgo#759876 (Robert Roth)
* Avoid scrollbar overlapping equation. bgo#770246 (Robert Roth)
* Return with failure in case of precision error. bgo#749336 (Robert Roth)
* Added bried explanation of functions. bgo#748897 (David Faour)
* Changed overflow error message. bgo#745708 (Robert Roth)
* Added keyboard shortcut to clear history. bgo#792814 (Robert Roth)
* Added meson build files. bgo#783062 (Robert Roth)
* Deprecated calls replaced (Robert Roth)
* Rename icon directive in flatpak to have icon on flathub (Robert Roth)
* Updated Finnish translation (Jiri Grönroos)
* Check the locale before using it. bgo##793098 (Robert Roth)
* Updated Chinese (Taiwan) translation (byStarTW)
* Updated Indonesian translation (Kukuh Syafaat)
* Fixed black rectangle on equation entry scrolling. bgo#793157 (Robert Roth)
* Updated German translation (Mario Blättermann)
* Updated Friulian translation (Fabio Tomat)
Overview of changes in gnome-calculator 3.27.2
* Fix cosh and sinh buttons. bgo#788409 (Robert Roth)
* Updated Catalan (Valencia) translation (Xavi Ivars)
* Updated Chinese translation (Shuyu Liu, ksqsf)
* Ship app icon with Calculator (Jakub Steiner)
* Added stone unit. bgo#789333 (Robert Roth)
* Replaced ln button with log2 in programming mode. bgo#789152 (Robert Roth)
* Use _ instead of ans for last result. bgo#785107 (Robert Roth)
* Fixed critical warning after first operation. bgo#785108 (Robert Roth)
* Updated Czech translation (Marek Cernocky)
* Updated German translation (Christian Kirbach)
* Updated Friulian translation (Fabio Tomat)
* Updated Norwegian bokmål translation. (Kjartan Maraas)
Overview of changes in gnome-calculator 3.26.0
* Update Persian translation (Arash Mousavi)
* Fix gettext-domain (Piotr Drąg)
* Updated Latvian translation (Rūdolfs Mazurs)
* Updated Russian translation (Stas Solovey)
* Updated Dutch translation (hanniedu)
* Updated Punjabi translation (A S Alam)
* Updated Danish translation (Ask Hjorth Larsen)
* Updated Bulgarian translation (Lyubomir Vasilev)
* Updated Catalan translation (Jordi Mas)
* Updated Kazakh translation (Baurzhan Muftakhidinov)
* Updated Basque translation (Inaki Larranaga Murgoitio)
Overview of changes in gnome-calculator 3.25.92
* Updated Lithuanian translation (Aurimas Černius)
* Updated Danish translation (Ask Hjorth Larsen)
* Updated Latvian translation (Rūdolfs Mazurs)
* Updated Italian translation (Milo Casagrande)
* Updated Dutch translation (hanniedu)
* Updated Chinese (Taiwan) translation (Cheng-Chia Tseng)
* Updated Bulgarian translation (Alexander Shopov)
* Updated Korean translation (Changwoo Ryu)
* Updated Slovak translation (Dušan Kazik)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Updated Hungarian translation (Balázs Úr)
Overview of changes in gnome-calculator 3.25.91
* Updated Galician translation (Fran Dieguez)
* Updated Slovenian translation (Matej Urbančič)
* Updated Turkish translation (Çağatay Yiğit Şahin)
* Updated Serbian translation (Мирослав Николић)
* Updated Finnish translation (Jiri Grönroos)
* Updated French translation (Claude Paroz)
Overview of changes in gnome-calculator 3.25.90
* Fixed incorrect bit toggle buttons. bgo#785850 (Robert Roth)
* Updated Swedish translation (Anders Jonsson)
* Updated Czech translation (Marek Cernocky)
* Re-enable Portuguese help translation. bgo#784427 (Piotr Drąg)
* Updated Arabic translation (Khaled Hosny)
* Stop using deprecated calls (Robert Roth)
* Update Kazakh translation (Baurzhan Muftakhidinov)
* Updated Spanish translation (Daniel Musteles)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Friulian translation (Fabio Tomat)
* Updated Vietnamese translation (Trần Ngọc Quân)
* Add Polish help translation (Piotr Drąg)
* Updated Hungarian translation (Balázs Meskó)
* Fix an XML tag in Portuguese help translation (Piotr Drąg)
* Fixed appdata validation. bgo#784033 (Robert Roth)
* Fixed appdata.xml installation. bgo#783986 (Dominique Leuenberger)
Overview of changes in gnome-calculator 3.25.3
* Updated Spanish translation (Daniel Mustieles)
* Updated Catalan translation (Jordi Mas)
* Updated Portuguese translation (Piotr Drąg)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Friulian translation (Fabio Tomat)
* Stop using intltool (Robert Ancell)
* Fix XML tags in Portuguese help translation (Piotr Drąg)
* Move resources into src directory (Robert Ancell)
Overview of changes in gnome-calculator 3.25.2
* Updated Latvian translation (Rūdolfs Mazurs)
* Updated Portuguese translation (Tiago Santos)
* Updated Catalan translation (Jordi Mas)
* Update parser to allow complex conversions (PioneerAxon)
Overview of changes in gnome-calculator 3.24.0
* Updated Korean translation (Changwoo Ryu)
* Updated Russian translation (Yuri Myasoedov)
* Updated Latvian translation (Rūdolfs Mazurs)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Updated Ukrainian translation (Daniel Korostil)
* Updated Polish translation (Piotr Drąg)
* Updated Friulian translation (Fabio Tomat)
Overview of changes in gnome-calculator 3.23.92
* Added flatpak manifest (Matthias Clasen)
* Updated Hungarian translation (Gábor Kelemen)
* Updated German translation (Christian Kirbach)
* Updated Slovak translation (Dušan Kazik)
* Updated Galician translation (Fran Dieguez)
* Updated Lithuanian translation (Aurimas Černius)
* Updated Vietnamese translation ( Trần Ngọc Quân)
* Updated Friulian translation (Fabio Tomat)
* Updated French translation (Guillaume Bernard)
* Updated Swedish translation (Anders Jonsson)
* Updated Korean translation (Seong-ho Cho)
* Updated Indonesion translation (Kukuh Syafaat)
* Updated Catalan translation (Jordi Mas)
* Updated Basque translation (Inaki Larranaga Murgoitio)
* Updated Danish translation (Ask Hjorth Larsen)
* Updated Chinese (Taiwan) translation (Chao Hsiung Liao)
Overview of changes in gnome-calculator 3.23.91
* Updated Danish translation (Ask Hjorth Larsen)
* Updated Basque translation (Inaki Larranaga Murgoitio)
* Updated Norwegian bokmål translation (Kjartan Maraas)
* Updated Kazakh translation (Baurzhan Muftakhidinov)
* Updated Finnish translation (Jiri Grönroos)
* Updated Friulian translation (Fabio Tomat)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Updated Serbian translation (Мирослав Николић)
* Updated Hungarian translation (Balázs Meskó)
* Updated Spanish translation (Daniel Mustieles)
Overview of changes in gnome-calculator 3.23.90
* Fixed unit conversion from negative constant numbers bgo#778311 (PioneerAxon)
* Better error highlighting (PioneerAxon)
* Fix null token causing segfault (PioneerAxon)
* Set application id bgo#778228 (Robert Roth)
* Documentation for the history view bgo#681935 (Sanket Dasgupta)
* Added Desktop Publishing Point length unit bgo#778449 (Robert Roth)
* Use angle units from settings in search provider bgo#778274 (Robert Roth)
* Fixed incorrect value for ans in variable popup bgo#778242 (Robert Roth)
* Updated Indonesian translation (Kukuh Syafaat)
* Updated Catalan translation (Christian Kirbach)
* Updated German translation (Mario Blättermann)
* Updated Polish translation (Piotr Drąg)
* Updated Slovak translation (Dušan Kazik)
* Updated Brazilian Portuguese translation (Rafael Fontenelle)
* Updated Spanish translation (Daniel Mustieles)
* Updated Czech translation (Marek Černocký)
* Updated Norwegian bokmål translation (Kjartan Maraas)
Overview of changes in gnome-calculator 3.23.4
* (null) error message bgo#773688 (PioneerAxon)
* Zeroth root of numbers is undefined bgo#775759 (Robert Roth)
* Updated Hungarian translation (Balázs Meskó)
* Updated Spanish translation (Daniel Mustieles)
* Updated Czech translation (Marek Černocký)
* Updated Portuguese translation (Tiago Santos)
Overview of changes in gnome-calculator 3.23.3
* Flatpak packaging fixes (Mathieu Bridon, Robert Roth)
* Updated Hungarian translation (Balázs Meskó)
* Added additional temperature unit shortcuts for conversion. bgo#775300 (Robert Roth)
* Use proper chain-up syntax (Rico Tzschichholz)
* Updated Kazakh translation (Baurzhan Muftakhidinov)
Overview of changes in gnome-calculator 3.23.2
* Update German translation (Mario Blättermann)
* Update Friulian translation (Fabio Tomat)
* Updated Czech translation (Marek Cernocky)
* Remember window position (Bahodir Mansurov)
* Use Unicode in translatable strings (Piotr Drąg)
* Update Friulian translation (Fabio Tomat)
* Updated Lithuanian translation (Aurimas Černius)
* Update Spanish translation (Daniel Mustieles)
* Update Hungarian translation (Gábor Kelemen)
* Update German translation (Mario Blättermann)
* Updated Czech translation (Marek Černocký)
* Use GtkPopovers for memory and function buttons. bgo#748742 (Niels De Graef)
* Update Friulian translation (Fabio Tomat)
* Updated Czech translation (Marek Černocký)
Overview of changes in gnome-calculator 3.23.1
* Migrate to GtkGrid from deprecated GtkTable API bgo#767394 (Niels de Graef)
* Use localized window title bgo#768432 (Ron Yorston)
* Preferences dialog update bgo#746599 (Robert Roth)
* Add option to start window in mode bgo#748135 (Moo)
* Fix help typo bgo#748894 (lunchboxav)
* Fix reusing items from history bgo#766155 (Antonio Ospite)
* Use MPC for complex numbers bgo#759439 (Philip Wood)
* Fix bit panel and base label when base has changed bgo#732685 (Antonio Ospite)
* Ctrl+Backspace should delete only the last number bgo#725114 (Robert Roth)
* Use Actions for buttons bgo#771635 (Niels de Graef)
* Add round, floor, ceil, sgn to docs bgo#748895 (Robert Roth)
* Rename Pound Sterling to British Pound Sterling bgo#664366 (Robert Roth)
* Fix possible errors on currency conversion bgo#750672 (Robert Roth)
* Add new window appmenu entry bgo#724478 (Robert Roth)
* [l10n] update German translations (Flo H)
* Fix markup error in about bgo#772990 (Robert Roth)
* Add accels for changing mode bgo#740503 (Robert Roth)
* History view styling bgo#743499 (Niels de Graef, Robert Roth)
* Window layout fixes bgo#743538 (Robert Roth)
* Remov unnecessary scrolledwindow bgo#768656 (Robert Roth)
* Add keyboard shortcuts window bgo#772735 (Robert Roth)
* Fix first expression with parentheses bgo#700617 (Robert Roth)
* Add shortcut to close current window bgo#755398 (Robert Roth)
* Fix conversion unit change bgo#748732 (Robert Roth)
* Fixed conversion user interface for LTR bgo#711587 (Robert Roth)
Overview of changes in gnome-calculator 3.22.1
* Headerbar layout fixes (djb)
* Use dim labels for bit markers in Programming mode (djb)
* Fixed history scrolling (Robert Roth)
* Minor programming errors fixed (Tobias Mueller)
* Vertically center headerbar button content (Lapo Calamandrei)
* Updated styles for gtk+ 3.20 (Exalm)
* [l10n] update Croatian translations (gogo)
Overview of changes in gnome-calculator 3.22.0
* Fix base change for log, fixes #748729 (Robert Roth)
* Math buttons: fix a (potential) crash loading financial dialogs (Tobias Mueller)
* Updated Dutch translation master (Nathan Follens)
* [l10n] update Persian translations (Arash Mousavi)
Overview of changes in gnome-calculator 3.21.92
* Updated Thai translation (Akom Chotiphantawanon)
* Updated Polish translation (Piotr Drąg)
* Update British English translation (David King)
* Disable pt translation of the manual (Emmanuele Bassi)
* Updated Portuguese translation (Tiago Santos)
* fix the build (Matthias Clasen)
* Added Portuguese translation (Tiago Santos)
* Updated Polish translation (Piotr Drąg)
Overview of changes in gnome-calculator 3.21.90
* Updated Hebrew translation (Yosef Or Boczko)
* Added 'period' keypress when the delete key on the numpad is pressed. (Myridium)
* Updated Spanish translation (Daniel Mustieles)
* lib: prevents segfault when elements of division to zero have null assigned tokens (fixes #769364) (Alberto Ruiz)
* Add Language headers to po files (Piotr Drąg)
* Updated Swedish translation (Anders Jonsson)
* Updated Friulian translation (Fabio Tomat)
* Updated Indonesian translation (cherry picked from commit da3a093148c5f9340c6566fe35d5a38b5aa04e6b) (Andika Triwidada)
* Updated Occitan translation (Cédric Valmary)
Overview of changes in gnome-calculator 3.21.2
* Updated Norwegian bokmål translation. (Kjartan Maraas)
* Updated Friulian translation (Fabio Tomat)
* Updated Friulian translation (Fabio Tomat)
* Updated Friulian translation (Fabio Tomat)
* Added Friulian translation (Fabio Tomat)
* Distribute history-view.ui (Robert Ancell)
* Distribute history-entry.ui (Robert Ancell)
* Updated Occitan translation (Cédric Valmary)
Overview of changes in gnome-calculator 3.20.1
* Fix: precedence of root operator (Alexis Poirier and Alberto Ruiz)
* Update: Translation (Translation team)
Overview of changes in gnome-calculator 3.20.0
* Update: Translation (Translation team)
Overview of changes in gnome-calculator 3.19.91
* Fix: Check for null on variables ought to autocomplete (fixes #762426) (Alberto Ruiz)
* Updated Czech translation (Marek Černocký)
* Updated Catalan translation (Jordi Mas)
* Updated Galician translations (Fran Dieguez)
* Updated Swedish translation (Anders Jonsson)
* Updated Serbian translation (Мирослав Николић)
* Updated Brazilian Portuguese translation (Fábio Nogueira)
Overview of changes in gnome-calculator 3.19.90
* New: Upgrade license for all source files to GPLv3+ (Michael Catanzaro)
* New: Use Soup instead of GVFS to download the IMF/ECB currency data (Alberto Ruiz)
* Fix: Silence a compiler warning (Michael Catanzaro)
* Fix: Remove Lithuanian litas from currency list (Michael Catanzaro)
* Fix: Fix use of GtkStyleContext for GTK+ 3.20 (Michael Catanzaro)
* Fix: Clarify license on number.vala (Michael Catanzaro)
* Fix: Clarify license on mpfr.vapi (Michael Catanzaro)
* Fix: Installed tests: Update expectations (Matthias Clasen)
* Fix: Set the accessible name on the mode chooser (Matthias Clasen)
* Fix: Do not reset second currency on first currency change, fixes #260166 (Robert Roth)
* Fix: Fix Chinese Yuan symbol, fixes #761075 (Alberto Ruiz)
* Fix: Add a missing tag to the AppData file (Richard Hughes)
* Update: Upgrade appdata (Michael Catanzaro)
* Update: Translation (Translation team)
Overview of changes in gnome-calculator 3.19.4
* New: Migrate MathConverter, MathWindow, HistoryView and HistoryEntry to GtkBuilder template (Alberto Ruiz)
* Fix: Remove unused -D defines from Makefile.am and configure.vapi for both src/ and lib/ (Alberto Ruiz)
* Fix: Check if base exponent are complex for xpowy() method (Gerlof Fokkema)
* Fix: Prevent infinte loop on some operations with imaginary numbers, bug #757657 (Kyle Green)
* Fix: e^(-0.5) returned the wrong value, bug #756960 (Felix Pelletier)
* Fix: Missing mnemonic bond in Gross Profit Margin dialog (Martin Simon)
* Fix: Use load_from_resource in the Gtk.CssProvider instead of opening the file manually (Alberto Ruiz)
* Fix: Use builddir for gresource.xml to satisfy Vala/autotools behaviour, bug #760679 (Michael Catanzaro)
* Fix: Rename gnome-calculator.doap name tag to GNOME Calculator instead of gnome-calculator (Alberto Ruiz)
* Fix: Use AM_DISTCHECK_CONFIGURE_FLAGS (Michael Catanzaro)
* Fix: MathDisplay grabs focus after being shown, bug #748743 (Elita.A.A.Lobo)
* Fix: math-equation: "No history" message should disappear when appropriate, bug #759943 (Michael Catanzaro)
* Update : Translation (Translation team)
Overview of changes in gnome-calculator 3.19.2
* Update : Translation (Translation team)
Overview of changes in gnome-calculator 3.19.1
* Fix : Explicitly link required libraries for gnome-calculator and gcalcmd binaries (Andreas Henriksson)
* Update : Translation (Translation team)