Code Monkey home page Code Monkey logo

edi's Introduction

Enlightenment
-------------

Please report bugs and submit patches at https://phab.enlightenment.org

REQUIREMENTS
------------

Must:
  * efl
  * libpam (On Linux)

Highly suggested:
  * libexif (exif metadata display support)
  * evas_generic_loaders (All loaders)
  * bluez5 (BT support and l2ping tool)
  * connman
  * bc (For everything calculator)
  * pulseaudio
  * acpid (Unless your system doesn't have ACPI at all)
  * packagekit (For packagekit module updates status)
  * udisks2
  * gdb (If you want automatic bactraces in ~/.e-crashdump.txt)

COMPILING AND INSTALLING
------------------------

For sample configuration options please look in the ./confs/ directory
for scripts that pass in commonly used options.

Please see the INSTALL file: https://git.enlightenment.org/core/enlightenment.git/tree/INSTALL

NOTE: Users of DR16 will need to rename the $prefix/bin/enlightenment
file prior to installing this release or it will be overwritten.

NOTE: If you do not want security issues make sure sysactions.conf is in
/etc/enlightenment (not PREFIX/etc/enlightenment) as this is the first place
it looks at. This file is intended to be customized by packagers and
system integrators to match your policies and scripts/tools.

NOTE: To enable wayland support (still considered experimental and not for
regular end users) use the meson -Dwl=true option. To run enlightenment in
wayland mode, just log on on ant vt and run enlightenment_start. If you
wish to debug and see all the output try using something like screen then
attaching to the remote screen session by sshing in etc.


edi's People

Contributors

acry avatar andydotxyz avatar as2902b avatar borisfaure avatar dasg34 avatar davemds avatar haxworx avatar helkanen avatar hensleyrob avatar ilkosta avatar marcelhollerbach avatar okratitan avatar sanbeam avatar tasn avatar wilsonk avatar yomi0 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

edi's Issues

edi-0.7.0 requires efl >=1.21.1

Minor issue, ran into this today though. The README should be updated.

Native dependency elementary found: NO found '1.21.0' but need: '>=1.21.1'

meson.build:25:0: ERROR:  Invalid version of dependency, need 'elementary' ['>=1.21.1'] found '1.21.0'.

edi does not work out of the box on ubuntu

After successfully building and installing edi (on Ubuntu), it failed to startup because of the loader not finding libedi.so.

$ meson -Dlibclang-headerdir=/usr/lib/llvm-4.0/include/ -Dlibclang-libdir=/usr/lib/llvm-4.0/lib/ . build
[ ... ]

$ ninja -C build
[ ... ]

$ sudo ninja -C install
ninja: Entering directory `build'
[0/1] Installing files.
Installing src/lib/libedi.so.0.6.99 to /usr/local/lib/x86_64-linux-gnu/libedi.so.0.6.99
Installing src/bin/edi to /usr/local/bin/edi
Installing src/bin/edi_scm to /usr/local/bin/edi_scm
Installing src/bin/edi_build to /usr/local/bin/edi_build
Installing data/extra/templates/eflproject.tar.gz to /usr/local/share/edi/templates/skeletons/eflproject.tar.gz
Installing data/extra/templates/eflproject_python.tar.gz to /usr/local/share/edi/templates/skeletons/eflproject_python.tar.gz
Installing data/extra/templates/eflproject.edj to /usr/local/share/edi/templates/eflproject.edj
Installing data/extra/templates/eflproject_python.edj to /usr/local/share/edi/templates/eflproject_python.edj
Installing data/themes/white.edj to /usr/local/share/edi/themes/white.edj
Installing data/themes/solarized.edj to /usr/local/share/edi/themes/solarized.edj
Installing data/themes/solarized_dark.edj to /usr/local/share/edi/themes/solarized_dark.edj
Installing /home/jean/e/edi/build/doc/edi.1 to /usr/local/share/doc/edi
Installing /home/jean/e/edi/build/data/desktop/edi.desktop to /usr/local/share/applications
Installing /home/jean/e/edi/data/desktop/edi.png to /usr/local/share/icons/hicolor/256x256/apps
Installing /home/jean/e/edi/data/images/about.png to /usr/local/share/edi/images
Installing /home/jean/e/edi/data/images/welcome.png to /usr/local/share/edi/images
Installing /home/jean/e/edi/AUTHORS to /usr/local/share/info/edi
Running custom install script '/usr/bin/python3 /usr/share/meson/meson --internal gettext install --subdir=po --localedir=share/locale --pkgname=edi'
Running custom install script '/home/jean/e/edi/data/extra/templates/../../../scripts/world_read.sh /usr/local/share/edi/templates/eflproject.edj'
Running custom install script '/home/jean/e/edi/data/extra/templates/../../../scripts/world_read.sh /usr/local/share/edi/templates/eflproject_python.edj'
Running custom install script '/home/jean/e/edi/data/themes/../../scripts/world_read.sh /usr/local/share/edi/themes/white.edj'
Running custom install script '/home/jean/e/edi/data/themes/../../scripts/world_read.sh /usr/local/share/edi/themes/solarized.edj'
Running custom install script '/home/jean/e/edi/data/themes/../../scripts/world_read.sh /usr/local/share/edi/themes/solarized_dark.edj'

$ sudo ldconfig
$ edi                                                                                                                                                                                                                  
edi: error while loading shared libraries: libedi.so.0: cannot open shared object file: No such file or directory

It is annoying that meson does install the lib in that place. By default ubuntu (and many distros) adds support in ld.so.conf* so /usr/local/lib is indexed by ldconfig, but not /usr/local/lib/x86_64-linux-gnu/. If it is not possible to configure meson to install the library in the prefix, instead of adding a toolchain level of indirection, maybe this should be documented somewhere.

Thanks.

autosuggest/tab completion should support lookahead word matching

Currently efl_gfx_size_hint_min_set is only matched if you completely type the efl_gfx_size_hint etc prefix.
It would be great if you could match on egshmins or similar.

I.e. instead of matching each character 1 to 1 we should match the first character and then for each succeeding character see if it matches the next character or the next one that immediately follows an underscore or dash (or is upper cased after a lower case letter).

This would also mean that eb could match Eina_Bool and ef for EINA_FALSE.

This should absolutely be demonstrated by some unit tests :)

Unable to compile

screens/edi_settings.c:210:46: error: invalid suffix 'D' on floating constant
evas_object_size_hint_align_set(label, 0.0D, 0.5);
^

I am getting this error.

Fails to build on Debian Bookwork (testing) with meson 0.62.2

Hi!
I'm not used to all this meson stuff ... but looks like its not iterating/assembling paths correctly, because it looks to me that folders are there in sources.

Steps to reproduce:

meson -Dlibclang-headerdir=/usr/lib/llvm-13/include/ -Dlibclang-libdir=/usr/lib/llvm-13/lib/ . build
[...]

data/extra/templates/meson.build:8:2: ERROR: File skeletons/eflproject does not exist.

A full log can be found at /usr/local/src/edi-0.8.0/build/meson-logs/meson-log.txt

Best regards

Show only the function and its dependencies mode

This mode will code fold everything that is not part of a function (you activate it with a right click on the func name for example), a func that this function is calling, or a type this func is using (or macro or etc...).

multiline comment updates with autosave off

If you create a multiline comment with autosave off ... i.e:
/* line

line
line */
It doesn't update that those rows have been commented out until the file has been saved.

Wrap mode for editor widgets

elm_code needs to be able to be set to wrap lines.
As it currently displays a list of grids 1 per line it should not be too hard to update that so each grid is as many lines as needed to fit the text.
Height and cursor calculations will be harder but there is already some of this complexity in due to widget inclusion between lines.

Multiple undefined symbol errors - compiling edi-0.6.0 on FreeBSD

Am working on getting a pkg ready for FreeBSD 12.1-RELEASE-p6 as I cannot find one in the ports tree/pkg.

Downloaded source from https://download.enlightenment.org/rel/apps/edi/
Using EFL 1.25.1_2.

Issues with linking multiple "elm_obj_code_widget_" symbols.
Fixed a previous compilation error by switching "obj" to "ui" but it does not seem to work in this situation.

Error messages:

` /usr/bin/install -c -m 644 edi_build_provider.h edi_builder.h edi_create.h edi_path.h edi_exe.h edi_scm.h Edi.h '/usr/local/include/edi-0'
Making install in bin
CCLD edi
ld: error: undefined symbol: elm_obj_code_widget_font_set

referenced by edi_editor.c:1311 (editor/edi_editor.c:1311)
editor/edi_editor.o:(edi_editor_add)

ld: error: undefined symbol: elm_obj_code_widget_show_whitespace_set

referenced by edi_editor.c:1312 (editor/edi_editor.c:1312)
editor/edi_editor.o:(edi_editor_add)

ld: error: undefined symbol: elm_obj_code_widget_tab_inserts_spaces_set

referenced by edi_editor.c:1313 (editor/edi_editor.c:1313)
editor/edi_editor.o:(edi_editor_add)

ld: error: undefined symbol: elm_obj_code_widget_line_width_marker_set

referenced by edi_editor.c:1314 (editor/edi_editor.c:1314)
editor/edi_editor.o:(edi_editor_add)

ld: error: undefined symbol: elm_obj_code_widget_tabstop_set

referenced by edi_editor.c:1315 (editor/edi_editor.c:1315)
editor/edi_editor.o:(edi_editor_add)

ld: error: undefined symbol: elm_obj_code_widget_font_set

referenced by edi_editor.c:1311 (editor/edi_editor.c:1311)
editor/edi_editor.o:(_edi_editor_config_changed)

ld: error: undefined symbol: elm_obj_code_widget_show_whitespace_set

referenced by edi_editor.c:1312 (editor/edi_editor.c:1312)
editor/edi_editor.o:(_edi_editor_config_changed)

ld: error: undefined symbol: elm_obj_code_widget_tab_inserts_spaces_set

referenced by edi_editor.c:1313 (editor/edi_editor.c:1313)
editor/edi_editor.o:(_edi_editor_config_changed)

ld: error: undefined symbol: elm_obj_code_widget_line_width_marker_set

referenced by edi_editor.c:1314 (editor/edi_editor.c:1314)
editor/edi_editor.o:(_edi_editor_config_changed)

ld: error: undefined symbol: elm_obj_code_widget_tabstop_set

referenced by edi_editor.c:1315 (editor/edi_editor.c:1315)
editor/edi_editor.o:(_edi_editor_config_changed)

ld: error: undefined symbol: elm_obj_code_widget_font_set

referenced by edi_settings_font.c:40 (screens/edi_settings_font.c:40)
screens/edi_settings_font.o:(_cb_op_font_content_get)

ld: error: undefined symbol: elm_obj_code_widget_line_numbers_set

referenced by edi_settings_font.c:41 (screens/edi_settings_font.c:41)
screens/edi_settings_font.o:(_cb_op_font_content_get)

ld: error: undefined symbol: elm_obj_code_widget_editable_set

referenced by edi_settings_font.c:42 (screens/edi_settings_font.c:42)
screens/edi_settings_font.o:(_cb_op_font_content_get)

ld: error: undefined symbol: elm_obj_code_widget_policy_set

referenced by edi_settings_font.c:43 (screens/edi_settings_font.c:43)
screens/edi_settings_font.o:(_cb_op_font_content_get)

ld: error: undefined symbol: elm_obj_code_widget_font_set

referenced by edi_settings.c:133 (screens/edi_settings.c:133)
screens/edi_settings.o:(edi_settings_show)

ld: error: undefined symbol: elm_obj_code_widget_line_numbers_set

referenced by edi_settings.c:134 (screens/edi_settings.c:134)
screens/edi_settings.o:(edi_settings_show)

ld: error: undefined symbol: elm_obj_code_widget_editable_set

referenced by edi_settings.c:135 (screens/edi_settings.c:135)
screens/edi_settings.o:(edi_settings_show)

ld: error: undefined symbol: elm_obj_code_widget_policy_set

referenced by edi_settings.c:136 (screens/edi_settings.c:136)
screens/edi_settings.o:(edi_settings_show)

ld: error: undefined symbol: elm_obj_code_widget_font_set

referenced by edi_scm_screens.c:478 (screens/edi_scm_screens.c:478)
screens/edi_scm_screens.o:(edi_scm_screens_commit)

ld: error: undefined symbol: elm_obj_code_widget_gravity_set

referenced by edi_scm_screens.c:479 (screens/edi_scm_screens.c:479)
screens/edi_scm_screens.o:(edi_scm_screens_commit)

ld: error: too many errors emitted, stopping now (use -error-limit=0 to see all errors)
cc: error: linker command failed with exit code 1 (use -v to see invocation)
*** Error code 1
`

errors while creating an EDI project

I am running EDI on commit acf483f168985fc5649d870a471ec43879d3f75b (currently the top of develop). And after creating an EDI project, I got in the console EDI was run from:

$ edi
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x400000283b93 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=393, id=a0e, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x400000241e8c is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=28c, id=907, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x400000305d9d is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=19d, id=c17, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x40000026cf38 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=338, id=9b3, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x400000338266 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=266, id=ce0, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x4000002de900 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=100, id=b7a, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x40000025baf3 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=2f3, id=96e, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x4000002a541b is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=1b, id=a95, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x4000002c7ca5 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=a5, id=b1f, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x4000002b6860 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=60, id=ada, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x40000024f2c1 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=2c1, id=93c, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x400000364f19 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=319, id=d93, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x4000002556da is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=2da, id=955, ref=1)
ERR<11571>:eo ../../src/lib/eo/eo_base_class.c:1437 efl_event_callback_array_del() Eo ID 0x4000003700c8 is not a valid object. Current thread: main. This ID has probably been deleted or this was never a valid object ID. (domain=0, current_domain=0, local_domain=0, available_domains=[0 1    ], generation=c8, id=dc0, ref=1)
ERR<11571>:elementary ../../src/lib/elementary/efl_ui_focus_manager_calc.c:216 node_get() Focusable 0x4000000ee3b7 (Elm.Fileselector) not registered in manager 0x4000000b3b51

which may be related to my version of EFL master, I actually do not care much about these errors. What bugs me are the ones that follow:

rm: cannot remove '/tmp/test//data/themes/default/sounds/bell.wav.bak': No such file or directory

and:

fish: Unexpected end of string, quotes are not balanced
sh -c 'git init && git add . && git config user.name "Jean Guyomarc'h" '
                                                                     ^

I know my name always cause trouble to the IT department since it contains an apostrophe ('), and EDI does not seem to really appreciate my gift from Brittany.

meson does not find clang by itself

I've tried to build edi on Ubuntu, but got stuck when meson tried to find clang-c/Index.h. I figured out I needed to install libclang-dev, as hinted in the README 👍 . But I still got the error. After introspecting the meson.build, I came up with the following that makes it happy:

meson -Dlibclang-headerdir=/usr/lib/llvm-4.0/include/ -Dlibclang-libdir=/usr/lib/llvm-4.0/lib/ . build

Since the libclang comes from a system package, I was expecting meson to find where clang was by himself, without me having to go through the dependency chain of the libclang-dev package to see where the installed files are. I realize this may not be simple to do, just letting you know :)

(alpha/beta/test) Releases depend on EFL-development

Is it possible to get test/alpha/beta releases depend on EFL/ELM-release rather than the development tree so testing would be possible without cloning the big repos of EFL/ELM?

I realize the master branch had one more dependency on EFL-1.14.99... before 0.0.9, now, only eo-1.14.99 is required. This is anice step forward...

Thanks.

assume bash as default shell when creating a new project

Hi,
I've tried to create a new project and after the wizard run I got this errors:

$| is not a valid variable in fish.
fish: sed -i "s|\${edi_name}|test_efl|g;s|\${Edi_Name}|test_efl|g;s|\${EDI_NAME}|TEST_EFL|g;s|\${Edi_User}|ilkosta|ig;s|\${Edi_Email}|....@....|g;s|\${Edi_Url}|$|g;s|\${Edi_Year}|2015|g" /home/costa/pkg/lav/test/test_efl//src/tests/test_test_efl.c

I don't know if this an issue related to ecore_exec_run, but seems that it use my default shell (fish) instead of /bin/sh.

Select text and drag down.

In Edi there are select inconsistencies.

Select text and drag up
Select continues;
Select text and drag down
Select will remain on the same view, unable to continue scrolling select. (ISSUE)

edi-0.7.0 compile error with efl-1.22.1

Error info message:

../src/bin/edi_consolepanel.c:387:35: error: ‘ELM_OBJ_CODE_WIDGET_EVENT_LINE_CLICKED’ undeclared (first use in this function) efl_event_callback_add(widget, ELM_OBJ_CODE_WIDGET_EVENT_LINE_CLICKED, _edi_consolepanel_clicked_cb, code);

Environment

  • edi-0.7.0
  • efl-1.22.1
  • gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11)
  • Ubuntu 16.04.6 LTS

installing on archlinux

i tried to install on archlinux
but I get an error like this: edi/data/extra/templates/meson.build:8:2: ERROR: File skeletons/eflproject does not exist.

AppImage/flatpak builds?

Hi,

Is there any chance you might be able to provide AppImage and/or Flatpak versions/builds?

I'm always interested in tinkering with new IDEs, esp. when discovering a new "middleware" like the EFL (if indeed they can be called like that) but it's proving to be a bit of a challenge to build the EFL for now (and setting up a VM for a distro that comes with a new-enough Enlightenment DE is a bit too much work TBH).

Sideways related: are there any screenshots floating around showing EDI or other EFL applications running under Cocoa (i.e. not under X11 on Mac) ... or indeed using a non-dark theme (the default theme is hard for me to work with)?

run edi error.

xiezd@Src-Tizen:~/work/efl/edi-0.3.0$ edi
edi: error while loading shared libraries: libelm_code.so.0: cannot open shared object file: No such file or directory

i have checked that libelm_code.so.0 is local in /usr/local/lib.
xiezd@Src-Tizen:~/work/efl/edi-0.3.0$ ls /usr/local/lib | grep elm_code.so.0
libelm_code.so.0
libelm_code.so.0.3.0

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.