1.) Integrating SubVersion
- We are using TortoiseSVN for Windows. This needs to be installed first.
- Create a repository with your Oberon MOD files.
- Create a local WorkDir from this repository
Code: Select all
[Command0]
MenuItem=&Open Containing Folder ...
Path=C:\Windows\explorer.exe
Parameters=%FileDir%
WorkingFolder=%FileDir%
ConsoleApp=FALSE
Prompt=FALSE
[Command1]
MenuItem=Open E&xamples Folder ...
Path=C:\Windows\explorer.exe
Parameters=%AstrobeM3%\Examples
WorkingFolder=%AstrobeM3%\Examples
ConsoleApp=FALSE
Prompt=FALSE
[Command2]
MenuItem=&View Map File
Path=c:\Windows\System32\cmd.exe
Parameters=/c type %FileDir%\%FileRoot%.map
WorkingFolder=%FileDir%
ConsoleApp=TRUE
Prompt=FALSE
[Command3]
MenuItem=SVN &Status
Path=C:\Program Files\TortoiseSVN\bin\svn.exe
Parameters=status -v %FileDir%
WorkingFolder=%FileDir%
ConsoleApp=TRUE
Prompt=FALSE
[Command4]
MenuItem=SVN &Commit
Path=C:\Program Files\TortoiseSVN\bin\svn.exe
Parameters=commit -m "Committed all Changes" %FileDir%
WorkingFolder=%FileDir%
ConsoleApp=TRUE
Prompt=FALSE
[Command5]
Command 4 commits the changed local files to repository. (->A similar command can be used to update the local files from the repository, but the files are then not reloaded in the IDE. This might lead to conflicts, so Updates should be done before starting the IDE)