Skip to content

Commit 3ee4904

Browse files
author
Kamil Shakirov
committed
Initial import of QEmacs 0.3.3.
0 parents  commit 3ee4904

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+43758
-0
lines changed

COPYING

+504
Large diffs are not rendered by default.

Changelog

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
version 0.3.3:
2+
3+
- fixed HTML mode in 64 bit mode
4+
- added C-x s save-buffer mapping
5+
6+
version 0.3.2:
7+
8+
- make the code compile again with recent gcc
9+
10+
version 0.3.1:
11+
12+
- SPACE in minibuffer does completion only if a completion method is
13+
defined.
14+
- better C-x k support (initial patch by Manuel Novoa III)
15+
- added set-tab-width, set-indent-width and set-indent-tabs-mode
16+
- probe mode for new file (patch by Manuel Novoa III)
17+
- force blocking mode for tty (patch by Manuel Novoa III)
18+
- improved image mode (full alpha channel support, full conversion,
19+
use improved FFmpeg image conversion routines).
20+
- video mode can change audio and video chanels.
21+
22+
version 0.3:
23+
24+
- added Latex mode (Martin Hedenfalk)
25+
- added '/' in directory completion (Martin Hedenfalk)
26+
- fixed offset when loading buffer (Martin Hedenfalk)
27+
- error when loading DLL (Martin Hedenfalk)
28+
- added toggle full screen command (bound to C-x f or f if suitable)
29+
(useful for image/video modes)
30+
- added toggle-mode-line.
31+
- various image/video mode fixes.
32+
- began separating the libqhtml library from the qemacs core
33+
34+
version 0.3pre13:
35+
36+
- added FFmpeg based image and audio/video modes.
37+
- added C-o, M-d, M-backspace, C-g for minibuffer exit and space for
38+
completion in minibuffer (thanks to Leigh L. Klotz).
39+
- 'Busy' state is indicated with a 'B' in status (-B:--).
40+
- when installing, 'qemacs' is standard name, and 'qe' is a link.
41+
- added custom configure script.
42+
- added emacs-like quit confirmation (ask to save each file).
43+
- added S-TAB key.
44+
- fixed shell bug if multiple window (tab_size must be set to 8).
45+
- added [down|up]case-[word|region] commands.
46+
- added HebrewIsraeli keymap
47+
48+
version 0.3pre12:
49+
50+
- added C-x C-x.
51+
- XML/HTML/CSS2: many bug fixes, improved inline formatting quality.
52+
- improved DocBook support.
53+
- (re)activated full bidi handling in HTML/CSS2 mode. Added support
54+
for RLO/LRO/RLE/LRO/PDF and associated CSS properties. Added
55+
'bidi-mode' CSS property for bidi algorithm testing.
56+
- added documentation in qe-doc.html.
57+
- added 'set-system-font' configuration command (see config.eg) and
58+
added font fallback support if unknown chars in current font.
59+
- new charset system. Added fully supported 'C-x RET f' to select
60+
buffer charset (without modifying the actual buffer content) and
61+
'convert-buffer-file-coding-system' to convert the charset of a
62+
buffer to another charset (modify the buffer content).
63+
- added many common charsets including ISO-8859-x, shift JIS and
64+
EUC-JP.
65+
- added double buffer for x11 display.
66+
- (re)activated FBF font renderer for standalone versions.
67+
- added test tool html2png.
68+
69+
version 0.3pre11:
70+
71+
- center display on cursor for isearch & replace. Repost key for
72+
isearch (emacs behaviour).
73+
- added XML mode (colorizing of TAGs, javascript and style sheets).
74+
- far better XML/HTML/CSS2 support, including parametric 'content:' property.
75+
- added WYSIWYG DocBook mode (first use of generic CSS2 qemacs
76+
renderer outside HTML mode).
77+
78+
version 0.3pre10:
79+
80+
- swapped C-v & M-v (Mark Burton)
81+
- added wheel mouse support (Laurent Charriere)
82+
- added paragraph functions (M-q, M-{, M-}).
83+
- added find-alternate-file (C-x C-v)
84+
- added default path in all file commands.
85+
- selection only changes bg & fg color.
86+
- first HTML selection display code.
87+
- fixed left key handling in column zero.
88+
89+
version 0.3pre9:
90+
91+
- css: faster properties handling, added 'content' property and pseudo
92+
selectors, better identifier handling.
93+
- html: added error buffer '*xml-error*'.
94+
95+
version 0.3pre8:
96+
97+
- added help (Ctrl-h ...)
98+
- better isearch support (case/word, last search)
99+
- added bufed mode (C-x C-b)
100+
- simplified lists handling & added mouse support
101+
- improved completion (can use mouse & up/down to select entry)
102+
- windows version compiles (still no display)
103+
- added dynamic modules support (optionnal, since it adds many symbols)
104+
105+
version 0.3pre7:
106+
107+
- enabled multiple simultaneous shell (use M-x shell several times)
108+
- added X11 mouse handling
109+
- added X11 selection handling
110+
- added buffer flags (readonly, system, savelog)
111+
- added prototype dired mode (C-x C-d)
112+
113+
version 0.3pre6:
114+
115+
- small fixes in shell mode.
116+
- compile fixes in x11.c
117+
- reactivated HTML/CSS renderer.
118+
- add TinyC compile script (see qe.tcc)
119+
120+
version 0.2 - first public release
121+
122+
version 0.1 - initial alpha release

