summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* elm - spinner - fix entry mysteriously hiding in paleditCarsten Haitzler (Rasterman)2021-11-211-8/+5
| | | | | | | | | some logic ws off in how to hide/show and handle visibility of swallowed entry. fix it - let edje deal with show/hide and dont fight with it and ensure we emit a signal to have entry active when it needs to be visible @fix
* elm cc - add another paletteCarsten Haitzler (Rasterman)2021-11-162-1/+728
|
* elm cc - add another paletteCarsten Haitzler (Rasterman)2021-11-162-1/+560
|
* elm theme - make min music control size scaleCarsten Haitzler (Rasterman)2021-11-121-0/+6
|
* efl ui text - handle edje cc classes for textCarsten Haitzler (Rasterman)2021-11-111-2/+32
|
* elm theme - this text style in edc/efl/text.edc is not used. removeCarsten Haitzler (Rasterman)2021-11-111-6/+0
|
* Eina: sanitize eina_path output on WindowsVincent Torri2021-11-106-19/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: * remove additional \ character * use only / as path separator Test Plan: compilation and run test program : ``` { elm_app_bin_dir_get(); printf("%s\n", eina_vpath_resolve("(:tmp:)/foo")); printf("%s\n", eina_vpath_resolve("(:home:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.desktop:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.documents:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.downloads:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.music:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.pictures:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.public:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.templates:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.videos:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.data:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.config:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.cache:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.run:)/foo")); printf("%s\n", eina_vpath_resolve("(:usr.tmp:)/foo")); printf("%s\n", eina_vpath_resolve("(:app.dir:)/foo")); printf("%s\n", eina_vpath_resolve("(:app.bin:)/foo")); printf("%s\n", eina_vpath_resolve("(:app.lib:)/foo")); printf("%s\n", eina_vpath_resolve("(:app.data:)/foo")); printf("%s\n", eina_vpath_resolve("(:app.locale:)/foo")); printf("%s\n", eina_vpath_resolve("(:app.config:)/foo")); printf("%s\n", eina_vpath_resolve("(:app.local:)/foo")); printf("%s\n", eina_vpath_resolve("(:app.tmp:)/foo")); } ``` before patch : ``` C:\Documents\msys2\tmp/foo C:\Users\vincent.torri/foo C:\Users\vincent.torri\Desktop/foo C:\Users\vincent.torri\Documents/foo C:\Users\vincent.torri\Downloads/foo C:\Users\vincent.torri\Music/foo C:\Users\vincent.torri\Pictures/foo C:\Users\Public\/foo C:\Users\vincent.torri\AppData\Roaming\Microsoft\Windows\Templates/foo C:\Users\vincent.torri\Videos/foo C:\Users\vincent.torri\AppData\Local\/foo C:\Users\vincent.torri\AppData\Roaming\/foo C:\Users\vincent.torri\AppData\Local\/foo C:\Users\vincent.torri\AppData\Roaming/foo C:\Users\vincent.torri\AppData\Local\Temp/foo C:/Documents/msys2/opt/entice_64/bin/foo C:/Documents/msys2/opt/entice_64/bin/foo C:/Documents/msys2/opt/entice_64/lib/foo C:/Documents/msys2/opt/entice_64/share/foo C:/Documents/msys2/opt/entice_64/share/foo C:\Users\vincent.torri\AppData\Roaming\/entice/foo C:\Users\vincent.torri\AppData\Local\/entice/foo C:\Users\vincent.torri\AppData\Local\Temp/entice/foo ``` after patch ``` C:/Documents/msys2/tmp/foo C:/Users/vincent.torri/foo C:/Users/vincent.torri/Desktop/foo C:/Users/vincent.torri/Documents/foo C:/Users/vincent.torri/Downloads/foo C:/Users/vincent.torri/Music/foo C:/Users/vincent.torri/Pictures/foo C:/Users/Public/foo C:/Users/vincent.torri/AppData/Roaming/Microsoft/Windows/Templates/foo C:/Users/vincent.torri/Videos/foo C:/Users/vincent.torri/AppData/Local/foo C:/Users/vincent.torri/AppData/Roaming/foo C:/Users/vincent.torri/AppData/Local/foo C:/Users/vincent.torri/AppData/Roaming/foo C:/Users/vincent.torri/AppData/Local/Temp/foo C:/Documents/msys2/opt/entice_64/bin/foo C:/Documents/msys2/opt/entice_64/bin/foo C:/Documents/msys2/opt/entice_64/lib/foo C:/Documents/msys2/opt/entice_64/share/foo C:/Documents/msys2/opt/entice_64/share/foo C:/Users/vincent.torri/AppData/Roaming/entice/foo C:/Users/vincent.torri/AppData/Local/entice/foo C:/Users/vincent.torri/AppData/Local/Temp/entice/foo ``` Reviewers: raster Reviewed By: raster Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12306
* eina vpath - fix trailing extra / after homeCarsten Haitzler (Rasterman)2021-11-071-0/+5
| | | | | | fixes T8965 @fix
* eina vpath - fix public vpath location - docs say say public not pubCarsten Haitzler (Rasterman)2021-11-071-1/+3
| | | | @fix
* elm theme - add another paletteCarsten Haitzler (Rasterman)2021-11-062-1/+700
|
* elm theme - add another palette to default setCarsten Haitzler (Rasterman)2021-11-062-14/+573
|
* elm theme - add light palette fileCarsten Haitzler (Rasterman)2021-11-052-0/+705
|
* efl_canvas_image : remove the animated image limitationTaehyub Kim2021-11-042-4/+1
| | | | | | | | | | | | | | | | Summary: remove FRAME_MAX limitation to play the huge animated image which has more than 1024 frames Test Plan: load gif image which has more than 1024 frames Reviewers: Hermet, kimcinoo Reviewed By: Hermet Subscribers: raster, cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12303
* elm theme - some fine tuning of theme to allow for dark and lightCarsten Haitzler (Rasterman)2021-11-022-0/+17
|
* elm theme - colorsel - make the preview color on top dragableCarsten Haitzler (Rasterman)2021-10-311-0/+9
|
* elm - palette - add api to check if palette has a system versionCarsten Haitzler (Rasterman)2021-10-312-0/+12
|
* edje + elm - add new explicit tracking of all cc's used in edj themesCarsten Haitzler (Rasterman)2021-10-319-2/+315
| | | | | | | | | | edje_cc now lists all cc's used in an edj file. edje provides an api to list this. elm now uses this api to expose a list of all cc's used acorss all the theme(s) selected by the user. this will then be used by paledit to produce a nicer gui with a list of available cc's to add etc. and split between basic and extended. @feat
* elm theme - final commit on theme and make default palette rightCarsten Haitzler (Rasterman)2021-10-292-47/+228
| | | | | | | | | | | | | | | | | default palette now matches build-in cc's in theme. it;'s possible for a user to copy the default palette then modify it to their liking. what is left? 1. edje_cc needs to list all cc's used in parts in the edj file 2. an api in edje to read this list of cc's in #1 3. elm api to expose the cc list in #2 4. elm api to expose the cc tree simpler cc's enlightenment paledit -> 1. use info from above to select a new cc from where + - is 2. simple vs complex mode -> simple hides + and - and above list 3. add undo
* elm theme - more cc finalsCarsten Haitzler (Rasterman)2021-10-261-156/+344
|
* Evas engines: remove last bits of evas_cserve2Vincent Torri2021-10-262-39/+0
| | | | | | | | | | | | Reviewers: raster Reviewed By: raster Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12302
* elm theme - more cc worksCarsten Haitzler (Rasterman)2021-10-262-63/+127
|
* evas - software x11 - remove unused xlib+egl code in sw x11Carsten Haitzler (Rasterman)2021-10-254-354/+1
| | | | this code is unused and just wastest space, compile time etc.
* Evas: remove old xcb code in software_x11 codeVincent Torri2021-10-253-34/+12
| | | | | | | | | | | | Summary: this backend code was for selecting XCB over Xlib. Now XCB is removed, this code is useless Reviewers: raster Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12299
* eet - fix bug I added in optimization patch in unusual code pathCarsten Haitzler (Rasterman)2021-10-251-0/+2
| | | | | fixes bug in d08bb7425552853eba6e1c27a33021741b7cb9b1 in fallback code path.
* elm theme - more cc polishCarsten Haitzler (Rasterman)2021-10-243-10/+6
|
* elm theme - more cc cleaningCarsten Haitzler (Rasterman)2021-10-241-5/+7
|
* elm theme - cc - fine tuneCarsten Haitzler (Rasterman)2021-10-241-2/+2
|
* elm theme - more cc workCarsten Haitzler (Rasterman)2021-10-242-218/+360
|
* elm theme - make default palette empty - it should be.Carsten Haitzler (Rasterman)2021-10-241-6/+0
|
* elm theme - more cc work now with generic colors in colon spaceCarsten Haitzler (Rasterman)2021-10-244-345/+533
|
* eet - optimize eet dictionary buildingCarsten Haitzler (Rasterman)2021-10-234-37/+170
| | | | | | | | | | | | | | | this massively speeds up efreet's icon cache building for huge icon themes... in my nasty test case of some insanely huge icon themes that have like 50,000 - 100,000 files... each - and multiple where the icon cache has to scan all of them and build the cache files... i see a speedup of going from 80 seconds to build down to 15-16 seconds. so over 5 times faster. This builds the dictionary in a temporary eina superfast string hash in ram and then just before writing flattens it out into a regular eet dict format. @opt
* elm theme - final cc work for elm code cc'sCarsten Haitzler (Rasterman)2021-10-182-80/+97
|
* tests: enhance evas_map testShinwoo Kim2021-10-181-1/+67
| | | | | | | | | | Reviewers: raster, Hermet Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12296
* elm theme - prepare to move elm code over to new cc'sCarsten Haitzler (Rasterman)2021-10-171-40/+42
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-172-50/+143
|
* tests: add evas_map testShinwoo Kim2021-10-124-0/+65
| | | | | | | | | | Reviewers: raster, Hermet Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12295
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-111-32/+0
|
* welm theme - remove old cc'sCarsten Haitzler (Rasterman)2021-10-111-448/+0
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-113-21/+27
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-1112-28/+30
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-111-8/+9
|
* elm theme - cleaningCarsten Haitzler (Rasterman)2021-10-112-2/+2
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-111-3/+3
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-111-1/+1
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-111-13/+13
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-111-1/+1
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-112-31/+30
|
* elm theme - more ccCarsten Haitzler (Rasterman)2021-10-113-12/+16
|
* elm theme - more cc workCarsten Haitzler (Rasterman)2021-10-111-39/+40
|
* elm theme - winlist large item - add title label next to iconCarsten Haitzler (Rasterman)2021-10-101-0/+41
|