Subversion Repositories Kolibri OS

Rev

Rev 617 | Rev 826 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

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