| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2021-08-17 | Redo Merge branch 'hotfix/5.21' Standardized file headers | Damien Regad | 1 | -0/+16 | |
| Try to do it right this time... # Conflicts: # adodb-memcache.lib.inc.php Fixes #751 | |||||
| 2021-08-17 | Revert changes since Standardized file headers merge | Damien Regad | 1 | -16/+0 | |
| The conflicts resolution applied when merging the Standardized file headers (commit e9dcce3df24912ad869d0193f0b419f2309101fc) was seriously messed up, actually overwriting a number of changes in the master branch. Rather than trying to go and fix things one by one which has a high risk of messing things further, it's easier to redo the merge from a clean slate, so this commit reverts the following: - "Merge branch 'hotfix/5.21' Standardized file headers", e9dcce3df24912ad869d0193f0b419f2309101fc - "Merge tag 'v5.21.1'", 5f437df3104159d5d659f60e31bef8d33c34995f - "Reset version to 5.22.0-dev" af9234a525c3255af051a330164486d73be4c63a - "Fix incorrect resolution of merge conflicts" a6733f61b0165b366c8d2c70d9af82edc3881951. - "Fix syntax error in toexport.inc.php" 20b01e83cb61b6b2460f64c7d1277c5f4cc28574. Fixes #751 | |||||
| 2021-08-14 | Standard file header: /scripts | Damien Regad | 1 | -0/+16 | |
| 2021-08-13 | Build scripts: use env in shebang | Damien Regad | 1 | -1/+1 | |
| Allows use of virtual environments. | |||||
| 2020-12-20 | buildrelease.py: remove debugging print statement | Damien Regad | 1 | -1/+0 | |
| 2020-12-18 | buildrelease.py: update file exclusion list | Damien Regad | 1 | -6/+2 | |
| 2020-12-18 | Release Scripts: python3 conversion | Damien Regad | 1 | -53/+54 | |
| - fix print statements - use str.format() instead of % - subprocess calls with text=True - pycodestyle - update docstrings to better conform with PEP 257 - file -> open | |||||
| 2020-12-18 | buildrelease.py: change patch versions default branch | Damien Regad | 1 | -1/+1 | |
| hotfix/X.Y instead of hotfix X.Y.Z | |||||
| 2020-12-17 | Replace 'git root' alias with native command | Damien Regad | 1 | -1/+2 | |
| 2019-11-12 | Codespell assisted typo cleaning | Jean-Michel Vourgère | 1 | -1/+1 | |
| 2018-03-09 | Exclude files and dirs from git archive | Damien Regad | 1 | -0/+2 | |
| 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 | 1 | -8/+0 | |
| - 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 | |||||
| 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-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 | 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 | 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 | |
| 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 | 1 | -1/+9 | |
| 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 | 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-01-21 | Build scripts: move tag creation code to updateversion.py | Damien Regad | 1 | -33/+3 | |
| 2014-01-21 | Added error messages when no arguments provided | Damien Regad | 1 | -0/+1 | |
| 2014-01-21 | Revise buildrelease.py to use updateversion.py as module | Damien Regad | 1 | -64/+16 | |
| 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 | 1 | -0/+242 | |
| Python script, loosely based on original code written by John Reese for the MantisBT builds. | |||||
