Subversion Repositories Kolibri OS

Rev

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

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