Boris Faure
eb28d29bde
tools: fix pacman to correctly run on bash. Closes T1248
9 years ago
Jerome Pinot
a3c6b217b1
nyanology: some theme files are not being packaged, Makefile.am++
9 years ago
Jean-Philippe Andre
66a517be2f
Compilation: Align EDJ to CC
10 years ago
Boris Faure
97ab760016
nyanology: add tab-related stuff (copy/paste from default)
10 years ago
Boris Faure
2c368e89b5
import the great nyanology theme done by Anisse Astier
...
Known missing: tab counter
10 years ago
Boris Faure
a6aa73e219
this pacman is much better!
10 years ago
Boris Faure
b504db6cba
play a bit with pahole
10 years ago
Boris Faure
2b9c9a8351
add some padding fields to be sure holes are initialized (hi valgrind!)
10 years ago
Boris Faure
6648388c8f
add pacman.sh cause it's cool!
10 years ago
Boris Faure
3635ab98bd
add 256color.pl
10 years ago
Boris Faure
dda26aa4bd
add utf-8 test file
10 years ago
Boris Faure
c3c8310218
Fix bracketed paste mode. Closes T1233. Patch by Egmont
10 years ago
Gustavo Lima Chaves
5680e5a827
Revert "fix alt-backspace"
...
This reverts commit 2d495f0b59
.
With this, the combination won't work even for bash.
10 years ago
wonguk.jeong
f6496d90c2
terminology: remove unncessary code
...
Summary: @fix
Reviewers: raster, billiob
CC: seoz
Differential Revision: https://phab.enlightenment.org/D789
10 years ago
Wonguk Jeong
e717b71589
terminology: restore movie play state when the media block is reactivated.
...
Summary:
first phase to resolve T1075
With D786, the paused video would be in paused state even if the media block is reactivated.
But the problem is....
every backend except "gstreamer1" doesn't show any image on screen when the video is loaded in paused state. (it's working perfectly with gstreamer1)
maybe the root cause is that frame decoding is never happened yet.
This need to be investigated, in the next phase (maybe in emotion or emotion modules?)
@fix
Test Plan: terminology -> tycat -> pause video -> page down enought until the video block is deactivated -> page up -> check whether the video is in paused state or not
Reviewers: raster, billiob
CC: seoz
Maniphest Tasks: T1075
Differential Revision: https://phab.enlightenment.org/D787
10 years ago
Carsten Haitzler
3e9edfb58e
remove some useless code - like cache flushing
10 years ago
Boris Faure
2d495f0b59
fix alt-backspace
10 years ago
Boris Faure
6fd4e8c57a
add an option to decide whether the bell rings
10 years ago
Boris Faure
40c83a0113
remove sounds when pressing keys
...
too many complaints about that feature.
10 years ago
Boris Faure
fd518e1a80
fix typo
10 years ago
Wonguk Jeong
e2c687cf99
terminology: recalculate textgrid size when config is updated
...
Summary:
When configuration (font size, face..) was changed, textgird size was not recalulated properly.
Fixes T945
Test Plan: terminology -> maximize window -> font change (size) -> check whether max col/row are fit on window size
Reviewers: raster, cedric, billiob
Reviewed By: billiob
CC: seoz
Maniphest Tasks: T945
Differential Revision: https://phab.enlightenment.org/D772
10 years ago
Boris Faure
5bf2692eff
should fix F1-4
10 years ago
Iván Briano
2b1521888f
Fix wrong copy/paste/replace
...
Long ago, a very wise wizard said that it's a good idea to match
delimiters to their corresponding endings, so let's do that, mmmkay.
10 years ago
Boris Faure
12f4dcfaf6
make app_server only with efl ≥ 1.10
...
I'm tired of trying to make that code compatible accross efl versions
10 years ago
Boris Faure
df59f16486
fix Ctrl/Shift/CtrlShift + Fn
...
Thanks to Kagetsuki for reporting about it
10 years ago
Boris Faure
86cc375322
fix possible NULL dereference
10 years ago
Boris Faure
3bc68b99bb
fix CID1201428 Explicit null dereferenced
10 years ago
Boris Faure
42599a47b9
fix CID1201427 Explicit null dereferenced
10 years ago
Boris Faure
d5a97a1e13
fix CID1201426 Explicit null dereferenced
10 years ago
Boris Faure
dafb51f66e
fix CID1100650: possible NULL dereference
10 years ago
Boris Faure
5cd68f3beb
finish active-links checkbox
10 years ago
Jason L. Cook
5e70628dae
Added config directive for Active Links, defaulting to true
...
Summary:
Added element ot config struct to support toggling of Active Links
Added boolean to support Active Links config directive
Added configuration directive for Active Links
Return from appropriate functions if Active Links is disabled
Test Plan: Reviewers
Reviewers: billiob, raster
CC: billiob, raster
Differential Revision: https://phab.enlightenment.org/D689
10 years ago
Chris Michael
09d8cc4c7e
terminology: Fix more typos in README
...
Signed-off-by: Chris Michael <cp.michael@samsung.com>
10 years ago
Chris Michael
53a74ebca4
terminology: Fix typo in README
...
Signed-off-by: Chris Michael <cp.michael@samsung.com>
10 years ago
Tom Hacohen
9f723c2335
Adjust code to use the slightly different Eo2 API.
...
With Eo2 you can return values directly without the need to use
a pointer
(use the C return).
For example:
eo_do(obj, elm_object_text_get(&text));
becomes:
eo_do(obj, text = elm_object_text_get());
@feature
10 years ago
Boris Faure
02856cbdec
terminology supports fraktur!!
10 years ago
Tom Hacohen
6c7f608eff
Adjust to Eo2.
10 years ago
Boris Faure
3d137aa3e9
fix wrong assignement
10 years ago
Boris Faure
9346db3ba7
initialize some variables
10 years ago
Boris Faure
00fbb359ee
fix possible NULL issues
10 years ago
Boris Faure
0313446e79
let's try to recover from malloc failure: ahah
10 years ago
Boris Faure
ebfce9e480
please clang-analyzer with false unintialized arguments
10 years ago
Boris Faure
8d18d16b40
we can't be sure of the signedness of Eina_Unicode
10 years ago
Boris Faure
8f3258f1b3
use a bit more Eina_Unicode
10 years ago
Sebastian Dransfeld
12617004ee
fix overflow issue
...
(1 << (1 + 6 + 6 + 6 + 6 + 6)) is signed -2147483648 and unsigned
2147483648. We want to check against the unsigned value, and since g is
signed we need to cast.
CID 1100656, 1100660
10 years ago
Sebastian Dransfeld
cd189663bd
remove dead code
...
We make sure that arg >= 0 before this line, so check is redundant.
CID 1100658
10 years ago
Sebastian Dransfeld
2263fd872e
return after failed memory allocation
...
CID 1100649
10 years ago
Sebastian Dransfeld
1c53e10b42
don't write to NULL buffer
...
If we have checked for allocation failure, no need to write to buffer.
CID 1100648
10 years ago
Sebastian Dransfeld
fe45b5c73f
remove weird check
...
After allocation of new_screen, we should check the allocation of this
variable, and return if we cannot allocate.
CID 1100647
10 years ago
Boris Faure
839ac5b8d5
get rid of dumb youtube detection. Closes T1122
...
This almost never works… and just annoys me whenever I want to click on a
youtube link.
10 years ago