-
Notifications
You must be signed in to change notification settings - Fork 25
/
blivet-gui.spec
1388 lines (1285 loc) · 71.1 KB
/
blivet-gui.spec
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
Summary: Tool for data storage configuration
Name: blivet-gui
Version: 2.6.0
Release: 1%{?dist}
Source0: http://github.com/storaged-project/blivet-gui/releases/download/%{version}/%{name}-%{version}.tar.gz
Source1: blivet-gui_event.conf
License: GPL-2.0-or-later
BuildArch: noarch
URL: http://github.com/storaged-project/blivet-gui
BuildRequires: desktop-file-utils
BuildRequires: libappstream-glib
Requires: blivet-gui-runtime = %{version}-%{release}
Requires: PolicyKit-authentication-agent
Requires: polkit
Requires: libblockdev-plugins-all
%description
Graphical (GTK) tool for manipulation and configuration of data storage
(disks, LVMs, RAIDs) based on blivet library.
%package -n blivet-gui-runtime
Summary: blivet-gui runtime
BuildRequires: python3-devel
BuildRequires: gettext >= 0.18.3
BuildRequires: python3-setuptools
BuildRequires: make
Requires: python3
Requires: python3-gobject
Requires: python3-blivet >= 1:3.8.0
Requires: gtk3
Requires: python3-pid
Requires: libreport
%description -n blivet-gui-runtime
This package provides a blivet-gui runtime for applications that want to use
blivet-gui without actually installing the application itself.
%prep
%autosetup -n %{name}-%{version} -p1
%build
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install
desktop-file-validate %{buildroot}/%{_datadir}/applications/blivet-gui.desktop
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/appdata/blivet-gui.appdata.xml
mkdir -p %{buildroot}/%{_sysconfdir}/libreport/events.d/
install -m644 %{SOURCE1} %{buildroot}/%{_sysconfdir}/libreport/events.d/
mkdir -p %{buildroot}/%{_localstatedir}/log/blivet-gui
%find_lang %{name}
%files -n blivet-gui
%{_datadir}/applications/blivet-gui.desktop
%{_datadir}/appdata/blivet-gui.appdata.xml
%files -n blivet-gui-runtime -f %{name}.lang
%{_mandir}/man1/blivet-gui.1*
%{python3_sitelib}/*
%{_datadir}/polkit-1/actions/org.fedoraproject.pkexec.blivet-gui.policy
%{_datadir}/icons/hicolor/*/apps/blivet-gui.png
%{_datadir}/blivet-gui
%{_bindir}/blivet-gui
%{_bindir}/blivet-gui-daemon
%{_localstatedir}/log/blivet-gui
%{_sysconfdir}/libreport/events.d/blivet-gui_event.conf
%changelog
* Mon Nov 18 2024 Vojtech Trefny <[email protected]> - 2.6.0-1
- Translated using Weblate (German) (atalanttore)
- Translated using Weblate (Russian) (igor.gorbounov)
- Do not allow selecting formats with that won't fit (#2318274) (vtrefny)
- Translated using Weblate (Slovak) (feonsu)
- misc: Use 'state: present' instead of 'installed' for packages (vtrefny)
- Translated using Weblate (Indonesian) (andika)
- Translated using Weblate (Finnish) (copper_fin)
- Translated using Weblate (French) (leane.grasser)
- Translated using Weblate (Polish) (piotrdrag)
- Translated using Weblate (French) (leane.grasser)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Georgian) (temuri.doghonadze)
- Translated using Weblate (Swedish) (bittin)
- Translated using Weblate (Turkish) (oguz)
- Translated using Weblate (Ukrainian) (yurchor)
- Update translation files (noreply)
- Translated using Weblate (Turkish) (oguz)
- ci: Remove priority from Testing farm repositories (vtrefny)
- Add label explaining bug reporting using ABRT and link to GitHub (vtrefny)
- Remove Ubuntu version notice from README (vtrefny)
- Show all mountpoints in device info dialog (vtrefny)
- Do not set NTFS as supported (vtrefny)
- spec: Bump required version of blive to 3.8.0 (vtrefny)
- Add support for filesystem online resize (vtrefny)
- infra: Add dependabot to automatically update GH actions (vtrefny)
- CONTRIBUTING: Fix formatting (vtrefny)
- Guard better against RaidChooser's selected_level being None (awilliam)
- Fix pylint 'possibly-used-before-assignment' warnings (vtrefny)
- ci: Add a simple tmt test and run it via packit (vtrefny)
- Translated using Weblate (German) (njg87w434)
- ci: Run GH actions tests in a Fedora container (vtrefny)
- misc: Vagrantfile update (vtrefny)
- misc: Use --break-system-packages with PIP (vtrefny)
- misc: Add mdadm to test dependencies on Debian/Ubuntu (vtrefny)
- misc: Bump required version of libblockdev to 3 (vtrefny)
- Translated using Weblate (Czech) (pavel.borecki)
- Update translation files (noreply)
- Translated using Weblate (Korean) (simmon)
- misc: Add python3-sphinx to build dependencies (vtrefny)
* Tue Feb 06 2024 Vojtech Trefny <[email protected]> - 2.5.0-1
- Translated using Weblate (Japanese) (simmon)
- Translated using Weblate (Georgian) (temuri.doghonadze)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (French) (dampato+linux)
- Translated using Weblate (French) (cmaret)
- Translated using Weblate (Czech) (vtrefny)
- Translated using Weblate (Czech) (valmatej)
- Translated using Weblate (Punjabi) (aalam)
- misc: Vagrantfile update (vtrefny)
- ci: Fix Packit actions to bump release number (vtrefny)
- ci: Set custom release suffix for Packit (vtrefny)
- spec: Bump release to 99 to be always ahead of the Fedora packages (vtrefny)
- misc: Add basic filesystem tools to test dependencies (vtrefny)
- tests: Make sure GUI tests can run without btrfs kernel module (vtrefny)
- pylint: Ignore attribute defined outside __init__ in setup.py (vtrefny)
- Remove support for labelling JFS and ReiserFS (vtrefny)
- Translated using Weblate (Georgian) (temuri.doghonadze)
- Translated using Weblate (Korean) (simmon)
- Fix logging for mount point change (vtrefny)
- Fix logic when checking for dialog response (vtrefny)
- pylint: Use 'exit' instead of 'do_exit' for pylint.lint.Run (vtrefny)
- Add a cmdline option to enabled blivet's auto_dev_updates flag (vtrefny)
- man: Update copyright year (vtrefny)
- Add cmdline option to force blivet-gui to keep above other apps (vtrefny)
- Translated using Weblate (Georgian) (temuri.doghonadze)
- ci: Update GH actions checkout action to v4 (vtrefny)
- Fix project name in tests/run_tests.py (vtrefny)
- Translated using Weblate (Russian) (milachew)
- ci: 'master' branch renamed to 'main' (vtrefny)
- Fix segfault when trying to reuse an invalid GtkTreeIter (vtrefny)
- Update translation files (noreply)
- Translated using Weblate (Kazakh) (baurthefirst)
- Translated using Weblate (Czech) (vtrefny)
- Translated using Weblate (Czech) (pavel.borecki)
* Wed Aug 16 2023 Vojtech Trefny <[email protected]> - 2.4.2-1
- pylint: Update pylintrc (vtrefny)
- Allow creating biosboot even if not in installer mode (vtrefny)
- Allow adding nested btrfs subvolumes (vtrefny)
- Squashed 'translation-canary/' changes from d6a4098..5bb8125 (vtrefny)
- Translated using Weblate (Georgian) (temuri.doghonadze)
- Translated using Weblate (Chinese (Simplified) (zh_CN)) (1504305527)
- misc: Vagrantfile update (vtrefny)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Swedish) (bittin)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Czech) (jan.kalabza)
- Translated using Weblate (Czech) (pavel.borecki)
- Translated using Weblate (Portuguese (Brazil)) (contato.fnog)
- Translated using Weblate (Czech) (pavel.borecki)
- Update translation files (noreply)
- Translated using Weblate (French) (grimaitres)
* Fri Mar 24 2023 Vojtech Trefny <[email protected]> - 2.4.1-1
- ci: Add Packit configuration for downstream builds on release (vtrefny)
- spec: Bump release to 27 for Packit daily builds (vtrefny)
- ci: Use Packit for daily builds in Copr (vtrefny)
- Translated using Weblate (Friulian) (f.t.public)
- Translated using Weblate (Indonesian) (andika)
- Translated using Weblate (Hebrew) (sh.yaron)
- Translated using Weblate (Georgian) (temuri.doghonadze)
- Translated using Weblate (Russian) (igor.gorbounov)
- Translated using Weblate (Slovak) (feonsu)
- Translated using Weblate (Kazakh) (baurthefirst)
- Translated using Weblate (Swedish) (bittin)
- Translated using Weblate (Kazakh) (baurthefirst)
- Translated using Weblate (Kazakh) (baurthefirst)
- Translated using Weblate (Croatian) (linux.hr)
- Translated using Weblate (Kazakh) (baurthefirst)
- Translated using Weblate (Kazakh) (baurthefirst)
- Translated using Weblate (Kazakh) (baurthefirst)
- Translated using Weblate (Turkish) (oguz)
- Translated using Weblate (Chinese (Simplified) (zh_CN)) (1504305527)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Ukrainian) (yurchor)
- Translated using Weblate (Polish) (piotrdrag)
- Translated using Weblate (Kazakh) (baurthefirst)
- Translated using Weblate (Finnish) (jiri.gronroos)
- Update translation files (noreply)
- Translated using Weblate (German) (atalanttore)
- Fix various typos discovered by spellintian (vtrefny)
- Translated using Weblate (Chinese (Simplified) (zh_CN)) (1504305527)
- Translated using Weblate (French) (alexandre)
- spec: Change license string to the SPDX format required by Fedora (vtrefny)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (German) (atalanttore)
- Update translation files (noreply)
- Translated using Weblate (Turkish) (oguz)
- Sync spec with downstream (vtrefny)
* Sun Sep 18 2022 Vojtech Trefny <[email protected]> - 2.4.0-1
- Translated using Weblate (Russian) (mistresssilvara)
- Translated using Weblate (Russian) (xasertop)
- misc: Add vagrant and ansible configuration for openSUSE (vtrefny)
- packit: Add srpm_build_deps for SRPM builds in Copr (vtrefny)
- Tell blivet to ignore zRAM devices (vtrefny)
- Translated using Weblate (Portuguese (Brazil)) (mairacanal)
- Use "folder" icon for LVM and other "complex" devices (vtrefny)
- Translated using Weblate (Hungarian) (meskobalazs)
- Check arguments when running blivet-gui-daemon (#2106214) (vtrefny)
- Translated using Weblate (Georgian) (temuri.doghonadze)
- Translated using Weblate (Georgian) (temuri.doghonadze)
- Added translation using Weblate (Georgian) (temuri.doghonadze)
- misc: Vagrantfile updated with latest Fedora and Ubuntu releases (vtrefny)
- Do not install the libreport/abrt configuration in setup.py (vtrefny)
- Remove python3-mock from test dependencies (vtrefny)
- ci: Use latest checkout action in GitHub actions (vtrefny)
- Replace pocketlint with a custom script (vtrefny)
- ci: Run static analysis checks in GitHub actions (vtrefny)
- Translated using Weblate (Friulian) (f.t.public)
- pylint: Remove deprecated pylint warnings from pylintrc and code (vtrefny)
- Translated using Weblate (Spanish) (alex)
- Translated using Weblate (Swedish) (bittin)
- Translated using Weblate (Bengali (India)) (mitra_anirban)
- Translated using Weblate (Slovak) (feonsu)
- spec: Remove dependecy on gettext (vtrefny)
- Translated using Weblate (Spanish) (alex)
- Translated using Weblate (Czech) (pavel.borecki)
- Translated using Weblate (Croatian) (linux.hr)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Turkish) (oguz)
- Translated using Weblate (Finnish) (ricky.tigg)
- Translated using Weblate (Ukrainian) (yurchor)
- Translated using Weblate (Polish) (piotrdrag)
- Update translation files (noreply)
- Fix grammar for some visible labels in LVMEditDialog (vtrefny)
- appdata: Remove information about kickstart support (vtrefny)
- pylint: Allow loading all C extensions (vtrefny)
- POT file update (vtrefny)
- Add missing log calls for utils functions (vtrefny)
- Use close button for the device info dialog instead of cancel (vtrefny)
- Change label for the LUKS "decrypt" menu item to "unlock" (vtrefny)
- Small UI adjustments in FormatDialog (vtrefny)
- POT file update (vtrefny)
- Remove old remnants of Python 2 support (vtrefny)
- Add tooltips for the toolbar buttons (vtrefny)
- Remove unused code from actions list (vtrefny)
- Log set_mountpoint operation to the utils log (vtrefny)
- utils: Add function to log to the utils log (vtrefny)
- Various grammar fixes in README.md, CONTRIBUTING.md and doc/intro.rst (vtrefny)
- tests: Add tests for dialogs helper functions (vtrefny)
- tests: Add test for ResizeDialog (vtrefny)
- tests: Add test for UnmountDialog (vtrefny)
- tests: Add test for LabelDialog (vtrefny)
- tests: Add test for MountpointDialog (vtrefny)
- Add more tests for ListPartitions covering missing functions (vtrefny)
- Remove some old/unused variables from Makefile (vtrefny)
- tests: Add test for partition resizing (vtrefny)
- miscs: Update Vagrantfile (vtrefny)
- Translated using Weblate (Slovak) (feonsu)
- Use symbolic list-add and edit- icons (Adwaita dropped old ones) (awilliam)
- CONTRIBUTING.md: Fix instructions for installing test dependencies (vtrefny)
- spec: Add explicit dependency on polkit (vtrefny)
- Translated using Weblate (Croatian) (linux.hr)
- Translated using Weblate (French) (julroy67)
- Translated using Weblate (Portuguese (Brazil)) (sigmasquadron)
- Fix title for the label dialog (vtrefny)
- Translated using Weblate (Swedish) (goeran)
- Translated using Weblate (Indonesian) (andika)
- Translated using Weblate (Turkish) (oguzersen)
- Translated using Weblate (Finnish) (copper_fin)
- ui: Add Gtk.ScrolledWindow as parent for the logical Gtk.TreeView (vtrefny)
- Fix displaying mountpoints for btrfs subvolumes (vtrefny)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Ukrainian) (yurchor)
- Translated using Weblate (Polish) (piotrdrag)
- Update translation files (noreply)
- Translated using Weblate (Swedish) (goeran)
- Translated using Weblate (Swedish) (bittin)
- Translated using Weblate (Swedish) (goeran)
- Fix removing encrypted parents (vtrefny)
- Bump required version of blivet to 3.3.0 (vtrefny)
- Add support for specifying sector size for LUKS devices (vtrefny)
- Translated using Weblate (Swedish) (goeran)
- Added translation using Weblate (Swedish) (goeran)
- Translated using Weblate (German) (atalanttore)
- Squashed 'translation-canary/' changes from 4d4e65b..d6a4098 (vtrefny)
- Translated using Weblate (Croatian) (tomislav.krznar)
- Translated using Weblate (Chinese (Simplified) (zh_CN)) (lchopn)
- Translated using Weblate (Indonesian) (andika)
- Translated using Weblate (German) (atalanttore)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Friulian) (f.t.public)
- Translated using Weblate (Hungarian) (meskobalazs)
- Translated using Weblate (Spanish) (perikiyoxd)
- Translated using Weblate (Croatian) (linux.hr)
- Translated using Weblate (Croatian) (linux.hr)
- Fix some PEP 8 issues in doc/conf.py (vtrefny)
- pylint: Remove redundant 'u' prefixes for strings in doc/conf.py (vtrefny)
- pylint: Specify encoding for open() (vtrefny)
- Translated using Weblate (French) (itotutona)
- Translated using Weblate (Croatian) (linux.hr)
- Revert "Translations update from Weblate" (vtrefny)
- Added translation using Weblate (Croatian) (linux.hr)
- Translated using Weblate (Slovak) (feonsu)
- Translated using Weblate (Czech) (pavel.borecki)
- Fix DeviceFormatError when removing a non-existing MD array (vtrefny)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Turkish) (oguzersen)
- Translated using Weblate (Ukrainian) (yurchor)
- Translated using Weblate (Finnish) (copper_fin)
- Translated using Weblate (Polish) (piotrdrag)
- Update translation files (noreply)
- Translated using Weblate (Turkish) (oguzersen)
- README: Add information about OpenMandriva repo (vtrefny)
* Wed Aug 10 2022 Vojtech Trefny <[email protected]> - 2.3.0-8
- Drop dependecy on gettext
* Wed Jul 20 2022 Fedora Release Engineering <[email protected]> - 2.3.0-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Mon Jun 13 2022 Python Maint <[email protected]> - 2.3.0-6
- Rebuilt for Python 3.11
* Thu Feb 17 2022 Adam Williamson <[email protected]> - 2.3.0-5
- Backport PR #331 to fix with adwaita-icon-theme 42+
* Wed Jan 19 2022 Fedora Release Engineering <[email protected]> - 2.3.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Wed Sep 22 2021 Adam Williamson <[email protected]> - 2.3.0-3
- Backport PR #294 to fix bug deleting not-yet-created RAID device (#2005289)
* Tue Aug 24 2021 Vojtech Trefny <[email protected]> - 2.3.0-2
- Do not allow setting chunk size for RAID 1 (#1996223)
* Sun Aug 08 2021 Vojtech Trefny <[email protected]> - 2.3.0-1
- README: Add information about the openSUSE and Mageia Copr repo (vtrefny)
- Update distributions in Vagrantfile (vtrefny)
- CONTRIBUTING.md update (vtrefny)
- Translated using Weblate (Indonesian) (didiksupriadi41)
- Translated using Weblate (Indonesian) (didiksupriadi41)
- Translated using Weblate (Friulian) (f.t.public)
- tests: Print exception when we fail to a load test case (vtrefny)
- Make sure we pass start sector as int to pyparted not as Decimal (vtrefny)
- Fix various alerts found by LGTM (vtrefny)
- Translated using Weblate (Polish) (piotrdrag)
- Fix removing existing MD arrays (vtrefny)
- Translated using Weblate (Korean) (simmon)
- README: Add more information about the OBS repository and its usage (vtrefny)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Chinese (Simplified) (zh_CN)) (lchopn)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Korean) (simmon)
- Translated using Weblate (Korean) (simmon)
- Add make to build dependencies (vtrefny)
- Translated using Weblate (Korean) (simmon)
- Added translation using Weblate (Korean) (simmon)
- Added translation using Weblate (Sinhala) (r45xveza)
- Translated using Weblate (Finnish) (ricky.tigg)
- Translated using Weblate (Russian) (igor.gorbounov)
- Translated using Weblate (Hungarian) (meskobalazs)
- Squashed 'translation-canary/' changes from edda4ea..4d4e65b (vtrefny)
- Translated using Weblate (Slovak) (feonsu)
- Translated using Weblate (Punjabi) (amanpreet.alam)
- Translated using Weblate (Hebrew) (sh.yaron)
- Translated using Weblate (Finnish) (copper_fin)
- Translated using Weblate (Spanish) (ehespinosa57)
- Translated using Weblate (French) (julroy67)
- Translated using Weblate (Turkish) (oguzersen)
- Translated using Weblate (Ukrainian) (yurchor)
- Update translation files (noreply)
- Translated using Weblate (Indonesian) (andika)
- Translated using Weblate (Polish) (piotrdrag)
- Added translation using Weblate (Indonesian) (andika)
- Translated using Weblate (Italian) (nathan95)
- Translated using Weblate (Portuguese (Brazil)) (sigmasquadron)
- Translated using Weblate (Portuguese (Brazil)) (sigmasquadron)
- spec: Require all libblockdev plugins (vtrefny)
- Update translation files (noreply)
- Translated using Weblate (Finnish) (ricky.tigg)
- man: Remove old unused option "-k" from blivet-gui manpage (vtrefny)
- Allow specifying exclusive disks when running blivet-gui (vtrefny)
- Allow removing devices with children (vtrefny)
- Add libblockdev part plugin to test dependencies (vtrefny)
- Add Vagrant file for running development/testing VMs (vtrefny)
- Force ansible to use python3 in install-test-dependencies.yml (vtrefny)
- Install all dependencies in install-test-dependencies.yml (vtrefny)
- Move install-test-dependencies.yml to a special folder (vtrefny)
- Fix displaying disks with unknown formats (vtrefny)
- Allow creating encrypted btrfs volumes (vtrefny)
* Wed Jul 21 2021 Fedora Release Engineering <[email protected]> - 2.2.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Jun 04 2021 Python Maint <[email protected]> - 2.2.1-4
- Rebuilt for Python 3.10
* Tue Jan 26 2021 Fedora Release Engineering <[email protected]> - 2.2.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Mon Nov 30 2020 Vojtech Trefny <[email protected]> - 2.2.1-2
- Add explicit dependency on libblockdev-plugins-all
* Tue Sep 29 2020 Vojtech Trefny <[email protected]> - 2.2.1-1
- Translated using Weblate (Friulian) (f.t.public)
- Fix ValueError when trying to set both upper and lower size limits (vtrefny)
- Fix getting list of supported filesystems in installer mode (vtrefny)
- Fix missing attribute _resizable_filesystems in BlivetUtilsAnaconda (vtrefny)
- Translated using Weblate (Friulian) (f.t.public)
- Update translation files (noreply)
- Translated using Weblate (Turkish) (oguzersen)
- Sync spec with downstream (vtrefny)
* Fri Sep 11 2020 Vojtech Trefny <[email protected]> - 2.2.0-1
- Handle sector mode NVDIMMs as disks (vtrefny)
- Allow adding VG to all devices with LVMPV format (vtrefny)
- Do not try to check parent device type for devices without parents (vtrefny)
- Translated using Weblate (Slovak) (feonsu)
- Translated using Weblate (Russian) (igor.gorbounov)
- Move the PolicyKit agent dependency from runtime to blivet-gui (vtrefny)
- Translated using Weblate (Spanish) (fitoschido)
- Ignore fallback ITS rule warning from gettext (vtrefny)
- Add a special icon for cached LVs (vtrefny)
- Translated using Weblate (Hebrew) (sh.yaron)
- Hardcode list of supported filesystems for AddDialog tests (vtrefny)
- Always remove format when removing or formatting a device (#1796710) (vtrefny)
- Show filesystem not supported by Blivet in the UI (vtrefny)
- Unify/fix terminology for (un)locking encrypted devices (vtrefny)
- Add comment explaining the "translator-credits" string (vtrefny)
- Translated using Weblate (Hebrew) (sh.yaron)
- Do not force "safe" names for devices (#1859963) (vtrefny)
- Update translation files (noreply)
- Translated using Weblate (Hungarian) (meskobalazs)
- Translated using Weblate (Chinese (Simplified)) (lchopn)
- Add PEP 8 Speaks config file (vtrefny)
- Gather resizable filesystems from blivet instead of hardcoding (vtrefny)
- Do not show parents section for disks in the info dialog (vtrefny)
- Remove the special RawFormatDevice device (vtrefny)
- Update translation files (noreply)
- Translated using Weblate (French) (jean-baptiste)
- The past tense of "choose" is "chose" (metta.crawler)
- Translated using Weblate (Kazakh) (baurthefirst)
- Translated using Weblate (Hungarian) (gyonkibendeguz)
- Translated using Weblate (Turkish) (oguzersen)
- Translated using Weblate (Ukrainian) (yurchor)
- Translated using Weblate (Polish) (piotrdrag)
- Update translation files (noreply)
- Translated using Weblate (Hebrew) (sh.yaron)
* Mon Jul 27 2020 Fedora Release Engineering <[email protected]> - 2.1.15-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Thu Jul 02 2020 Vojtech Trefny <[email protected]> - 2.1.15-1
- Use "raw_device" instead of "slave" for getting LUKS backing device (vtrefny)
- Update translation files (noreply)
- Translated using Weblate (Chinese (Simplified)) (tiansworld)
- POT file update (vtrefny)
- Translated using Weblate (Hebrew) (sh.yaron)
- Fix setting visibility for EncryptionChooser (vtrefny)
- Make data paths in setup.py relative (vtrefny)
- Add alternative paths to look for UI and CSS files (vtrefny)
- Set default position of the main window to the center of the screen (vtrefny)
- Correctly set data and metadata level when creating Btrfs volumes (vtrefny)
- Grammar fix (sh.yaron)
- Update translation files (noreply)
- Translated using Weblate (Bengali (India)) (akarshan.biswas)
- Translated using Weblate (Hebrew) (sh.yaron)
- Update POT file before doing a release (vtrefny)
- Added translation using Weblate (Bengali (India)) (akarshan.biswas)
- Translated using Weblate (Hebrew) (sh.yaron)
- Remove dependency on adwaita-icon-theme (vtrefny)
- Add daily builds badge (jkonecny)
- Use tests instead of COPR build in packit for PRs (jkonecny)
- Use packit actions instead of commands (jkonecny)
- Remove not needed packit configuration values (jkonecny)
- Move packit general configuration to the top of .packit file (jkonecny)
- Translated using Weblate (German) (mail)
- Fix unlocking raw format LUKS devices in Anaconda (#1846517) (vtrefny)
- Translated using Weblate (Portuguese (Brazil)) (lucas.af88)
- Translated using Weblate (French) (julroy67)
- Translated using Weblate (Portuguese (Brazil)) (noreply)
- Translated using Weblate (Portuguese (Brazil)) (lucas.af88)
- Update translation files (noreply)
- Translated using Weblate (Turkish) (oguzersen)
- Translated using Weblate (Ukrainian) (yurchor)
- Translated using Weblate (Polish) (piotrdrag)
- Translated using Weblate (Portuguese (Brazil)) (lucas.af88)
- Translated using Weblate (Portuguese (Brazil)) (noreply)
- Translated using Weblate (Portuguese (Brazil)) (lucas.af88)
- Refactor checking for device resizability (vtrefny)
- Update translation files (noreply)
- Translated using Weblate (Italian) (alciregi)
- Ellipse the device name using the GTK cell render (15699466+TownCube)
- Fix names for icons in the password entry (vtrefny)
- Try harder to load correct icon when applying actions (vtrefny)
- Fix pylint failure when disabling found-_-in-module-class warning (vtrefny)
- Fix ordering of the edit submenu in the context menu for devices (vtrefny)
* Tue May 26 2020 Miro Hrončok <[email protected]> - 2.1.14-2
- Rebuilt for Python 3.9
* Wed Apr 22 2020 Vojtech Trefny <[email protected]> - 2.1.14-1
- Do not update filesystem info for resize in the installer mode (vtrefny)
- Do not allow creating extedned partitions on DASD (#1825357) (vtrefny)
- Translated using Weblate (Turkish) (oguzersen)
- Translated using Weblate (Russian) (igor.gorbounov)
- Translated using Weblate (German) (christian.wehrli)
- Show filesystem label in the GUI (#1811383) (vtrefny)
- Make sure broken tests are not silently ignored (vtrefny)
- tests: Fix mocking/patching mountpoints in ListPartitionsTest (vtrefny)
- Translated using Weblate (Russian) (pamolodyk)
- Update translation files (noreply)
- Translated using Weblate (Russian) (pamolodyk)
- Sync spec with downstream (vtrefny)
* Tue Apr 21 2020 Vojtech Trefny <[email protected]> - 2.1.13-2
- Do not update filesystem info for resize in the installer mode (#1826370)
* Tue Mar 31 2020 Vojtech Trefny <[email protected]> - 2.1.13-1
- Translations update from Weblate (#166) (noreply)
- Translated using Weblate (German) (jensmaucher)
- Fix unlocking LUKS on RAID in the installer mode (#1787508) (vtrefny)
- Fix creating encrypted LVM VG (#1816098) (vtrefny)
- Translated using Weblate (Turkish) (oguzersen)
- Translated using Weblate (Finnish) (jiri.gronroos)
- Translated using Weblate (Ukrainian) (yurchor)
- Translated using Weblate (Slovak) (feonsu)
- Translated using Weblate (Russian) (igor.gorbounov)
- Translated using Weblate (French) (julroy67)
- Translated using Weblate (Polish) (piotrdrag)
- Update translation files (noreply)
- Translated using Weblate (Russian) (igor.gorbounov)
- Fix setting attributes for proxy objects (#1810855) (vtrefny)
- Allow selecting mountpoints to unmount for devices with multiple mountpoints (vtrefny)
- Allow calling "remote" functions with kwargs (vtrefny)
- Display all mountpoints for devices (vtrefny)
- packit: Use 'fedora-all' as Copr build targets (vtrefny)
- Translated using Weblate (Spanish) (fitoschido)
- Update packit Copr targets (vtrefny)
- Translated using Weblate (Ukrainian) (yurchor)
- Translated using Weblate (Spanish) (fitoschido)
- Translated using Weblate (French) (julroy67)
- Set partition type combo insensitive if there is only one option (vtrefny)
- Fix displaying current size of devices in the resize dialog (vtrefny)
- Always open new dialogs in the center of the blivet-gui window (vtrefny)
- add link to translation platform (jean-baptiste)
- Update translation files (noreply)
- Allow specifying 'mode' for the sdist command (vtrefny)
- Do not print list of data files in setup.py (vtrefny)
- Specify custom commands for version and source archive in packit (vtrefny)
- tests: Import Gtk directly before we need it (vtrefny)
- Add a simple script to run tests (vtrefny)
- Remove Zanata from our build and release processes (vtrefny)
- Add PO files to git (vtrefny)
* Thu Mar 12 2020 Vojtech Trefny <[email protected]> - 2.1.12-4
- Fix TypeError in remote_method (#1812734)
* Wed Mar 11 2020 Vojtech Trefny <[email protected]> - 2.1.12-3
- Fix setting attributes for proxy objects (#1810855)
* Thu Feb 13 2020 Vojtech Trefny <[email protected]> - 2.1.12-2
- Add a simple script to run tests
* Wed Jan 29 2020 Vojtech Trefny <[email protected]> - 2.1.12-1
- Add menu item and dialog for changing fslabel of selected device (vtrefny)
- Add 'relabel_format' method for fslabel configuration (vtrefny)
- Fix displaying the exception dialog in Anaconda (vtrefny)
- Get default filesystem type from blivet (vtrefny)
- Allow selection of encryption type (LUKS version) (vtrefny)
- Translate expected error strings in tests (vtrefny)
- Fix untranslated actions label (vtrefny)
- Skip tests if targetcli is not available (vtrefny)
- Add tests to the source archive (vtrefny)
- Don't crash the installer when known StorageError happens(#1756288) (skycastlelily)
- Enable copr builds and add packit config (dhodovsk)
- Add test case for creating partitions on disk with preexisting one (vtrefny)
- Specify starting sector when creating partitions (#1755813) (vtrefny)
- Explicitly disable return code check in subprocess.run (vtrefny)
- Mark E1121 pylint error as false positive in tests (vtrefny)
- README: Add information about Debian and Ubuntu repository. (vtrefny)
- Remove platform.linux_distribution (vtrefny)
- Propertly display standalone dm-integrity devices (vtrefny)
- Count format minimal size when checking encrypted device min size (vtrefny)
- Sync spec with downstream (vtrefny)
* Tue Jan 28 2020 Fedora Release Engineering <[email protected]> - 2.1.11-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Mon Oct 14 2019 Vojtech Trefny <[email protected]> - 2.1.11-4
- Specify starting sector when creating partitions (#1755813) (vtrefny)
* Thu Oct 03 2019 Miro Hrončok <[email protected]> - 2.1.11-3
- Rebuilt for Python 3.8.0rc1 (#1748018)
* Mon Aug 19 2019 Miro Hrončok <[email protected]> - 2.1.11-2
- Rebuilt for Python 3.8
* Wed Jul 31 2019 Vojtech Trefny <[email protected]> - 2.1.11-1
- Create only one tag per release (vtrefny)
- Update README (vtrefny)
- Check if action still exists before trying to remove it (#1706378) (vtrefny)
- Correctly display LUKS with integrity (#1729888) (vtrefny)
- Use 'direct' device property to (dis)allow mountpoint selection (vtrefny)
- Do not allow to set mountpoints for devices with children (#1667644) (vtrefny)
- Fix return type of BlivetUtils.get_disks (#1658893) (vtrefny)
* Wed Jul 24 2019 Fedora Release Engineering <[email protected]> - 2.1.10-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Thu Jan 31 2019 Fedora Release Engineering <[email protected]> - 2.1.10-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Wed Jan 23 2019 Vojtech Trefny <[email protected]> - 2.1.10-3
- Do not allow to set mountpoints for devices with children (#1667644) (vtrefny)
* Thu Dec 13 2018 Vojtech Trefny <[email protected]> - 2.1.10-2
- Fix return type of BlivetUtils.get_disks (#1658893) (vtrefny)
* Wed Dec 12 2018 Vojtech Trefny <[email protected]> - 2.1.10-1
- Use 'pycodestyle' instead of 'pep8' (vtrefny)
- Enable name validity checks in AddDialog (#1649364) (vtrefny)
- Fix suggesting names for btrfs subvolumes (#1648631) (vtrefny)
- Do not show MD arrays in disks section (vtrefny)
- Ignore PEP8 W504 warning ("line break after binary operator") (vtrefny)
- Sync spec with downstream (vtrefny)
* Wed Sep 26 2018 Vojtech Trefny <[email protected]> - 2.1.9-1
- Add some extra parameters to the lsblk in log (vtrefny)
- Fix crash when adding device with same min and max size (#1623189) (vtrefny)
- Limit partition max size based on disklabel limits (#1623659) (vtrefny)
- Ignore pylint 'no-value-for-parameter' warning (vtrefny)
- Fix 'assignment-from-no-return' error discovered by pylint (vtrefny)
- Removed copyright year (code)
- Ignore pylint error for "preexec_fn" (vtrefny)
- Ignore pylint false positives for Gtk.ListStore (vtrefny)
- Set _supported_filesystems in BlivetGUIAnaconda init (awilliam)
- Sync spec with downstream (vtrefny)
* Thu Jul 12 2018 Fedora Release Engineering <[email protected]> - 2.1.8-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Jun 19 2018 Miro Hrončok <[email protected]> - 2.1.8-5
- Rebuilt for Python 3.7
* Fri Feb 09 2018 Igor Gnatenko <[email protected]> - 2.1.8-4
- Escape macros in %%changelog
* Wed Feb 07 2018 Fedora Release Engineering <[email protected]> - 2.1.8-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Thu Jan 18 2018 Vojtech Trefny <[email protected]> - 2.1.8-2
- Set _supported_filesystems in BlivetGUIAnaconda init (awilliam)
* Mon Jan 15 2018 Vojtech Trefny <[email protected]> - 2.1.8-1
- Do not allow to format large devices to biosboot (#1532253) (vtrefny)
- Remove unused 'socket' module import (vtrefny)
- Don't pass 'hostname' kwarg to suggest_container_name (#1528103) (awilliam)
- Sync spec file with downstream (vtrefny)
- Use better message when blivet-gui is already running (vtrefny)
- Use constants instead of strings for init errors communication (vtrefny)
- Fix few pep8 violations found by pep8 on Debian (vtrefny)
- Try to locate pep8 executable in pep8 target (vtrefny)
- Do not use RPM to check if Zanata client is installed (vtrefny)
- Use ansible for test dependencies installation (vtrefny)
- Fix opening raw LUKS format (#1519049) (vtrefny)
- Get supported filesystems in the 'backend' process (vtrefny)
- Fix ignored pylint directory (vtrefny)
- Add pylint log files to .gitignore (vtrefny)
- Bump required version for blivet to 3.0 (vtrefny)
- Use new method for getting supported disklabels (vtrefny)
- Use new method to configure blivet (vtrefny)
- Use argparse module instead of deprecated optparse (vtrefny)
- Update information about running tests in CONTRIBUTING.md (vtrefny)
- Add targetcli to test dependencies (vtrefny)
* Sun Jan 07 2018 Igor Gnatenko <[email protected]> - 2.1.7-5
- Remove obsolete scriptlets
* Tue Jan 02 2018 Vojtech Trefny <[email protected]> - 2.1.7-4
- Don't pass 'hostname' kwarg to suggest_container_name (#1528103)
- Remove unused 'socket' module import
* Tue Dec 19 2017 Vojtech Trefny <[email protected]> - 2.1.7-3
- Fix python-setuptools dependency
* Mon Nov 27 2017 Vojtech Trefny <[email protected]> - 2.1.7-2
- Allow running with new Blivet 3.0
* Tue Sep 19 2017 Vojtech Trefny <[email protected]> - 2.1.7-1
- Allow changing partition table (disklabel) (vtrefny)
- Do not use Gtk.Label.set_align it is deprecated (vtrefny)
- Do not use Gtk.Widget.size_request() it is deprecated (vtrefny)
- Do not use positional argument with Gtk initializers (vtrefny)
- Do not use Gtk.Table it is deprecated (vtrefny)
- Do not specify title and buttons in Gtk.Dialog initializer (vtrefny)
- AddDialog: Fix displaying filesystem label entry (vtrefny)
- Makefile: Add a separate targets for gui and utils tests (vtrefny)
- Add a basic test suite for testing BlivetUtils class (vtrefny)
- Sync spec with downstream (vtrefny)
- Allow running BlivetUtils on only subset of disks (vtrefny)
* Fri Aug 18 2017 Vojtech Trefny <[email protected]> - 2.1.6-1
- Add a basic "high level" log for BlivetUtils (vtrefny)
- Redirect stdout to stderr for blivet-gui-daemon (vtrefny)
- Do not try to teardown luks devices before removing (#1466940) (vtrefny)
- Fix displaying resize dialog for non-resizable devices (#1473350) (vtrefny)
- Fix getting parents for loop devices (#1474483) (vtrefny)
- Fix ABRT/libreport config for blivet-gui (vtrefny)
- Update the upstream git URL for blivet-gui and blivet (vtrefny)
- Split blivet-gui package into "blivet-gui" and "blivet-gui-runtime" (vtrefny)
- Require "PolicyKit-authentication-agent" instead of "polkit-gnome" (vtrefny)
- New version of help for blivet-gui (vtrefny)
- Add more information to the README and a new readme for contributors (vtrefny)
- Add make targets for building SRPM and RPM packages (vtrefny)
* Wed Jul 26 2017 Fedora Release Engineering <[email protected]> - 2.1.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Fri Jun 30 2017 Vojtech Trefny <[email protected]> - 2.1.5-2
- Split blivet-gui package into "blivet-gui" and "blivet-gui-runtime" (vtrefny)
* Tue Jun 20 2017 Vojtech Trefny <[email protected]> - 2.1.5-1
- Fix reusing LUKS devices in Anaconda (#1462071) (vtrefny)
- Make the device toolbar look more "toolbarish" (#1456011) (vtrefny)
- Use "is_disk" to check if device is disk (#1457163) (vtrefny)
- Fix displaying encrypted logical partitions (vtrefny)
- Run "update_size_info" for luks devices (vtrefny)
- pylint: fix different keyword arguments for "connect" method (vtrefny)
- Ignore pylint error "not-context-manager" for locks (vtrefny)
* Tue May 30 2017 Vojtech Trefny <[email protected]> - 2.1.4-2
- Run "update_size_info" for luks devices (vtrefny)
- Fix displaying encrypted logical partitions (vtrefny)
* Fri May 05 2017 Vojtech Trefny <[email protected]> - 2.1.4-1
- Do not try to set both size request and auto-expand for Gtk.Scale (vtrefny)
- Use Gtk.Menu.popup_at_pointer when showing context menu (vtrefny)
- Allow keyboard shortcuts configuration from Anaconda (#1439608) (vtrefny)
- Allow "refreshing" UI from Anaconda when spoke is visible (vtrefny)
- Hide 'protected' devices in installer mode (vtrefny)
- Update Zanata branch name (vtrefny)
* Thu Apr 27 2017 Peter Robinson <[email protected]> 2.1.3-2
- Use python3-gobject not pygobject3
* Mon Apr 24 2017 Vojtech Trefny <[email protected]> - 2.1.3-1
- Merge pull request #57 from vojtechtrefny/master_partition-ordering (vtrefny)
- Preserve ordering when adding partitions (#1439591) (vtrefny)
- Merge pull request #55 from vojtechtrefny/master_test-day-fixes-3 (vtrefny)
- Fix crash when there are no "real" actions to perform (vtrefny)
- Fix displaying of non-existing encrypted devices (#1439576) (vtrefny)
- Allow deleting parents when deleting VG/RAID/Btrfs volume (#1439661) (vtrefny)
- SizeChooser: Change default and available size units (#1440369) (vtrefny)
- Allow creating encrypted MD arrays (#1440392) (vtrefny)
- Allow setting mountpoint for all mountable filesystems (#1440372) (vtrefny)
- Allow creating encrypted LVs (#1439651) (vtrefny)
* Tue Apr 11 2017 Vojtech Trefny <[email protected]> - 2.1.2-1
- Merge pull request #52 from vojtechtrefny/master_test-day-fixes-2 (vtrefny)
- Fix devices allowed to add to a PV on an mdarray (#1440804) (vtrefny)
- Do not allow setting mountpoint for extended partitions (vtrefny)
- Merge pull request #48 from vojtechtrefny/master_test-day-fixes (vtrefny)
- Show previously selected mountpoint when editting a device (#1439525) (vtrefny)
- Fix decorations of some dialogs in installer mode (vtrefny)
- Add 'prepboot' and 'biosboot' to supported filesystems (#1439538) (vtrefny)
- Add a config class for blivet-gui (#1439581) (vtrefny)
- Allow changing format for MD arrays (#1439592) (vtrefny)
- Do not use 'dim-label' style for labels in dialogs (#1439529) (vtrefny)
- Add tooltips for actions toolbar (#1439563) (vtrefny)
- Merge pull request #47 from vojtechtrefny/master_fix-reuse-luks (vtrefny)
- Do not try to check mountpoint for unmountable formats (#1439108) (vtrefny)
- Merge pull request #46 from offthewoll/master (vtrefny)
- Correct "proccessing" to "processing" (aviwoll)
- Corrected "proccessing" to "processing" (aviwoll)
- Merge pull request #44 from vojtechtrefny/master_installer-bugs (vtrefny)
- Do not allow to set mountpoint for nonexisting LVM snapshots (vtrefny)
- Fix error when creating LVM PV (vtrefny)
* Tue Mar 14 2017 Vojtech Trefny <[email protected]> - 2.1.1-1
- Merge pull request #43 from vojtechtrefny/master_fix-lvmsnapshot-free (vtrefny)
- AddDialog: Use 'free_space' instead of 'free' for VGs free space (vtrefny)
* Mon Feb 27 2017 Vojtech Trefny <[email protected]> - 2.1.0-1
- Merge pull request #42 from vojtechtrefny/master_installer-mode4 (vtrefny)
- Allow setting same mountpoint when editting a device (vtrefny)
- Completely stop using PVs as parents when adding LVs (vtrefny)
- AddDialog: Do not show advanced options for LVs (vtrefny)
- Merge pull request #41 from vojtechtrefny/master_handle-user-change (vtrefny)
- Add a special method for handling changes made by user (vtrefny)
- Merge pull request #40 from vojtechtrefny/master_action-label-fix (vtrefny)
- Use Gtk.Button for showing number of scheduled actions (vtrefny)
- Merge pull request #39 from vojtechtrefny/master_raid-chooser (vtrefny)
- Hotfix for maximum size of LVs (vtrefny)
- Temporarily disable LVM RAID (vtrefny)
- AddDialog: Use BTRFS._min_size instead 256 MiB (vtrefny)
- Allow creating LVM/Btrfs only when selected free space is big enough (vtrefny)
- Temporarily remove support for cache area (vtrefny)
- Reworked SizeArea and size widgets for AddDialog (vtrefny)
- Do not display a special raid chooser for LVs (vtrefny)
- AddDialog: Create a standalone RaidChooser widget (vtrefny)
- Merge pull request #37 from vojtechtrefny/master_installer-mode3 (vtrefny)
- AddDialog: Change label for selecting parents (vtrefny)
- Allow setting label when changing format of device (vtrefny)
- AddDialog: add scrollbars if the dialog is too big (vtrefny)
- Add adwaita-icon-theme to dependencies (vtrefny)
- Fix some MagicMock related exceptions in tests (vtrefny)
- AddDialog: Allow setting filesystem label for mdraid (vtrefny)
- AddDialog: Remove separate option to put PV on an MD RAID (vtrefny)
- Fix creating format for new md arrays (vtrefny)
- AddDialog: Allow setting filesystem label for LVs (vtrefny)
- Do not allow creating snapshots of non-existing LVs (vtrefny)
- AddDialog: Change description for 'LVM Storage' to 'LVM VG' (vtrefny)
- Use 'better' icon for the edit menu (vtrefny)
- Use accelerators in custom dialogs (vtrefny)
- Allow running ShowActionsDialog without decoration in installer_mode (vtrefny)
- Do not show number of pending actions in installer mode (vtrefny)
- Allow 'reusing' actions in installer mode (vtrefny)
- Merge pull request #36 from vojtechtrefny/master_installer-mode2 (vtrefny)
- Allow running ShowActionsDialog without decoration in installer_mode (vtrefny)
- Do not show number of pending actions in installer mode (vtrefny)
- Allow 'reusing' actions in installer mode (vtrefny)
- Merge pull request #35 from vojtechtrefny/master_edit-mountpoint (vtrefny)
- Use Gtk.Window in AddDialogTest instead of Mock (vtrefny)
- Add dialog for setting mountpoint in installer mode (vtrefny)
- Allow setting mountpoint when formatting existing device (vtrefny)
- Merge pull request #34 from vojtechtrefny/master_installer-mode (vtrefny)
- Fix fs selection in AddDialog test (vtrefny)
- Allow to run ResizeDialog and FormatDialog without decoration (vtrefny)
- Prefix blivet-gui CSS styles to avoid name conflicts (vtrefny)
- Move CSS styling to BlivetGUI class (vtrefny)
- Allow to initialize blivet-gui during refresh in installer mode (vtrefny)
- Do not create list of devices and actions in constructor (vtrefny)
- Fix creating format with label and mountpoints (vtrefny)
- Get list of currently used mountpoints when adding new device (vtrefny)
- AddDialog: don't show decoration on message dialogs in installer mode (vtrefny)
- AddDialog: center and don't show decorations in installer mode (vtrefny)
- Add custom method to run dialogs (vtrefny)
- Run message dialogs with lightbox in installer mode (vtrefny)
- Allow showing message dialogs without decoration (vtrefny)
- Use show_dialog methods instead of creating dialogs manually (vtrefny)
- Change 'ActionsToolbar' to a standalone widget (vtrefny)
- Expand partitions list widget vertically (vtrefny)
- Add some basic classes for running blivet-gui in Anaconda (vtrefny)
- Stop predenting we need auth token for client-server communication (vtrefny)
- Do not create client instance in BlivetGUI class (vtrefny)
- Do not allow ignoring exceptions from BlivetGUIClient (vtrefny)
- Raise custom exception in BlivetGUIClient for connection errors (vtrefny)
- Remove kickstart mode from blivet-gui (vtrefny)
- Merge branch 'f25-branch' (vtrefny)
- Merge pull request #33 from vojtechtrefny/f25-branch_ui-fixes (vtrefny)
- Fix showing traceback in exception dialog (vtrefny)
- Add glade temp files to gitignore (vtrefny)
- Show scrollbars in visualization (vtrefny)
- Fix position of main menu (vtrefny)
- SizeChooser: Fix size of size SpinButton (vtrefny)
- Unmount devices from the GUI (vtrefny)
- Catch exceptions when calling methods on proxy objects (vtrefny)
- Allow calling methods on proxy objects from client (vtrefny)
- Merge branch 'f25-branch' into f26-branch (vtrefny)
- Bump zanata branch version (vtrefny)
* Mon Dec 12 2016 Vojtech Trefny <[email protected]> - 2.0.2-1
- Merge pull request #32 from vojtechtrefny/f25-branch_exception-handler (vtrefny)
- Add custom exception handler for blivet-gui (vtrefny)
- Merge pull request #31 from vojtechtrefny/f25-branch_thin-snapshots (vtrefny)
- fix typo (chris)
- Fix typo lvmlv device info (vtrefny)
- Fix visualisation of thin snapshots (vtrefny)
- Add support for creating lvm thinsnapshosts (vtrefny)
- Merge pull request #29 from vojtechtrefny/f25-branch_fix-xvfb (vtrefny)
- Fix floating point exception when running test using xvfb-run (vtrefny)
- Merge pull request #28 from vojtechtrefny/f25-branch_appdata-upgrade (vtrefny)
- Update appdata.xml to new version (vtrefny)
- New up-to-date screenshots for AppData (vtrefny)
- New zanata branch (vtrefny)
* Thu Aug 04 2016 Vojtech Trefny <[email protected]> - 2.0.1-1
- Merge pull request #27 from vojtechtrefny/f25-branch_meh-remove (vtrefny)
- Add config for abrt to attach blivet logs to reports (vtrefny)
- Simplify logging (vtrefny)
- Don't use python-meh (vtrefny)
* Mon Jul 18 2016 Vojtech Trefny <[email protected]> - 2.0.0-1
- Remove redundant version constants (vtrefny)
- Merge pull request #24 from vojtechtrefny/master_docs (vtrefny)
- Fix few typos in docstrings (vtrefny)
- Add autogenerated doc files to .gitignore (vtrefny)
- Add basic introduction to blivet-gui developer documentation (vtrefny)
- Remove unused .rst documentation files (vtrefny)
- Fix Makefile and configuration for documentation (vtrefny)
- Merge pull request #23 from vojtechtrefny/master_constants (vtrefny)
- Use blivet constants instead of "magic" numbers in AddDialog (vtrefny)
- Merge pull request #22 from vojtechtrefny/master-btrfs_in_vg2 (vtrefny)
- Return supported filesystems as objects not just types (vtrefny)
- Allow using btrfs as format for all devices (vtrefny)
- AddDialog: Remove special type for lvmpv, allow lvmpv format (vtrefny)
* Mon May 23 2016 Vojtech Trefny <[email protected]> - 1.3.1-1
- Merge pull request #21 from vojtechtrefny/master-split_edit (vtrefny)
- Merge pull request #19 from dashea/translation-canary (vtrefny)
- Add translation context for "Format" strings (vtrefny)
- Add LVMVG edit option to edit menu (vtrefny)
- Remove EditDialogTest (vtrefny)
- BlivetGUI: Use new resize and format dialogs instead of edit dialog (vtrefny)
- Add new submenus for "edit" option in toolbar and popup menu (vtrefny)
- Replace PartitionEditDialog by ResizeDialog and FormatDialog (vtrefny)
- BlivetUtils: Add new public methods for device resize and format (vtrefny)
- Merge pull request #20 from vojtechtrefny/master-reset_progress (vtrefny)
- Add progress dialog for storage reload (vtrefny)
- Remove markup from translatable strings where possible. (dshea)
- Use the translation-canary tests (dshea)
- Do not use intltool. (dshea)
- Add P_ to the xgettext keywords. (dshea)
- Always use setup.py to generate the source archive. (dshea)
- Merge commit 'e8a62de12f347962c7c9c71e4562f42a2618fce7' as 'translation-canary' (dshea)
- Squashed 'translation-canary/' content from commit edda4ea (dshea)
- Merge pull request #18 from vojtechtrefny/master-chunk_size (vtrefny)
- Add test for chunk size (vtrefny)
- Add chunk support for mdraid creation (vtrefny)
- Merge pull request #17 from vojtechtrefny/master-none_format (vtrefny)
- Allow "none" as format when adding/editting devices (vtrefny)
- Remove communication log (vtrefny)
- Allow ignoring disks with corrupted/unknown disklabels (vtrefny)
- New version 1.3.0 (vtrefny)
* Tue Apr 12 2016 Vojtech Trefny <[email protected]> - 1.3.0
- Fix visualization CSS styles ([email protected])
- Fix visualization of group devices inside VG (#1326175) ([email protected])
- Translations moved from translate.zanata.org to fedora.zanata.org ([email protected])
- Remove gnome-icon-theme from requires ([email protected])
- Fix adding a new device into an existing mdarray ([email protected])
- Add make ci target and test dependencies ([email protected])
- Fix methods for locating CSS and UI files ([email protected])
- SizeChooserAreaTest: Libbytesize support related fixes ([email protected])
- Use property instead of setter method for luks decrypt passphrase ([email protected])
- CacheArea: Fix displaying parent name in pv chooser ([email protected])
- Pylint/PEP8 fixes, fix AddDialog test cases ([email protected])
- Skip ListPartitionsTest when X server is not available ([email protected])
- Remove remaining user documentation related code ([email protected])
- AddDialog: do not allow to set size when adding vg to pvs ([email protected])
- Do not try to display (meta)data level for btrfs subvolumes ([email protected])
- Fix adding lvm thinpools ([email protected])
- Libbytesize support changes ([email protected])
- Set communication socket to be owned by user not root ([email protected])
- Remove obsolte/unused methods from BlivetUtils ([email protected])
- Fix editting volume groups ([email protected])
- Pylint and PEP8 fixes ([email protected])
- Always remove format when removing device ([email protected])
- Hide second raid chooser for non LVs ([email protected])
- LVM RAID support -- utils part ([email protected])
- SizeArea,AddDialog -- LVM RAID support, part 2 ([email protected])
- Temporary disable device name validation ([email protected])
- Move supported fs types to EditDialog ([email protected])
- Add RAID chooser into ParentArea when adding new LV ([email protected])
- Do not display parent size chooser for LVs ([email protected])
- AddLabelDialog: Fix available disklabels ([email protected])
- SizeArea -- RAID support, part 1 ([email protected])
- Raise exception in client when accesing blivet attribute failed ([email protected])
- AddDialog: Do not offer full PVs as possible parents for LVs ([email protected])
- AddDialog: Switch to single SizeArea model ([email protected])
- Fix ParentArea for non-LVM parents ([email protected])
- AddDialog: Fix checking for lvmlv and lvmthinlv device types ([email protected])
- AddDialog: Change _get_selected_device_type to property ([email protected])
- Remove support for adding btrfs as a disklabel ([email protected])
- Refactor add_partition method ([email protected])
- Fix passing selected and free devices to AddDialog ([email protected])
- Move supported types (fs, raid levels, disklabels) to AddDialog ([email protected])
- SizeChooser: Update main size chooser when changing size for parents ([email protected])
- SizeChooser: Add ParentArea for parents size selection ([email protected])
- Merge branch 'master' of github.com:rhinstaller/blivet-gui ([email protected])
- Merge pull request #14 from dashea/eintr ([email protected])
- Remove the removal of the eintr checker, which has been removed ([email protected])
- Use new_lv instead of LVM objects constructors ([email protected])
- Fix adding devices on DASD and zFCP disks (#1305495) ([email protected])
- Make LUKS encrypted partitions resizable ([email protected])
- Use list of children for devices instead of get_children ([email protected])
- Fix visualization of raw format LUKS devices (#1288943) ([email protected])
- Size area refactoring ([email protected])
- Fix updateSizeInfo on BIOSBoot partitions (#1286616) ([email protected])
- Add cache info to device info dialog ([email protected])
- Reimplement size area using Glade ([email protected])
- LVM cache support -- utils part ([email protected])
- LVM cache support -- UI part ([email protected])
- Allow nested ProxyDataContainer in server-cleint communication ([email protected])
- Add tests for recently found bugs ([email protected])
- Fix allow creating lvm snapshots ([email protected])
- AddDialog: Fix min size for vg children ([email protected])
- AddDialog: Fix parent type when adding LMV LV ([email protected])
- Don't allow adding btrfs volume to devices smaller than 256 MiB ([email protected])