| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2016-12-18 | upload: handle username as an option | Damien Regad | 1 | -10/+11 | |
| Allows defaulting to the current os user name | |||||
| 2016-12-18 | upload: Target dir based on ADOdb major version | Damien Regad | 1 | -1/+8 | |
| - for 5.x, adodb-php5-only/ - for 6.x and later, adodbX/ (where X is the major version number) | |||||
| 2016-12-18 | upload: Recognize SemVer suffixes | Damien Regad | 1 | -6/+11 | |
| Allows alpha, beta and rc suffixes, as well as version number | |||||
| 2016-12-17 | upload: Create target dir if it doesn't exist | Damien Regad | 1 | -0/+12 | |
| 2016-12-17 | upload: document global variables | Damien Regad | 1 | -0/+3 | |
| Describe how to set sf_files for debugging | |||||
| 2016-12-17 | build: fix '--branch' param definition | Damien Regad | 1 | -1/+1 | |
| The trailing '=' was missing, so the branch name could not be specified when using the long parameter (was working OK with '-b'. | |||||
| 2016-08-31 | Merge branch 'hotfix/5.20.6' | Damien Regad | 1 | -0/+1 | |
| 2016-08-29 | Exclude 'tests' directory from release tarballs | Damien Regad | 1 | -0/+1 | |
| It is only used for development purposes and is not necessary for normal ADOdb operations. Issue #274 | |||||
| 2016-02-26 | Release scripts: docs are no longer part of the repo | Damien Regad | 2 | -41/+4 | |
| - don't copy the files to release_path when building the release - remove options to exclude files or docs when uploading the release, since the file can only upload files now | |||||
| 2016-02-13 | CLI Program to turn website into static document set | Mark Newnham | 1 | -0/+221 | |
| A simple CLI PHP script to massage the output of dokuwiki plugin SiteExport into a set of HTML pages that form the basis of the new documentation set | |||||
| 2015-12-27 | Move command-line processing to dedicated function | Damien Regad | 1 | -34/+41 | |
| 2015-12-27 | Move upload code to dedicated functions | Damien Regad | 1 | -25/+35 | |
| 2015-12-27 | New sourceforge_target_dir() function | Damien Regad | 1 | -3/+21 | |
| Builds the final part of the SourceForge target directory based on the version of the files being uploaded. Base directory is as defined in sf_files global variable, plus - if version >= 5.21: adodb-X.Y - for older versions: adodb-XYZ-for-php5 | |||||
| 2015-12-27 | Catch exception when version number is not valid | Damien Regad | 1 | -1/+9 | |
| 2015-12-27 | Improve script output | Damien Regad | 1 | -7/+4 | |
| 2015-12-27 | Use regex to retrieve version number from file name | Damien Regad | 1 | -1/+2 | |
| 2015-12-27 | New function to retrieve version from zip file name | Damien Regad | 1 | -7/+15 | |
| 2015-12-27 | Added dry-run mode | Damien Regad | 1 | -3/+21 | |
| Prints rsync command but does not execute it Moved command-line options variables to global scope | |||||
| 2015-12-27 | New call_rsync() function to avoid code duplication | Damien Regad | 1 | -16/+21 | |
| 2015-12-27 | Stricter check for release zip file name | Damien Regad | 1 | -1/+1 | |
| 2015-12-27 | Change zip/tarballs naming convention | Damien Regad | 1 | -8/+9 | |
| Before: adodbXYY.tar.gz After: adodb-X.Y.Z.tar.gz Note: the tarball's internal directory's name is kept as 'adodb5'. | |||||
| 2015-12-27 | Ignore untracked files when checking local repo | Damien Regad | 1 | -2/+2 | |
| 2015-12-27 | Set default branch based on given version number | Damien Regad | 1 | -1/+6 | |
| - '.0' releases use 'master' - patch releases use 'hotfix/x.y.z' | |||||
| 2015-12-27 | Don't print message when checking previous version | Damien Regad | 1 | -3/+4 | |
| 2015-12-27 | Update version: fix replacement error when run twice | Damien Regad | 1 | -1/+1 | |
| When the script is executed twice for the same version, the second run inserted the patch number a second time, e.g. vX.Y.Z dd-mmm-yyyy became v.X.Y.Z .Z dd-mm-yyyy | |||||
| 2015-12-27 | Perform prior version existence check earlier | Damien Regad | 1 | -5/+6 | |
| 2015-12-27 | Insert dev releases in proper sequence | Damien Regad | 1 | -9/+7 | |
| 2015-12-27 | Treat non-existent, non-patch release as dev | Damien Regad | 1 | -2/+6 | |
| Add '-dev' suffix to version number if the release does not exist in changelog and it's not a patch release (i.e. doesn't end with '.0'). This allows setting the date as ??-???-YYYY. | |||||
| 2015-12-27 | Save version existence check result in variable | Damien Regad | 1 | -2/+5 | |
| 2015-12-27 | New version_is_patch() function | Damien Regad | 1 | -7/+13 | |
| 2015-12-27 | Fix update_changelog() function | Damien Regad | 1 | -31/+83 | |
| Now properly handles insertion of new versions in the changelog following the proper sequence, improved error handling (e.g. skipped version numbers) | |||||
| 2015-12-27 | Rename release_date() to get_release_date() | Damien Regad | 1 | -6/+6 | |
| 2015-12-27 | Add new version_parse() function | Damien Regad | 1 | -7/+14 | |
| Breaks down the given version into groups | |||||
| 2015-12-27 | version_check() function now normalizes the version | Damien Regad | 1 | -3/+19 | |
| The returned version should now be SemVer-compliant - add '.0' if missing patch bit - add '-' before dev release suffix if needed | |||||
| 2015-12-27 | New version_is_dev() function | Damien Regad | 1 | -2/+8 | |
| 2015-12-27 | Adjust version matching regex | Damien Regad | 1 | -1/+2 | |
| - remove support for [a-z] patch releases - allow optional '-' before 'dev' releases | |||||
| 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 | |
