aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Mention some additional default settings in the config [#5618].Olivier Mehani2021-03-081-0/+11
| | | | Signed-off-by: Ben Sturmfels <ben@sturm.com.au>
* Add Charlotte Koch to AUTHORS.Ben Sturmfels2021-03-062-0/+2
|
* Pin sqlalchemy to a known good version.Charlotte Koch2021-03-061-1/+1
| | | | | | | | The latest version is 1.4.0b1 which changes some internals a bit... internals which unforuntately mediagoblin's DatabaseManager screw around with (namely, _decl_class_registry) Signed-off-by: Ben Sturmfels <ben@sturm.com.au>
* Note that Docker deployments are not officially supported or mature.Ben Sturmfels2021-03-063-1/+19
|
* Update relnotes re. passing test suite.Ben Sturmfels2021-03-061-2/+3
|
* Re-enable tests in Dockerfiles.Ben Sturmfels2021-03-062-4/+8
|
* More robust test fix.Ben Sturmfels2021-03-061-2/+2
|
* Fix broken metadata editing test.Ben Sturmfels2021-03-061-1/+1
|
* Update relnotes.Ben Sturmfels2021-03-061-1/+1
|
* Remove reference to --with-python3.Ben Sturmfels2021-03-062-2/+2
|
* Remove remaining Python 2 compatibility code.Ben Sturmfels2021-03-054-25/+1
|
* Remove remaining imports/calls to six not automatically removed by pyupgrade.Ben Sturmfels2021-03-0574-175/+35
|
* Apply `pyupgrade --py3-plus` to remove Python 2 compatibility code.Ben Sturmfels2021-03-05158-1391/+1353
|
* Remove six library.Ben Sturmfels2021-03-054-5/+1
|
* Update relnotes with bug fixes since 0.10.0.Ben Sturmfels2021-03-031-0/+3
|
* Show last git commit when building Docker image.Ben Sturmfels2021-03-032-0/+2
|
* Reinstate audio spectrograms on Python 3 [#5610].Fernando Gutierrez2021-03-0311-1042/+311
| | | | | | | | The `audiotospectrogram` module is a complete rewrite of the existing spectrogram code with support for Python 3. This allows us to drop the bundled `freesound` library and Python 2-only `audioprocessing` and `spectrogram` modules. Signed-off-by: Ben Sturmfels <ben@sturm.com.au>
* Drop Python 2 installation support.Ben Sturmfels2021-03-038-228/+9
|
* Use official repo in Dockerfile.Ben Sturmfels2021-03-031-2/+2
|
* Pin wtforms due to removal of ext module.Ben Sturmfels2021-03-031-1/+2
|
* docs: Document video resolution config.Ben Sturmfels2020-05-161-0/+16
|
* Further document guix workaround for Werkzeug.Ben Sturmfels2020-05-131-1/+6
|
* Fix Mac dev setup issues [#5442].Jeremy Bowman2020-05-133-1/+7
| | | | | | | | | A trailing slash in devtools/compile_translations.sh caused that script to fail because the parameter to pybabel's -l option ended up blank instead of containing the language code. A few files and directories were missing from .gitignore and hence wound up in the list of local changes to be committed.
* Increase Nginx upload limit to 100m, improve related docs [#5496].Ben Sturmfels2020-05-133-16/+26
| | | | | | By increasing the limit from 8m to 100m, we should immediately fix initial problems for people trying to upload audio or video. From there, they can read the documentation more closely when they try to upload larger files.
* Avoid Celery/RabbitMQ "connection reset" errors [#5609].Fernando Gutierrez2020-05-123-1/+2
| | | | | | This change starts Celery only after RabbitMQ is available. It also returns the unnecessarily low BROKER_HEARTBEAT setting to default of 120.0 to help prevent connections being reset on machines under load.
* Fix consistency in license list.Ben Sturmfels2020-05-111-1/+1
|
* Fix error generating Atom feed upon blank title [#1018].Ben Sturmfels2020-05-111-1/+4
|
* fixup! docs: Add chapter on upgrading, inc. system Python upgrades [#972].Ben Sturmfels2020-05-111-0/+88
|
* docs: Add chapter on upgrading, inc. system Python upgrades [#972].Ben Sturmfels2020-05-113-61/+9
|
* docs: Tweak deployment docs headings, link to configuration docs.Ben Sturmfels2020-05-112-50/+41
|
* fixup! Now in 0.11.0 development cycle.Ben Sturmfels2020-05-062-2/+2
|
* Now in 0.11.0 development cycle.Ben Sturmfels2020-05-061-0/+12
|
* Make ldap plugin python3 compatibleOlivier Mehani2020-05-062-2/+2
| | | | Signed-off-by: Olivier Mehani <shtrom+mediagoblin@ssji.net>
* docs: Update relnotes to remove "node_modules".Ben Sturmfels2020-05-051-8/+14
|
* docs: Link up subtitles and video qualities in release notes.Ben Sturmfels2020-05-041-2/+2
|
* Remove reference to Gitorious.Ben Sturmfels2020-05-041-8/+0
|
* Update version for release.Ben Sturmfels2020-05-041-1/+1
|
* docs: Tweak the release notes and deployment docs following testing.Ben Sturmfels2020-05-044-53/+60
|
* Add release notes for v0.10.0.Ben Sturmfels2020-05-014-57/+178
|
* Allow Python 2 minor version upgrades [#5595].Ben Sturmfels2020-04-301-77/+77
|
* Forcibly pin all Python 2 dependencies [#5595].Ben Sturmfels2020-04-301-11/+77
| | | | | This is really horrible, but seems like the only way to stop Python 2 installs breaking randomly in the future.
* Fix Python 2 package dependencies and sub-dependencies [#5595].Ben Sturmfels2020-04-301-2/+7
| | | | | | | | | | | This fixes the installation process *right now* on Python 2. The problem is that packages are dropping Python 2 support all over the place and due to our (deliberate) loose dependency version specifications and the loose sub-dependency version specifications, it's one horrible mess. But it works right now. Next up I'll be pinning all the currently installed Python 2 packages and all dependencies.
* docs: Note possible permission issues during install.Ben Sturmfels2020-04-301-0/+11
|
* subtitles: Add documentation, limit uploads to *.vtt files, only show for ↵Ben Sturmfels2020-04-305-10/+41
| | | | video [#5589].
* Add deprecation warning when running Python 2 [#5598].Ben Sturmfels2020-04-291-0/+12
|
* Test and update the media-types docs with Debian 10 and CentOS.Ben Sturmfels2020-04-292-85/+85
| | | | Unfortunately wasn't able to get video going in CentOS.
* Fix headings in production.rst.Ben Sturmfels2020-04-291-2/+2
|
* Fix some docs build warnings.Ben Sturmfels2020-04-296-18/+23
|
* Add CentOS rabbitmq instructions.Ben Sturmfels2020-04-292-6/+7
|
* Review and update the deploment docs for Debian 10 and CentOS 8 [#5593].Ben Sturmfels2020-04-295-318/+303
| | | | | | Mostly a thorough test and cleanup. The significant change is moving the systemd config into the deployment docs an the registration/security considerations to production considerations docs.