mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 01:51:09 +00:00
ChangeLog updates
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@13236 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
28924714c1
commit
92bec02077
11 changed files with 208 additions and 37 deletions
33
NEWS
33
NEWS
|
@ -1,33 +0,0 @@
|
|||
Noteworthy changes in version `0.2.6'
|
||||
=====================================
|
||||
|
||||
* Much more settings ar enow handled by the preferences, ie.
|
||||
|
||||
- periodic saving of all open project files
|
||||
- save on quit
|
||||
- backup files when saving
|
||||
- ask when quit
|
||||
|
||||
* Code cleanup, esp. for writing makefiles and saving project files
|
||||
|
||||
* 'Save' is now implemented
|
||||
|
||||
* Removed unneeded features ( loaded projects window )
|
||||
|
||||
* All icons are now displayed as expected
|
||||
|
||||
* Updated URL in created project files
|
||||
|
||||
Noteworthy changes in version `0.2.5'
|
||||
=====================================
|
||||
|
||||
* Code cleanup
|
||||
|
||||
* Transferred the copyright to the FSF - reflected in the headers of all
|
||||
created files.
|
||||
|
||||
Noteworthy changes before version `0.2.5'
|
||||
=========================================
|
||||
|
||||
|
||||
Please read the ChangeLog files!
|
|
@ -1,3 +1,22 @@
|
|||
2002-03-01 14:30 probert
|
||||
|
||||
* PCAppProject.m: Removed old include statements.
|
||||
|
||||
2002-03-01 14:28 probert
|
||||
|
||||
* GNUmakefile, PCAppMakefileFactory.h, PCAppMakefileFactory.m,
|
||||
PCAppProj.pcproj, PCAppProject.m: The project now uses the makefile
|
||||
factory to create makefiles.
|
||||
|
||||
2002-01-07 16:37 probert
|
||||
|
||||
* PC.proj: Somehow $(GNUSTEP_LOCAL_ROOT) is enough for the install
|
||||
path to be correct.
|
||||
|
||||
2002-01-07 16:05 probert
|
||||
|
||||
* ChangeLog: Updated all ChangeLog files (using cvs2cl.pl)
|
||||
|
||||
2002-01-07 16:01 probert
|
||||
|
||||
* GNUmakefile, PCAppProj.pcproj: Added libProjectCenter to the
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2002-02-17 21:10 probert
|
||||
|
||||
* ChangeLog: Updated the ChangeLog files
|
||||
|
||||
2002-02-16 21:43 probert
|
||||
|
||||
* GNUmakefile, PCBaseFileType.m, PCBaseFileTypes.pcproj,
|
||||
|
|
|
@ -1,3 +1,17 @@
|
|||
2002-03-01 15:22 probert
|
||||
|
||||
* PCBundleProj.m: Fix to avoid warning
|
||||
|
||||
2002-03-01 15:18 probert
|
||||
|
||||
* GNUmakefile, PCBundleMakefileFactory.h,
|
||||
PCBundleMakefileFactory.m, PCBundleProj.pcproj, PCBundleProject.m:
|
||||
The project now uses the shared makefile factory too.
|
||||
|
||||
2002-01-07 16:05 probert
|
||||
|
||||
* ChangeLog: Updated all ChangeLog files (using cvs2cl.pl)
|
||||
|
||||
2002-01-07 16:01 probert
|
||||
|
||||
* GNUmakefile, PCBundleProj.pcproj: Added libProjectCenter to the
|
||||
|
|
|
@ -1,3 +1,13 @@
|
|||
2002-03-01 15:38 probert
|
||||
|
||||
* GNUmakefile, PCGormMakefileFactory.h, PCGormMakefileFactory.m,
|
||||
PCGormProj.pcproj, PCGormProject.m: This project now uses the
|
||||
makefile factory too.
|
||||
|
||||
2002-02-17 21:10 probert
|
||||
|
||||
* ChangeLog: Updated the ChangeLog files
|
||||
|
||||
2002-02-16 22:21 probert
|
||||
|
||||
* baseInterface.gorm: Enhanced the default menu entries by adding
|
||||
|
|
|
@ -1,3 +1,101 @@
|
|||
2002-03-03 14:47 probert
|
||||
|
||||
* PCHistoryController.m, PCProject.m: Fixed mem leak in the history
|
||||
controller.
|
||||
|
||||
2002-03-02 14:58 probert
|
||||
|
||||
* PCEditor.m, PCEditorView.m: Editors should now use the font
|
||||
panel.
|
||||
|
||||
2002-03-02 14:15 probert
|
||||
|
||||
* PCEditor.h, PCEditor.m, PCEditorController.m: Using
|
||||
saveFileIfNeeded instead of saveFile.
|
||||
|
||||
2002-03-02 14:11 probert
|
||||
|
||||
* PCEditorController.h, PCEditorController.m, PCProject.m,
|
||||
PCProjectManager.m: The timed safe mechanism now also saves all
|
||||
project files, if needed.
|
||||
|
||||
2002-03-01 16:19 probert
|
||||
|
||||
* PCMakefileFactory.h, PCMakefileFactory.m: Added support for tool
|
||||
projects.
|
||||
|
||||
2002-03-01 15:58 probert
|
||||
|
||||
* PCMakefileFactory.h, PCMakefileFactory.m: Support for libraries
|
||||
added.
|
||||
|
||||
2002-03-01 15:18 probert
|
||||
|
||||
* PCMakefileFactory.h, PCMakefileFactory.m: Support for bundles
|
||||
|
||||
2002-03-01 11:39 probert
|
||||
|
||||
* GNUmakefile, PCMakefileFactory.h, PCMakefileFactory.m,
|
||||
ProjectCenter.h, ProjectCenter.pcproj: Began to clean up the
|
||||
makefile creation code. Introduced a shared factory for that
|
||||
purpose which implements basic stuff used by all projects.
|
||||
|
||||
2002-02-22 19:48 probert
|
||||
|
||||
* PCEditorController.m: Fixed a bug which caused PC to crash when
|
||||
an external GS editor was used, thx to Richard for pointing me to
|
||||
the right place!
|
||||
|
||||
2002-02-21 22:26 probert
|
||||
|
||||
* PCProjectManager.m: Removed annoying alert panel raised upon
|
||||
saving all projects
|
||||
|
||||
2002-02-21 22:17 probert
|
||||
|
||||
* GNUmakefile, PCBrowserController.m, PCHistoryController.h,
|
||||
PCHistoryController.m, PCProject.h, PCProject.m, ProjectCenter.h,
|
||||
ProjectCenter.pcproj: First attempt of integrating a history
|
||||
browser for better file navigation. There are still bugs though...
|
||||
|
||||
2002-02-21 13:50 probert
|
||||
|
||||
* PCEditorController.m: When a GNUstep app is used as external
|
||||
editor, NSWorkspace is used to open the file using the repsective
|
||||
app.
|
||||
|
||||
2002-02-21 12:29 probert
|
||||
|
||||
* PCProject.m: Removing a file causes the browser to be updated
|
||||
|
||||
2002-02-21 12:25 probert
|
||||
|
||||
* PCBrowserController.m, PCProject.m: If the project changes the
|
||||
browser reloads the correct column.
|
||||
|
||||
2002-02-21 11:45 probert
|
||||
|
||||
* PCProject+ComponentHandling.h, PCProject+ComponentHandling.m,
|
||||
PCProject.h, PCProject.m: All project components are now accessible
|
||||
via menu entry. Furthermore it is also possible to launch the
|
||||
selected target via menu entry.
|
||||
|
||||
2002-02-21 11:15 probert
|
||||
|
||||
* PCEditorController.h, PCEditorController.m, PCProject.m: Single
|
||||
click always invokes the internal editor now.
|
||||
|
||||
2002-02-21 11:05 probert
|
||||
|
||||
* PCBrowserController.h, PCBrowserController.m, PCProject.h,
|
||||
PCProject.m: Cleaned up the code which is called upon seleting a
|
||||
file in the project browser. Now libraries etc. do not show up in
|
||||
the internal editor anymore.
|
||||
|
||||
2002-02-17 21:10 probert
|
||||
|
||||
* ChangeLog: Updated the ChangeLog files
|
||||
|
||||
2002-02-17 21:02 probert
|
||||
|
||||
* PCDefines.h: Added the TabBehaviour define required by the
|
||||
|
|
|
@ -6,7 +6,7 @@ GCC_VERSION=2.8.0
|
|||
|
||||
# The version number of this release.
|
||||
MAJOR_VERSION=0
|
||||
MINOR_VERSION=2
|
||||
SUBMINOR_VERSION=7
|
||||
MINOR_VERSION=3
|
||||
SUBMINOR_VERSION=0
|
||||
PC_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||
VERSION=${PC_VERSION}
|
||||
|
|
|
@ -1,3 +1,17 @@
|
|||
2002-03-03 16:31 probert
|
||||
|
||||
* PCLibProject.m: Forgot to include the Version file - fixed.
|
||||
|
||||
2002-03-01 16:06 probert
|
||||
|
||||
* GNUmakefile, PCLibMakefileFactory.h, PCLibMakefileFactory.m,
|
||||
PCLibProj.pcproj, PCLibProject.m: This project now uses the
|
||||
makefile factory too.
|
||||
|
||||
2002-01-07 16:05 probert
|
||||
|
||||
* ChangeLog: Updated all ChangeLog files (using cvs2cl.pl)
|
||||
|
||||
2002-01-07 16:01 probert
|
||||
|
||||
* GNUmakefile, PCLibProj.pcproj: Added libProjectCenter to the
|
||||
|
|
|
@ -1,3 +1,13 @@
|
|||
2002-03-01 16:32 probert
|
||||
|
||||
* GNUmakefile, PCToolMakefileFactory.h, PCToolMakefileFactory.m,
|
||||
PCToolProj.pcproj, PCToolProject.m: This project now uses the
|
||||
makefile factory too.
|
||||
|
||||
2002-01-07 16:05 probert
|
||||
|
||||
* ChangeLog: Updated all ChangeLog files (using cvs2cl.pl)
|
||||
|
||||
2002-01-07 16:01 probert
|
||||
|
||||
* GNUmakefile, PCToolProj.pcproj: Added libProjectCenter to the
|
||||
|
|
|
@ -1,3 +1,38 @@
|
|||
2002-03-04 11:19 CaS
|
||||
|
||||
* PCMenuController.m: Tidy save panel a bit.
|
||||
|
||||
2002-03-03 14:45 probert
|
||||
|
||||
* ProjectCenter_main.m: Removed conflicting keybindings ( font and
|
||||
find panel )
|
||||
|
||||
2002-03-02 14:58 probert
|
||||
|
||||
* ProjectCenter_main.m: The font menu is back ( needed by the file
|
||||
editors )
|
||||
|
||||
2002-02-21 13:25 probert
|
||||
|
||||
* PCAppController.m: Fixed a bug which prevented the app to load a
|
||||
project when being told via application:openfile:
|
||||
|
||||
2002-02-21 12:41 probert
|
||||
|
||||
* PCMenuController.m: The path for creating new projects is now
|
||||
maintained by a separate defaults entry.
|
||||
|
||||
2002-02-21 11:45 probert
|
||||
|
||||
* PCAppController+MenuHandling.h, PCAppController+MenuHandling.m,
|
||||
PCMenuController.m, ProjectCenter_main.m: All project components
|
||||
are now accessible via menu entry. Furthermore it is also possible
|
||||
to launch the selected target via menu entry.
|
||||
|
||||
2002-02-17 21:10 probert
|
||||
|
||||
* ChangeLog: Updated the ChangeLog files
|
||||
|
||||
2002-02-17 21:03 probert
|
||||
|
||||
* PCPrefController.h, PCPrefController.m: Added a new preference
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
ApplicationName = "ProjectCenter";
|
||||
ApplicationDescription = "GNUstep IDE";
|
||||
ApplicationIcon = "ProjectCenter.tiff";
|
||||
ApplicationRelease = "ProjectCenter 0.2.7";
|
||||
FullVersionID = "0.2.7";
|
||||
ApplicationRelease = "ProjectCenter 0.3.0pre1";
|
||||
FullVersionID = "0.3.0pre1";
|
||||
Authors = ("Philippe C.D. Robert <phr@3dkit.org>");
|
||||
URL = "http://www.projectcenter.ch";
|
||||
Copyright = "Copyright (C) 2001 - 2002 Free Software Foundation";
|
||||
|
|
Loading…
Reference in a new issue