-
Notifications
You must be signed in to change notification settings - Fork 9
/
ChangeLog
4122 lines (2748 loc) · 131 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2020-04-01 Alastair Poole <[email protected]>
* skeletons: move from autotools to meson.
2020-03-21 Alastair Poole <[email protected]>
* theme: Solarized Fix w/libclang syntax.
2020-03-21 Alastair Poole <[email protected]>
* tasks: Search only when specified.
2020-03-21 Alastair Poole <[email protected]>
* settings: Use Global as Title.
2020-03-21 Alastair Poole <[email protected]>
* screens: welcome text and image (revert).
2020-03-15 Alastair Poole <[email protected]>
* scm: Correct SCM file panel behaviour.
2020-03-14 Alastair Poole <[email protected]>
* mainview: refactor tab swap.
2020-03-14 Alastair Poole <[email protected]>
* mainview: rename struct members.
2020-03-14 Alastair Poole <[email protected]>
* save: wrong thread for this api
2020-03-14 Alastair Poole <[email protected]>
* mainview: hide tab tooltip on drag.
2020-03-14 Alastair Poole <[email protected]>
* mainview: Changes.
2020-03-14 Alastair Poole <[email protected]>
* mainview: Introduce Edi_Mainview_Item Tab.
2020-03-14 Alastair Poole <[email protected]>
* tabs: Make this move faster.
2020-03-14 Alastair Poole <[email protected]>
* mainview: allow panel tab dragging.
2020-03-13 Alastair Poole <[email protected]>
* scm: Add clone depth.
2020-03-13 Alastair Poole <[email protected]>
* editor: Fix build break.
2020-03-13 Alastair Poole <[email protected]>
* editor: small change.
2020-03-13 Alastair Poole <[email protected]>
* editor: Use a separate thread to save.
2020-03-09 Alastair Poole <[email protected]>
* filepanel: Use edi_theme_icon_path_get.
2020-03-08 Alastair Poole <[email protected]>
* editor: Typo.
2020-03-08 Alastair Poole <[email protected]>
* editor: Changes in Editor Mode.
2020-03-07 Alastair Poole <[email protected]>
* settings: Line numbers (enable/disable).
2020-03-07 Alastair Poole <[email protected]>
* config: Place all UI changes into one function.
2020-03-06 Alastair Poole <[email protected]>
* welcome: clear templates on welcome.
2020-03-06 Alastair Poole <[email protected]>
* main: logic fix for icon changes.
2020-03-06 Alastair Poole <[email protected]>
* Examples: Introduce C# Examples.
2020-03-06 Alastair Poole <[email protected]>
* DEBUG: Add Mono Debugging Support.
2020-03-06 Alastair Poole <[email protected]>
* CSharp: Support syntax-highligting.
2020-03-06 Alastair Poole <[email protected]>
* theme: Refresh filepanel on icon theme change.
2020-03-06 Alastair Poole <[email protected]>
* settings: more impovement
2020-03-06 Alastair Poole <[email protected]>
* toolbar: Add "clean" build option.
2020-03-06 Alastair Poole <[email protected]>
* mainview: check end bounds also.
2020-03-05 Alastair Poole <[email protected]>
* settings: Internal Icons.
2020-03-05 Alastair Poole <[email protected]>
* Settings: Tidying up more
2020-03-05 Alastair Poole <[email protected]>
* config: Add show/hide line width marker.
2020-03-05 Alastair Poole <[email protected]>
* editor: Improve non development mode.
2020-03-05 Alastair Poole <[email protected]>
* debug: Improve this functionality.
2020-03-03 Alastair Poole <[email protected]>
* welcome: Help the user.
2020-03-02 Alastair Poole <[email protected]>
* welcome: Examples.
2020-02-24 Alastair Poole <[email protected]>
* config: Change default font size.
2020-02-24 Alastair Poole <[email protected]>
* filepane: Only expand if project.
2020-02-24 Alastair Poole <[email protected]>
* search: Tasks only if project.
2020-02-09 Alastair Poole <[email protected]>
* searchpanel: Refactor search code.
2020-02-09 Alastair Poole <[email protected]>
* config: Better default values.
2020-02-09 Alastair Poole <[email protected]>
* searchpanel: Set minimum search string size.
2020-02-09 Alastair Poole <[email protected]>
* searchpanel: remove pointless line append at end.
2020-02-09 Alastair Poole <[email protected]>
* debugpanel: Improve this somewhat.
2020-02-09 Alastair Poole <[email protected]>
* searchpanel: Skip leading newlines.
2020-02-02 Alastair Poole <[email protected]>
* searchpanel: Tidy
2020-02-02 Alastair Poole <[email protected]>
* search: Use a search entry.
2020-02-02 Alastair Poole <[email protected]>
* Settings: Set check properly.
2020-02-02 Alastair Poole <[email protected]>
* settings: SHow toolbar text setting.
2020-02-02 Alastair Poole <[email protected]>
* search: Cancel thread when closing.
2020-02-02 Alastair Poole <[email protected]>
* Editor: When an editor forget past tabs.
2020-02-02 Alastair Poole <[email protected]>
* search: improve stability.
2020-01-25 Alastair Poole <[email protected]>
* toolbar: Show icon text.
2020-01-25 Alastair Poole <[email protected]>
* fileselector: Do not expand.
2020-01-24 Alastair Poole <[email protected]>
* welcome: Fix issue when create fails.
2020-01-22 Alastair Poole <[email protected]>
* panel: Change lower panel alignment.
2020-01-19 Alastair Poole <[email protected]>
* debug: FreeBSD debugging improve.
2020-01-19 Alastair Poole <[email protected]>
* mainview: Let mouse scroll move tabs.
2020-01-12 Alastair Poole <[email protected]>
* edit: When running as an editor use HOME.
2020-01-12 Alastair Poole <[email protected]>
* fonts: Use a more efficient method.
2020-01-08 Alastair Poole <[email protected]>
* Search: Slight changes.
2020-01-08 Alastair Poole <[email protected]>
* main: Remove unused function.
2020-01-08 Alastair Poole <[email protected]>
* edi_mime: Only map what is needed.
2020-01-08 Alastair Poole <[email protected]>
* EDI: Be more defensie when opening files/projects.
2020-01-08 Alastair Poole <[email protected]>
* project: Hide project settings if not project.
2020-01-07 Alastair Poole <[email protected]>
* editor: Disable items build related.
2020-01-04 Alastair Poole <[email protected]>
* Toolbar: Change position on-the-fly.
2020-01-03 Alastair Poole <[email protected]>
* gitignore: Ignore VIM .swp files!!!
2020-01-03 Alastair Poole <[email protected]>
* debug: Use appropriate array size.
2020-01-03 Alastair Poole <[email protected]>
* debug: Break when found
2020-01-03 Alastair Poole <[email protected]>
* edi: Fix debugging on OpenBSD.
2020-01-02 Alastair Poole <[email protected]>
* debug: Improve the functionality greatly.
2019-12-31 Alastair Poole <[email protected]>
* icons: Add Faenza edit-delete.
2019-12-30 Alastair Poole <[email protected]>
* fileselector: Dont set expandable
2019-12-30 Alastair Poole <[email protected]>
* toolbar: Use focus on mouse-in and animate.
2019-12-29 Alastair Poole <[email protected]>
* background: Use our edi_about image for bg.
2019-12-29 Alastair Poole <[email protected]>
* Toolbar: Use smaller icons.
2019-12-29 Alastair Poole <[email protected]>
* filepanel: fix menu when scm disabled
2019-12-29 Alastair Poole <[email protected]>
* Mime: Fix for 0 size files.
2019-12-28 Alastair Poole <[email protected]>
* desktop: Add text/plain as default mime type.
2019-12-28 Alastair Poole <[email protected]>
* welcome: Fix for clones project templates.
2019-12-28 Alastair Poole <[email protected]>
* main: Add usage as an editor.
2019-12-28 Alastair Poole <[email protected]>
* main: minor tidying.
2019-12-28 Alastair Poole <[email protected]>
* Toolbar: Bring back to single window.
2019-12-26 Alastair Poole <[email protected]>
* icons: More icons.
2019-12-26 Alastair Poole <[email protected]>
* icons: Add more generic default icons
2019-12-26 Alastair Poole <[email protected]>
* tb: More changes
2019-12-26 Alastair Poole <[email protected]>
* Menu: Minor changes
2019-12-26 Alastair Poole <[email protected]>
* Menu: Change behaviour
2019-12-26 Alastair Poole <[email protected]>
* ICONS: Use internal icons.
2019-12-24 Alastair Poole <[email protected]>
* Fix transparancy
2019-12-24 Alastair Poole <[email protected]>
* toolbar: use static state storage.
2019-12-22 Alastair Poole <[email protected]>
* toolbar: Some minor changes
2019-12-22 Alastair Poole <[email protected]>
* meson: Fix build
2019-12-22 Alastair Poole <[email protected]>
* Toolbar: Controversy. Horizontal or vertical.
2019-12-21 Alastair Poole <[email protected]>
* Revert "toolbar: experiment"
2019-12-21 Alastair Poole <[email protected]>
* toolbar: experiment
2019-12-20 Alastair Poole <[email protected]>
* edi_welcome: Formatting.
2019-12-20 Alastair Poole <[email protected]>
* Accidentally included file (remove)
2019-12-20 Alastair Poole <[email protected]>
* welcome: Much better exec and then exit.
2019-12-20 Alastair Poole <[email protected]>
* Edi_Mime: Use our own variation to detect mime.
2019-12-16 Alastair Poole <[email protected]>
* Settings: Fix debugger combobox sizing.
2019-12-16 Alastair Poole <[email protected]>
* Welcome: Fix icon size and create project UI.
2019-12-16 Alastair Poole <[email protected]>
* process: Check for NULL return value.
2019-12-15 Alastair Poole <[email protected]>
* Meson: Simplify
2019-12-15 Alastair Poole <[email protected]>
* OpenBSD: -lkvm and use PID_MAX
2019-12-15 Alastair Poole <[email protected]>
* filepanel: Use consistent icon size.
2019-12-15 Alastair Poole <[email protected]>
* filepanel: Add Undo (checkout) to SCM Menu.
2019-12-15 Alastair Poole <[email protected]>
* editor: Add Shift+Insert Handling
2019-12-15 Alastair Poole <[email protected]>
* Toolbar: Make icons homogeneous.
2019-12-15 Alastair Poole <[email protected]>
* Panel: Increase icon size.
2019-12-15 Alastair Poole <[email protected]>
* toolbar: Return to toolbar at top.
2019-12-06 Alastair Poole <[email protected]>
* statusbar: remove hack workaround.
2019-05-03 Andy Williams <[email protected]>
* Return to next development version
2019-05-03 Andy Williams <[email protected]>
* Merge tag 'v0.7.1' into develop
2019-05-03 Andy Williams <[email protected]>
* Merge branch 'release/v0.7.1'
2019-05-03 Andy Williams <[email protected]>
* Prep for 0.7.1 release
2019-05-02 Andy Williams <[email protected]>
* Update docs for latest EFL api usage
2019-05-02 Rob Hensley <[email protected]>
* Quick missing word fix.
2019-03-24 Alastair Poole <[email protected]>
* BUILD: Fix changes in API for EFL 1.22
2018-12-17 Alastair Poole <[email protected]>
* edi_settings: allow settings window tab open choice.
2018-11-25 Alastair Poole <[email protected]>
* edi_process: Introduce new process API.
2018-11-21 Alastair Poole <[email protected]>
* edi_theme: use appropriate API.
2018-09-13 Andy Williams <[email protected]>
* Merge tag '0.7.0' into develop
2018-09-13 Andy Williams <[email protected]>
* Merge branch 'release/0.7.0'
2018-09-13 Andy Williams <[email protected]>
* Merge branch 'release/v0.7.0'
2018-09-13 Andy Williams <[email protected]>
* Fix dependency numbers now they are released
2018-09-13 Andy Williams <[email protected]>
* And moving on to next develop
2018-09-13 Andy Williams <[email protected]>
* prep for 0.7 release
2018-09-13 Andy Williams <[email protected]>
* Update News for release
2018-09-11 Alastair Poole <[email protected]>
* mainview: no need for popup when entry is empty.
2018-09-07 Alastair Poole <[email protected]>
* provider: ensure we handle python3 mimetype.
2018-09-06 Alastair Poole <[email protected]>
* Revert "editor: fix multiline comment syntax highlighting."
2018-09-06 Alastair Poole <[email protected]>
* editor: fix multiline comment syntax highlighting.
2018-09-04 Alastair Poole <[email protected]>
* main: use scroller as container for logpane.
2018-09-03 Alastair Poole <[email protected]>
* examples: update examples if repository exists.
2018-08-31 Alastair Poole <[email protected]>
* searchpanel: ignore ELF files.
2018-08-30 Andy Williams <[email protected]>
* Fix false positives in search-in-project
2018-08-24 Alastair Poole <[email protected]>
* settings: add option to show hidden files.
2018-08-22 Alastair Poole <[email protected]>
* create: bring back callback to notify UI.
2018-08-22 Alastair Poole <[email protected]>
* filepanel: update callback to match exp. prototype.
2018-08-22 Alastair Poole <[email protected]>
* build: silence warnings due to unused params/vars.
2018-08-22 Alastair Poole <[email protected]>
* settings: disable highlight settings win display.
2018-08-22 Alastair Poole <[email protected]>
* welcome: fix issue with template creation.
2018-08-22 Alastair Poole <[email protected]>
* settings: move check into method.
2018-08-21 Alastair Poole <[email protected]>
* editor: Fix typo.
2018-08-21 Alastair Poole <[email protected]>
* editor: register modify on cut and paste.
2018-08-21 Alastair Poole <[email protected]>
* settings: only allow one settings window instance.
2018-08-21 Alastair Poole <[email protected]>
* filepanel: remove timer check for select path.
2018-08-19 Alastair Poole <[email protected]>
* filepanel: remove bogus minsize.
2018-08-19 Alastair Poole <[email protected]>
* settings: on alpha window change keep on top.
2018-08-19 Alastair Poole <[email protected]>
* welcome: evas_object_rectangle_add needs Evas.
2018-08-13 Alastair Poole <[email protected]>
* theme: add translucency to Edi.
2018-08-13 Alastair Poole <[email protected]>
* fade:
2018-08-13 Alastair Poole <[email protected]>
* transparancy: update other widgets.
2018-08-13 Alastair Poole <[email protected]>
* This should work it does not
2018-08-13 Alastair Poole <[email protected]>
* Do this better
2018-08-13 Alastair Poole <[email protected]>
* Revert "Fix translucency again."
2018-08-13 Alastair Poole <[email protected]>
* Fix translucency again.
2018-08-07 Alastair Poole <[email protected]>
* fade:
2018-08-06 Alastair Poole <[email protected]>
* transparancy: update other widgets.
2018-08-06 Alastair Poole <[email protected]>
* This should work it does not
2018-08-04 Alastair Poole <[email protected]>
* build: fix unused variable warning.
2018-08-04 Alastair Poole <[email protected]>
* tabs: let tabs with large filenames grow.
2018-08-04 Alastair Poole <[email protected]>
* settings: fix visual error when choosing font.
2018-08-04 Alastair Poole <[email protected]>
* tabs: make tabs consistent size.
2018-08-03 Alastair Poole <[email protected]>
* mainview: show path in tooltip when hovering tab.
2018-08-01 Alastair Poole <[email protected]>
* Do this better
2018-08-01 Alastair Poole <[email protected]>
* Revert "Fix translucency again."
2018-07-31 Alastair Poole <[email protected]>
* Fix translucency again.
2018-07-24 Alastair Poole <[email protected]>
* goto line: fix crash when inputting with keyboard.
2018-07-23 Alastair Poole <[email protected]>
* search in project: Use proper widget hierarchy.
2018-07-19 Alastair Poole <[email protected]>
* welcome: display template icon at correct ratio.
2018-06-22 Cedric BAIL <[email protected]>
* searchpanel: complete rewrite to have low hoverhead when processing search.
2018-06-13 Alastair Poole <[email protected]>
* debugpanel: fix crash.
2018-06-06 Alastair Poole <[email protected]>
* tab: right-click tab for filename path.
2018-06-06 Alastair Poole <[email protected]>
* filepanel: on tab focus improve visibility.
2018-05-17 Andy Williams <[email protected]>
* Better explanations of the build options
2018-05-15 Andy Williams <[email protected]>
* Revert "theme: We don't need to build a theme until that's supported"
2018-05-15 Andy Williams <[email protected]>
* Revert "theme: roll back for the 0.7 releaes"
2018-05-15 Andy Williams <[email protected]>
* Merge in from 0.6.1 release branch
2018-05-15 Andy Williams <[email protected]>
* Merge branch 'release/edi-0.7'
2018-05-15 Andy Williams <[email protected]>
* Version down for release
2018-05-15 Andy Williams <[email protected]>
* Attempting a meson build fix
2018-05-15 Alastair Poole <[email protected]>
* logpanel: fix crash when appending lots of lines.
2018-05-15 Alastair Poole <[email protected]>
* scm_git: Allow us to unstage even if there is no remote url.
2018-05-15 Alastair Poole <[email protected]>
* credits_check/scm_ui: Fix bugs that crash.
2018-05-15 Alastair Poole <[email protected]>
* scm: init. Fix a crash on new project initializing SCM.
2018-05-15 Andy Williams <[email protected]>
* Rolling back release numbers for 0.6.1 next
2018-05-15 Alastair Poole <[email protected]>
* panels: add a frame around each panel for depth and clarity.
2018-05-15 Alastair Poole <[email protected]>
* main: increase lower toolbar icon size slightly.
2018-05-15 Alastair Poole <[email protected]>
* screens: improve settings popup slightly.
2018-05-14 Alastair Poole <[email protected]>
* logpanel: fix crash when appending lots of lines.
2018-05-14 Alastair Poole <[email protected]>
* scm_git: Allow us to unstage even if there is no remote url.
2018-05-14 Alastair Poole <[email protected]>
* credits_check/scm_ui: Fix bugs that crash.
2018-05-13 Alastair Poole <[email protected]>
* edi_theme: use new method to update theme after layout change.
2018-05-13 Alastair Poole <[email protected]>
* scm: init. Fix a crash on new project initializing SCM.
2018-05-11 Andy Williams <[email protected]>
* Display the text position rather than the visual column in info
2018-05-11 Andy Williams <[email protected]>
* Remove duplicate line
2018-05-11 Andy Williams <[email protected]>
* Display the text position rather than the visual column in info
2018-05-11 Andy Williams <[email protected]>
* Remove duplicate line
2018-05-01 Alastair Poole <[email protected]>
* settings: Fix crash with non-SCM project.
2018-05-01 Al Poole <[email protected]>
* AUTHORS: update to use my real name.
2018-04-14 Alastair Poole <[email protected]>
* settings: Fix crash with non-SCM project.
2018-03-22 Al Poole <[email protected]>
* AUTHORS: update to use my real name.
2018-03-22 Andy Williams <[email protected]>
* Improve safety and simplify mime display code
2018-03-21 Andy Williams <[email protected]>
* Fix escaping of names in git parameters
2018-03-21 Al Poole <[email protected]>
* scm: use cached value, but do check for "" return too.
2018-03-21 Al Poole <[email protected]>
* scm: do not check for git credentials on a LOCAL none-commit op.
2018-03-21 Andy Williams <[email protected]>
* Fix EFL version required for release branch
2018-03-21 Andy Williams <[email protected]>
* Oops, fix compile error from merge conflict
2018-03-21 Al Poole <[email protected]>
* screens: add a dialogue with a button for close and settings panel.
2018-03-21 Al Poole <[email protected]>
* content: dont check line endings for image.
2018-03-20 Al Poole <[email protected]>
* screens: add a dialogue with a button for close and settings panel.
2018-03-19 Al Poole <[email protected]>
* scm: store scm credentials and fix UI stash and commit.
2018-03-18 Al Poole <[email protected]>
* statusbar: undo recursive dependency.
2018-03-17 Al Poole <[email protected]>
* content: move statusbar into edi_content.
2018-03-17 Al Poole <[email protected]>
* content: move alternative content to edi_content.c
2018-03-03 Andy Williams <[email protected]>
* Default to tab indenting for go projects
2018-03-03 Andy Williams <[email protected]>
* Fix possible crash on consolepanel
2018-03-03 Andy Williams <[email protected]>
* Rely on fixes in latest EFL release
2018-02-22 Al Poole <[email protected]>
* tabs: Ensure that all content types load with good dimensions.
2018-02-22 Andy Williams <[email protected]>
* Load the test results for Golang builds
2018-02-21 Al Poole <[email protected]>
* editor: fix tab sizing with multiple panels.
2018-02-17 Andy Williams <[email protected]>
* build: Add support for Go building
2018-02-17 Andy Williams <[email protected]>
* Fix typo in string constructon
2018-02-10 Andy Williams <[email protected]>
* block on efl-git for edi-git
2018-02-10 Andy Williams <[email protected]>
* Update EFL version required
2018-02-10 Andy Williams <[email protected]>
* theme: We don't need to build a theme until that's supported
2018-02-10 Andy Williams <[email protected]>
* develop is now heading to 0.8
2018-02-10 Andy Williams <[email protected]>
* Update for latest feature additions
2018-02-10 Andy Williams <[email protected]>
* theme: roll back for the 0.7 releaes
2018-02-10 Andy Williams <[email protected]>
* Completion of examples feature
2018-02-03 Andy Williams <[email protected]>
* Fix compile error for non-c99 buids
2018-02-03 Andy Williams <[email protected]>
* Fix compile error for non-c99 buids
2018-01-06 Andy Williams <[email protected]>
* examples: extract example from git to create new projects
2018-01-06 Andy Williams <[email protected]>
* suggest: fix potential crash. Don't list un-named methods?
2018-01-06 Andy Williams <[email protected]>
* templtaes: refactor to use template name rather than path
2018-01-06 Andy Williams <[email protected]>
* examples: refactor template code to work for examples too
2018-01-02 Andy Williams <[email protected]>
* examples: refactor data to be tidier
2018-01-02 Andy Williams <[email protected]>
* examples: Crash fix on going back
2018-01-01 Andy Williams <[email protected]>
* Example: Add more content for the main examples
2018-01-01 Andy Williams <[email protected]>
* examples: First pass add of examples info.
2017-12-31 Andy Williams <[email protected]>
* Fix unsafe usages of basename
2017-12-30 Andy Williams <[email protected]>
* scm: Update layout for scm commits for usability
2017-12-30 Andy Williams <[email protected]>
* avatar: Don't clip rotated avatar
2017-12-30 Andy Williams <[email protected]>
* scm: If we can guess user credentials don't block
2017-12-30 Andy Williams <[email protected]>
* scm: Consistent dir usage in win titles
2017-12-30 Andy Williams <[email protected]>
* scm: pass new --commit param to edi_scm for commit workflow
2017-12-30 Andy Williams <[email protected]>
* scm: Add command line options to specify path if we want.
2017-12-30 Andy Williams <[email protected]>
* scm: Fix initialisation to be based either on path or on CWD/edi_project_get
2017-12-30 Andy Williams <[email protected]>
* scm: Make the titles consistent and add them to translations
2017-12-30 Al Poole <[email protected]>
* scm_ui: remove unnecessary check.
2017-12-29 Al Poole <[email protected]>
* scm_ui: use already stored value, no need to query again.
2017-12-29 Al Poole <[email protected]>
* edi_scm: Consistent results for SCM root_directory.
2017-12-29 Al Poole <[email protected]>
* scm_ui: Add border to avatar w/effect (rotation)
2017-12-28 Al Poole <[email protected]>
* scm: refactor of scm
2017-12-27 Al Poole <[email protected]>
* edi_scm: move project root detection into the library.
2017-12-27 Al Poole <[email protected]>
* edi_scm: allow stage/unstaging outside of top scm dir.
2017-12-23 Andy Williams <[email protected]>
* Up to date translations
2017-12-23 Andy Williams <[email protected]>
* Add translation info to the about screen
2017-12-20 Al Poole <[email protected]>
* edi_scm: Add support for staging and unstaging.
2017-12-17 Andy Williams <[email protected]>
* settings: Fix slider for scroll wheel usage
2017-12-15 Al Poole <[email protected]>
* edi_exe: workaround for ecore_con_server_del
2017-12-09 Al Poole <[email protected]>
* editor_search: make it clearer in the code when we reset the cursor.
2017-12-09 Al Poole <[email protected]>
* welcome: add visual indication for required but missing fields.
2017-12-09 Al Poole <[email protected]>
* editor: search wrapping inconsistencies fix.
2017-12-09 Al Poole <[email protected]>
* filepanel: only pack the box once when showing the file search.
2017-12-08 Andy Williams <[email protected]>
* settings: Improve layout in display settings
2017-12-08 Andy Williams <[email protected]>
* Add to news
2017-12-08 Andy Williams <[email protected]>
* Merge branch 'feature/edi_translucency' into develop
2017-12-08 Andy Williams <[email protected]>
* alpha: Tidy settings screen for translucency
2017-12-06 Al Poole <[email protected]>
* settings: slight tidy up and make code easier to read.
2017-12-06 Al Poole <[email protected]>
* theme: remove unnecessary call, and slight tidy.
2017-12-06 Al Poole <[email protected]>
* alpha: make sure window alpha is set on config change.
2017-12-06 Al Poole <[email protected]>
* Merge branch 'feature/edi_translucency' of git+ssh://github.com/enlightenment/edi into feature/edi_translucency
2017-12-06 Al Poole <[email protected]>
* theme: fix small bug and change label.
2017-12-06 Andy Williams <[email protected]>
* alpha: Fix config defaults
2017-12-05 Al Poole <[email protected]>
* theme: add settings for alpha
2017-12-05 Al Poole <[email protected]>
* Revert "theme: "finish" settings for the theme translucency/shininig"
2017-12-05 Al Poole <[email protected]>
* theme: "finish" settings for the theme translucency/shininig
2017-12-03 Al Poole <[email protected]>
* settings: some minor visual changes to layout.
2017-12-03 Al Poole <[email protected]>
* themes: introduce theme support with themes
2017-12-03 Al Poole <[email protected]>
* themes: final changes remove black.edc
2017-12-02 Al Poole <[email protected]>
* theme: sort themes.
2017-12-02 Al Poole <[email protected]>
* theme: set generic value to generic title.
2017-12-02 Al Poole <[email protected]>
* theme: add a title to theme edcs and use that.
2017-12-01 Al Poole <[email protected]>
* mainview: react to config changes for split editors.
2017-12-01 Al Poole <[email protected]>
* mainview: react properly to config changes.
2017-12-01 Al Poole <[email protected]>
* edi_theme: add solarized basic theme.
2017-12-01 Al Poole <[email protected]>
* themes: add solarized theme (dark)
2017-12-01 Al Poole <[email protected]>
* split_view: store and load split views between sessions.
2017-11-27 Al Poole <[email protected]>
* edi_theme: Add support for colour themes in EDI.
2017-11-24 Al Poole <[email protected]>
* edi_settings: set the default debugger as the selected if none set.
2017-11-24 Al Poole <[email protected]>
* editor: split view. allow deletion of views.
2017-11-24 Andy Williams <[email protected]>
* build: Rplace PKGBUILD with a working script
2017-11-24 Andy Williams <[email protected]>
* build: Fix chmod for DESTDIR builds
2017-11-24 Andy Williams <[email protected]>
* Update TODO doc
2017-11-24 Andy Williams <[email protected]>
* build: Fix install location for template files
2017-11-23 Al Poole <[email protected]>
* edi_filepanel: select on focus.
2017-11-23 Al Poole <[email protected]>
* mainview: store an actual copy of the path.
2017-11-22 Andy Williams <[email protected]>
* Avoid infite tab focus loops
2017-11-22 Al Poole <[email protected]>
* Revert "editor: on focus dont highlight file in panel."
2017-11-22 Al Poole <[email protected]>
* editor: on focus dont highlight file in panel.
2017-11-22 Al Poole <[email protected]>
* editor: dont use smart parent object.
2017-11-20 Al Poole <[email protected]>
* edi_filepanel: make the filepanel unfocusable.
2017-11-19 Andy Williams <[email protected]>
* gui: Merge debugger menu into build menu
2017-11-19 Andy Williams <[email protected]>
* Remove trailing symbols from translations
2017-11-19 Andy Williams <[email protected]>
* mainview: Don't shuffle tabs on background close
2017-11-19 Andy Williams <[email protected]>
* mainview: Scroll tabs correctly on open new tab
2017-11-19 Andy Williams <[email protected]>
* mainview: Don't promote a tab immediately before closing it
2017-11-16 Al Poole <[email protected]>
* edi_settings: simplify font test and allow for some variation.
2017-11-11 Al Poole <[email protected]>
* language: add initial support for Golang editing.
2017-11-09 Al Poole <[email protected]>
* edi_debugpanel: fix debug panel buttons to work more reliably.
2017-11-08 Al Poole <[email protected]>
* edi_debug: improve debugging support.
2017-11-05 Andy Williams <[email protected]>
* Merge branch 'master' into develop
2017-11-05 Andy Williams <[email protected]>
* Update name casing
2017-11-05 Al Poole <[email protected]>
* mainview_panel: fix focus issue and panel closing.
2017-11-04 Marcel <[email protected]>
* build: use a include directory and not relative paths
2017-11-04 Marcel <[email protected]>
* Revert "meson: remove exposure of lookup paths"
2017-11-04 Marcel <[email protected]>
* build: version 39.0 should be enough
2017-10-31 Al Poole <[email protected]>
* edi_about: include Edi version in title again.
2017-10-29 Al Poole <[email protected]>
* Revert "edi_filepanel: if file is deleted close item in view."
2017-10-29 Al Poole <[email protected]>
* edi_filepanel: if file is deleted close item in view.
2017-10-28 Al Poole <[email protected]>
* edi_main: don't start build,test,clean when unknown project type.
2017-10-28 Al Poole <[email protected]>
* mainview: add support for the new EFL focus subsystem.
2017-10-28 Al Poole <[email protected]>
* tests: fix build on FreeBSD.
2017-10-24 Al Poole <[email protected]>
* editor: align search and replace entries. Neater.
2017-10-23 Andy Williams <[email protected]>
* Fix meson tests for OS X as well
2017-10-23 Andy Williams <[email protected]>
* meson: remove exposure of lookup paths
2017-10-22 Marcel Hollerbach <[email protected]>