| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-11-28 | Don't insert new section for Dev release if one already exists | Damien Regad | 1 | -0/+9 | |
| 2015-11-28 | Fix bug when running sed when current dir is not repo root | Damien Regad | 1 | -0/+1 | |
| 2015-11-28 | Allow '-' between version and date when replacing | Damien Regad | 1 | -1/+1 | |
| If present, the '-' is kept in the output. | |||||
| 2015-11-28 | Update file filter | Damien Regad | 1 | -6/+8 | |
| Use list comprehension instead of filter(), and rely on a regex instead of endswith(). - include both '.htm' and '.html' extensions - remove '.txt' extension (no such files have version information) | |||||
| 2015-11-28 | Upload script: remove useless trailing spaces | Damien Regad | 1 | -1/+1 | |
| 2015-11-28 | Upload script: fix bug with -d / -f options | Damien Regad | 1 | -13/+13 | |
| The behavior was reverted, i.e. -d would disable documentation upload (instead of files), and vice-versa. Move check for version number check for files updload within the if block to avoid an error when uploading the documentation when the release tarballs are not present (e.g. from the repository's root). | |||||
| 2015-11-28 | Upload script: remove unused variables | Damien Regad | 1 | -5/+0 | |
| 2015-11-28 | Add debug mode option | Damien Regad | 1 | -30/+63 | |
| Allows the build to proceed even if the local branch is not in sync with the upstream repository. | |||||
| 2015-11-28 | updateversion.py: new tag_delete() function | Damien Regad | 1 | -0/+9 | |
| 2015-11-28 | Add comment describing what the script does | Damien Regad | 1 | -0/+5 | |
| 2015-11-28 | Change dir to repo root when working with existing repo | Damien Regad | 1 | -0/+1 | |
| Ensures proper operation when running the script from a subdirectory. | |||||
| 2015-11-28 | update_changelog(): process new markdown file | Damien Regad | 1 | -9/+30 | |
| - Amend code to shift from html changelog. - Add processing for hotfix releases | |||||
| 2015-11-28 | Add option to specify release branch | Damien Regad | 1 | -3/+8 | |
| 2015-11-28 | Remove unused option from list | Damien Regad | 1 | -1/+1 | |
| 2015-11-28 | Change origin from SF.net to Github | Damien Regad | 1 | -1/+1 | |
| 2015-11-28 | Adjust Update Version script | Damien Regad | 1 | -15/+5 | |
| This follows the changes in the version string in file headers, from a single line to 3 with @version and @copyright phpDocumentor tags: - Change version regex to allow Semantic Version number - Adjust release date regex to only allow dates with dashes (avoids incorrect matches of version) - it is no longer necessary to update copyright year | |||||
| 2015-11-27 | Remove sed script | Damien Regad | 1 | -2/+0 | |
| 2015-11-25 | sed script to update version/copyright in header | Damien Regad | 1 | -0/+2 | |
| 2014-04-30 | buildrelease.py: don't copy the main README file | Damien Regad | 1 | -3/+1 | |
| In past releases, John created a simple README file containing the change log for the version and uploaded that to Sourceforge. | |||||
| 2014-04-30 | buildrelease.py: script output fixes | Damien Regad | 1 | -2/+2 | |
| - print release path and not temp dir at end of process - files, not tarballs since we also copy docs and readme file now | |||||
| 2014-04-30 | buildrelease.py: fix origin repository path | Damien Regad | 1 | -1/+1 | |
| There was extra text at the end causing git clone to fail. | |||||
| 2014-04-30 | buildrelease.py: use git root instead of cwd if no fresh repo | Damien Regad | 1 | -1/+1 | |
| This way the script works even if called from a subdirectory of the repository. | |||||
| 2014-04-30 | uploadrelease.py: add documentation upload | Damien Regad | 2 | -17/+60 | |
| In addition to uploading release files to frs.sourceforge.net, the script also uploads documentation to web.sourceforge.net. One or the other can be skipped using the -f / -d flags respectively. | |||||
| 2014-04-30 | New uploadrelease.py script | Damien Regad | 1 | -0/+99 | |
| The script copies release files as prepared by buildrelease.py and upload them to Sourceforge | |||||
| 2014-04-30 | buildrelease.py: copy README file to release dir | Damien Regad | 1 | -0/+3 | |
| 2014-04-30 | buildrelease.py: use .tar.gz instead of .tgz extension | Damien Regad | 1 | -1/+3 | |
| 2014-04-15 | Fix version match regex to include suffix | Damien Regad | 1 | -1/+1 | |
| The old regex in ADOConnection::Version only included the numeric part of the ADOdb version number. Now the suffix (dev|[1-z]) is also returned. The regex in updateversion.py has been updated to match. | |||||
| 2014-04-07 | Update version script now processes Change Log | Damien Regad | 1 | -0/+39 | |
| Will update the release date in the change log for a stable release version, or insert a new change log entry for dev releases. | |||||
| 2014-01-21 | Build scripts: move tag creation code to updateversion.py | Damien Regad | 2 | -42/+69 | |
| 2014-01-21 | updateversion.py: don't print note if nothing was committed | Damien Regad | 1 | -2/+3 | |
| 2014-01-21 | Added error messages when no arguments provided | Damien Regad | 2 | -0/+2 | |
| 2014-01-21 | Revise buildrelease.py to use updateversion.py as module | Damien Regad | 1 | -64/+16 | |
| 2014-01-21 | Move version update code to function | Damien Regad | 1 | -28/+35 | |
| 2014-01-21 | Define sed script in a function | Damien Regad | 1 | -28/+39 | |
| 2014-01-21 | Private vars | Damien Regad | 1 | -5/+5 | |
| 2014-01-21 | Move setting of release date to a function | Damien Regad | 1 | -11/+15 | |
| 2014-01-21 | Move version check to a function | Damien Regad | 1 | -7/+13 | |
| 2014-01-21 | Added option to auto commit | Damien Regad | 1 | -3/+32 | |
| The commit message will be "Bump version to X.YY" | |||||
| 2014-01-21 | New script to automate setting of new version in source code and doc | Damien Regad | 1 | -0/+117 | |
| 2013-08-09 | Release script: reference sourceforge git repo | Damien Regad | 1 | -1/+1 | |
| 2013-08-09 | Release script: don't delete fresh repo | Damien Regad | 1 | -0/+3 | |
| If a commit was created, user should review changes, hence the fresh repo working dir should not be deleted at end of script. | |||||
| 2013-08-09 | Release script: improved output | Damien Regad | 1 | -1/+13 | |
| - Describe what to do when a bump commit is generated - Remind user that kept working dirs should be manually deleted | |||||
| 2013-08-09 | Release script: try to delete work dir if exists | Damien Regad | 1 | -5/+22 | |
| 2013-08-09 | Release script: cleanup working dirs by default | Damien Regad | 1 | -9/+18 | |
| 2013-08-09 | Release script: update sed command to retain (c) sign | Damien Regad | 1 | -1/+1 | |
| 2013-08-09 | Release script: create signed tag | Damien Regad | 1 | -1/+1 | |
| 2013-08-09 | Release script: create version bump commit | Damien Regad | 1 | -1/+9 | |
| 2013-08-09 | Release script: update comments | Damien Regad | 1 | -3/+6 | |
| 2013-08-09 | Release script: PEP8 guidelines (whitespace) | Damien Regad | 1 | -11/+10 | |
| 2013-08-06 | New release tarballs build script | Damien Regad | 2 | -0/+244 | |
| Python script, loosely based on original code written by John Reese for the MantisBT builds. | |||||
