Subversion Repositories Kolibri OS

Rev

Rev 5241 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5636 leency 1
 
2
3
 
4
    - various fixes
5
6
 
7
  new features:
8
    - Support for kernel clipboard (f.54)
9
10
 
11
  new feature:
12
    - Run in debugger by F10
13
14
 
15
  new features:
16
    - Select file path with OpenDialog for Load and Save.
17
18
 
19
  bug-fixes:
20
    - new tab is created when opening a file from Tinypad's home folder
21
      (was opening in current tab if there was a new file, even modified)
22
    - show "save file" dialog for new files or files from Tinypad's home folder
23
    - line is redrawn after lining up a single char and then deleting it
24
      (pressing Del twice) [#1]
25
    - update tab/window title and highlighting mode after file save
26
    - allocate 1024 bytes in case file not found (avoid crash)
27
  changes:
28
    - max line length changed back to 4GB, each line overhead is 6 bytes now
29
    - settings are stored in INI file (using libini), allowing binary to be compressed
30
  new features:
31
    - prompt to save modified file before closing (+fixes)
32
    - button to close current tab (+fixes)
33
    - mouse scroll wheel support
34
    - numpad support
35
36
 
37
  bug-fixes:
38
    - statusbar contained hint after dialog operation cancelled
39
    - small drawing fix for gutter and line saved/modified markers
40
      (incorrect calculations)
41
    - incorrect lines marking on Ctrl+V
42
    - put filename of current tab into open/save dialog (noticed by Maxxxx32)
43
  changes:
44
    - editor and other modifications to ease parts placement changing,
45
      including changes in look
46
    - modified/saved colors now match those in MSVS
47
    - function 70 for *all* file operations (including diamond's fixes)
48
    - use memory manager instead of statically allocated region
49
    - case-insensitive filenames input, to be able to open/save files with
50
      non-latin chars in name (russian etc.)
51
    - reduced flickering (changes checker)
52
    - overall code cleanup
53
  new features:
54
    - recode tables between CP866, CP1251 and KOI8-R (suggested by Victor)
55
    - tabbed interface, ability to open several files in one app instance
56
      (thanks IRC guys for ideas and testing)
57
    - make any tab default to compile it disregarding currently active tab
58
    - configuration dialog (colors, tabs positioning)
59
60
 
61
  bug-fixes:
62
    - 1-char selection if pressing  out of real line length
63
    - fault in `writepos`, added call to function 9
64
    - main menu items weren't highlighted if popup opened and cursor
65
      isn't in main menu item's area
66
    - statusbar and textboxes drawing fixes (wrong colors)
67
    - perform no redraw while pressing Shift, Ctrl, Alt keys
68
    - data length from DOCPAK in string representation (fixed by diamond)
69
    - compare file extension case-insensitively (fixed by diamond)
70
  changes:
71
    - function 70 instead of 58 for files loading/saving
72
    - clientarea-relative drawing (less code)
73
    - every line's dword is now splitted into 2 words;
74
      low word - line block length, so max line length is 64KB now
75
      high word - various flags. for now, only 2 of 16 bits are used:
76
	if bit #0 is set, line was modified since file open
77
	if bit #1 is set, line was saved after last modification
78
      high word could also be further used for code collapsing and different
79
	line marking features (breakpoints, errors, bookmarks, etc.)
80
  new features:
81
    - line markers for modified and saved lines
82
    - status messages for various actions
83
84
 
85
  bug-fixes:
86
    - program terminates if started with parameters (fine for DOCPAK)
87
88
 
89
  bug-fixes:
90
    - unable to run program after exiting from main menu (Alt+X)
91
  new features:
92
    - integration with DOCPAK
93
94
 
95
  bug-fixes:
96
    - main menu popups' "on show" was called only for first shown popup
97
    - clear selection on left/right arrow keys
98
  new features:
99
    - "replace" dialog (w/o "skip", "replace all")
100
    - line numbers display
101
    - options (except "appearance" and "smart tabulation")
102
    - options saving (colors, window position, "Options" popup triggers)
103
104
 
105
  bug-fixes:
106
    - unable to start if /rd/1/example.asm is missing (from Halyavin)
107
    - clicking on menu items draws main window in popup (from Rohan)
108
    - passed parameters aren't taken into account (from Mario79)
109
    - background isn't erased if text lines < screen lines after
110
      selection deletion (from Rohan)
111
112
 
113
  menu bar and popup menu;
114
    removed buttons from the top and input fields from the bottom since
115
    now they're accesible through main/popup menu;
116
  improved keyboard handling (using 66th function);
117
    support for almost all FASMW keyboard shourtcuts;
118
  added text selection ability, standard selection operations
119
    (copy,cut,paste);
120
  new integrated dialogs (open, save, find)
121
  fix to collapse SPACEs into TABs only for *.asm and *.inc files
122
123
 
124
  fixed termination while typing in x positions higher than (line_length+10);
125
  improved drawing on small heights
126
    don't draw window while its height = 0 (Kolibri "minimize" support)
127
128
 
129
  now lines may be of ANY length;
130
    optimized memory usage (less memory for internal file representation)
131
      after loading file, it's internal size equals to its real size
132
      plus 14 bytes for each line (4 bytes for line length
133
	and 10 spaced to the end - to reduce data relocations count);
134
    completely rewritten keyboard handling;
135
    added horizontal scrollbar;
136
  all line feed formats are supported: WIN(CRLF),*NIX(LF),MAC(CR);
137
  etc.
138
139
 
140
  changed save_string to collapse SPACEs into TABs;
141
  rewrote drawfile from scratch (speed++)
142
    through some drawing improvements  needed
143
    (some checkups to reduce flickering);
144
  writepos (size--);
145
  fixed drawing window while height < 100px, and for non-asm files;
146
  several small fixes; speed/size optimizations
147
148
 
149
  changed loadfile/loadhdfile to expand TABs into SPACEs;
150
  changed TAB,ENTER,DELETE,BSPACE keys behaviour (rewritten from scratch);
151
  vertical scrollbar;
152
  extra window resizing capabilities (added a couple of constants);
153
  completely new text cursor management & moving text cursor with mouse;
154
  improved search function, moving cursor to beginning of text found;
155
  adjustable max line width (change LINE_WIDTH & recompile) // (obsolet)
156
157
 
158
  fixed converting char to upper case in read_string
159
160
 
161
  rewrote save_file from scratch; bugfix in loadfile;
162
163
 
164
  optimisation
165
166
 
167
  completly new load_file function
168
169
 
170
  speed++
171
172
 
173
  error beep
174
175
 
176
  many bugs fixed
177
  simple toolbar
178
  compile, run applications from TINYPAD, all fasm output is in debug board
179
  TAB button
180
  auto-indent
181
  Ctrl+L - insert comment string
182