Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-04updated 30 locale files [ci skip]HEADdevelopBenjamin Neff
2022-11-04Merge pull request #8407 from Flaburgan/4821-help-mobileBenjamin Neff
Tell users that there is no help in mobile version, allow to switch to desktop
2022-11-03Tell users that there is no help in mobile version, allow to switch to ↵flaburgan
desktop, fixes #4821
2022-11-01Merge pull request #8404 from Flaburgan/8118-scrolling-photosBenjamin Neff
Do not recreate blueimp each time you're scrolling in the photos page
2022-11-01Merge pull request #8403 from ↵Benjamin Neff
SuperTux88/cleanup-duplicate-pods-for-real-this-time Cleanup duplicate pods
2022-11-01Merge pull request #8398 from SuperTux88/fix-mentions-with-underscoresBenjamin Neff
Escape mentions before parsing message with markdown for mobile UI
2022-11-01Merge pull request #8405 from Flaburgan/7949-feedback-mobileDennis Schubert
Add info links (the ones in the footer in the desktop version) into the drawer for mobile
2022-10-31Add info links (the ones in the footer in the desktop version) into the ↵flaburgan
drawer for mobile, fixes #7949
2022-10-31Do not recreate blueimp each time you're scrolling in the photos page, fixes ↵flaburgan
#8118
2022-10-31Show ports on pods listBenjamin Neff
otherwise pods with different ports (or without port) all look the same, like if they are duplicates
2022-10-31Ensure pod urls are always lowercaseBenjamin Neff
otherwise pods can exist multiple times with mixed case
2022-10-31Cleanup duplicate pods in databaseBenjamin Neff
The unique index doesn't work when the port is `NULL`. So use `-1` instead for when using the default ports (80/443), as if we would use the real ports, we could still have both 80 and 443 in the database at the same time.
2022-10-30Merge pull request #8399 from SuperTux88/docker-pullBenjamin Neff
Add pull command to diaspora-dev script
2022-10-30Merge pull request #8400 from SuperTux88/8352-mobile-photo-url-redirectBenjamin Neff
Add redirect to mobile-only photo URL when in desktop UI
2022-10-30Merge pull request #8397 from SuperTux88/remove-sprockets-es6Benjamin Neff
Replace sprockets-es6 with babel-transpiler
2022-10-30Merge pull request #8402 from denschub/cucumber-docker-fixesBenjamin Neff
Fix running Cucumber in Docker
2022-10-30Update postgres and mariadb container to latest major versionBenjamin Neff
This is a breaking change, so dev-databases need to be recreated.
2022-10-30Add redirect to mobile-only photo URL when in desktop UIBenjamin Neff
This URL is only used in the mobile UI, but when somebody then copies the link and sends it to somebody on the desktop UI, they don't see anything. So lets just redirect to the post containing the photo, so there is at least something to show. If there is no linked post, just redirect to the image instead. Fixes #8352
2022-10-29Disable Chromium sandbox for ApparitionDennis Schubert
2022-10-06Add a pull command to update docker images to diaspora-dev scriptBenjamin Neff
Before the images were only pulled once and then never updated which lead to really outdated images and OS dependencies. Now all images (including the base image for the diaspora container) are pulled when running `setup`. So the idea is to run the `setup` command from time to time to bring everything up to date again.
2022-10-06Escape mentions before parsing message with markdownBenjamin Neff
Usernames that contained underscores were parsed by markdown first. This broke the diaspora IDs and also added weird html at places where it wasn't needed. Escaping them before sending the message through the markdown parser fixes this issue. As underscores are the only allowed character that can be used for markdown that is also allowed inside a diaspora ID, this escaping can be kept pretty simple. This only fixes it for the mobile UI at the moment, for the desktop UI it's probably better to fix it in markdown-it. Related to #7975
2022-10-01Replace sprockets-es6 with babel-transpilerBenjamin Neff
Sprockets 4 now has direct babel support, so we can remove the temporary sprockets-es6 dependency and use babel-transpiler directly.
2022-09-21Merge pull request #8395 from denschub/time-travelBenjamin Neff
Fixes for two date-related spec breakages
2022-09-21Merge pull request #8396 from SuperTux88/fix-docker-devBenjamin Neff
Fix docker development setup after switch to puma
2022-09-21Merge pull request #8217 from tclaus/7080_multi_select_on_aspects_on_mobileBenjamin Neff
multi select on aspects on mobile closes #7080
2022-09-20Don't time travel in check_birthday_specDennis Schubert
2022-09-20Force the dev-docker to always run as amd64Dennis Schubert
We download a static amd64 browser, so this would explode on arm64, for example.
2022-09-19Expose docker-compose through diaspora-dev scriptBenjamin Neff
As the docker-compose.yml contains variables, it can't just be used with docker-compose directly. So this manually use docker-compose commands with all the required environment variables set.
2022-09-19Set listen not only on localhost when used in dockerBenjamin Neff
When puma was introduced in #8392 the default listen configuration was set to only localhost, which makes sense for most development setups, but when run within docker, it needs to listen on all IPs so the port can be forwarded to be accessable outside of docker. Because the new default makes sense without docker, I overwrite the option with a environment variable only in the docker-setup. This also ensures that it always contains the right value needed for the docker-setup to work, no matter what was configured outside of docker.
2022-09-19Add redis to docker development setupBenjamin Neff
With #8392 the `single_process_mode` was removed, which means that development now also requires a redis.
2022-09-12Using mixins for aspects css styleThorsten Claus
2022-09-11Give queue_users_for_removal_spec a bit of allowance to accord for timezone ↵Dennis Schubert
changes
2022-09-10Merge pull request #8390 from cmrd-senya/improve-public-fetchBenjamin Neff
Improve public posts fetch on account search
2022-09-10Merge pull request #8389 from SuperTux88/update-changelogBenjamin Neff
Update next major to 1.0.0
2022-09-10Merge pull request #8392 from denschub/unicorn-dustBenjamin Neff
Replace Unicorn with Puma
2022-09-10Merge branch 'next-minor' into developBenjamin Neff
2022-09-10Merge branch 'hotfix/0.7.18.1'v0.7.18.1next-minormastermainBenjamin Neff
2022-09-10Update binstubsDennis Schubert
Newly generated binstubs will check for the string `This file was generated by Bundler` inside `bin/bundle`, so we'd have to update that anyway. Also, there is a non-zero chance the updated `bundle` binstub resolves some of the setup-specific issues we've seen.
2022-09-09Replace Unicorn with PumaDennis Schubert
… and drop the single_process_mode. See the included Changelog entry for full details on what this change means.
2022-09-07Remove artifacts from the old Federation integration testing attemptDennis Schubert
It's… safe to assume that nobody is using this, as this has been broken for quite some time.
2022-09-07Update binstubsDennis Schubert
Newly generated binstubs will check for the string `This file was generated by Bundler` inside `bin/bundle`, so we'd have to update that anyway. Also, there is a non-zero chance the updated `bundle` binstub resolves some of the setup-specific issues we've seen.
2022-09-06post fetch: update spec to test reshares data toocmrd Senya
2022-09-05post fetch: use warn not debug for exception loggingcmrd Senya
2022-09-05post fetch: update post fetch speccmrd Senya
2022-09-04post fetch: remove check for type to allow fetching resharescmrd Senya
2022-09-04Use federation code for fetching public posts on searchcmrd Senya
2022-09-04Change development version number to 1.0.0-devBenjamin Neff
Lets use the `-dev` suffix for future development versions.
2022-09-03Change deprecation warning for diaspora.yml to version 2.0Benjamin Neff
as this will be the next major after 1.0
2022-09-03Change next major release to 1.0.0 in the changelogBenjamin Neff
2022-09-01Finishing TouchesThorsten Claus