Changelog~

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
version 0.3.3:
2+
3+
- fixed HTML mode in 64 bit mode
4+
- added C-x s save-buffer mapping
5+
6+
version 0.3.2:
7+
8+
- make the code compile again with recent gcc
9+
10+
version 0.3.1:
11+
12+
- SPACE in minibuffer does completion only if a completion method is
13+
defined.
14+
- better C-x k support (initial patch by Manuel Novoa III)
15+
- added set-tab-width, set-indent-width and set-indent-tabs-mode
16+
- probe mode for new file (patch by Manuel Novoa III)
17+
- force blocking mode for tty (patch by Manuel Novoa III)
18+
- improved image mode (full alpha channel support, full conversion,
19+
use improved FFmpeg image conversion routines).
20+
- video mode can change audio and video chanels.
21+
22+
version 0.3:
23+
24+
- added Latex mode (Martin Hedenfalk)
25+
- added '/' in directory completion (Martin Hedenfalk)
26+
- fixed offset when loading buffer (Martin Hedenfalk)
27+
- error when loading DLL (Martin Hedenfalk)
28+
- added toggle full screen command (bound to C-x f or f if suitable)
29+
(useful for image/video modes)
30+
- added toggle-mode-line.
31+
- various image/video mode fixes.
32+
- began separating the libqhtml library from the qemacs core
33+
34+
version 0.3pre13:
35+
36+
- added FFmpeg based image and audio/video modes.
37+
- added C-o, M-d, M-backspace, C-g for minibuffer exit and space for
38+
completion in minibuffer (thanks to Leigh L. Klotz).
39+
- 'Busy' state is indicated with a 'B' in status (-B:--).
40+
- when installing, 'qemacs' is standard name, and 'qe' is a link.
41+
- added custom configure script.
42+
- added emacs-like quit confirmation (ask to save each file).
43+
- added S-TAB key.
44+
- fixed shell bug if multiple window (tab_size must be set to 8).
45+
- added [down|up]case-[word|region] commands.
46+
- added HebrewIsraeli keymap
47+
48+
version 0.3pre12:
49+
50+
- added C-x C-x.
51+
- XML/HTML/CSS2: many bug fixes, improved inline formatting quality.
52+
- improved DocBook support.
53+
- (re)activated full bidi handling in HTML/CSS2 mode. Added support
54+
for RLO/LRO/RLE/LRO/PDF and associated CSS properties. Added
55+
'bidi-mode' CSS property for bidi algorithm testing.
56+
- added documentation in qe-doc.html.
57+
- added 'set-system-font' configuration command (see config.eg) and
58+
added font fallback support if unknown chars in current font.
59+
- new charset system. Added fully supported 'C-x RET f' to select
60+
buffer charset (without modifying the actual buffer content) and
61+
'convert-buffer-file-coding-system' to convert the charset of a
62+
buffer to another charset (modify the buffer content).
63+
- added many common charsets including ISO-8859-x, shift JIS and
64+
EUC-JP.
65+
- added double buffer for x11 display.
66+
- (re)activated FBF font renderer for standalone versions.
67+
- added test tool html2png.
68+
69+
version 0.3pre11:
70+
71+
- center display on cursor for isearch & replace. Repost key for
72+
isearch (emacs behaviour).
73+
- added XML mode (colorizing of TAGs, javascript and style sheets).
74+
- far better XML/HTML/CSS2 support, including parametric 'content:' property.
75+
- added WYSIWYG DocBook mode (first use of generic CSS2 qemacs
76+
renderer outside HTML mode).
77+
78+
version 0.3pre10:
79+
80+
- swapped C-v & M-v (Mark Burton)
81+
- added wheel mouse support (Laurent Charriere)
82+
- added paragraph functions (M-q, M-{, M-}).
83+
- added find-alternate-file (C-x C-v)
84+
- added default path in all file commands.
85+
- selection only changes bg & fg color.
86+
- first HTML selection display code.
87+
- fixed left key handling in column zero.
88+
89+
version 0.3pre9:
90+
91+
- css: faster properties handling, added 'content' property and pseudo
92+
selectors, better identifier handling.
93+
- html: added error buffer '*xml-error*'.
94+
95+
version 0.3pre8:
96+
97+
- added help (Ctrl-h ...)
98+
- better isearch support (case/word, last search)
99+
- added bufed mode (C-x C-b)
100+
- simplified lists handling & added mouse support
101+
- improved completion (can use mouse & up/down to select entry)
102+
- windows version compiles (still no display)
103+
- added dynamic modules support (optionnal, since it adds many symbols)
104+
105+
version 0.3pre7:
106+
107+
- enabled multiple simultaneous shell (use M-x shell several times)
108+
- added X11 mouse handling
109+
- added X11 selection handling
110+
- added buffer flags (readonly, system, savelog)
111+
- added prototype dired mode (C-x C-d)
112+
113+
version 0.3pre6:
114+
115+
- small fixes in shell mode.
116+
- compile fixes in x11.c
117+
- reactivated HTML/CSS renderer.
118+
- add TinyC compile script (see qe.tcc)
119+
120+
version 0.2 - first public release
121+
122+
version 0.1 - initial alpha release

0 commit comments

Comments
 (0)