Commit Graph

8455 Commits

Author SHA1 Message Date
Norman Jäckel
cc5bcf1a81 Updated README 2021-02-05 12:01:48 +01:00
Norman Jäckel
f74cf10ff3
Merge pull request #5854 from FinnStutzenstein/fixDockercomposeDev
Fix docker compose dev
2021-02-05 12:00:43 +01:00
Finn Stutzenstein
9e38ed955f
Fix docker compose dev 2021-02-05 12:00:11 +01:00
Sean
058a7f71ae
Merge pull request #5823 from tsiegleauq/fix-group-import
Fix csv importing users with groups
2021-02-05 10:38:36 +01:00
Oskar Hahn
799dd08e0d client listens 4200 in prod 2021-02-05 09:47:04 +01:00
Emanuel Schütze
3b1b396e9a Removed setup.py and MANIFEST
Reason: pip supported is dropped for next OpenSlides release (3.4)
because the python server cannot run stand-alone anymore. You will cannot
install OpenSlides 3.4 via 'pip install openslides'.
2021-02-04 22:17:46 +01:00
Emanuel Schütze
72b7162eeb
Merge pull request #5842 from FinnStutzenstein/sortPooSpeakers
Order point of order speakers in the request order (closes #5816)
2021-02-04 22:03:11 +01:00
Oskar Hahn
dc58752575 Use caddy 2021-02-04 20:54:57 +01:00
Finn Stutzenstein
5b2f8409e4
Merge pull request #5847 from FinnStutzenstein/loadingIndicator
Wait for a stable app (closes #5813)
2021-02-04 13:08:05 +01:00
Finn Stutzenstein
a839294add
Wait for a stable app (closes #5813) 2021-02-04 12:33:20 +01:00
Emanuel Schütze
e5f0ebd6e5
Merge pull request #5832 from tsiegleauq/jitsi-helpdesk
Add helpdesk icon and feature
2021-02-03 11:42:59 +01:00
Sean
bd65b5d41c
Merge pull request #5841 from tsiegleauq/clean-some-applause
Cleanup some applause code
2021-02-03 10:02:39 +01:00
Finn Stutzenstein
94c943cdb5
Order point of order speakers in the request order (closes #5816) 2021-02-03 09:15:28 +01:00
Sean
04eedc7c37 Cleanup some applause code
Cleans some applause code
2021-02-02 15:52:55 +01:00
Finn Stutzenstein
a20641fe44
Merge pull request #5828 from FinnStutzenstein/offlineBarReconnect
Fixes offline bar on successful reconnections (closes #5810).
2021-02-02 13:12:09 +01:00
Sean
024b9c74e6 Add helpdesk icon and feature
Adds a "helpdesk" Jitsi room feature.
Can be enabled using the OpenSlides config page

Shows a 'Call support' button in the conference control bar
clicking the support button will connect the user
to a "support" jitsi room
The name of the support room will be
`JITSI_ROOM_NAME`-SUPPORT
2021-02-02 13:03:30 +01:00
Finn Stutzenstein
1380812924
Fixes offline bar on successful reconnections (closes #5810). 2021-02-02 11:56:04 +01:00
Sean
cc65b756c7
Merge pull request #5811 from tsiegleauq/applause-client
Add applause in client
2021-02-01 13:34:30 +01:00
Sean
e3d718cad0 Add applause in client
Applause button in Jitsi Bar,
Add Applause Service,
Add Applause Display component,
Add Config varriables,
Integrate applause display component in Jitsi bar,
Integrate custom vertical progress bar as own component,
  - vertical and more customizable than the mat-progress-bar
  - includes an optional end icon
  - animated and themed
Add custom clapping icon
applause particles using tsparticles
custom particle component
dynamic add and remove functions to alter particles in runtime
Set own particle shape
Use smooth emitter for clean particle spawning
2021-01-28 15:42:19 +01:00
Finn Stutzenstein
47a2204921
Merge pull request #5822 from mdickopp/mdickopp/pwGeneration
Improve client-side password generation
2021-01-26 11:21:55 +01:00
Sean
878f3a7ab3 Fix csv importing users with groups
old groups
new groups created on the fly
2021-01-26 11:11:05 +01:00
Finn Stutzenstein
676bda8cc3
Merge pull request #5821 from danilobuerger/django-env
Allow preset env variable for django secret
2021-01-26 09:19:48 +01:00
Martin Dickopp
2130f4970f Improve password generation
Generating an 8-bit random number and reducing it modulo 56
(characters.length) does not choose all numbers 0 to 55 with equal
probability, but chooses 0 to 31 with higher probability than 32 to 55.
This change improves the password generation algorithms by choosing all
characters with equal probability.
2021-01-24 19:14:20 +01:00
Danilo Bürger
11d7f7b888
Allow preset env variable for django secret
The source command fails if /run/secrets/django does not exist. This is however not important if DJANGO_SECRET_KEY is already set. This is checked in the next step
2021-01-22 21:08:34 +01:00
Gernot Schulz
7e67e0db12
Merge pull request #5815 from gsiv/fix/entrypoint-db
server: Fix database config in Docker entrypoint
2021-01-22 16:33:42 +01:00
Emanuel Schütze
97950d5baa
Merge pull request #5817 from FinnStutzenstein/debugging
Performance improvements for OS3+
2021-01-21 13:35:03 +01:00
Finn Stutzenstein
8049bfa91e
Performance improvements for OS3+
- Cleans up log messages in the client
- Refactored the autoupdate bundle code into an own file
- Added bulk creates for History in Postgresql. This is the only database system
  that supports returning all ids whan multiple elements are inserted. We can
  make usage out of it.
- Added a `disable_history`, that is request-wide
- Disabled history on poll vote requests
- Removed unnecessary user ordering
- Reduced the queries for creating motion vote objects by one
- removed final_data: This was not prefetched. Using the normal data collection
  the data is prefetched
- removed unnecessary user query if vore delegation is not used
2021-01-21 12:53:51 +01:00
Gernot Schulz
0f0d750d83 server: Fix database config in Docker entrypoint
Firstly, this patch ensures that the server connects to the database
according to the given configuration variables.  Up until now, there was
a pg_isready check for the hard-coded hostname "db".  While this
generally worked in the default setup – db is an alias for pgbouncer in
the provided YAML configuration files – it is obviously wrong and would
lead to unexpected behavior in customized setups.

Secondly, the .pgpass setup, which was a remnant of another time and not
used anymore, has been removed.
2021-01-18 14:00:58 +01:00
Finn Stutzenstein
4f4bff9bb3
Merge pull request #5814 from FinnStutzenstein/docs
Docs and security email
2021-01-18 07:25:57 +01:00
Finn Stutzenstein
b2e6d2f2ac Docs and security email 2021-01-17 21:18:52 +01:00
Finn Stutzenstein
b200cfbd07
Merge pull request #5533 from FinnStutzenstein/externalAutoupdateService
External autoupdate service
2021-01-14 13:39:32 +01:00
FinnStutzenstein
e225a57f97
OpenSlides3+: External Autoupdate Service
- Removing channels. Going back to a wsgi deployment
- Removed server projector code
- Autoupdate throttling is now in the client
- New communication stack in the client
- Adopted all deployment methods: Docker stack and docker compose (prod and dev)
- Added autoupdate service as submodule
2021-01-14 07:55:41 +01:00
Sean
1145ae1460
Merge pull request #5719 from FinnStutzenstein/minVotesAmount
Minimum amount of votes
2021-01-13 11:23:49 +01:00
Sean
bc382df68f Client: Add form validation and request handling 2021-01-13 11:14:12 +01:00
Finn Stutzenstein
ea180246c7
fixed server, rebased on current master 2021-01-12 09:50:13 +01:00
Sean
0b01b5576b
Fixing min amounts in assignment meta info 2021-01-12 09:29:28 +01:00
Finn Stutzenstein
7e763e8c07
Minumum amount of votes
renamed votes_amount to max_votes_amount
2021-01-12 09:29:24 +01:00
Emanuel Schütze
010b61cce2
Merge pull request #5800 from FinnStutzenstein/fixUserUpdateVoteDelegations
Fix vote_delegated_from_user_ids on user update
2021-01-08 15:39:05 +01:00
Emanuel Schütze
8542817129
Merge pull request #5791 from FinnStutzenstein/pwGeneration
Change PW generation to a secure method
2021-01-08 15:37:38 +01:00
Finn Stutzenstein
b0ba30b454
Fix vote_delegated_from_user_ids on user update 2021-01-08 08:24:34 +01:00
Finn Stutzenstein
183c511046
Change PW generation to a secure method 2021-01-05 07:42:19 +01:00
Emanuel Schütze
ea277adf9e
Merge pull request #5784 from emanuelschuetze/release3.3
Release3.3
2020-12-18 01:04:36 +01:00
Emanuel Schütze
ef135837f7 Update version to 3.4-master 2020-12-18 00:43:02 +01:00
Emanuel Schütze
a37e2196b3 Release 3.3 2020-12-18 00:43:02 +01:00
Emanuel Schütze
273debf99a Readded setup.py 2020-12-18 00:42:59 +01:00
Emanuel Schütze
ab2fbaac79
Merge pull request #5778 from tsiegleauq/changelog-3.3
Add Changelog for 3.3 release
2020-12-17 23:56:00 +01:00
Emanuel Schütze
aeaedabb87
Merge pull request #5780 from emanuelschuetze/translation20201216
Updated translations
2020-12-17 23:23:28 +01:00
Sean
52c4aa6c58 Updated Changelog for 3.3 release 2020-12-17 23:22:46 +01:00
Emanuel Schütze
227dfd0c26 Updated translations 2020-12-17 10:30:46 +01:00
Emanuel Schütze
b179930cc8
Merge pull request #5779 from tsiegleauq/add-more-server-messages-to-translations
Add more server messages to translations
2020-12-16 20:05:33 +01:00