Subversion Repositories Kolibri OS

Rev

Rev 1624 | Rev 4505 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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