-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync upstream with conflict #187
Merged
mariobehling
merged 56 commits into
fossasia:development
from
odkhang:sync-upstream-with-conflict
Aug 28, 2024
Merged
Changes from 49 commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
9e9d09e
Tab title reflects proposal title in cfp wizard
rixx b82f926
Translations update: Czech and Chinese
pretalx-translations 5095ea0
Fix data on event and organiser delete
rixx a8df732
Translations update: Portuguese, new: Vietnamese
pretalx-translations ce2836e
Don't merge resources into question section
rixx 06cceed
Code style
rixx 6d14929
Add is_featured filter to submissions API
rixx 0ad0010
Fix code style
rixx 59c4aa4
Fix locale preference message in wrong language
rixx c78a98f
Fix code style
rixx 401ca8b
Use defusedxml
rixx 3dab487
Remove unnecessary variables and context managers
rixx 13c7a1f
Better use of direct assignments
rixx a901374
Fix code style
rixx b4fcefa
Use correct variable types
rixx e4749f4
Improve variable names
rixx 1fe3408
Walrus and other if statement improvements
rixx 7741a0a
Shuffle code to better places
rixx d994d19
Fix incorrect use of raw strings
rixx 41afa69
Fix comments
rixx f5d1777
Make imports more consistent
rixx 977ce54
Translations update: French
pretalx-translations a96af34
Remove console logs
rixx 268f73c
Sanitize markdown preview
rixx 7700b33
Show allowed image formats in help text
rixx 92c1e81
Fix missing space in help text
rixx 9996626
Remove reference to missing sourcemap
rixx 6c5879f
django settings variable can't start with _ (#1810)
dest81 abb24a8
Remove release notes entry
rixx 2cef658
Translations update: French, German
pretalx-translations 5aadce3
Update translations
rixx 44630f3
Translations update: German
pretalx-translations a4c464e
Release v2024.2.0
rixx 1ef0dd8
Update translation percentages
rixx 0f02bad
Update changelog
rixx 9bc5a36
Bump version to development version
rixx 69b4b7d
Update maintainer docs
rixx 5670fbd
[ci] Don't show empty spellcheck summary
rixx c5bc376
[docs] Use better CSRF doc link
rixx ef9b344
Fix broken plugin list
rixx fe1f1c3
Release v2024.2.1
rixx a95e181
Bump version
rixx 5b34f11
Fix missing QR codes
rixx 236423b
Make iCal export private
rixx ca01acc
Fix breaking tests
rixx d1890e3
Fix breaking tests some more
rixx 59e68bf
correct import for phrase
lcduong 5fac3b8
correct import and cherry pick submission_resources_form file
lcduong 9ae0363
update translation
lcduong c7fb57d
Merge branch 'development' into sync-upstream-with-conflict
odkhang db33f96
remove funding.srt which make failt linkcheck
odkhang 5409be6
Merge branch 'development' into sync-upstream-with-conflict
odkhang 438589e
optimize import, fix UT
odkhang 1e6c5d4
fix UT
odkhang 2db6a0a
fix UI
odkhang f2870a8
fix UT: ReviewerForProposalForm has no instance
odkhang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,8 @@ System checks | |
------------- | ||
|
||
1. Deploy the release-ready commit to an instance. Check if the upgrade and the instance works. | ||
2. Clone pretalx into a clean repo: ``git clone git@github.com:pretalx/pretalx pretalx-release && cd pretalx-release`` | ||
3. Set up your environment: ``mkvirtualenv pretalx-release && pip install -e . check-manifest twine`` | ||
2. Clean clone: ``git clone git@github.com:pretalx/pretalx pretalx-release && cd pretalx-release`` | ||
3. Set up your environment: ``mkvirtualenv pretalx-release && pip install -e . check-manifest twine wheel`` | ||
4. Run ``check-manifest`` **locally**. | ||
|
||
Take-off and landing | ||
|
@@ -37,7 +37,7 @@ Take-off and landing | |
3. Make a release commit: ``RELEASE=vx.y.z; git commit -am "Release $RELEASE" && git tag -m "Release $RELEASE" $RELEASE`` | ||
4. Build a new release: ``rm -rf dist/ build/ pretalx.egg-info && python -m build -n`` | ||
5. Upload the release: ``twine upload dist/pretalx-*`` | ||
6. Push the release: ``git push && git push --tags`` | ||
6. Push the release: ``git push`` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. question (documentation): The '--tags' option has been removed from the git push command. Was this intentional? If tags should be pushed during the release process, consider keeping the command as |
||
7. Install/update the package somewhere. | ||
8. Publish the blog post. | ||
9. Add the release on `GitHub <https://github.com/pretalx/pretalx/releases>`_ (upload the archive you uploaded to PyPI, and add a link to the correct section of the :ref:`changelog`) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "2024.2.0.dev0" | ||
__version__ = "2024.3.0.dev0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
from django.utils.translation import gettext as _ | ||
from django.utils.translation import gettext_lazy as _ | ||
|
||
from pretalx.common.phrases import BasePhrases, Phrases | ||
from pretalx.common.text.phrases import Phrases | ||
|
||
|
||
class AgendaPhrases(Phrases, app="agenda"): | ||
feedback_success = [ | ||
_("Thank you for your feedback!"), | ||
_("Thanks, we (and our speakers) appreciate your feedback!"), | ||
] | ||
|
||
feedback_send = BasePhrases.send + [ | ||
_("Send feedback"), | ||
_("Send review"), | ||
] | ||
|
||
schedule_do_not_record = _("This session will not be recorded.") | ||
|
||
view_schedule = _("View conference schedule") | ||
view_schedule_preview = _("View schedule preview") | ||
view_own_submissions = _("Edit or view your proposals") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion (documentation): Consider keeping the more explicit instruction for clarity.
While 'Clean clone' is concise, 'Clone pretalx into a clean repo' provides more context, especially for newcomers to the project.