Subversion Repositories Kolibri OS

Rev

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

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