Rev 757 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
NEWS-- Release Version 1.01 - this revision is supplied with R 2.0.1 --Last update: 2004-11-16 [SU]* fixed handling of line endings: PC endings (\r\n) are now supportedas R console input (also fixes some problems with AppleScript)* added transport buffer for ReadConsole to be logically correct.this also remedies the compilation warning in RController* fixed a bug in isAdmin() - uninitialized variableLast update: 2004-11-14 [SU]* added isAdmin() in Tools/Authorization to query the admin statusof the current user (more precisely membership in the "admin" group)* changed default package installation target - for admin users thedefault is now system-wide installation* clean-up of the MiscPrefPane, removed redundant code from RController* added support for R_LIBS option: in MiscPrefs there is a flag thatcan be set resulting in ~/R/Library to be added to R_LIBS. Thisobsoletes hack in Rprofile which modified .libPaths without respectingor updating R_LIBS which in turn broke some R CMD ... scripts.Note that this setting has no effect if the hack is still in place(most notably in the R 2.0.0 release)* added R_GUI_VERSION_STR define* R_GUI_APP_VERSION environment variable is set by R.app such that Rcode can check the existence and version of the R.appLast update: 2004-11-06 [SI]* added Rob Goedman (for external editor support) code.* added standard copyright notes everywhere. Please check andadd specific credits to users contributed code if any.Last update: 2004-11-05 [SU]* fixed a small leak and early deallocation of the keywordList (this fixescrash observed when editing a file dropped on R while R is initialized).retain all colors, too, to make sure they don't get deallocated* added SortedDataSource which provides a persistent table as data source.it is used by DataManager now and should by used by all managers later.the sorting part is not implemented yet, though.Last update: 2004-10-30 [SU]* moved callbacks for data manager, package manager, package installerand system command out to a separate handler. This means rather majorchanges in the code and the way data is stored in those managers (removedall global variables for the above managers). There are now two handlers inREngine - one mandatory (REPL) and one optional (Cocoa).* separated authorization code - it lives now in Authorization.c in Tools* minor cleanups - the method names are now more consistent across classesLast update: 2004-10-25 [SU]* added brace highlighting (partially based on code by Rob Goedman)* reversed declaration order of RQuartz copy operation: PDF first,TIFF second. This may help some PDF editors ... We may want to make thisconfigurable and/or have two separate copy commands.Last update: 2004-10-22 [SI]* added first embrional version of R preferences using AMPreferencePane classby Andreas Mayer. At the moment only color preferences are implemented.Quartz and misc preferences pane are there but not yet working.The preferences are still saved/loaded using NSDefaultsYou may need to "svn update" from the shell better than from inside of XCodeLast update: 2004-10-22 [SU]* newly typed text outside insertion scope is appended at the end (thanks toByron for the idea)* converted InfoPlist.string to UTF-8 so it's easier to maintain and edit* added SVN build information to Info.plists and strings* removed BUILD_FOR_R_2_1_x flag and replaced by canonical version checkLast update: 2004-10-22 [SI]* fixed metric info problem with Quartz device. Apparently a leading pad wasadded to the textcontainer used to acquire the metric info. Thanks to ByronEllys for this fix.* saveWorkSpaceFile fixed. It was impossible to create a new file.* introduced sourceOrLoadFile: in alternative to sourceFile. This is now connected toSource/Load button in the R Console Window toolbar.* added readFromFile method in RDocument to allow data loading with binary files. It allowsalso for drag and drop of image data on the R Icon* removed button from workspace browser window, added corresponding toolbar icon/buttonLast update: 2004-10-21 [SI]* in data editor: the runModalForSession has been replaced by a modalForWindowto remove the problem with high CPU consuming (thanks to Byron Ellys for the fix)* column numbers instead of column names are used to identify columns (thanks toByron Ellys for the fix)Last update: 2004-10-18 [SU]* fixed working directory selection* added sourceCurrentDocument: implementation; if the document is dirty,a temporary file is created, sourced and finally deleted-- Release Version 1.00 - this revision is supplied with R 2.0.0 --Last update: 2004-10-15 [SU]* code cleanups to get rid of most warnings* fixed linking issues caused by run_Rmainloop conflicting with R* fixed resizing behavior of the help window* disable continuous spell checking by defaultLast update: 2004-10-14 [SU]* fixed output synchronization. all console output sources eventuallyuse writeConsoleDirectly: and the insertion point is controlled byoutputPosition.* add more flexible flush support (flushROutput and FlushStdConsole)* fixed document handling to be consistent with Cocoa; this meansthat menu items are handled implicitly by the first responder(where possible) and most default actions apply to the editor.Old versions of R GUI didn't have this, but mainly because therewas no good editor supplied.* removed all global flags (IsRTF, IsREdit, ...)* toolbar icons changed (new icons added, some re-worked)* added menu+shortcut for "switch to console"* moved some menu items to logically more suitable places(e.g. "New document" is in "File" ...)* changed drop-document handling; the document is loaded in the editor(it can be easily executed by <Cmd><Enter> if necessary)* fixed activation of Quartz to use FR dispatching (this way it's notenabled in the console or editor where it doesn't make any sense)Last update: 2004-10-13 [SI]* added support for activation of quartz deviceand creation of new quartz deivce from the GUIThis functionality was present in the old Aqua GUI.Last update: 2004-10-11 [SI]* first svn releaseLast update: 2004-10-10 [SU]* fixed ?/help handling removed in the last update* fixed improper memory handling of external input* added queue to the console input to allow multiple simultaneousinputs while R is still working* fixed color handling - input text has now the correct color* added some constraints that prevent user from accidentallyleaving the prompt area* fixed focus issues with the help window* don't unnecessarily repeat console input before commit* doProcessEvents: processes exactly one event in the blocking mode* added first release of R FAQ. To build it use [SI]makeinfo -D UseExternalXrefs --html --force --no-split RMacOSX-FAQ.texi* added "Docs" target to automatically build above FAQ* added sush dependency to R target - now it is possible to buildthe entire project from scratch by simply typing "xcodebuild"on the command line. Although it's the default, more precisespecification of the target and build style can be used such as:xcodebuild -target R -buildstyle DeploymentLast update: 2004-10-09 [SU]* fixes in REngine (mem mgmt, 0 ptr fix); added executeString method* fixed package loading (use executeString and check the result)* huge cleanup of the R/Obj-C interface (stage 1). the interface isseparated from RController by REPLHandler protocol. the R-sideimplementation is in Rcallbacks and RController implements theREPL protocol* changed output/console/prompt handling. this also makes sure thata prompt is always printed at the beginning of the line, no matterwhether the previous output line is unfinished* raise the line buffer size from 1k to 32k, also it's not hard-coded now,but can be changed on the fly.* replace all evaluateString: with executeString: if the return value isnot needed (ignoring the return value of eval.. causes memory leaks)* after history paste make textView the first respondentLast update: 2004-10-08 [SI]* added toolbar colors icon and functionality. User can set font colors forthe R Console window. Settings are saved automatically on exit. Just forfun: added also transparency of the R Console window.* console font size saved in the preferences* the color of the cursors is set to be the same as the prompt oneLast update: 2004-10-04 [SI]* fixed problem with applescript. Now uses scriptSuite and scriptTerminology* in sendIpunt: a fake keydown event is now generate to wake the event loopthis is needed for both applescript and menu interaction* help(topic) and ?topic are now handled internally and the help page isshown in the internal browser.This is only a temporary solution. The correct approach is to create anew API to be called on each .show_help_on_topic_as_HTML call. Too latefor release 2.0.0 of R.* Every call to Rengine evaluateString and parse causes R to be set in busystate this allows for feedback to the user at any REngine use.* added support to save quartz device to PDF file. This is currently doneusing devcopy onto the pdf device. Native Cocoa methods like[NSView dataWithPDFInsideRect] don't work at the moment because we don'tuse NSGraphicsContext. Should probably be done for the next release.* added clipboard copying into TIFF, PICT and PDF format* added support for printing of the graphics device, the console and theother editor windows* user input is now splitted in lines terminated by '\n'. This allows forcopy and paste of bug documents. There's no limit to the input bufferapart from free memory. The input is just splitted in lines but if linesare longer than the maximum allowed by R (1024 currently) no actionis taken, lines are just passed to R for at most 1024 bytes.Last update: 2004-09-28 [SU]* added PLAIN_STDERR optional define flag (enabled in development style)* fixed rmRows bug in data editorLast update: 2004-09-26* fixed stderr/stdout problems, now using threads and correctly in synch* R console window gets focus on startup* changed credits* implemented edit and remove functionality ot the workspac browser* FIXME: the data editor still needs to be fixed for row addingREQUIRES r-devel 2004-09-26Last update: 2004-09-10* Implemented edit functionality for data frames and matrix* Implemented the Help system.* Splitviews in Package Manager, Data Manager and Help Search Interface* Implemented help search interface* Implemented the workspace browser* Implemented quartz device in cocoa* Fixed duplicate definition of variable IsReadConsoleTime.* Adjusted to work with XCode 1.5REQUIRES r-devel 2004-09-10Last update: 2004-08-28* Fixed a package.manager: memory leaks and incorrect refreshing* Implemented the data manager* --gui=cocoa sets RGUI_TYPE to "AQUA", so now quartz is the defaultgraphics device* Implemented package installer both for network and local repositoriesand file and to global or local destinations.FIXME: need to implement authorization* fixed font text windows* implemented "run X11 server" and added both menu and toolbar items.* added "Check For R Updates" menu item functionalityREQUIRES: r-devel 2004-08-27Last update: 2004-08-20* Implemented open document both for menus and drag and drop on the R icon* Opening file is either: load data or source a script whenever this is possible.* Implemented the internal editor via NSDocument class. R can open plain text andrtf files.* Implemented file.show/R_ShowFiles.* Implemented file.edit/R_EditFiles. FIXME: the file name is not correctly setat the moment for newly created document.* Implemented AppleScript support.* Implemented in toolbar: font size change, load data/source script, new editor window,save R console, load file in editor* Implemented options(width=???) on font size and/or Console width change.* Implemented: setwd, changewd, showd and timer to show the current working directoryin a textview* Implemented file.choose/R_ChooseFile* Implemented: show, clear, load and save of workspace* Implemented package manager for loading and detaching package with html help indexREQUIRES: r-devel 2004-08-20Last update: 2004-08-14* Implemented console buffering. This make the R console output spedier.This has been implemented in the same way it was for the aqua module(see: src/modules/aqua/aquaconsole.c)* In previous version Code Completion blocked R, now fixed.* Implemented the History and Logs drawers. Stdout/Stderr are redirectedto the Logs drawer (still not asyncronously).* Implemented load, save and clear history. Double clicking on history itemspaste the content of the item in the console at current cursor position* Implemented the tool bar for "stop", "quit", "history", "quartz" and "logs". Iconsare horrible though.* added environment variable in info.plistFirst release: 2004-08-10