Search
Results (12433)
- Feature #33080 (Closed): I want to change the background color according to the status
- I want to change the background color according to the status. What should I do?
- Patch #33079 (Closed): Remove unused argument from Redmine::Helpers::TimeReport
- The issue argument is never used and in that particular controller action @issue is not even set to any value.
- Feature #33078 (Closed): change the date of comment in issue
- Good day! We have an opened tiket in redmi ... orkbench i connected to database redmine in issue we have a note №7, the date it was modified ... date to another date. Is it possible to do?
- Patch #33074 (Closed): Korean translation update for 4.1-stable
- This is a Korean translation file for 4.1.0 ... strange things together in the previous file.
- Feature #33073 (New): Macro argument escaping/quoting mechanism
- Currently there is no way to enter a macro ar ... tile. Does not work with Markdown though.
- Feature #33071 (Reopened): Prevent accidental deletion of contents with sudo mode
- The attached patch adds protection against deletion of contents such as issues, wiki pages, and attachments by expanding o ... rs sometimes mistakenly delete contents like issues. I think it is because deleting contents is ... grey; width: 1024px;}.deletion-step-2@2x.png!
- Defect #33067 (Closed): Cannot preview and download an encrypted PDF attachments
- Environment: Redmine version ... ine_agile 1.4.12 redmine_issue_template 1.0.7 redmine_monitoring ... e is not supported or the file is corrupted
- Defect #33064 (Closed): having 404 error when trying to display diff - 3.4.4.stable
- Hi all, I have re-installed a new redmine instance (3.4.4.stable) but I have an issue when displaying diff. Notice that viewing ... tand why. Any help would be nice. Thanks
- Defect #33059 (Closed): "Role" dropdown in Wo ... s unexpectedly expanded when selecting "all"
- |Expected Result|Actual Result| |!expected_r ... not fixed at the same time as change #15988.
- Feature #33056 (New): Dark Mode setting (per user)
- It would be nice for a user to be able to set ... ith darker colours or have light-sensitivity issues to be able to use Redmine without any issues. Many apps and mobile devices offer Dark Mode as a standard per-user setting.
- Defect #33054 (Closed): demo redmine account automatically deleted
- I made an account on http://demo.redmine.org/ and I was using it for issue tracking for several projects. It was workin ... rd, it's not recognizing my mail credentials.
- Defect #33052 (Closed): Missing subject and tracker name in CSV export of time entries report
- CSV exports of time entries report no longer contain issue subject and tracker name since Redmine 4.0.0 ... to Spent time tab # Go to Report tab # Add Issue # Click on CSV export link # The exported CSV contains column @Issue@ with only issue ID in the exported values. In previous versi ... e 4.1.0. It seems it was broken in #29042.
- Defect #33044 (Closed): SimpleCov 0.18.3 causes NameError during tests
- I observed the following error when running t ... stant Minitest::SimpleCov (NameError) </pre>
- Defect #33042 (Closed): Fix importing issues due to using the wrong tmp directory
- The debian package ships redmine in /usr/shar ... /var/lib/redmine. Without this change the issue importer attempts to create a directory in ... Now it uses the intended tmp directory and issues can be imported again: /var/lib/redmine/default/tmp/imports/350548aee641641463bc89cd6043738c
- Feature #33037 (Closed): Support for Gitlab flavored Markdown
- Its great to see that Redmine also supports m ... available as ruby gems. That fits good.
- Patch #33036 (Closed): Add missing fixture to IssuesControllerTest
- IssuesControllerTest has failed. <pre> $ RAILS ... t bundle exec rake test TEST=test/functional/issues_controller_test.rb Run options: --seed 653 ... ..............................F Failure: IssuesControllerTest#test_post_create_with_watchers [test/functional/issues_controller_test.rb:4042]: Expected: 3 Actual: 2 bin/rails test test/functional/issues_controller_test.rb:4012 ................ ... class="diff"> diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 488edde6d..ec07c8577 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -46,7 +46,7 @@ class IssuesControllerTest < Redmine::ControllerTest ... include Redmine::I18n </code></pre>
- Defect #33029 (Closed): API POST requests fai ... oken authenticity. on 3.4.13, 4.0.6 and 4.1.0
- I have been tasked with making our main appli ... HTTParty.post( "http://localhost:3000/issues.json&key=665f63b1c6a66a3a103207c59241ea9aef ... passed as a query parameter for some reason.
- Defect #33023 (New): Warning occurs when displaying a few exceptional PDF thumbnail
- A PDF thumbnail is displayed, but the followi ... nment: Redmine 4.1.0 ImageMagick 6.9.10-Q16
- Defect #33021 (Closed): [v.4.0.5-stable] Internal Server Error 500 when accessing 'repository' tab
- Using Arch Linux kernel version 5.5.3-arch1-1 ... d, and git integration otherwise works well. Issues tagged in commit msgs are properly closed/r ... edmine/sudo_mode.rb:63:in `sudo_mode' </pre>
- Feature #33016 (New): Adding Watchers to a News Item
- At my work we feel it is a bit backwards to a ... work in the same way that adding Watchers to Issues works. I'm sure other people have had si ... ind anything, as most results centred around Issues instead of News.
- Patch #33007 (Closed): Simplified Chinese translation update
- 翻译了一下,看到没有其他内容了,但是我不会制作patch文件,还有要翻译的吗?
- Feature #33003 (Closed): Emails footer
- Is it possible to add a logo to the Emails footer?
- Feature #33002 (Closed): Include attachments in news post notifications
- There are no files in news notifications. Can this be implemented as in Issue? !Issue.png!
- Patch #32988 (Closed): Traditional Chinese translation (to r19512)
- * New tags added ** label_user_mail_option_o ... , label_user_mail_notify_about_high_priority_issues_html
- Defect #32985 (Closed): Remove unnecessary us ... e variables in CSV and Atom response handlers
- I set "10000" as "Issues export limit" (instead of default "500") fo ... but I noticed that exporting around 10,000 issues CSV causes out of memory issue. I thought that the cause is inside some ... y plugins, and after changing the following Issues Controller part, the memory usage seems to ... class="diff"> diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb index 69a947b03..6596df30c 100644 --- a/app/controllers/issues_controller.rb +++ b/app/controllers/issues_controller.rb @@ -63,8 +63,8 @@ class IssuesController < ApplicationController render_feed(@issues, :title => "#{@project || Setting.app_title}: #{l(:label_issue_plural)}") } format.csv { - @...