-
Notifications
You must be signed in to change notification settings - Fork 32
/
versions.yml
1082 lines (1081 loc) · 26.9 KB
/
versions.yml
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
version: 4.8.0
time: 2024/11/26 14:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Add custom DNS to settings window (Alexandru Cheltuitor).
- Added semgrep scanning to CI (Luke Titley).
- Drop Ubuntu 20.04 support (Alexandru Cheltuitor).
- Fix kill switch leak when quitting the app (Alexandru Cheltuitor, Josep Llaneras).
---
version: 4.7.4
time: 2024/11/08 16:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Backport hotfix introduced in 4.7.3.
---
version: 4.7.3
time: 2024/11/08 08:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Fix bug when opening settings window, if installed via unsupported methods the early access toggle would crash.
---
version: 4.7.2
time: 2024/11/07 09:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Fix for issue where app was not opening in minimized state (Alexandru Cheltuitor).
- Re-wrote search widget for improved speed (Alexandru Cheltuitor and Luke Titley).
- Rename missing "Logging in" message to "Signing in" (Josep Llaneras).
- Handle no VPN connections assigned error (Josep Llaneras).
- Do not report disk full errors to sentry (Josep Llaneras).
---
version: 4.7.1
time: 2024/10/22 12:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Fix bug when opening the settings window and advanced kill switch is enabled the settings would crash.
---
version: 4.7.0
time: 2024/10/22 07:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Update kill switch and protocol label, clarifying that they can be switched only when disconnected from vpn (Alexandru Cheltuitor).
- Fix introduced regression as it was no longer deactivating the selection of protocol and kill switch while being connected to VPN (Alexandru Cheltuitor).
- Add start-app-minimized to settings window (Alexandru Cheltuitor).
---
version: 4.6.0
time: 2024/09/30 10:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Remove killswitch dependencies in setup.py as packages have been deprecated (Alexandru Cheltuitor).
- Merge community MR to allow the app to start minimized based on CLI arguments (thanks to https://github.com/hsiurebgjk).
- MR https://github.com/ProtonVPN/proton-vpn-gtk-app/pull/58 (Alexandru Cheltuitor).
- Drop secret service package (Alexandru Cheltuitor).
- Drop logger package (Alexandru Cheltuitor).
- Fix regression when moving refreshers (Josep Llaneras).
- Move refreshers to core API (Josep Llaneras).
---
version: 4.5.0
time: 2024/09/17 10:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Add back scheduler after memory leak fix (Josep Llaneras).
- When toggling IPv6 ensure that user is notified that a reconnection is necessary and prevent certificate refresh (Alexandru Cheltuitor).
- Add IPv6 toggle to settings window (Alexandru Cheltuitor).
---
version: 4.4.5
time: 2024/09/05 12:30
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Switch back to old scheduler due to memory leak in new one (Josep Llaneras).
- Show VPN accelerator setting disabled to free users (Josep Llaneras).
- Don't display reconnect message when connected via WireGuard protocol and settings are switched (Alexandru Cheltuitor).
- Changes due to api-core refactor (Luke titley and Josep Llaneras).
---
version: 4.4.4
time: 2024/08/14 10:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Request connection features via local agent if available. (Luke Titley and Josep Llaneras)
- Added a MaximumSessionsReached event to the list of events that can be emitted. (Luke Titley and Alexandru Cheltuitor)
- Update package URL used by early release settings toggle. (Josep Llaneras)
---
version: 4.4.3
time: 2024/08/01 12:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Refresh certificate whenever the app receives an expired certificate event. (Alexandru Cheltuitor)
---
version: 4.4.2
time: 2024/07/25 11:00
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Official beta release
- Only display WireGuard protocol if already selected or if feature flag is enabled, otherwise hide it. (Alexandru Cheltuitor)
- Fix wrong imports after core api refactor. (Josep Llaneras)
- Implement and refresh feature flags. (Alexandru Cheltuitor)
- When early access is toggled, ensure that repo package can be downloaded, otherwise display error message. (Alexandru Cheltuitor)
- Add early access toggle to settings window. (Alexandru Cheltuitor)
- Move the scripts for generating the changelogs into a separate repo. (Luke Titley)
---
version: 4.4.1
time: 2024/06/11 10:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: low
stability: unstable
description:
- Only allow kill switch settings modifications when disconnected from the VPN (Josep LLaneras).
- Log the user out on session expired error while updating certificate (Josep LLaneras).
- Implement exponential backoff when retrying to refresh certificate (Alexandru Cheltuitor).
- Fix task scheduler after suspending/resuming the computer (Josep LLaneras).
---
version: 4.4.0
time: 2024/05/29 12:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Prepare wireguard release (Josep LLaneras).
---
version: 4.3.3
time: 2024/05/24 11:00
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Refactor settings to ensure the settings file isn't created when we retrieve it (Luke Titley).
- Disable protocol selection if user is connected to vpn (Alexandru Cheltuitor).
---
version: 4.3.2
time: 2024/05/07 14:00
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- We no longer call UsageReporting.init to initialize UsageReporting.
- Only initialize sentry on first enable.
- Forward SSL_CERT_FILE environment variable to sentry.
---
version: 4.3.1
time: 2024/04/19 11:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: low
stability: unstable
description:
- Ensure behavioral consistency when opening settings window across different distributions (Alexandru Cheltuitor)
- Update label alignment on disable kill switch widget at login (Alexandru Cheltuitor)
- Missed the minimum python3-proton-vpn-api-core version in build_packages.py (Luke Titley)
- Switch to using sessions module that is now bundled with vpn-api-core (Luke Titley)
- Update wireguard certificate request when settings are changed (Luke Titley)
- Add connection features to the wireguard certificate request (Luke Titley)
- Periodically refresh certificate (Alexandru Cheltuitor)
---
version: 4.3.0
time: 2024/04/11 14:00
author: Luke Titley
email: luke.titley@proton.ch
urgency: low
stability: unstable
description:
- Provide the possibility to disable Kill Switch if user is logged out and Kill Switch is set to permanent (Alexandru Cheltuitor)
- Ensure that protocol list in settings UI is properly capitalized and alphabetically ordered (Alexandru Cheltuitor)
- Anonymous crash reports are now sent by default, this can be disabled in the settings (Luke Titley)
- Change how we build debian and rpm packages. We now depend on a single versions.yml file to build everything (Luke Titley)
- Increase minimum number of characters required for bug report description (Luke Titley)
---
version: 4.2.0
time: 2024/02/21 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add overlay when connecting to server (Alexandru Cheltuitor)
- Upon logging out or quitting, inform the user about the kill switch status (Alexandru
Cheltuitor)
- Apply kill switch settings immediately (Josep Llaneras)
- Add permanent option to kill switch setting (Alexandru Cheltuitor)
- Fix minor bug in country row initialization (Josep Llaneras)
---
version: 4.1.10
time: 2024/01/26 09:59
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Recover from manual cache deletion
---
version: 4.1.9
time: 2024/01/24 09:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Improve email regex when submitting bug reports
---
version: 4.1.8
time: 2024/01/15 15:18
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Dispatch VPN monitor status updates from asyncio to GLib loop
---
version: 4.1.7
time: 2024/01/11 10:30
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Log time of search queries
---
version: 4.1.6
time: 2024/01/11 09:32
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix close button on account dialog
- Fix name duplication in tests
- Fix fedora package spec
---
version: 4.1.5
time: 2024/01/09 13:37
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Disconnect from VPN when quitting app
---
version: 4.1.4
time: 2023/12/13 11:35
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix app getting stuck in disconnecting state
---
version: 4.1.3
time: 2023/11/27 09:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add Secure core icon to servers that support the feature
---
version: 4.1.2
time: 2023/11/08 08:59
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Switch to AsyncExecutor to avoid thread-safety issues in asyncio code
---
version: 4.1.1
time: 2023/10/31 11:35
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Show authentication denied error message
---
version: 4.1.0
time: 2023/10/25 09:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Display secure core servers in server list
---
version: 4.0.0
time: 2023/10/10 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Stable release
---
version: 4.0.0b2
time: 2023/09/15 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add account data to settings window
---
version: 4.0.0b1
time: 2023/09/11 09:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Fixed typos
- Official beta release
---
version: 4.0.0a16
time: 2023/09/05 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add kill switch selection to settings window
---
version: 4.0.0a15
time: 2023/07/21 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add server pinning to settings window
---
version: 4.0.0a14
time: 2023/07/19 12:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add NAT type selection to settings window
---
version: 4.0.0a13
time: 2023/07/17 12:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add user-friendly release notes to app
---
version: 4.0.0a12
time: 2023/07/12 17:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add auto-connect at app startup to settings window
---
version: 4.0.0a11
time: 2023/07/06 17:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add port forwarding selection to settings window
---
version: 4.0.0a10
time: 2023/07/06 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add netshield selection to settings window
---
version: 4.0.0a9
time: 2023/07/05 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add protocol selection to settings window
---
version: 4.0.0a8
time: 2023/07/03 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Implement settings window
- Add vpn accelerator selection to setting window
---
version: 4.0.0a7
time: 2023/06/19 10:07
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- VPN data refresh fix
---
version: 4.0.0a6
time: 2023/06/06 15:19
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Retrieve VPN account if it wasn't retrieved yet
---
version: 4.0.0a5
time: 2023/05/29 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Ensure UI updates smoothly after starting with auto-connect
---
version: 4.0.0a4
time: 2023/05/26 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add auto-connect on app startup feature
---
version: 4.0.0a3
time: 2023/05/25 09:23
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Add server feature icons
---
version: 4.0.0a2
time: 2023/05/11 16:13
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Display loading widget during login/logout with a custom message
---
version: 4.0.0a1
time: 2023/05/02 15:13
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Send app version to REST API
---
version: 0.20.8
time: 2023/04/27 16:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Standardize how error messages are displayed
---
version: 0.20.7
time: 2023/04/24 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Implement Network Manager logs
---
version: 0.20.6
time: 2023/04/24 08:35
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix UI colors for light theme
---
version: 0.20.5
time: 2023/04/21 15:05
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Allow cancelling connection/reconnection
---
version: 0.20.4
time: 2023/04/21 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Update accent colours
---
version: 0.20.3
time: 2023/04/19 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Update UI style on Login
---
version: 0.20.2
time: 2023/04/14 15:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Remove IPv6 leak protection when quitting the app while in error state
---
version: 0.20.1
time: 2023/04/14 07:51
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix reconnection after implementing IPv6 leak protection
---
version: 0.20.0
time: 2023/04/04 15:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Use stock icon to show when a country row is expanded/collapsed
---
version: 0.19.3
time: 2023/04/03 13:55
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Adapt to VPN connection refactoring
---
version: 0.19.2
time: 2023/03/16 10:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Display last received error message via popup when multiple errors are to be displayed,
instead of stacking them
---
version: 0.19.1
time: 2023/03/15 10:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Hide secure-core servers from server list
---
version: 0.19.0
time: 2023/03/08 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Remove connection and keyring backend dependencies
---
version: 0.18.0
time: 2023/03/06 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add pinned servers to tray
---
version: 0.17.2
time: 2023/03/03 08:59
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Close app window safely when the "Quit" menu entry is selected
---
version: 0.17.1
time: 2023/02/28 09:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Implement new appversion format
---
version: 0.17.0
time: 2023/02/24 13:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- 'Feature: Connect or disconnect from tray'
---
version: 0.16.0
time: 2023/02/23 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Update tray indicator icon based on vpn connection status
---
version: 0.15.1
time: 2023/02/22 09:27
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Display show/hide menu entry on the tray indicator
---
version: 0.15.0
time: 2023/02/20 15:27
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Use tray indicator if possible
---
version: 0.14.0
time: 2023/02/15 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- 'Feature: Add option to enter recovery code if 2fa is enabled'
---
version: 0.13.6
time: 2023/02/15 11:26
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix focus issues on login widget
- Wait that the bug report is sent before closing the window
---
version: 0.13.5
time: 2023/02/14 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- 'Fix: Logout from app if session is invalid when contacting the API'
---
version: 0.13.4
time: 2023/02/10 16:49
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Refactor widget package structure
---
version: 0.13.3
time: 2023/02/09 16:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Fix crash when connected server would go into maintenance
---
version: 0.13.2
time: 2023/02/08 17:52
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix random reconnection issues
---
version: 0.13.1
time: 2023/02/07 16:56
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix several search issues
---
version: 0.13.0
time: 2023/02/07 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Move logout to menu and refactor code
---
version: 0.12.0
time: 2023/02/06 16:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Add search bar
---
version: 0.11.2
time: 2023/02/02 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Fix app icon for Wayland
---
version: 0.11.1
time: 2023/01/30 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Fix bug report dialog as per customer support guidelines
---
version: 0.11.0
time: 2023/01/30 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- 'Feature: About dialog'
---
version: 0.10.4
time: 2023/01/26 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Display pop-up when unable to reach API during logout
---
version: 0.10.3
time: 2023/01/26 09:13
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Add window icon
---
version: 0.10.2
time: 2023/01/23 11:07
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Submit bug report using proton-core
---
version: 0.10.1
time: 2023/01/23 08:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- 'Fix: Bug report feature'
---
version: 0.10.0
time: 2023/01/17 11:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- 'Feature: Add issue report submission dialog'
---
version: 0.9.5
time: 2023/01/13 17:47
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Load VPN server details from persisted connection
---
version: 0.9.4
time: 2023/01/11 18:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fail silently when the server list or the client config could not be updated
---
version: 0.9.3
time: 2023/01/06 17:30
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix quick connect widget glitch when opening the app twice
---
version: 0.9.2
time: 2022/12/29 14:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Attempt to reconnect after user session has been unlocked from suspend
---
version: 0.9.1
time: 2022/12/22 17:22
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Do not show popups on connection errors
---
version: 0.9.0
time: 2022/12/20 14:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add unit tests and improve API data handling
---
version: 0.8.0
time: 2022/12/14 10:50
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Reconnect to VPN when network connectivity is detected
---
version: 0.7.2
time: 2022/12/06 14:56
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix app crash after starting the app with a persisted connection
---
version: 0.7.1
time: 2022/12/06 10:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Fix issue where current connection was not properly being detected
---
version: 0.7.0
time: 2022/12/05 17:42
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Get server name/id from connection status update
---
version: 0.6.6
time: 2022/12/02 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Ensure that UI is updated after logout/login
---
version: 0.6.5
time: 2022/11/15 15:15
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Check if the current connection is active before disconnecting
---
version: 0.6.4
time: 2022/11/15 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Display error dialog whenever a connection fails to be established
---
version: 0.6.3
time: 2022/11/11 16:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Add Proton VPN logging library
---
version: 0.6.2
time: 2022/11/07 15:00
author: Alexandru Cheltuitor
email: alexandru.cheltuitor@proton.ch
urgency: medium
stability: unstable
description:
- Ensure that vpn connection is stopped before logging out the user, if there is one
---
version: 0.6.1
time: 2022/11/04 17:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix bug happening when connecting to a server without disconnecting first from the
previous one
---
version: 0.6.0
time: 2022/10/31 12:00
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Show the login screen when the session expired
---
version: 0.5.1
time: 2022/10/04 13:37
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Fix several bugs in the server list widget
---
version: 0.5.0
time: 2022/09/28 11:17
author: Josep Llaneras
email: josep.llaneras@proton.ch
urgency: medium
stability: unstable
description:
- Add "Connect" button on country rows