-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathChangeLog
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 <netstar@gmail.com>
* skeletons: move from autotools to meson.
2020-03-21 Alastair Poole <netstar@gmail.com>
* theme: Solarized Fix w/libclang syntax.
2020-03-21 Alastair Poole <netstar@gmail.com>
* tasks: Search only when specified.
2020-03-21 Alastair Poole <netstar@gmail.com>
* settings: Use Global as Title.
2020-03-21 Alastair Poole <netstar@gmail.com>
* screens: welcome text and image (revert).
2020-03-15 Alastair Poole <netstar@gmail.com>
* scm: Correct SCM file panel behaviour.
2020-03-14 Alastair Poole <netstar@gmail.com>
* mainview: refactor tab swap.
2020-03-14 Alastair Poole <netstar@gmail.com>
* mainview: rename struct members.
2020-03-14 Alastair Poole <netstar@gmail.com>
* save: wrong thread for this api
2020-03-14 Alastair Poole <netstar@gmail.com>
* mainview: hide tab tooltip on drag.
2020-03-14 Alastair Poole <netstar@gmail.com>
* mainview: Changes.
2020-03-14 Alastair Poole <netstar@gmail.com>
* mainview: Introduce Edi_Mainview_Item Tab.
2020-03-14 Alastair Poole <netstar@gmail.com>
* tabs: Make this move faster.
2020-03-14 Alastair Poole <netstar@gmail.com>
* mainview: allow panel tab dragging.
2020-03-13 Alastair Poole <netstar@gmail.com>
* scm: Add clone depth.
2020-03-13 Alastair Poole <netstar@gmail.com>
* editor: Fix build break.
2020-03-13 Alastair Poole <netstar@gmail.com>
* editor: small change.
2020-03-13 Alastair Poole <netstar@gmail.com>
* editor: Use a separate thread to save.
2020-03-09 Alastair Poole <netstar@gmail.com>
* filepanel: Use edi_theme_icon_path_get.
2020-03-08 Alastair Poole <netstar@gmail.com>
* editor: Typo.
2020-03-08 Alastair Poole <netstar@gmail.com>
* editor: Changes in Editor Mode.
2020-03-07 Alastair Poole <netstar@gmail.com>
* settings: Line numbers (enable/disable).
2020-03-07 Alastair Poole <netstar@gmail.com>
* config: Place all UI changes into one function.
2020-03-06 Alastair Poole <netstar@gmail.com>
* welcome: clear templates on welcome.
2020-03-06 Alastair Poole <netstar@gmail.com>
* main: logic fix for icon changes.
2020-03-06 Alastair Poole <netstar@gmail.com>
* Examples: Introduce C# Examples.
2020-03-06 Alastair Poole <netstar@gmail.com>
* DEBUG: Add Mono Debugging Support.
2020-03-06 Alastair Poole <netstar@gmail.com>
* CSharp: Support syntax-highligting.
2020-03-06 Alastair Poole <netstar@gmail.com>
* theme: Refresh filepanel on icon theme change.
2020-03-06 Alastair Poole <netstar@gmail.com>
* settings: more impovement
2020-03-06 Alastair Poole <netstar@gmail.com>
* toolbar: Add "clean" build option.
2020-03-06 Alastair Poole <netstar@gmail.com>
* mainview: check end bounds also.
2020-03-05 Alastair Poole <netstar@gmail.com>
* settings: Internal Icons.
2020-03-05 Alastair Poole <netstar@gmail.com>
* Settings: Tidying up more
2020-03-05 Alastair Poole <netstar@gmail.com>
* config: Add show/hide line width marker.
2020-03-05 Alastair Poole <netstar@gmail.com>
* editor: Improve non development mode.
2020-03-05 Alastair Poole <netstar@gmail.com>
* debug: Improve this functionality.
2020-03-03 Alastair Poole <netstar@gmail.com>
* welcome: Help the user.
2020-03-02 Alastair Poole <netstar@gmail.com>
* welcome: Examples.
2020-02-24 Alastair Poole <netstar@gmail.com>
* config: Change default font size.
2020-02-24 Alastair Poole <netstar@gmail.com>
* filepane: Only expand if project.
2020-02-24 Alastair Poole <netstar@gmail.com>
* search: Tasks only if project.
2020-02-09 Alastair Poole <netstar@gmail.com>
* searchpanel: Refactor search code.
2020-02-09 Alastair Poole <netstar@gmail.com>
* config: Better default values.
2020-02-09 Alastair Poole <netstar@gmail.com>
* searchpanel: Set minimum search string size.
2020-02-09 Alastair Poole <netstar@gmail.com>
* searchpanel: remove pointless line append at end.
2020-02-09 Alastair Poole <netstar@gmail.com>
* debugpanel: Improve this somewhat.
2020-02-09 Alastair Poole <netstar@gmail.com>
* searchpanel: Skip leading newlines.
2020-02-02 Alastair Poole <netstar@gmail.com>
* searchpanel: Tidy
2020-02-02 Alastair Poole <netstar@gmail.com>
* search: Use a search entry.
2020-02-02 Alastair Poole <netstar@gmail.com>
* Settings: Set check properly.
2020-02-02 Alastair Poole <netstar@gmail.com>
* settings: SHow toolbar text setting.
2020-02-02 Alastair Poole <netstar@gmail.com>
* search: Cancel thread when closing.
2020-02-02 Alastair Poole <netstar@gmail.com>
* Editor: When an editor forget past tabs.
2020-02-02 Alastair Poole <netstar@gmail.com>
* search: improve stability.
2020-01-25 Alastair Poole <netstar@gmail.com>
* toolbar: Show icon text.
2020-01-25 Alastair Poole <netstar@gmail.com>
* fileselector: Do not expand.
2020-01-24 Alastair Poole <netstar@gmail.com>
* welcome: Fix issue when create fails.
2020-01-22 Alastair Poole <netstar@gmail.com>
* panel: Change lower panel alignment.
2020-01-19 Alastair Poole <netstar@gmail.com>
* debug: FreeBSD debugging improve.
2020-01-19 Alastair Poole <netstar@gmail.com>
* mainview: Let mouse scroll move tabs.
2020-01-12 Alastair Poole <netstar@gmail.com>
* edit: When running as an editor use HOME.
2020-01-12 Alastair Poole <netstar@gmail.com>
* fonts: Use a more efficient method.
2020-01-08 Alastair Poole <netstar@gmail.com>
* Search: Slight changes.
2020-01-08 Alastair Poole <netstar@gmail.com>
* main: Remove unused function.
2020-01-08 Alastair Poole <netstar@gmail.com>
* edi_mime: Only map what is needed.
2020-01-08 Alastair Poole <netstar@gmail.com>
* EDI: Be more defensie when opening files/projects.
2020-01-08 Alastair Poole <netstar@gmail.com>
* project: Hide project settings if not project.
2020-01-07 Alastair Poole <netstar@gmail.com>
* editor: Disable items build related.
2020-01-04 Alastair Poole <netstar@gmail.com>
* Toolbar: Change position on-the-fly.
2020-01-03 Alastair Poole <netstar@gmail.com>
* gitignore: Ignore VIM .swp files!!!
2020-01-03 Alastair Poole <netstar@gmail.com>
* debug: Use appropriate array size.
2020-01-03 Alastair Poole <netstar@gmail.com>
* debug: Break when found
2020-01-03 Alastair Poole <netstar@gmail.com>
* edi: Fix debugging on OpenBSD.
2020-01-02 Alastair Poole <netstar@gmail.com>
* debug: Improve the functionality greatly.
2019-12-31 Alastair Poole <netstar@gmail.com>
* icons: Add Faenza edit-delete.
2019-12-30 Alastair Poole <netstar@gmail.com>
* fileselector: Dont set expandable
2019-12-30 Alastair Poole <netstar@gmail.com>
* toolbar: Use focus on mouse-in and animate.
2019-12-29 Alastair Poole <netstar@gmail.com>
* background: Use our edi_about image for bg.
2019-12-29 Alastair Poole <netstar@gmail.com>
* Toolbar: Use smaller icons.
2019-12-29 Alastair Poole <netstar@gmail.com>
* filepanel: fix menu when scm disabled
2019-12-29 Alastair Poole <netstar@gmail.com>
* Mime: Fix for 0 size files.
2019-12-28 Alastair Poole <netstar@gmail.com>
* desktop: Add text/plain as default mime type.
2019-12-28 Alastair Poole <netstar@gmail.com>
* welcome: Fix for clones project templates.
2019-12-28 Alastair Poole <netstar@gmail.com>
* main: Add usage as an editor.
2019-12-28 Alastair Poole <netstar@gmail.com>
* main: minor tidying.
2019-12-28 Alastair Poole <netstar@gmail.com>
* Toolbar: Bring back to single window.
2019-12-26 Alastair Poole <netstar@gmail.com>
* icons: More icons.
2019-12-26 Alastair Poole <netstar@gmail.com>
* icons: Add more generic default icons
2019-12-26 Alastair Poole <netstar@gmail.com>
* tb: More changes
2019-12-26 Alastair Poole <netstar@gmail.com>
* Menu: Minor changes
2019-12-26 Alastair Poole <netstar@gmail.com>
* Menu: Change behaviour
2019-12-26 Alastair Poole <netstar@gmail.com>
* ICONS: Use internal icons.
2019-12-24 Alastair Poole <netstar@gmail.com>
* Fix transparancy
2019-12-24 Alastair Poole <netstar@gmail.com>
* toolbar: use static state storage.
2019-12-22 Alastair Poole <netstar@gmail.com>
* toolbar: Some minor changes
2019-12-22 Alastair Poole <netstar@gmail.com>
* meson: Fix build
2019-12-22 Alastair Poole <netstar@gmail.com>
* Toolbar: Controversy. Horizontal or vertical.
2019-12-21 Alastair Poole <netstar@gmail.com>
* Revert "toolbar: experiment"
2019-12-21 Alastair Poole <netstar@gmail.com>
* toolbar: experiment
2019-12-20 Alastair Poole <netstar@gmail.com>
* edi_welcome: Formatting.
2019-12-20 Alastair Poole <netstar@gmail.com>
* Accidentally included file (remove)
2019-12-20 Alastair Poole <netstar@gmail.com>
* welcome: Much better exec and then exit.
2019-12-20 Alastair Poole <netstar@gmail.com>
* Edi_Mime: Use our own variation to detect mime.
2019-12-16 Alastair Poole <netstar@gmail.com>
* Settings: Fix debugger combobox sizing.
2019-12-16 Alastair Poole <netstar@gmail.com>
* Welcome: Fix icon size and create project UI.
2019-12-16 Alastair Poole <netstar@gmail.com>
* process: Check for NULL return value.
2019-12-15 Alastair Poole <netstar@gmail.com>
* Meson: Simplify
2019-12-15 Alastair Poole <netstar@gmail.com>
* OpenBSD: -lkvm and use PID_MAX
2019-12-15 Alastair Poole <netstar@gmail.com>
* filepanel: Use consistent icon size.
2019-12-15 Alastair Poole <netstar@gmail.com>
* filepanel: Add Undo (checkout) to SCM Menu.
2019-12-15 Alastair Poole <netstar@gmail.com>
* editor: Add Shift+Insert Handling
2019-12-15 Alastair Poole <netstar@gmail.com>
* Toolbar: Make icons homogeneous.
2019-12-15 Alastair Poole <netstar@gmail.com>
* Panel: Increase icon size.
2019-12-15 Alastair Poole <netstar@gmail.com>
* toolbar: Return to toolbar at top.
2019-12-06 Alastair Poole <netstar@gmail.com>
* statusbar: remove hack workaround.
2019-05-03 Andy Williams <andy@andy.xyz>
* Return to next development version
2019-05-03 Andy Williams <andy@andy.xyz>
* Merge tag 'v0.7.1' into develop
2019-05-03 Andy Williams <andy@andy.xyz>
* Merge branch 'release/v0.7.1'
2019-05-03 Andy Williams <andy@andy.xyz>
* Prep for 0.7.1 release
2019-05-02 Andy Williams <andy@andy.xyz>
* Update docs for latest EFL api usage
2019-05-02 Rob Hensley <hensleyrob@gmail.com>
* Quick missing word fix.
2019-03-24 Alastair Poole <netstar@gmail.com>
* BUILD: Fix changes in API for EFL 1.22
2018-12-17 Alastair Poole <netstar@gmail.com>
* edi_settings: allow settings window tab open choice.
2018-11-25 Alastair Poole <netstar@gmail.com>
* edi_process: Introduce new process API.
2018-11-21 Alastair Poole <netstar@gmail.com>
* edi_theme: use appropriate API.
2018-09-13 Andy Williams <andy@andywilliams.me>
* Merge tag '0.7.0' into develop
2018-09-13 Andy Williams <andy@andywilliams.me>
* Merge branch 'release/0.7.0'
2018-09-13 Andy Williams <andy@andywilliams.me>
* Merge branch 'release/v0.7.0'
2018-09-13 Andy Williams <andy@andywilliams.me>
* Fix dependency numbers now they are released
2018-09-13 Andy Williams <andy@andywilliams.me>
* And moving on to next develop
2018-09-13 Andy Williams <andy@andywilliams.me>
* prep for 0.7 release
2018-09-13 Andy Williams <andy@andywilliams.me>
* Update News for release
2018-09-11 Alastair Poole <netstar@gmail.com>
* mainview: no need for popup when entry is empty.
2018-09-07 Alastair Poole <netstar@gmail.com>
* provider: ensure we handle python3 mimetype.
2018-09-06 Alastair Poole <netstar@gmail.com>
* Revert "editor: fix multiline comment syntax highlighting."
2018-09-06 Alastair Poole <netstar@gmail.com>
* editor: fix multiline comment syntax highlighting.
2018-09-04 Alastair Poole <netstar@gmail.com>
* main: use scroller as container for logpane.
2018-09-03 Alastair Poole <netstar@gmail.com>
* examples: update examples if repository exists.
2018-08-31 Alastair Poole <netstar@gmail.com>
* searchpanel: ignore ELF files.
2018-08-30 Andy Williams <andy@andywilliams.me>
* Fix false positives in search-in-project
2018-08-24 Alastair Poole <netstar@gmail.com>
* settings: add option to show hidden files.
2018-08-22 Alastair Poole <netstar@gmail.com>
* create: bring back callback to notify UI.
2018-08-22 Alastair Poole <netstar@gmail.com>
* filepanel: update callback to match exp. prototype.
2018-08-22 Alastair Poole <netstar@gmail.com>
* build: silence warnings due to unused params/vars.
2018-08-22 Alastair Poole <netstar@gmail.com>
* settings: disable highlight settings win display.
2018-08-22 Alastair Poole <netstar@gmail.com>
* welcome: fix issue with template creation.
2018-08-22 Alastair Poole <netstar@gmail.com>
* settings: move check into method.
2018-08-21 Alastair Poole <netstar@gmail.com>
* editor: Fix typo.
2018-08-21 Alastair Poole <netstar@gmail.com>
* editor: register modify on cut and paste.
2018-08-21 Alastair Poole <netstar@gmail.com>
* settings: only allow one settings window instance.
2018-08-21 Alastair Poole <netstar@gmail.com>
* filepanel: remove timer check for select path.
2018-08-19 Alastair Poole <netstar@gmail.com>
* filepanel: remove bogus minsize.
2018-08-19 Alastair Poole <netstar@gmail.com>
* settings: on alpha window change keep on top.
2018-08-19 Alastair Poole <netstar@gmail.com>
* welcome: evas_object_rectangle_add needs Evas.
2018-08-13 Alastair Poole <netstar@gmail.com>
* theme: add translucency to Edi.
2018-08-13 Alastair Poole <netstar@gmail.com>
* fade:
2018-08-13 Alastair Poole <netstar@gmail.com>
* transparancy: update other widgets.
2018-08-13 Alastair Poole <netstar@gmail.com>
* This should work it does not
2018-08-13 Alastair Poole <netstar@gmail.com>
* Do this better
2018-08-13 Alastair Poole <netstar@gmail.com>
* Revert "Fix translucency again."
2018-08-13 Alastair Poole <netstar@gmail.com>
* Fix translucency again.
2018-08-07 Alastair Poole <netstar@gmail.com>
* fade:
2018-08-06 Alastair Poole <netstar@gmail.com>
* transparancy: update other widgets.
2018-08-06 Alastair Poole <netstar@gmail.com>
* This should work it does not
2018-08-04 Alastair Poole <netstar@gmail.com>
* build: fix unused variable warning.
2018-08-04 Alastair Poole <netstar@gmail.com>
* tabs: let tabs with large filenames grow.
2018-08-04 Alastair Poole <netstar@gmail.com>
* settings: fix visual error when choosing font.
2018-08-04 Alastair Poole <netstar@gmail.com>
* tabs: make tabs consistent size.
2018-08-03 Alastair Poole <netstar@gmail.com>
* mainview: show path in tooltip when hovering tab.
2018-08-01 Alastair Poole <netstar@gmail.com>
* Do this better
2018-08-01 Alastair Poole <netstar@gmail.com>
* Revert "Fix translucency again."
2018-07-31 Alastair Poole <netstar@gmail.com>
* Fix translucency again.
2018-07-24 Alastair Poole <netstar@gmail.com>
* goto line: fix crash when inputting with keyboard.
2018-07-23 Alastair Poole <netstar@gmail.com>
* search in project: Use proper widget hierarchy.
2018-07-19 Alastair Poole <netstar@gmail.com>
* welcome: display template icon at correct ratio.
2018-06-22 Cedric BAIL <cedric@ddlm.me>
* searchpanel: complete rewrite to have low hoverhead when processing search.
2018-06-13 Alastair Poole <netstar@gmail.com>
* debugpanel: fix crash.
2018-06-06 Alastair Poole <netstar@gmail.com>
* tab: right-click tab for filename path.
2018-06-06 Alastair Poole <netstar@gmail.com>
* filepanel: on tab focus improve visibility.
2018-05-17 Andy Williams <andy@andywilliams.me>
* Better explanations of the build options
2018-05-15 Andy Williams <andy@andywilliams.me>
* Revert "theme: We don't need to build a theme until that's supported"
2018-05-15 Andy Williams <andy@andywilliams.me>
* Revert "theme: roll back for the 0.7 releaes"
2018-05-15 Andy Williams <andy@andywilliams.me>
* Merge in from 0.6.1 release branch
2018-05-15 Andy Williams <andy@andywilliams.me>
* Merge branch 'release/edi-0.7'
2018-05-15 Andy Williams <andy@andywilliams.me>
* Version down for release
2018-05-15 Andy Williams <andy@andywilliams.me>
* Attempting a meson build fix
2018-05-15 Alastair Poole <netstar@gmail.com>
* logpanel: fix crash when appending lots of lines.
2018-05-15 Alastair Poole <netstar@gmail.com>
* scm_git: Allow us to unstage even if there is no remote url.
2018-05-15 Alastair Poole <netstar@gmail.com>
* credits_check/scm_ui: Fix bugs that crash.
2018-05-15 Alastair Poole <netstar@gmail.com>
* scm: init. Fix a crash on new project initializing SCM.
2018-05-15 Andy Williams <andy@andywilliams.me>
* Rolling back release numbers for 0.6.1 next
2018-05-15 Alastair Poole <netstar@gmail.com>
* panels: add a frame around each panel for depth and clarity.
2018-05-15 Alastair Poole <netstar@gmail.com>
* main: increase lower toolbar icon size slightly.
2018-05-15 Alastair Poole <netstar@gmail.com>
* screens: improve settings popup slightly.
2018-05-14 Alastair Poole <netstar@gmail.com>
* logpanel: fix crash when appending lots of lines.
2018-05-14 Alastair Poole <netstar@gmail.com>
* scm_git: Allow us to unstage even if there is no remote url.
2018-05-14 Alastair Poole <netstar@gmail.com>
* credits_check/scm_ui: Fix bugs that crash.
2018-05-13 Alastair Poole <netstar@gmail.com>
* edi_theme: use new method to update theme after layout change.
2018-05-13 Alastair Poole <netstar@gmail.com>
* scm: init. Fix a crash on new project initializing SCM.
2018-05-11 Andy Williams <andy@andywilliams.me>
* Display the text position rather than the visual column in info
2018-05-11 Andy Williams <andy@andywilliams.me>
* Remove duplicate line
2018-05-11 Andy Williams <andy@andywilliams.me>
* Display the text position rather than the visual column in info
2018-05-11 Andy Williams <andy@andywilliams.me>
* Remove duplicate line
2018-05-01 Alastair Poole <netstar@gmail.com>
* settings: Fix crash with non-SCM project.
2018-05-01 Al Poole <netstar@gmail.com>
* AUTHORS: update to use my real name.
2018-04-14 Alastair Poole <netstar@gmail.com>
* settings: Fix crash with non-SCM project.
2018-03-22 Al Poole <netstar@gmail.com>
* AUTHORS: update to use my real name.
2018-03-22 Andy Williams <andy@andywilliams.me>
* Improve safety and simplify mime display code
2018-03-21 Andy Williams <andy@andywilliams.me>
* Fix escaping of names in git parameters
2018-03-21 Al Poole <netstar@gmail.com>
* scm: use cached value, but do check for "" return too.
2018-03-21 Al Poole <netstar@gmail.com>
* scm: do not check for git credentials on a LOCAL none-commit op.
2018-03-21 Andy Williams <andy@andywilliams.me>
* Fix EFL version required for release branch
2018-03-21 Andy Williams <andy@andywilliams.me>
* Oops, fix compile error from merge conflict
2018-03-21 Al Poole <netstar@gmail.com>
* screens: add a dialogue with a button for close and settings panel.
2018-03-21 Al Poole <netstar@gmail.com>
* content: dont check line endings for image.
2018-03-20 Al Poole <netstar@gmail.com>
* screens: add a dialogue with a button for close and settings panel.
2018-03-19 Al Poole <netstar@gmail.com>
* scm: store scm credentials and fix UI stash and commit.
2018-03-18 Al Poole <netstar@gmail.com>
* statusbar: undo recursive dependency.
2018-03-17 Al Poole <netstar@gmail.com>
* content: move statusbar into edi_content.
2018-03-17 Al Poole <netstar@gmail.com>
* content: move alternative content to edi_content.c
2018-03-03 Andy Williams <andy@andywilliams.me>
* Default to tab indenting for go projects
2018-03-03 Andy Williams <andy@andywilliams.me>
* Fix possible crash on consolepanel
2018-03-03 Andy Williams <andy@andywilliams.me>
* Rely on fixes in latest EFL release
2018-02-22 Al Poole <netstar@gmail.com>
* tabs: Ensure that all content types load with good dimensions.
2018-02-22 Andy Williams <andy@andywilliams.me>
* Load the test results for Golang builds
2018-02-21 Al Poole <netstar@gmail.com>
* editor: fix tab sizing with multiple panels.
2018-02-17 Andy Williams <andy@andywilliams.me>
* build: Add support for Go building
2018-02-17 Andy Williams <andy@andywilliams.me>
* Fix typo in string constructon
2018-02-10 Andy Williams <andy@andywilliams.me>
* block on efl-git for edi-git
2018-02-10 Andy Williams <andy@andywilliams.me>
* Update EFL version required
2018-02-10 Andy Williams <andy@andywilliams.me>
* theme: We don't need to build a theme until that's supported
2018-02-10 Andy Williams <andy@andywilliams.me>
* develop is now heading to 0.8
2018-02-10 Andy Williams <andy@andywilliams.me>
* Update for latest feature additions
2018-02-10 Andy Williams <andy@andywilliams.me>
* theme: roll back for the 0.7 releaes
2018-02-10 Andy Williams <andy@andywilliams.me>
* Completion of examples feature
2018-02-03 Andy Williams <andy@andywilliams.me>
* Fix compile error for non-c99 buids
2018-02-03 Andy Williams <andy@andywilliams.me>
* Fix compile error for non-c99 buids
2018-01-06 Andy Williams <andy@andywilliams.me>
* examples: extract example from git to create new projects
2018-01-06 Andy Williams <andy@andywilliams.me>
* suggest: fix potential crash. Don't list un-named methods?
2018-01-06 Andy Williams <andy@andywilliams.me>
* templtaes: refactor to use template name rather than path
2018-01-06 Andy Williams <andy@andywilliams.me>
* examples: refactor template code to work for examples too
2018-01-02 Andy Williams <andy@andywilliams.me>
* examples: refactor data to be tidier
2018-01-02 Andy Williams <andy@andywilliams.me>
* examples: Crash fix on going back
2018-01-01 Andy Williams <andy@andywilliams.me>
* Example: Add more content for the main examples
2018-01-01 Andy Williams <andy@andywilliams.me>
* examples: First pass add of examples info.
2017-12-31 Andy Williams <andy@andywilliams.me>
* Fix unsafe usages of basename
2017-12-30 Andy Williams <andy@andywilliams.me>
* scm: Update layout for scm commits for usability
2017-12-30 Andy Williams <andy@andywilliams.me>
* avatar: Don't clip rotated avatar
2017-12-30 Andy Williams <andy@andywilliams.me>
* scm: If we can guess user credentials don't block
2017-12-30 Andy Williams <andy@andywilliams.me>
* scm: Consistent dir usage in win titles
2017-12-30 Andy Williams <andy@andywilliams.me>
* scm: pass new --commit param to edi_scm for commit workflow
2017-12-30 Andy Williams <andy@andywilliams.me>
* scm: Add command line options to specify path if we want.
2017-12-30 Andy Williams <andy@andywilliams.me>
* scm: Fix initialisation to be based either on path or on CWD/edi_project_get
2017-12-30 Andy Williams <andy@andywilliams.me>
* scm: Make the titles consistent and add them to translations
2017-12-30 Al Poole <netstar@gmail.com>
* scm_ui: remove unnecessary check.
2017-12-29 Al Poole <netstar@gmail.com>
* scm_ui: use already stored value, no need to query again.
2017-12-29 Al Poole <netstar@gmail.com>
* edi_scm: Consistent results for SCM root_directory.
2017-12-29 Al Poole <netstar@gmail.com>
* scm_ui: Add border to avatar w/effect (rotation)
2017-12-28 Al Poole <netstar@gmail.com>
* scm: refactor of scm
2017-12-27 Al Poole <netstar@gmail.com>
* edi_scm: move project root detection into the library.
2017-12-27 Al Poole <netstar@gmail.com>
* edi_scm: allow stage/unstaging outside of top scm dir.
2017-12-23 Andy Williams <andy@andywilliams.me>
* Up to date translations
2017-12-23 Andy Williams <andy@andywilliams.me>
* Add translation info to the about screen
2017-12-20 Al Poole <netstar@gmail.com>
* edi_scm: Add support for staging and unstaging.
2017-12-17 Andy Williams <andy@andywilliams.me>
* settings: Fix slider for scroll wheel usage
2017-12-15 Al Poole <netstar@gmail.com>
* edi_exe: workaround for ecore_con_server_del
2017-12-09 Al Poole <netstar@gmail.com>
* editor_search: make it clearer in the code when we reset the cursor.
2017-12-09 Al Poole <netstar@gmail.com>
* welcome: add visual indication for required but missing fields.
2017-12-09 Al Poole <netstar@gmail.com>
* editor: search wrapping inconsistencies fix.
2017-12-09 Al Poole <netstar@gmail.com>
* filepanel: only pack the box once when showing the file search.
2017-12-08 Andy Williams <andy@andywilliams.me>
* settings: Improve layout in display settings
2017-12-08 Andy Williams <andy@andywilliams.me>
* Add to news
2017-12-08 Andy Williams <andy@andywilliams.me>
* Merge branch 'feature/edi_translucency' into develop
2017-12-08 Andy Williams <andy@andywilliams.me>
* alpha: Tidy settings screen for translucency
2017-12-06 Al Poole <netstar@gmail.com>
* settings: slight tidy up and make code easier to read.
2017-12-06 Al Poole <netstar@gmail.com>
* theme: remove unnecessary call, and slight tidy.
2017-12-06 Al Poole <netstar@gmail.com>
* alpha: make sure window alpha is set on config change.
2017-12-06 Al Poole <netstar@gmail.com>
* Merge branch 'feature/edi_translucency' of git+ssh://github.com/enlightenment/edi into feature/edi_translucency
2017-12-06 Al Poole <netstar@gmail.com>
* theme: fix small bug and change label.
2017-12-06 Andy Williams <andy@andywilliams.me>
* alpha: Fix config defaults
2017-12-05 Al Poole <netstar@gmail.com>
* theme: add settings for alpha
2017-12-05 Al Poole <netstar@gmail.com>
* Revert "theme: "finish" settings for the theme translucency/shininig"
2017-12-05 Al Poole <netstar@gmail.com>
* theme: "finish" settings for the theme translucency/shininig
2017-12-03 Al Poole <netstar@gmail.com>
* settings: some minor visual changes to layout.
2017-12-03 Al Poole <netstar@gmail.com>
* themes: introduce theme support with themes
2017-12-03 Al Poole <netstar@gmail.com>
* themes: final changes remove black.edc
2017-12-02 Al Poole <netstar@gmail.com>
* theme: sort themes.
2017-12-02 Al Poole <netstar@gmail.com>
* theme: set generic value to generic title.
2017-12-02 Al Poole <netstar@gmail.com>
* theme: add a title to theme edcs and use that.
2017-12-01 Al Poole <netstar@gmail.com>
* mainview: react to config changes for split editors.
2017-12-01 Al Poole <netstar@gmail.com>
* mainview: react properly to config changes.
2017-12-01 Al Poole <netstar@gmail.com>
* edi_theme: add solarized basic theme.
2017-12-01 Al Poole <netstar@gmail.com>
* themes: add solarized theme (dark)
2017-12-01 Al Poole <netstar@gmail.com>
* split_view: store and load split views between sessions.
2017-11-27 Al Poole <netstar@gmail.com>
* edi_theme: Add support for colour themes in EDI.
2017-11-24 Al Poole <netstar@gmail.com>
* edi_settings: set the default debugger as the selected if none set.
2017-11-24 Al Poole <netstar@gmail.com>
* editor: split view. allow deletion of views.
2017-11-24 Andy Williams <andy@andywilliams.me>
* build: Rplace PKGBUILD with a working script
2017-11-24 Andy Williams <andy@andywilliams.me>
* build: Fix chmod for DESTDIR builds
2017-11-24 Andy Williams <andy@andywilliams.me>
* Update TODO doc
2017-11-24 Andy Williams <andy@andywilliams.me>
* build: Fix install location for template files
2017-11-23 Al Poole <netstar@gmail.com>
* edi_filepanel: select on focus.
2017-11-23 Al Poole <netstar@gmail.com>
* mainview: store an actual copy of the path.
2017-11-22 Andy Williams <andy@andywilliams.me>
* Avoid infite tab focus loops
2017-11-22 Al Poole <netstar@gmail.com>
* Revert "editor: on focus dont highlight file in panel."
2017-11-22 Al Poole <netstar@gmail.com>
* editor: on focus dont highlight file in panel.
2017-11-22 Al Poole <netstar@gmail.com>
* editor: dont use smart parent object.
2017-11-20 Al Poole <netstar@gmail.com>
* edi_filepanel: make the filepanel unfocusable.
2017-11-19 Andy Williams <andy@andywilliams.me>
* gui: Merge debugger menu into build menu
2017-11-19 Andy Williams <andy@andywilliams.me>
* Remove trailing symbols from translations
2017-11-19 Andy Williams <andy@andywilliams.me>
* mainview: Don't shuffle tabs on background close
2017-11-19 Andy Williams <andy@andywilliams.me>
* mainview: Scroll tabs correctly on open new tab
2017-11-19 Andy Williams <andy@andywilliams.me>
* mainview: Don't promote a tab immediately before closing it
2017-11-16 Al Poole <netstar@gmail.com>
* edi_settings: simplify font test and allow for some variation.
2017-11-11 Al Poole <netstar@gmail.com>
* language: add initial support for Golang editing.
2017-11-09 Al Poole <netstar@gmail.com>
* edi_debugpanel: fix debug panel buttons to work more reliably.
2017-11-08 Al Poole <netstar@gmail.com>
* edi_debug: improve debugging support.
2017-11-05 Andy Williams <andy@andywilliams.me>
* Merge branch 'master' into develop
2017-11-05 Andy Williams <andy@andywilliams.me>
* Update name casing
2017-11-05 Al Poole <netstar@gmail.com>
* mainview_panel: fix focus issue and panel closing.
2017-11-04 Marcel <marcel@osg.samsung.com>
* build: use a include directory and not relative paths
2017-11-04 Marcel <marcel@osg.samsung.com>
* Revert "meson: remove exposure of lookup paths"
2017-11-04 Marcel <marcel@osg.samsung.com>
* build: version 39.0 should be enough
2017-10-31 Al Poole <netstar@gmail.com>
* edi_about: include Edi version in title again.
2017-10-29 Al Poole <netstar@gmail.com>
* Revert "edi_filepanel: if file is deleted close item in view."
2017-10-29 Al Poole <netstar@gmail.com>
* edi_filepanel: if file is deleted close item in view.
2017-10-28 Al Poole <netstar@gmail.com>
* edi_main: don't start build,test,clean when unknown project type.
2017-10-28 Al Poole <netstar@gmail.com>
* mainview: add support for the new EFL focus subsystem.
2017-10-28 Al Poole <netstar@gmail.com>
* tests: fix build on FreeBSD.
2017-10-24 Al Poole <netstar@gmail.com>
* editor: align search and replace entries. Neater.
2017-10-23 Andy Williams <andy@andywilliams.me>
* Fix meson tests for OS X as well
2017-10-23 Andy Williams <andy@andywilliams.me>
* meson: remove exposure of lookup paths
2017-10-22 Marcel Hollerbach <marcel-hollerbach@t-online.de>