Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 844 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 12 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 248k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
170,537 | 6,447,363,400 | IssuesEvent | 2017-08-14 06:48:56 | FadeCloudNW/issue-tracker | https://api.github.com/repos/FadeCloudNW/issue-tracker | closed | [Prison] AFK Freezers | Bug Low Priority | Recently found out players who are rank A (which is default in pex) can't use the AFK Freezers. They can rightclick them but they don't receive blocks. But if they rank up to B it works again. | 1.0 | [Prison] AFK Freezers - Recently found out players who are rank A (which is default in pex) can't use the AFK Freezers. They can rightclick them but they don't receive blocks. But if they rank up to B it works again. | priority | afk freezers recently found out players who are rank a which is default in pex can t use the afk freezers they can rightclick them but they don t receive blocks but if they rank up to b it works again | 1 |
432,661 | 12,496,469,616 | IssuesEvent | 2020-06-01 14:53:43 | qutebrowser/qutebrowser | https://api.github.com/repos/qutebrowser/qutebrowser | opened | Qt 5.15 and endless redirects via interceptor API (ERR_TOO_MANY_REDIRECTS) | priority: 2 - low qt: 5.15 | With Qt 5.15 and this:
```python3
import qutebrowser.api.interceptor
def rewrite(request: qutebrowser.api.interceptor.Request):
if request.request_url.host().startswith('www.amazon.') and '/dp/' in request.request_url.path():
path = request.request_url.path().split('/')
i = path.index('dp')
request.request_url.setPath('/' + '/'.join(path[i:i+2]))
request.request_url.setQuery(None)
try:
request.redirect(request.request_url)
except:
pass
qutebrowser.api.interceptor.register(rewrite)
```
running `qutebrowser --temp-basedir --debug --debug-flag log-requests --config-py ~/Downloads/iOsW.py https://www.amazon.com/dp/1680502409` will lead to a `ERR_TOO_MANY_REDIRECTS`, while it worked fine with Qt 5.15. Not sure yet why exactly.
That snippet *is* indeed redirecting the URL to itself, so maybe qutebrowser should detect that case and prevent it? It's kind of problematic that it would need to copy (or maybe hash?) all URLs to know whether an interceptor changed it, though. | 1.0 | Qt 5.15 and endless redirects via interceptor API (ERR_TOO_MANY_REDIRECTS) - With Qt 5.15 and this:
```python3
import qutebrowser.api.interceptor
def rewrite(request: qutebrowser.api.interceptor.Request):
if request.request_url.host().startswith('www.amazon.') and '/dp/' in request.request_url.path():
path = request.request_url.path().split('/')
i = path.index('dp')
request.request_url.setPath('/' + '/'.join(path[i:i+2]))
request.request_url.setQuery(None)
try:
request.redirect(request.request_url)
except:
pass
qutebrowser.api.interceptor.register(rewrite)
```
running `qutebrowser --temp-basedir --debug --debug-flag log-requests --config-py ~/Downloads/iOsW.py https://www.amazon.com/dp/1680502409` will lead to a `ERR_TOO_MANY_REDIRECTS`, while it worked fine with Qt 5.15. Not sure yet why exactly.
That snippet *is* indeed redirecting the URL to itself, so maybe qutebrowser should detect that case and prevent it? It's kind of problematic that it would need to copy (or maybe hash?) all URLs to know whether an interceptor changed it, though. | priority | qt and endless redirects via interceptor api err too many redirects with qt and this import qutebrowser api interceptor def rewrite request qutebrowser api interceptor request if request request url host startswith and dp in request request url path path request request url path split i path index dp request request url setpath join path request request url setquery none try request redirect request request url except pass qutebrowser api interceptor register rewrite running qutebrowser temp basedir debug debug flag log requests config py downloads iosw py will lead to a err too many redirects while it worked fine with qt not sure yet why exactly that snippet is indeed redirecting the url to itself so maybe qutebrowser should detect that case and prevent it it s kind of problematic that it would need to copy or maybe hash all urls to know whether an interceptor changed it though | 1 |
185,117 | 6,719,107,826 | IssuesEvent | 2017-10-15 20:25:18 | nim-lang/Nim | https://api.github.com/repos/nim-lang/Nim | closed | Incorrect closure code generation | Lambda lifting Low Priority Semcheck | The following program generates code that doesn't compile.
Note that either replacing `do(x):` with `do(x: int)` or putting the code inside a function will prevent the error.
``` nimrod
proc baz() =
echo "baz"
proc bar(x: int, p: proc()) =
echo "bar ", x
p()
proc foo(x: int, p: proc(x: int)) =
echo "foo ", x
p(x)
let x = 0
x.foo do(x): x.bar do: baz()
```
| 1.0 | Incorrect closure code generation - The following program generates code that doesn't compile.
Note that either replacing `do(x):` with `do(x: int)` or putting the code inside a function will prevent the error.
``` nimrod
proc baz() =
echo "baz"
proc bar(x: int, p: proc()) =
echo "bar ", x
p()
proc foo(x: int, p: proc(x: int)) =
echo "foo ", x
p(x)
let x = 0
x.foo do(x): x.bar do: baz()
```
| priority | incorrect closure code generation the following program generates code that doesn t compile note that either replacing do x with do x int or putting the code inside a function will prevent the error nimrod proc baz echo baz proc bar x int p proc echo bar x p proc foo x int p proc x int echo foo x p x let x x foo do x x bar do baz | 1 |
555,757 | 16,469,256,628 | IssuesEvent | 2021-05-23 04:17:17 | Tautulli/Tautulli | https://api.github.com/repos/Tautulli/Tautulli | closed | Missing job arg for recently added queue modal | fixed priority:low topic:server topic:ui type:bug | **Describe the Bug**
No output when a item is in waitinglist
**Steps to Reproduce**
1. Go to 'Setings'
2. Click on 'Check for recently added items'
3. See error
**Expected Behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
Provide screenshots to help explain your problem.

**Tautulli and System Info (see Tautulli settings page)**
- Version: V2.7.2
- Git Branch: master
- Git Commit Hash: 39ad3f9047fb3f8ed7b18b1584b079a70280d37b
- Python Version: 3.8.8
**Link to logs (required)**
Include a link to your **FULL** logs (not just a few lines) on [Gist](http://gist.github.com).
https://gist.github.com/Jerome2103/85d9d41669e0982295d485d52b864a0d
<!--
Close your issue when it's solved! If you found the solution yourself please comment so that others benefit from it.
-->
| 1.0 | Missing job arg for recently added queue modal - **Describe the Bug**
No output when a item is in waitinglist
**Steps to Reproduce**
1. Go to 'Setings'
2. Click on 'Check for recently added items'
3. See error
**Expected Behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
Provide screenshots to help explain your problem.

**Tautulli and System Info (see Tautulli settings page)**
- Version: V2.7.2
- Git Branch: master
- Git Commit Hash: 39ad3f9047fb3f8ed7b18b1584b079a70280d37b
- Python Version: 3.8.8
**Link to logs (required)**
Include a link to your **FULL** logs (not just a few lines) on [Gist](http://gist.github.com).
https://gist.github.com/Jerome2103/85d9d41669e0982295d485d52b864a0d
<!--
Close your issue when it's solved! If you found the solution yourself please comment so that others benefit from it.
-->
| priority | missing job arg for recently added queue modal describe the bug no output when a item is in waitinglist steps to reproduce go to setings click on check for recently added items see error expected behavior a clear and concise description of what you expected to happen screenshots provide screenshots to help explain your problem tautulli and system info see tautulli settings page version git branch master git commit hash python version link to logs required include a link to your full logs not just a few lines on close your issue when it s solved if you found the solution yourself please comment so that others benefit from it | 1 |
235,160 | 7,735,100,119 | IssuesEvent | 2018-05-27 11:18:04 | elor/tuvero | https://api.github.com/repos/elor/tuvero | closed | Hover-Text für alle Hotkeys sowie Hotkey-Übersicht | frontend priority 4: low | Damit die Hotkeys leicht nachzulesen sind.
Einerseits eine automatische Übersicht aller Hotkeys, andererseits bei jedem Hotkey-Element ein Mouseover-Text
| 1.0 | Hover-Text für alle Hotkeys sowie Hotkey-Übersicht - Damit die Hotkeys leicht nachzulesen sind.
Einerseits eine automatische Übersicht aller Hotkeys, andererseits bei jedem Hotkey-Element ein Mouseover-Text
| priority | hover text für alle hotkeys sowie hotkey übersicht damit die hotkeys leicht nachzulesen sind einerseits eine automatische übersicht aller hotkeys andererseits bei jedem hotkey element ein mouseover text | 1 |
86,886 | 3,734,572,947 | IssuesEvent | 2016-03-08 07:51:27 | ucsdCSE110wi16/CSE110W240T12 | https://api.github.com/repos/ucsdCSE110wi16/CSE110W240T12 | reopened | User Profile (Backend) | LOW PRIORITY | - Figuring out how to store details in firebase
- Display data from firebase in profile
- Linking profile with MainActivity
- Figuring out how to use Google images through Google Auth. | 1.0 | User Profile (Backend) - - Figuring out how to store details in firebase
- Display data from firebase in profile
- Linking profile with MainActivity
- Figuring out how to use Google images through Google Auth. | priority | user profile backend figuring out how to store details in firebase display data from firebase in profile linking profile with mainactivity figuring out how to use google images through google auth | 1 |
530,054 | 15,415,040,926 | IssuesEvent | 2021-03-05 01:40:05 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | opened | [Coverity CID :219478] Unchecked return value in subsys/bluetooth/controller/ll_sw/ull_filter.c | Coverity bug priority: low |
Static code scan issues found in file:
https://github.com/zephyrproject-rtos/zephyr/tree/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/subsys/bluetooth/controller/ll_sw/ull_filter.c
Category: Error handling issues
Function: `prpa_cache_resolve`
Component: Bluetooth
CID: [219478](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=219478)
Details:
https://github.com/zephyrproject-rtos/zephyr/blob/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/subsys/bluetooth/controller/ll_sw/ull_filter.c#L1188
Please fix or provide comments in coverity using the link:
https://scan9.coverity.com/reports.htm#v32951/p12996.
Note: This issue was created automatically. Priority was set based on classification
of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
| 1.0 | [Coverity CID :219478] Unchecked return value in subsys/bluetooth/controller/ll_sw/ull_filter.c -
Static code scan issues found in file:
https://github.com/zephyrproject-rtos/zephyr/tree/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/subsys/bluetooth/controller/ll_sw/ull_filter.c
Category: Error handling issues
Function: `prpa_cache_resolve`
Component: Bluetooth
CID: [219478](https://scan9.coverity.com/reports.htm#v29726/p12996/mergedDefectId=219478)
Details:
https://github.com/zephyrproject-rtos/zephyr/blob/bd97359a5338b2542d19011b6d6aa1d8d1b9cc3f/subsys/bluetooth/controller/ll_sw/ull_filter.c#L1188
Please fix or provide comments in coverity using the link:
https://scan9.coverity.com/reports.htm#v32951/p12996.
Note: This issue was created automatically. Priority was set based on classification
of the file affected and the impact field in coverity. Assignees were set using the CODEOWNERS file.
| priority | unchecked return value in subsys bluetooth controller ll sw ull filter c static code scan issues found in file category error handling issues function prpa cache resolve component bluetooth cid details please fix or provide comments in coverity using the link note this issue was created automatically priority was set based on classification of the file affected and the impact field in coverity assignees were set using the codeowners file | 1 |
589,051 | 17,688,691,874 | IssuesEvent | 2021-08-24 07:10:55 | operation-check/webapp | https://api.github.com/repos/operation-check/webapp | opened | webapp Azure App Serviceへのdeployが可能であるかの確認 | feedback:question importance:hi priority:low | Azure App Serviceを利用して App Web ServiceへとDeployを試す。
条件的に実施可能かがわからないため、最悪Deploy失敗で終わる可能性あり。
調査し報告を希望する。 | 1.0 | webapp Azure App Serviceへのdeployが可能であるかの確認 - Azure App Serviceを利用して App Web ServiceへとDeployを試す。
条件的に実施可能かがわからないため、最悪Deploy失敗で終わる可能性あり。
調査し報告を希望する。 | priority | webapp azure app serviceへのdeployが可能であるかの確認 azure app serviceを利用して app web serviceへとdeployを試す。 条件的に実施可能かがわからないため、最悪deploy失敗で終わる可能性あり。 調査し報告を希望する。 | 1 |
423,033 | 12,289,739,719 | IssuesEvent | 2020-05-09 23:11:58 | rectorphp/rector-ci | https://api.github.com/repos/rectorphp/rector-ci | closed | Add per rule commiting feature | enhancement low priority | Imagine there is PHP 8.0 set and everything is committed in one go. 30 rules with one commit. Very hard to rebase or modify.
In small code bases it cold be ok, but in practice it easier to work with smaller chunks.
Based on talk with @jfrnl | 1.0 | Add per rule commiting feature - Imagine there is PHP 8.0 set and everything is committed in one go. 30 rules with one commit. Very hard to rebase or modify.
In small code bases it cold be ok, but in practice it easier to work with smaller chunks.
Based on talk with @jfrnl | priority | add per rule commiting feature imagine there is php set and everything is committed in one go rules with one commit very hard to rebase or modify in small code bases it cold be ok but in practice it easier to work with smaller chunks based on talk with jfrnl | 1 |
299,551 | 9,205,605,626 | IssuesEvent | 2019-03-08 11:04:08 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | "Copy Features" is active even though no features are selected | Category: GUI Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report | ---
Author Name: **Maciej Sieczka -** (Maciej Sieczka -)
Original Redmine Issue: 929, https://issues.qgis.org/issues/929
Original Assignee: nobody -
---
"Copy Features" is active even though no features are selected. You can't "Copy Features" when there are no features chosen to be copied.
| 1.0 | "Copy Features" is active even though no features are selected - ---
Author Name: **Maciej Sieczka -** (Maciej Sieczka -)
Original Redmine Issue: 929, https://issues.qgis.org/issues/929
Original Assignee: nobody -
---
"Copy Features" is active even though no features are selected. You can't "Copy Features" when there are no features chosen to be copied.
| priority | copy features is active even though no features are selected author name maciej sieczka maciej sieczka original redmine issue original assignee nobody copy features is active even though no features are selected you can t copy features when there are no features chosen to be copied | 1 |
453,731 | 13,087,889,717 | IssuesEvent | 2020-08-02 14:38:42 | ayumi-cloud/oc2-security-module | https://api.github.com/repos/ayumi-cloud/oc2-security-module | opened | Add filter module for the browser API data | Dashboard Firewall Priority: Low enhancement in-progress | ### Enhancement idea
- [ ] Add filter module for the browser API data.
| 1.0 | Add filter module for the browser API data - ### Enhancement idea
- [ ] Add filter module for the browser API data.
| priority | add filter module for the browser api data enhancement idea add filter module for the browser api data | 1 |
385,951 | 11,428,621,466 | IssuesEvent | 2020-02-04 05:19:20 | INN/umbrella-citylimits | https://api.github.com/repos/INN/umbrella-citylimits | closed | Search Box hover/focus styles | Estimate: <2 Priority: Low Status: On hold | Copied from #113
the search box in the header, when focused, gets an outset box shadow on the input:

```
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
```
This comes from Largo's styles.
If we flip that blue outset shadow to be inset:

We could replace the shadow with some other indicator of focus, there has to be a `:focus` style for this input.
If we put the `:focus` styles on the containing search box, then things get weird when the search-submit button is focused, not the search text box. | 1.0 | Search Box hover/focus styles - Copied from #113
the search box in the header, when focused, gets an outset box shadow on the input:

```
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
```
This comes from Largo's styles.
If we flip that blue outset shadow to be inset:

We could replace the shadow with some other indicator of focus, there has to be a `:focus` style for this input.
If we put the `:focus` styles on the containing search box, then things get weird when the search-submit button is focused, not the search text box. | priority | search box hover focus styles copied from the search box in the header when focused gets an outset box shadow on the input box shadow inset rgba rgba this comes from largo s styles if we flip that blue outset shadow to be inset we could replace the shadow with some other indicator of focus there has to be a focus style for this input if we put the focus styles on the containing search box then things get weird when the search submit button is focused not the search text box | 1 |
81,280 | 3,588,368,777 | IssuesEvent | 2016-01-30 23:45:17 | DeepBlueRobotics/RobotCode2016 | https://api.github.com/repos/DeepBlueRobotics/RobotCode2016 | closed | UpdateDashboard Command | Low Priority | Just needs to call an updateDashboard method in each subsystem. Use the DashboardUI class that Alex made. | 1.0 | UpdateDashboard Command - Just needs to call an updateDashboard method in each subsystem. Use the DashboardUI class that Alex made. | priority | updatedashboard command just needs to call an updatedashboard method in each subsystem use the dashboardui class that alex made | 1 |
287,408 | 8,813,199,222 | IssuesEvent | 2018-12-28 18:52:11 | mRemoteNG/mRemoteNG | https://api.github.com/repos/mRemoteNG/mRemoteNG | closed | Allow users to select different DockPanelSuite Themes | Enhancement Low Priority UI/UX ready | [DockPanelSuite.ThemeVS2012](https://www.nuget.org/packages/DockPanelSuite.ThemeVS2012/) allows the following themes:
* VS2012LightTheme
* VS2012BlueTheme
* VS2012DarkTheme
Allow these to be user selectable.
Currently defaulting to VS2015LightTheme.
In frmMain.cs:
```
private frmMain()
{
_showFullPathInTitle = Settings.Default.ShowCompleteConsPathInTitle;
InitializeComponent();
Fullscreen = new MiscTools.Fullscreen(this);
pnlDock.Theme = new VS2012LightTheme();
}
``` | 1.0 | Allow users to select different DockPanelSuite Themes - [DockPanelSuite.ThemeVS2012](https://www.nuget.org/packages/DockPanelSuite.ThemeVS2012/) allows the following themes:
* VS2012LightTheme
* VS2012BlueTheme
* VS2012DarkTheme
Allow these to be user selectable.
Currently defaulting to VS2015LightTheme.
In frmMain.cs:
```
private frmMain()
{
_showFullPathInTitle = Settings.Default.ShowCompleteConsPathInTitle;
InitializeComponent();
Fullscreen = new MiscTools.Fullscreen(this);
pnlDock.Theme = new VS2012LightTheme();
}
``` | priority | allow users to select different dockpanelsuite themes allows the following themes allow these to be user selectable currently defaulting to in frmmain cs private frmmain showfullpathintitle settings default showcompleteconspathintitle initializecomponent fullscreen new misctools fullscreen this pnldock theme new | 1 |
383,300 | 11,354,165,634 | IssuesEvent | 2020-01-24 16:59:56 | Progressive335/Progressive335 | https://api.github.com/repos/Progressive335/Progressive335 | closed | [Website] Timer on homepage wraps to next line occasionally | low priority website | **Please fill in the bellow fields to create a meticulous report so that we can fix the issue properly.**
Just getting a super minor website display buglet logged
**Description of the bug:**
The ticking timer on the homepage of the website wraps to the next line occasionally
**Steps to reproduce the problem:**
Go to the homepage of the website on
Windows 10/ Chrome Version 78.0.3904.70
Resolution: 3840 x 2160
**How it should work:**
Timer should either stay on 2 lines or not wrap to the next line.
Timer should not jump back and forth.
**Any other documentation that could be helpful:**
Gif of timer jumping to second line: https://i.imgur.com/ZBZ9jor.mp4
I was able to replicate this on Windows 10 in
* Firefox 70.0.1
* Edge 44.18362.387.0
* 1980 x 1200 resolution
| 1.0 | [Website] Timer on homepage wraps to next line occasionally - **Please fill in the bellow fields to create a meticulous report so that we can fix the issue properly.**
Just getting a super minor website display buglet logged
**Description of the bug:**
The ticking timer on the homepage of the website wraps to the next line occasionally
**Steps to reproduce the problem:**
Go to the homepage of the website on
Windows 10/ Chrome Version 78.0.3904.70
Resolution: 3840 x 2160
**How it should work:**
Timer should either stay on 2 lines or not wrap to the next line.
Timer should not jump back and forth.
**Any other documentation that could be helpful:**
Gif of timer jumping to second line: https://i.imgur.com/ZBZ9jor.mp4
I was able to replicate this on Windows 10 in
* Firefox 70.0.1
* Edge 44.18362.387.0
* 1980 x 1200 resolution
| priority | timer on homepage wraps to next line occasionally please fill in the bellow fields to create a meticulous report so that we can fix the issue properly just getting a super minor website display buglet logged description of the bug the ticking timer on the homepage of the website wraps to the next line occasionally steps to reproduce the problem go to the homepage of the website on windows chrome version resolution x how it should work timer should either stay on lines or not wrap to the next line timer should not jump back and forth any other documentation that could be helpful gif of timer jumping to second line i was able to replicate this on windows in firefox edge x resolution | 1 |
725,398 | 24,961,288,198 | IssuesEvent | 2022-11-01 15:43:00 | AY2223S1-CS2103T-W17-2/tp | https://api.github.com/repos/AY2223S1-CS2103T-W17-2/tp | closed | [PE-D][Tester C] Result display in the result box is weird | bug priority.LOW | If the user keys in `000009` as the amount, instead of showing `Amount: 9` in the result box, it shows as `Amount: 000009`


<!--session: 1666943984712-d369f1b1-7cf7-4349-b341-04e3922de8c3-->
<!--Version: Web v3.4.4-->
-------------
Labels: `severity.VeryLow` `type.FeatureFlaw`
original: ngshijun/ped#5 | 1.0 | [PE-D][Tester C] Result display in the result box is weird - If the user keys in `000009` as the amount, instead of showing `Amount: 9` in the result box, it shows as `Amount: 000009`


<!--session: 1666943984712-d369f1b1-7cf7-4349-b341-04e3922de8c3-->
<!--Version: Web v3.4.4-->
-------------
Labels: `severity.VeryLow` `type.FeatureFlaw`
original: ngshijun/ped#5 | priority | result display in the result box is weird if the user keys in as the amount instead of showing amount in the result box it shows as amount labels severity verylow type featureflaw original ngshijun ped | 1 |
519,792 | 15,057,306,282 | IssuesEvent | 2021-02-03 21:28:37 | meg-gutshall/borrow-buddy | https://api.github.com/repos/meg-gutshall/borrow-buddy | opened | Button fixes | priority: low type: ui/ux | - [ ] Change links to buttons
- [ ] Change "Back" button verbiage to tell user where they are going | 1.0 | Button fixes - - [ ] Change links to buttons
- [ ] Change "Back" button verbiage to tell user where they are going | priority | button fixes change links to buttons change back button verbiage to tell user where they are going | 1 |
741,585 | 25,805,801,052 | IssuesEvent | 2022-12-11 11:55:33 | openvk/openvk | https://api.github.com/repos/openvk/openvk | reopened | Не приходят уведомления об лайке на собственный комментарий/упоминании на чужой стене или в группе | priority:high complexity:normal section:notifications low-hanging fruit | Недавняя [запись](https://openvk.su/wall-1_135) говорит, что вернулись уведомления. Решил проверить, так ли это, оставив комментарий под ней, затем ушёл на другой раздел OpenVK. Под этой же записью появился новый комментарий, который был ответом на моё сообщение. Уведомление в «Моих Ответах» не появилось, всплывающее в углу сообщение тоже.
UPD: упоминания [тоже](https://openvk.su/wall6670_184).
От браузера не зависит. | 1.0 | Не приходят уведомления об лайке на собственный комментарий/упоминании на чужой стене или в группе - Недавняя [запись](https://openvk.su/wall-1_135) говорит, что вернулись уведомления. Решил проверить, так ли это, оставив комментарий под ней, затем ушёл на другой раздел OpenVK. Под этой же записью появился новый комментарий, который был ответом на моё сообщение. Уведомление в «Моих Ответах» не появилось, всплывающее в углу сообщение тоже.
UPD: упоминания [тоже](https://openvk.su/wall6670_184).
От браузера не зависит. | priority | не приходят уведомления об лайке на собственный комментарий упоминании на чужой стене или в группе недавняя говорит что вернулись уведомления решил проверить так ли это оставив комментарий под ней затем ушёл на другой раздел openvk под этой же записью появился новый комментарий который был ответом на моё сообщение уведомление в «моих ответах» не появилось всплывающее в углу сообщение тоже upd упоминания от браузера не зависит | 1 |
534,584 | 15,630,025,808 | IssuesEvent | 2021-03-22 01:07:27 | ucb-rit/coldfront | https://api.github.com/repos/ucb-rit/coldfront | opened | Add a cron job to remind admins of pending cluster access requests | enhancement low priority | If any cluster access requests are pending, send a reminder email to admins. This should run every X hours, for some reasonable X. | 1.0 | Add a cron job to remind admins of pending cluster access requests - If any cluster access requests are pending, send a reminder email to admins. This should run every X hours, for some reasonable X. | priority | add a cron job to remind admins of pending cluster access requests if any cluster access requests are pending send a reminder email to admins this should run every x hours for some reasonable x | 1 |
711,794 | 24,475,592,587 | IssuesEvent | 2022-10-08 05:43:51 | darrylsyms/fretwise-app-private | https://api.github.com/repos/darrylsyms/fretwise-app-private | closed | Video "tap to fast-forward / rewind" issue | enhancement low-priority | When opening the video, it opens in the iOS playback which removes the "tap to fast-forward/rewind" feature.
I would like for the player to keep its tapping functions.
See video for issue demonstration: https://www.dropbox.com/s/y71mt6baye9683n/RPReplay_Final1646971042.MP4?dl=0 | 1.0 | Video "tap to fast-forward / rewind" issue - When opening the video, it opens in the iOS playback which removes the "tap to fast-forward/rewind" feature.
I would like for the player to keep its tapping functions.
See video for issue demonstration: https://www.dropbox.com/s/y71mt6baye9683n/RPReplay_Final1646971042.MP4?dl=0 | priority | video tap to fast forward rewind issue when opening the video it opens in the ios playback which removes the tap to fast forward rewind feature i would like for the player to keep its tapping functions see video for issue demonstration | 1 |
354,074 | 10,562,611,021 | IssuesEvent | 2019-10-04 18:46:13 | iotexproject/iotex-core | https://api.github.com/repos/iotexproject/iotex-core | closed | execution amount can not be set to empty | bug low priority | unmarshal proto set "" to bigInt(0)
marshal proto then set bigInt(0) to "0"
then sig verification will be fail | 1.0 | execution amount can not be set to empty - unmarshal proto set "" to bigInt(0)
marshal proto then set bigInt(0) to "0"
then sig verification will be fail | priority | execution amount can not be set to empty unmarshal proto set to bigint marshal proto then set bigint to then sig verification will be fail | 1 |
682,599 | 23,349,440,263 | IssuesEvent | 2022-08-09 21:32:42 | Sequel-Ace/Sequel-Ace | https://api.github.com/repos/Sequel-Ace/Sequel-Ace | closed | layout glitch in import screen | Bug PR Welcome Low priority | <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Please fill out ALL ITEMS in the bug report. We simply can't fix bugs if we don't have all the information -->
- Sequel Ace Version (including build number): Version 3.3.3 Build 3034
- Sequel Ace Source (App Store/GitHub/Homebrew): Probably homebrew iirc
- macOS Version: 10.14.6 (18G9028)
- Processor Type (Intel/Apple): Intel
- MySQL Version: mariadb 10.3 (docker)
- macOS Localization: en-au
**Is Issue Present in [Latest Beta](https://github.com/Sequel-Ace/Sequel-Ace/releases)?**
<!-- Please try the [latest beta](https://github.com/Sequel-Ace/Sequel-Ace/releases). If the latest beta works, we've fixed the issue already and will get the fix out soon. There's no need to open a new issue for a bug already fixed in the latest beta. -->
**Description**
Hitting import puts the controls over the top of the browsable content area

**Steps To Reproduce**
1. make a database
2. file > import
**Expected Behaviour**
<!-- A clear and concise description of what you expected to happen. -->
position of select boxes should be in its own area that is underneath the browsable field area
**Related Issues**
<!-- Please search [Issues on GitHub](https://github.com/Sequel-Ace/Sequel-Ace/issues?q=is%3Aissue), including Closed Issues, for the bug. If the bug has been fixed and is pending release, there may already be a closed issue for it. If an existing report of your issue already exists, please don't open a new issue and refer to the existing issue. -->
**Additional Context**
<!-- Add any other context about the problem here. -->
<!-- Please ATTACH any SCREENSHOTS AND CRASH LOGS that might help investigating and addressing the issue. -->
<!-- Please please please attach crash logs (as zip files if needed) and don't paste the content of the crash itself, it's much easier for us to work with files than massive text blocks -->
| 1.0 | layout glitch in import screen - <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Please fill out ALL ITEMS in the bug report. We simply can't fix bugs if we don't have all the information -->
- Sequel Ace Version (including build number): Version 3.3.3 Build 3034
- Sequel Ace Source (App Store/GitHub/Homebrew): Probably homebrew iirc
- macOS Version: 10.14.6 (18G9028)
- Processor Type (Intel/Apple): Intel
- MySQL Version: mariadb 10.3 (docker)
- macOS Localization: en-au
**Is Issue Present in [Latest Beta](https://github.com/Sequel-Ace/Sequel-Ace/releases)?**
<!-- Please try the [latest beta](https://github.com/Sequel-Ace/Sequel-Ace/releases). If the latest beta works, we've fixed the issue already and will get the fix out soon. There's no need to open a new issue for a bug already fixed in the latest beta. -->
**Description**
Hitting import puts the controls over the top of the browsable content area

**Steps To Reproduce**
1. make a database
2. file > import
**Expected Behaviour**
<!-- A clear and concise description of what you expected to happen. -->
position of select boxes should be in its own area that is underneath the browsable field area
**Related Issues**
<!-- Please search [Issues on GitHub](https://github.com/Sequel-Ace/Sequel-Ace/issues?q=is%3Aissue), including Closed Issues, for the bug. If the bug has been fixed and is pending release, there may already be a closed issue for it. If an existing report of your issue already exists, please don't open a new issue and refer to the existing issue. -->
**Additional Context**
<!-- Add any other context about the problem here. -->
<!-- Please ATTACH any SCREENSHOTS AND CRASH LOGS that might help investigating and addressing the issue. -->
<!-- Please please please attach crash logs (as zip files if needed) and don't paste the content of the crash itself, it's much easier for us to work with files than massive text blocks -->
| priority | layout glitch in import screen sequel ace version including build number version build sequel ace source app store github homebrew probably homebrew iirc macos version processor type intel apple intel mysql version mariadb docker macos localization en au is issue present in description hitting import puts the controls over the top of the browsable content area steps to reproduce make a database file import expected behaviour position of select boxes should be in its own area that is underneath the browsable field area related issues additional context | 1 |
706,600 | 24,278,783,869 | IssuesEvent | 2022-09-28 15:39:11 | AY2223S1-CS2103T-W13-1/tp | https://api.github.com/repos/AY2223S1-CS2103T-W13-1/tp | opened | Add 'Add Tag' command | priority.low | As a tutor, I can create new labels to tag my students with so that I can better differentiate the students. | 1.0 | Add 'Add Tag' command - As a tutor, I can create new labels to tag my students with so that I can better differentiate the students. | priority | add add tag command as a tutor i can create new labels to tag my students with so that i can better differentiate the students | 1 |
33,218 | 2,763,142,723 | IssuesEvent | 2015-04-29 06:54:05 | sabeenabusali/MyDesk | https://api.github.com/repos/sabeenabusali/MyDesk | closed | Android App: unable to dismiss keyboard after searching in my desk | Android Phone bug Low Priority Need to verify | <h4> Steps to reproduce
==================
1. Tap on search bar
2. search a keyword
3. Clear the keyword using backspace
4. Now cancel search button is gone and no way to dismiss the keyboad. Only way is using phone's back button
<h4> Issue
=====
Cancel search button is gone and no way to dismiss the keyboad. Only way is using phone's back button
<h4> Expected results
=================
Cancel button remains to dismiss the keyboard
| 1.0 | Android App: unable to dismiss keyboard after searching in my desk - <h4> Steps to reproduce
==================
1. Tap on search bar
2. search a keyword
3. Clear the keyword using backspace
4. Now cancel search button is gone and no way to dismiss the keyboad. Only way is using phone's back button
<h4> Issue
=====
Cancel search button is gone and no way to dismiss the keyboad. Only way is using phone's back button
<h4> Expected results
=================
Cancel button remains to dismiss the keyboard
| priority | android app unable to dismiss keyboard after searching in my desk steps to reproduce tap on search bar search a keyword clear the keyword using backspace now cancel search button is gone and no way to dismiss the keyboad only way is using phone s back button issue cancel search button is gone and no way to dismiss the keyboad only way is using phone s back button expected results cancel button remains to dismiss the keyboard | 1 |
74,208 | 3,436,275,551 | IssuesEvent | 2015-12-12 07:53:22 | devspace/devspace | https://api.github.com/repos/devspace/devspace | closed | After closing, window don't show up again | bug low priority | In the Mac app, if i click on the close button the app close and it don't open again when i click on the icon at the Dock. I need to quit the app and open it again.
The application is open but i cant see the window. | 1.0 | After closing, window don't show up again - In the Mac app, if i click on the close button the app close and it don't open again when i click on the icon at the Dock. I need to quit the app and open it again.
The application is open but i cant see the window. | priority | after closing window don t show up again in the mac app if i click on the close button the app close and it don t open again when i click on the icon at the dock i need to quit the app and open it again the application is open but i cant see the window | 1 |
663,057 | 22,160,526,951 | IssuesEvent | 2022-06-04 12:48:06 | chaotic-aur/packages | https://api.github.com/repos/chaotic-aur/packages | closed | [Request] Mullvad VPN | request:new-pkg waiting:issuer-feedback priority:low | ### Link to the package(s) in the AUR
https://aur.archlinux.org/packages/mullvad-vpn
https://aur.archlinux.org/packages/mullvad-vpn-cli
### Utility this package has for you
This is the Mullvad vpn client
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
No, but for a few.
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [ ] Yes
### Does the package's license allow redistributing it?
YES!
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
_No response_ | 1.0 | [Request] Mullvad VPN - ### Link to the package(s) in the AUR
https://aur.archlinux.org/packages/mullvad-vpn
https://aur.archlinux.org/packages/mullvad-vpn-cli
### Utility this package has for you
This is the Mullvad vpn client
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
No, but for a few.
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [ ] Yes
### Does the package's license allow redistributing it?
YES!
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
_No response_ | priority | mullvad vpn link to the package s in the aur utility this package has for you this is the mullvad vpn client do you consider the package s to be useful for every chaotic aur user no but for a few do you consider the package to be useful for feature testing preview yes have you tested if the package builds in a clean chroot yes does the package s license allow redistributing it yes have you searched the issues to ensure this request is unique yes have you read the readme to ensure this package is not banned yes more information no response | 1 |
71,930 | 3,369,946,299 | IssuesEvent | 2015-11-23 12:59:04 | blackwatchint/blackwatchint | https://api.github.com/repos/blackwatchint/blackwatchint | opened | British SL and FL have radio backpacks. | Low Priority Template | On the loadout boards, the British squad leader and fireteam leader spawn with radio backpacks. Should be non-radio backpacks. | 1.0 | British SL and FL have radio backpacks. - On the loadout boards, the British squad leader and fireteam leader spawn with radio backpacks. Should be non-radio backpacks. | priority | british sl and fl have radio backpacks on the loadout boards the british squad leader and fireteam leader spawn with radio backpacks should be non radio backpacks | 1 |
443,491 | 12,794,925,409 | IssuesEvent | 2020-07-02 07:52:12 | PazerOP/tf2_bot_detector | https://api.github.com/repos/PazerOP/tf2_bot_detector | closed | Non-ASCII characters displayed as question marks | Priority: Low Type: Enhancement | Cyrillic letters (and probably other non-ASCII) are displayed in the logs as question marks; most probably a font issue.
Here's a screenshot from the game:

Compare that to a screenshot from the program:

| 1.0 | Non-ASCII characters displayed as question marks - Cyrillic letters (and probably other non-ASCII) are displayed in the logs as question marks; most probably a font issue.
Here's a screenshot from the game:

Compare that to a screenshot from the program:

| priority | non ascii characters displayed as question marks cyrillic letters and probably other non ascii are displayed in the logs as question marks most probably a font issue here s a screenshot from the game compare that to a screenshot from the program | 1 |
407,476 | 11,914,086,208 | IssuesEvent | 2020-03-31 13:05:18 | parzh/retryable | https://api.github.com/repos/parzh/retryable | opened | Add built-in retry delays | Change: minor Domain: main Pending: unclear Priority: low Type: improvement | Allow using predefined retry delays / strategies, calculating the amount of milliseconds internally.
### Exponential backoff
> See [Wiki](https://en.wikipedia.org/wiki/Exponential_backoff) and [AWS](https://docs.aws.amazon.com/general/latest/gr/api-retries.html)
- keyword is `"exponential"` (TBD);
- delay formula is `2 ** retryCount * 100` milliseconds;
#### Usage
```ts
await retryable((resolve, reject, retry) => {
retry.after("exponential"); // retries after: 100 msec, 200 msec, 0.4 sec, 0.8 sec, 1.6 sec etc.
});
```
> TBD: in the next snippet, error or coercion?
```ts
await retryable((resolve, reject, retry) => {
retry.after("100"); // Error: unknown retry strategy "100"
});
await retryable((resolve, reject, retry) => {
retry.after("100"); // always retries after 100 msec, same as `retry.after(100);`
});
``` | 1.0 | Add built-in retry delays - Allow using predefined retry delays / strategies, calculating the amount of milliseconds internally.
### Exponential backoff
> See [Wiki](https://en.wikipedia.org/wiki/Exponential_backoff) and [AWS](https://docs.aws.amazon.com/general/latest/gr/api-retries.html)
- keyword is `"exponential"` (TBD);
- delay formula is `2 ** retryCount * 100` milliseconds;
#### Usage
```ts
await retryable((resolve, reject, retry) => {
retry.after("exponential"); // retries after: 100 msec, 200 msec, 0.4 sec, 0.8 sec, 1.6 sec etc.
});
```
> TBD: in the next snippet, error or coercion?
```ts
await retryable((resolve, reject, retry) => {
retry.after("100"); // Error: unknown retry strategy "100"
});
await retryable((resolve, reject, retry) => {
retry.after("100"); // always retries after 100 msec, same as `retry.after(100);`
});
``` | priority | add built in retry delays allow using predefined retry delays strategies calculating the amount of milliseconds internally exponential backoff see and keyword is exponential tbd delay formula is retrycount milliseconds usage ts await retryable resolve reject retry retry after exponential retries after msec msec sec sec sec etc tbd in the next snippet error or coercion ts await retryable resolve reject retry retry after error unknown retry strategy await retryable resolve reject retry retry after always retries after msec same as retry after | 1 |
197,034 | 6,951,773,319 | IssuesEvent | 2017-12-06 15:29:23 | LinxGem33/Arc-Menu | https://api.github.com/repos/LinxGem33/Arc-Menu | closed | Arc Menu wont open File Manager | low priority | I am running Gnome 3.24 on Manjaro with NVidia GTS 450 graphics card. Arc Menu works wonderfully with the exception of the side panel locations/folders. IE: Home, Documents, Downloads, etc. I will click on one of the locations, the cursor will be busy for a moment, then nothing launches.
Everything else works fine and I can launch FILES or NEMO from the Accessories icon, just not from the side panel. | 1.0 | Arc Menu wont open File Manager - I am running Gnome 3.24 on Manjaro with NVidia GTS 450 graphics card. Arc Menu works wonderfully with the exception of the side panel locations/folders. IE: Home, Documents, Downloads, etc. I will click on one of the locations, the cursor will be busy for a moment, then nothing launches.
Everything else works fine and I can launch FILES or NEMO from the Accessories icon, just not from the side panel. | priority | arc menu wont open file manager i am running gnome on manjaro with nvidia gts graphics card arc menu works wonderfully with the exception of the side panel locations folders ie home documents downloads etc i will click on one of the locations the cursor will be busy for a moment then nothing launches everything else works fine and i can launch files or nemo from the accessories icon just not from the side panel | 1 |
41,851 | 2,869,085,947 | IssuesEvent | 2015-06-05 23:13:13 | dart-lang/polymer-dart | https://api.github.com/repos/dart-lang/polymer-dart | opened | Build should detect if a main is missing | bug PolymerMilestone-Next Priority-Low | <a href="https://github.com/sigmundch"><img src="https://avatars.githubusercontent.com/u/2049220?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [sigmundch](https://github.com/sigmundch)**
_Originally opened as dart-lang/sdk#19527_
----
Why write
<script ...>export 'package:polymer/init.dart';</script>
when pub-serve could do that for you?
| 1.0 | Build should detect if a main is missing - <a href="https://github.com/sigmundch"><img src="https://avatars.githubusercontent.com/u/2049220?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [sigmundch](https://github.com/sigmundch)**
_Originally opened as dart-lang/sdk#19527_
----
Why write
<script ...>export 'package:polymer/init.dart';</script>
when pub-serve could do that for you?
| priority | build should detect if a main is missing issue by originally opened as dart lang sdk why write lt script gt export package polymer init dart lt script gt when pub serve could do that for you | 1 |
298,444 | 9,200,284,322 | IssuesEvent | 2019-03-07 16:43:09 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | QgsProjectionSelector::getCurrentLongAttribute has incomplete return path | Category: Projection Support Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report | ---
Author Name: **Mateusz Loskot -** (Mateusz Loskot -)
Original Redmine Issue: 10, https://issues.qgis.org/issues/10
Original Assignee: Gary Sherman
---
In member function *QgsProjectionSelector::getCurrentLongAttribute*, file qgis/src/widgets/projectionselector/qgsprojectionselector.cpp(414),
not all control paths return a value
Possible problem is that return value of long type may be uninitialized - invalid.
| 1.0 | QgsProjectionSelector::getCurrentLongAttribute has incomplete return path - ---
Author Name: **Mateusz Loskot -** (Mateusz Loskot -)
Original Redmine Issue: 10, https://issues.qgis.org/issues/10
Original Assignee: Gary Sherman
---
In member function *QgsProjectionSelector::getCurrentLongAttribute*, file qgis/src/widgets/projectionselector/qgsprojectionselector.cpp(414),
not all control paths return a value
Possible problem is that return value of long type may be uninitialized - invalid.
| priority | qgsprojectionselector getcurrentlongattribute has incomplete return path author name mateusz loskot mateusz loskot original redmine issue original assignee gary sherman in member function qgsprojectionselector getcurrentlongattribute file qgis src widgets projectionselector qgsprojectionselector cpp not all control paths return a value possible problem is that return value of long type may be uninitialized invalid | 1 |
357,002 | 10,600,572,308 | IssuesEvent | 2019-10-10 10:20:27 | FStarLang/FStar | https://api.github.com/repos/FStarLang/FStar | opened | Invisible implicit on emacs? | area/usability component/interactive-mode component/printer priority/low | Somehow the output in the `*fstar:doc*` buffer does not show the implicit 42.
```fstar
module TT
let f #x y = x + y
let g y = f #42 y
#set-options "--print_implicits"
(* C-c C-s C-p g:
TT.g
/home/guido/..../TT.fst(5,4-5,5)
Type
y: int -> Prims.Tot int
Definition
[@ ]
visible let g : y: Prims.int -> Prims.Tot Prims.int = fun y -> TT.f y
*)
let ff x = assert_norm (g x == x + 42)
```
There is an extra space between `f` and `y`, though...
Printing that term works fine from the CLI, so maybe fstar-mode is at fault. | 1.0 | Invisible implicit on emacs? - Somehow the output in the `*fstar:doc*` buffer does not show the implicit 42.
```fstar
module TT
let f #x y = x + y
let g y = f #42 y
#set-options "--print_implicits"
(* C-c C-s C-p g:
TT.g
/home/guido/..../TT.fst(5,4-5,5)
Type
y: int -> Prims.Tot int
Definition
[@ ]
visible let g : y: Prims.int -> Prims.Tot Prims.int = fun y -> TT.f y
*)
let ff x = assert_norm (g x == x + 42)
```
There is an extra space between `f` and `y`, though...
Printing that term works fine from the CLI, so maybe fstar-mode is at fault. | priority | invisible implicit on emacs somehow the output in the fstar doc buffer does not show the implicit fstar module tt let f x y x y let g y f y set options print implicits c c c s c p g tt g home guido tt fst type y int prims tot int definition visible let g y prims int prims tot prims int fun y tt f y let ff x assert norm g x x there is an extra space between f and y though printing that term works fine from the cli so maybe fstar mode is at fault | 1 |
776,036 | 27,244,244,172 | IssuesEvent | 2023-02-21 23:48:12 | nonamecrackers2/crackers-wither-storm-mod | https://api.github.com/repos/nonamecrackers2/crackers-wither-storm-mod | closed | [pre] skeleton ai does not stop. | bug 1.16.5 1.18.2 low priority 1.19 | After the wither storm has been killed the skeletons keep on shooting at where the wither storm once was.
i do not know if other mob AIs keep doing this but i will test it out.
| 1.0 | [pre] skeleton ai does not stop. - After the wither storm has been killed the skeletons keep on shooting at where the wither storm once was.
i do not know if other mob AIs keep doing this but i will test it out.
| priority | skeleton ai does not stop after the wither storm has been killed the skeletons keep on shooting at where the wither storm once was i do not know if other mob ais keep doing this but i will test it out | 1 |
542,627 | 15,863,806,039 | IssuesEvent | 2021-04-08 13:11:30 | FLAMEGPU/FLAMEGPU2 | https://api.github.com/repos/FLAMEGPU/FLAMEGPU2 | opened | Prevent absolute paths being embedded in binaries | Priority: Low cmake | Debug info and the use of `__FILE__` embed absolute paths into binary files, which is probably bad if we end up distributing any pre-compiled files.
GCC/clang support `-fdebug-prefix-map=OLD=NEW` as a way of changing paths in debug info.
More recent GCC / Clang also support modifying the behaviour of `__FILE__` via `-fmacro-prefix-map=OLD=NEW`. `-ffile-prefix-map=OLD=NEW` can be used to set both these options.
[source](https://reproducible-builds.org/docs/build-path/)
I am unsure if NVCC / MSVC will have comparible options (I've not yet looked). This might include use of `-lineinfo/-G` in NVCC.
Worth checking to see if Cmake has a feature for these. | 1.0 | Prevent absolute paths being embedded in binaries - Debug info and the use of `__FILE__` embed absolute paths into binary files, which is probably bad if we end up distributing any pre-compiled files.
GCC/clang support `-fdebug-prefix-map=OLD=NEW` as a way of changing paths in debug info.
More recent GCC / Clang also support modifying the behaviour of `__FILE__` via `-fmacro-prefix-map=OLD=NEW`. `-ffile-prefix-map=OLD=NEW` can be used to set both these options.
[source](https://reproducible-builds.org/docs/build-path/)
I am unsure if NVCC / MSVC will have comparible options (I've not yet looked). This might include use of `-lineinfo/-G` in NVCC.
Worth checking to see if Cmake has a feature for these. | priority | prevent absolute paths being embedded in binaries debug info and the use of file embed absolute paths into binary files which is probably bad if we end up distributing any pre compiled files gcc clang support fdebug prefix map old new as a way of changing paths in debug info more recent gcc clang also support modifying the behaviour of file via fmacro prefix map old new ffile prefix map old new can be used to set both these options i am unsure if nvcc msvc will have comparible options i ve not yet looked this might include use of lineinfo g in nvcc worth checking to see if cmake has a feature for these | 1 |
225,158 | 7,478,840,938 | IssuesEvent | 2018-04-04 13:01:11 | EvictionLab/eviction-maps | https://api.github.com/repos/EvictionLab/eviction-maps | closed | IE / Edge: Set focus element when dismissing location | low priority | When dismissing an element via keyboard in IE / Edge, focus is reset to the beginning of the document and requires you to tab through the whole page to get back to where you were. | 1.0 | IE / Edge: Set focus element when dismissing location - When dismissing an element via keyboard in IE / Edge, focus is reset to the beginning of the document and requires you to tab through the whole page to get back to where you were. | priority | ie edge set focus element when dismissing location when dismissing an element via keyboard in ie edge focus is reset to the beginning of the document and requires you to tab through the whole page to get back to where you were | 1 |
289,294 | 8,868,563,743 | IssuesEvent | 2019-01-11 00:34:00 | rezqio/issues | https://api.github.com/repos/rezqio/issues | closed | Changing password via Account settings should require new pass twice | enhancement frontend low priority | 
Current change password form is unacceptable. Easy to make a typo and get locked out of your account.
For example, the github form looks like this:

| 1.0 | Changing password via Account settings should require new pass twice - 
Current change password form is unacceptable. Easy to make a typo and get locked out of your account.
For example, the github form looks like this:

| priority | changing password via account settings should require new pass twice current change password form is unacceptable easy to make a typo and get locked out of your account for example the github form looks like this | 1 |
369,714 | 10,916,721,060 | IssuesEvent | 2019-11-21 13:54:27 | svsticky/constipated-koala | https://api.github.com/repos/svsticky/constipated-koala | closed | Refactoring views | enhancement 🐢 low priority 🐢 | ### Search
Search in members, activities, and groups. Creating a new search result view, with rows and an icon infront with the type of the record. A google like search view!
### Logging
Filterable, better logging overall, more links to relevant objects
### iDeal
Make it filterable and better descriptions
- [x] ideal view
- [x] settings
- [x] ideal
- [ ] search
- [ ] logging
| 1.0 | Refactoring views - ### Search
Search in members, activities, and groups. Creating a new search result view, with rows and an icon infront with the type of the record. A google like search view!
### Logging
Filterable, better logging overall, more links to relevant objects
### iDeal
Make it filterable and better descriptions
- [x] ideal view
- [x] settings
- [x] ideal
- [ ] search
- [ ] logging
| priority | refactoring views search search in members activities and groups creating a new search result view with rows and an icon infront with the type of the record a google like search view logging filterable better logging overall more links to relevant objects ideal make it filterable and better descriptions ideal view settings ideal search logging | 1 |
403,569 | 11,843,138,163 | IssuesEvent | 2020-03-24 01:18:56 | open-learning-exchange/planet | https://api.github.com/repos/open-learning-exchange/planet | opened | ReportsMyPlanet & LogsMyPlanet: Spinner while data loads | enhancement low priority | ### Current Behavior
No data is shown while the query on the database is running.
### Desired Behavior
To clearly indicate to the user that something is happening in the background, the spinner should be shown while the data is loading.
Note that `LogsMyPlanet` is found at `/logs/myplanet` which is not linked to within the app currently (by design - it's a "hidden" component). | 1.0 | ReportsMyPlanet & LogsMyPlanet: Spinner while data loads - ### Current Behavior
No data is shown while the query on the database is running.
### Desired Behavior
To clearly indicate to the user that something is happening in the background, the spinner should be shown while the data is loading.
Note that `LogsMyPlanet` is found at `/logs/myplanet` which is not linked to within the app currently (by design - it's a "hidden" component). | priority | reportsmyplanet logsmyplanet spinner while data loads current behavior no data is shown while the query on the database is running desired behavior to clearly indicate to the user that something is happening in the background the spinner should be shown while the data is loading note that logsmyplanet is found at logs myplanet which is not linked to within the app currently by design it s a hidden component | 1 |
306,377 | 9,392,449,974 | IssuesEvent | 2019-04-07 00:44:57 | bigbluebutton/bigbluebutton | https://api.github.com/repos/bigbluebutton/bigbluebutton | closed | Close All button for webcams | Enhancement Low Priority Video | Originally reported on Google Code with ID 1703
```
When there are many webcams open, a user may want to close all the webcams.
The could be done as a 'close all webcam' button in the toolbar, or extend the webcam
button to have a drop-down menu.
```
Reported by `ffdixon` on 2014-01-09 17:37:54
| 1.0 | Close All button for webcams - Originally reported on Google Code with ID 1703
```
When there are many webcams open, a user may want to close all the webcams.
The could be done as a 'close all webcam' button in the toolbar, or extend the webcam
button to have a drop-down menu.
```
Reported by `ffdixon` on 2014-01-09 17:37:54
| priority | close all button for webcams originally reported on google code with id when there are many webcams open a user may want to close all the webcams the could be done as a close all webcam button in the toolbar or extend the webcam button to have a drop down menu reported by ffdixon on | 1 |
742,715 | 25,867,087,373 | IssuesEvent | 2022-12-13 21:56:40 | jesus-collective/mobile | https://api.github.com/repos/jesus-collective/mobile | closed | Upload videos directly | Low Priority resources | When linking the url to the KAYC server, the platform won't let the user download the files because beta.jesuscollective.com is on https, but the server is not.
GeorgeBellTMH talked about making it so that the admin user can upload the file directly to the backend, rather than sending it to the server url.
I'm file with this approach. However, using urls makes the admin process much simpler.
┆Issue is synchronized with this [Wrike Task](https://www.wrike.com/open.htm?id=713129865)
| 1.0 | Upload videos directly - When linking the url to the KAYC server, the platform won't let the user download the files because beta.jesuscollective.com is on https, but the server is not.
GeorgeBellTMH talked about making it so that the admin user can upload the file directly to the backend, rather than sending it to the server url.
I'm file with this approach. However, using urls makes the admin process much simpler.
┆Issue is synchronized with this [Wrike Task](https://www.wrike.com/open.htm?id=713129865)
| priority | upload videos directly when linking the url to the kayc server the platform won t let the user download the files because beta jesuscollective com is on https but the server is not georgebelltmh talked about making it so that the admin user can upload the file directly to the backend rather than sending it to the server url i m file with this approach however using urls makes the admin process much simpler ┆issue is synchronized with this | 1 |
361,066 | 10,703,697,136 | IssuesEvent | 2019-10-24 10:04:44 | mui-org/material-ui | https://api.github.com/repos/mui-org/material-ui | closed | [Demo] tween value change on slider | component: Slider enhancement low priority | <!-- Provide a general summary of the feature in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! ❤️
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Summary 💡
I have a requirement to animate value changes on the slider.
In my app I have a Slider that allows the user to select a value, but also two buttons that set predefined values.
Slider value is bind to state, both buttons set value using `setState`:
```
import React from "react";
import Typography from "@material-ui/core/Typography";
import Slider from "@material-ui/core/Slider";
import Button from "@material-ui/core/Button";
class DiscreteSlider extends React.Component {
constructor(props) {
super(props);
this.state = {
value: 20
};
}
render() {
return (
<div>
<Typography id="discrete-slider" gutterBottom>
Temperature
</Typography>
<Slider
value={this.state.value}
valueLabelDisplay="auto"
step={1}
min={0}
max={100}
onChange={this.updateValue}
/>
<Button
variant="contained"
color="primary"
onClick={() => {
this.setState({ value: 90 });
}}
>
Set to 90
</Button>
<Button
variant="contained"
color="secondary"
onClick={() => {
this.setState({ value: 10 });
}}
>
Set to 10
</Button>
</div>
);
}
}
export default DiscreteSlider;
```
When I click one of the buttons the slider change the value immediately, I'd like to have a smooth transition (tween).
I've tried doing this with CSS:
```
.MuiSlider-thumb:not(.MuiSlider-active) {
transition: left 1s ease-in;
}
.MuiSlider-track {
transition: width 1s ease-in;
}
```
This is the (almost working) demo: https://codesandbox.io/s/material-slider-demo-with-animation-6bbj0
but when I change the value using the mouse, the track is left behind
I'd like to ask for demo showing smooth transition of value on slider. | 1.0 | [Demo] tween value change on slider - <!-- Provide a general summary of the feature in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! ❤️
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Summary 💡
I have a requirement to animate value changes on the slider.
In my app I have a Slider that allows the user to select a value, but also two buttons that set predefined values.
Slider value is bind to state, both buttons set value using `setState`:
```
import React from "react";
import Typography from "@material-ui/core/Typography";
import Slider from "@material-ui/core/Slider";
import Button from "@material-ui/core/Button";
class DiscreteSlider extends React.Component {
constructor(props) {
super(props);
this.state = {
value: 20
};
}
render() {
return (
<div>
<Typography id="discrete-slider" gutterBottom>
Temperature
</Typography>
<Slider
value={this.state.value}
valueLabelDisplay="auto"
step={1}
min={0}
max={100}
onChange={this.updateValue}
/>
<Button
variant="contained"
color="primary"
onClick={() => {
this.setState({ value: 90 });
}}
>
Set to 90
</Button>
<Button
variant="contained"
color="secondary"
onClick={() => {
this.setState({ value: 10 });
}}
>
Set to 10
</Button>
</div>
);
}
}
export default DiscreteSlider;
```
When I click one of the buttons the slider change the value immediately, I'd like to have a smooth transition (tween).
I've tried doing this with CSS:
```
.MuiSlider-thumb:not(.MuiSlider-active) {
transition: left 1s ease-in;
}
.MuiSlider-track {
transition: width 1s ease-in;
}
```
This is the (almost working) demo: https://codesandbox.io/s/material-slider-demo-with-animation-6bbj0
but when I change the value using the mouse, the track is left behind
I'd like to ask for demo showing smooth transition of value on slider. | priority | tween value change on slider thank you very much for contributing to material ui by creating an issue ❤️ to avoid duplicate issues we ask you to check off the following list i have searched the of this repository and believe that this is not a duplicate summary 💡 i have a requirement to animate value changes on the slider in my app i have a slider that allows the user to select a value but also two buttons that set predefined values slider value is bind to state both buttons set value using setstate import react from react import typography from material ui core typography import slider from material ui core slider import button from material ui core button class discreteslider extends react component constructor props super props this state value render return temperature slider value this state value valuelabeldisplay auto step min max onchange this updatevalue button variant contained color primary onclick this setstate value set to button variant contained color secondary onclick this setstate value set to export default discreteslider when i click one of the buttons the slider change the value immediately i d like to have a smooth transition tween i ve tried doing this with css muislider thumb not muislider active transition left ease in muislider track transition width ease in this is the almost working demo but when i change the value using the mouse the track is left behind i d like to ask for demo showing smooth transition of value on slider | 1 |
161,437 | 6,130,178,865 | IssuesEvent | 2017-06-24 02:31:41 | Zephyrai/Astra-Project | https://api.github.com/repos/Zephyrai/Astra-Project | closed | calculateSize method of planetCore class is too hardcoded. | incompatibility low priority | The calculateSize method has too many hardcoded elements, making it potentially difficult to expand upon or alter at a future time.
Would be possibly worth working on making it a little more modular. | 1.0 | calculateSize method of planetCore class is too hardcoded. - The calculateSize method has too many hardcoded elements, making it potentially difficult to expand upon or alter at a future time.
Would be possibly worth working on making it a little more modular. | priority | calculatesize method of planetcore class is too hardcoded the calculatesize method has too many hardcoded elements making it potentially difficult to expand upon or alter at a future time would be possibly worth working on making it a little more modular | 1 |
235,817 | 7,743,083,151 | IssuesEvent | 2018-05-29 11:41:15 | TykTechnologies/tyk | https://api.github.com/repos/TykTechnologies/tyk | closed | Coprocess auth panics if session is set but token is empty | Priority: Low bug | **Do you want to request a *feature* or report a *bug*?**
bug
**What is the current behavior?**
I believe this is more a missing documentation, but can be fixed on code level. Coprocess auth middleware should initialize session only when it also sets non-empty token to metadata. Session initialization itself happens when you set one of the session fields to non zero value, which is not obvious. And if you first set session, and later in the code do not set token, you will see a panic. Fix itself is pretty easy, move session initialization to the same level as token initialization, but it is not that clear from docs.
I propose to add easy fix and check for an empty token case.
**What is the expected behavior?**
It should work in any combination of session and token.
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem**
See above
**Which versions of Tyk affected by this issue? Did this work in previous versions of Tyk?**
All | 1.0 | Coprocess auth panics if session is set but token is empty - **Do you want to request a *feature* or report a *bug*?**
bug
**What is the current behavior?**
I believe this is more a missing documentation, but can be fixed on code level. Coprocess auth middleware should initialize session only when it also sets non-empty token to metadata. Session initialization itself happens when you set one of the session fields to non zero value, which is not obvious. And if you first set session, and later in the code do not set token, you will see a panic. Fix itself is pretty easy, move session initialization to the same level as token initialization, but it is not that clear from docs.
I propose to add easy fix and check for an empty token case.
**What is the expected behavior?**
It should work in any combination of session and token.
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem**
See above
**Which versions of Tyk affected by this issue? Did this work in previous versions of Tyk?**
All | priority | coprocess auth panics if session is set but token is empty do you want to request a feature or report a bug bug what is the current behavior i believe this is more a missing documentation but can be fixed on code level coprocess auth middleware should initialize session only when it also sets non empty token to metadata session initialization itself happens when you set one of the session fields to non zero value which is not obvious and if you first set session and later in the code do not set token you will see a panic fix itself is pretty easy move session initialization to the same level as token initialization but it is not that clear from docs i propose to add easy fix and check for an empty token case what is the expected behavior it should work in any combination of session and token if the current behavior is a bug please provide the steps to reproduce and if possible a minimal demo of the problem see above which versions of tyk affected by this issue did this work in previous versions of tyk all | 1 |
482,677 | 13,911,650,942 | IssuesEvent | 2020-10-20 17:42:08 | arfc/mhtgr350-benchmark | https://api.github.com/repos/arfc/mhtgr350-benchmark | closed | Fix auxiliary.py | Comp:Analysis Difficulty:1-Beginner Priority:4-Low Status:5-In Review Type:Bug | PR #20 had a version of 'auxiliary.py' that had the wrong path of some figures and was missing one function.
This issue can be closed when a PR fixes these issues. | 1.0 | Fix auxiliary.py - PR #20 had a version of 'auxiliary.py' that had the wrong path of some figures and was missing one function.
This issue can be closed when a PR fixes these issues. | priority | fix auxiliary py pr had a version of auxiliary py that had the wrong path of some figures and was missing one function this issue can be closed when a pr fixes these issues | 1 |
287,674 | 8,818,180,797 | IssuesEvent | 2018-12-31 09:36:17 | conan-io/conan | https://api.github.com/repos/conan-io/conan | closed | Add enum for GraphBuilder::_conflicting_references | complex: low priority: high stage: queue type: engineering | After #3055 is merged, function `_conflicting_references` must return an enumerated value (or named variables).
_Originally posted by @jgsogo in https://github.com/conan-io/conan/pull/3055_ | 1.0 | Add enum for GraphBuilder::_conflicting_references - After #3055 is merged, function `_conflicting_references` must return an enumerated value (or named variables).
_Originally posted by @jgsogo in https://github.com/conan-io/conan/pull/3055_ | priority | add enum for graphbuilder conflicting references after is merged function conflicting references must return an enumerated value or named variables originally posted by jgsogo in | 1 |
597,514 | 18,165,610,149 | IssuesEvent | 2021-09-27 14:20:13 | AY2122S1-CS2103T-W12-1/tp | https://api.github.com/repos/AY2122S1-CS2103T-W12-1/tp | opened | As a user, I can transfer my app's data to someone else | type.story priority.low | so that I can access accurate and updated data | 1.0 | As a user, I can transfer my app's data to someone else - so that I can access accurate and updated data | priority | as a user i can transfer my app s data to someone else so that i can access accurate and updated data | 1 |
85,668 | 3,697,337,704 | IssuesEvent | 2016-02-27 16:17:52 | ClaudioMendoncaDesign/open-gazettes-interface | https://api.github.com/repos/ClaudioMendoncaDesign/open-gazettes-interface | closed | Multi-line company details cause misalignment of keys and values | Low priority | See Registered Address and Jurisdiction on
http://claudiomendoncadesign.github.io/open-gazettes-interface/public/gazette-page.html
For now, I'm just putting the Registered Address last to avoid misalignment. | 1.0 | Multi-line company details cause misalignment of keys and values - See Registered Address and Jurisdiction on
http://claudiomendoncadesign.github.io/open-gazettes-interface/public/gazette-page.html
For now, I'm just putting the Registered Address last to avoid misalignment. | priority | multi line company details cause misalignment of keys and values see registered address and jurisdiction on for now i m just putting the registered address last to avoid misalignment | 1 |
324,504 | 9,904,740,782 | IssuesEvent | 2019-06-27 09:51:07 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | Bluetooth Mesh: Periodic Publishing | area: Bluetooth bug priority: low | **Describe the bug**
I am working with bbc_microbit modules, using Bluetooth-Mesh examples from the Bluetooth official website as a base (self provisioning and configuring). I want to set a periodic publishing but the callback function is not being called.
**To Reproduce**
Steps to reproduce the behavior:
```c
static int vend_pub_update(struct bt_mesh_model *mod){
printk("pub_update called \n");
return 0;
}
BT_MESH_MODEL_PUB_DEFINE(vnd_pub, vend_pub_update, 3 + 1);
static struct bt_mesh_model vnd_models[] = {
BT_MESH_MODEL_VND(BT_COMP_ID_LF, MOD_LF, vnd_ops, &vnd_pub, NULL),
};
```
Inside the configuration function:
``` c
struct bt_mesh_cfg_mod_pub pub = {
.addr = GROUP_ADDR,
.app_idx = APP_IDX,
.ttl = DEFAULT_TTL,
.period = BT_MESH_PUB_PERIOD_SEC(5),
};
bt_mesh_cfg_mod_pub_set_vnd(NET_IDX, NODE_ADDR, NODE_ADDR, MOD_LF, BT_COMP_ID_LF, &pub, NULL);
```
Relevant Kernel configs:
```
CONFIG_BT=y
CONFIG_BT_BROADCASTER=y
CONFIG_BT_OBSERVER=y
CONFIG_BT_MESH=y
CONFIG_BT_MESH_RELAY=y
CONFIG_BT_DEBUG_LOG=y
CONFIG_BT_MESH_DEBUG=y
```
**Expected behavior**
Seeing the printk on the callback function (*update) every n seconds (as set on the bt_mesh_cfg_mod_pub .period) in order to update the message to be published
**Impact**
I want to set up an experiment where multiple sensors publish at different/random moments in time. Not having the periodic callbacks complicates the development.
**Environment (please complete the following information):**
- OS: Linux
- Toolchain Zephyr SDK
- Commit: e0943cfaab29100c5212f74aa9f3eb1a4aa58f0b
| 1.0 | Bluetooth Mesh: Periodic Publishing - **Describe the bug**
I am working with bbc_microbit modules, using Bluetooth-Mesh examples from the Bluetooth official website as a base (self provisioning and configuring). I want to set a periodic publishing but the callback function is not being called.
**To Reproduce**
Steps to reproduce the behavior:
```c
static int vend_pub_update(struct bt_mesh_model *mod){
printk("pub_update called \n");
return 0;
}
BT_MESH_MODEL_PUB_DEFINE(vnd_pub, vend_pub_update, 3 + 1);
static struct bt_mesh_model vnd_models[] = {
BT_MESH_MODEL_VND(BT_COMP_ID_LF, MOD_LF, vnd_ops, &vnd_pub, NULL),
};
```
Inside the configuration function:
``` c
struct bt_mesh_cfg_mod_pub pub = {
.addr = GROUP_ADDR,
.app_idx = APP_IDX,
.ttl = DEFAULT_TTL,
.period = BT_MESH_PUB_PERIOD_SEC(5),
};
bt_mesh_cfg_mod_pub_set_vnd(NET_IDX, NODE_ADDR, NODE_ADDR, MOD_LF, BT_COMP_ID_LF, &pub, NULL);
```
Relevant Kernel configs:
```
CONFIG_BT=y
CONFIG_BT_BROADCASTER=y
CONFIG_BT_OBSERVER=y
CONFIG_BT_MESH=y
CONFIG_BT_MESH_RELAY=y
CONFIG_BT_DEBUG_LOG=y
CONFIG_BT_MESH_DEBUG=y
```
**Expected behavior**
Seeing the printk on the callback function (*update) every n seconds (as set on the bt_mesh_cfg_mod_pub .period) in order to update the message to be published
**Impact**
I want to set up an experiment where multiple sensors publish at different/random moments in time. Not having the periodic callbacks complicates the development.
**Environment (please complete the following information):**
- OS: Linux
- Toolchain Zephyr SDK
- Commit: e0943cfaab29100c5212f74aa9f3eb1a4aa58f0b
| priority | bluetooth mesh periodic publishing describe the bug i am working with bbc microbit modules using bluetooth mesh examples from the bluetooth official website as a base self provisioning and configuring i want to set a periodic publishing but the callback function is not being called to reproduce steps to reproduce the behavior c static int vend pub update struct bt mesh model mod printk pub update called n return bt mesh model pub define vnd pub vend pub update static struct bt mesh model vnd models bt mesh model vnd bt comp id lf mod lf vnd ops vnd pub null inside the configuration function c struct bt mesh cfg mod pub pub addr group addr app idx app idx ttl default ttl period bt mesh pub period sec bt mesh cfg mod pub set vnd net idx node addr node addr mod lf bt comp id lf pub null relevant kernel configs config bt y config bt broadcaster y config bt observer y config bt mesh y config bt mesh relay y config bt debug log y config bt mesh debug y expected behavior seeing the printk on the callback function update every n seconds as set on the bt mesh cfg mod pub period in order to update the message to be published impact i want to set up an experiment where multiple sensors publish at different random moments in time not having the periodic callbacks complicates the development environment please complete the following information os linux toolchain zephyr sdk commit | 1 |
822,917 | 30,914,200,905 | IssuesEvent | 2023-08-05 04:17:18 | OpenSIPS/opensips | https://api.github.com/repos/OpenSIPS/opensips | closed | Wrong Cseq on ACK during race with re-Invite | low-priority | I believe this is related to issue #1034
If a re-Invite is received at the same time as the ACK for the initial call setup the ACK gets forwarded with the Cseq of the re-Invite and not the initial Invite. Since the ACK has the wrong Cseq it may cause the call to be dropped/ended, so it is a big inter-op issue.
I haven't seen this affects overlapping requests later in the dialog, but I am not 100% sure it doesn't.
Seems like there may be some underlying Cseq management issues in the dialog module. I don't see (at least, haven't caught) this issue on my 1.11 systems, just 2.2.
Attached is an example capture.
[Overlap_Invite_ACK_Cseq.zip](https://github.com/OpenSIPS/opensips/files/831929/Overlap_Invite_ACK_Cseq.zip)
Opensips Version:
version: opensips 2.2.3 (x86_64/linux)
flags: STATS: On, DISABLE_NAGLE, USE_MCAST, SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-FUTEX-ADAPTIVE_WAIT
ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535
poll method support: poll, epoll_lt, epoll_et, sigio_rt, select.
git revision: 52813f4
main.c compiled on 16:33:40 Mar 7 2017 with gcc 5.2.1 | 1.0 | Wrong Cseq on ACK during race with re-Invite - I believe this is related to issue #1034
If a re-Invite is received at the same time as the ACK for the initial call setup the ACK gets forwarded with the Cseq of the re-Invite and not the initial Invite. Since the ACK has the wrong Cseq it may cause the call to be dropped/ended, so it is a big inter-op issue.
I haven't seen this affects overlapping requests later in the dialog, but I am not 100% sure it doesn't.
Seems like there may be some underlying Cseq management issues in the dialog module. I don't see (at least, haven't caught) this issue on my 1.11 systems, just 2.2.
Attached is an example capture.
[Overlap_Invite_ACK_Cseq.zip](https://github.com/OpenSIPS/opensips/files/831929/Overlap_Invite_ACK_Cseq.zip)
Opensips Version:
version: opensips 2.2.3 (x86_64/linux)
flags: STATS: On, DISABLE_NAGLE, USE_MCAST, SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-FUTEX-ADAPTIVE_WAIT
ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535
poll method support: poll, epoll_lt, epoll_et, sigio_rt, select.
git revision: 52813f4
main.c compiled on 16:33:40 Mar 7 2017 with gcc 5.2.1 | priority | wrong cseq on ack during race with re invite i believe this is related to issue if a re invite is received at the same time as the ack for the initial call setup the ack gets forwarded with the cseq of the re invite and not the initial invite since the ack has the wrong cseq it may cause the call to be dropped ended so it is a big inter op issue i haven t seen this affects overlapping requests later in the dialog but i am not sure it doesn t seems like there may be some underlying cseq management issues in the dialog module i don t see at least haven t caught this issue on my systems just attached is an example capture opensips version version opensips linux flags stats on disable nagle use mcast shm mmap pkg malloc f malloc fast lock futex adaptive wait adaptive wait loops max recv buffer size max listen max uri size buf size poll method support poll epoll lt epoll et sigio rt select git revision main c compiled on mar with gcc | 1 |
309,999 | 9,484,298,130 | IssuesEvent | 2019-04-22 05:53:02 | adsabs/bumblebee | https://api.github.com/repos/adsabs/bumblebee | closed | Return to Classic Form after search - bug or feature? | low priority question | ### Expected Behavior
If I have performed a query using the `Classic Form` and hit `Start New Search`, I would expect to be sent back to the `Classic Form`
### Actual Behavior
The ` Start New Search` sends me to the `Modern Form`. If I come from `ads.harvard.edu`, go to the new ADS (Classic Form) and hit the back button after a search, I leave the new ADS and go back to `ads.harvard.edu`.
### Steps to Reproduce
Do search with `Classic Form` and hit `Start New Search` button. | 1.0 | Return to Classic Form after search - bug or feature? - ### Expected Behavior
If I have performed a query using the `Classic Form` and hit `Start New Search`, I would expect to be sent back to the `Classic Form`
### Actual Behavior
The ` Start New Search` sends me to the `Modern Form`. If I come from `ads.harvard.edu`, go to the new ADS (Classic Form) and hit the back button after a search, I leave the new ADS and go back to `ads.harvard.edu`.
### Steps to Reproduce
Do search with `Classic Form` and hit `Start New Search` button. | priority | return to classic form after search bug or feature expected behavior if i have performed a query using the classic form and hit start new search i would expect to be sent back to the classic form actual behavior the start new search sends me to the modern form if i come from ads harvard edu go to the new ads classic form and hit the back button after a search i leave the new ads and go back to ads harvard edu steps to reproduce do search with classic form and hit start new search button | 1 |
50,346 | 3,006,339,037 | IssuesEvent | 2015-07-27 09:44:27 | Itseez/opencv | https://api.github.com/repos/Itseez/opencv | opened | Connected Components Labeling in CUDA is buggy | affected: 2.4 auto-transferred bug category: gpu (cuda) priority: low | Transferred from http://code.opencv.org/issues/3042
```
|| Andrey Pavlenko on 2013-05-24 15:53
|| Priority: Low
|| Affected: branch '2.4' (2.4-dev)
|| Category: gpu (cuda)
|| Tracker: Bug
|| Difficulty:
|| PR:
|| Platform: x64 / Windows
```
Connected Components Labeling in CUDA is buggy
-----------
```
The attached code results in incorrect image.
Also there is no test for it, if I'm not mistaken...
```
History
-------
##### Vadim Pisarevsky on 2015-05-21 22:19
```
ok, connected component is not the most important function which has to be run on GPU; considering the amount of available support and new Marina's projects, let's lower the priority
- Affected version changed from branch 'master' (2.4.9) to branch
'2.4' (2.4-dev)
- Operating System set to Windows
- HW Platform set to x64
- Priority changed from High to Low
``` | 1.0 | Connected Components Labeling in CUDA is buggy - Transferred from http://code.opencv.org/issues/3042
```
|| Andrey Pavlenko on 2013-05-24 15:53
|| Priority: Low
|| Affected: branch '2.4' (2.4-dev)
|| Category: gpu (cuda)
|| Tracker: Bug
|| Difficulty:
|| PR:
|| Platform: x64 / Windows
```
Connected Components Labeling in CUDA is buggy
-----------
```
The attached code results in incorrect image.
Also there is no test for it, if I'm not mistaken...
```
History
-------
##### Vadim Pisarevsky on 2015-05-21 22:19
```
ok, connected component is not the most important function which has to be run on GPU; considering the amount of available support and new Marina's projects, let's lower the priority
- Affected version changed from branch 'master' (2.4.9) to branch
'2.4' (2.4-dev)
- Operating System set to Windows
- HW Platform set to x64
- Priority changed from High to Low
``` | priority | connected components labeling in cuda is buggy transferred from andrey pavlenko on priority low affected branch dev category gpu cuda tracker bug difficulty pr platform windows connected components labeling in cuda is buggy the attached code results in incorrect image also there is no test for it if i m not mistaken history vadim pisarevsky on ok connected component is not the most important function which has to be run on gpu considering the amount of available support and new marina s projects let s lower the priority affected version changed from branch master to branch dev operating system set to windows hw platform set to priority changed from high to low | 1 |
698,315 | 23,974,013,101 | IssuesEvent | 2022-09-13 10:02:04 | fedora-infra/anitya | https://api.github.com/repos/fedora-infra/anitya | closed | Refactor Backend.get_version | type.dev Low Priority | Hi maintainers,
As a possible refactor suggestion i have something in my mind. While i was developing new backends for anitya over the last two months, i noticed that almost every backend has the exact same `get_version` implementation. Exact number is out of the 31 backends 23 of them has the same implementation for `get_version` method. It's like this:
```python
@classmethod
def get_version(cls, project):
"""Method called to retrieve the latest version of the projects
provided, project that relies on the backend of this plugin.
:arg Project project: a :class:`anitya.db.models.Project` object whose backend
corresponds to the current plugin.
:return: the latest version found upstream
:return type: str
:raise AnityaPluginException: a
:class:`anitya.lib.exceptions.AnityaPluginException` exception
when the version cannot be retrieved correctly
"""
return cls.get_ordered_versions(project)[-1]
```
Why don't we move that implementation to `BaseBackend` class and remove duplication from 23 backends ? That would make source code 1150 lines lesser and avoid duplication.
I would love to hear your opinions about this. | 1.0 | Refactor Backend.get_version - Hi maintainers,
As a possible refactor suggestion i have something in my mind. While i was developing new backends for anitya over the last two months, i noticed that almost every backend has the exact same `get_version` implementation. Exact number is out of the 31 backends 23 of them has the same implementation for `get_version` method. It's like this:
```python
@classmethod
def get_version(cls, project):
"""Method called to retrieve the latest version of the projects
provided, project that relies on the backend of this plugin.
:arg Project project: a :class:`anitya.db.models.Project` object whose backend
corresponds to the current plugin.
:return: the latest version found upstream
:return type: str
:raise AnityaPluginException: a
:class:`anitya.lib.exceptions.AnityaPluginException` exception
when the version cannot be retrieved correctly
"""
return cls.get_ordered_versions(project)[-1]
```
Why don't we move that implementation to `BaseBackend` class and remove duplication from 23 backends ? That would make source code 1150 lines lesser and avoid duplication.
I would love to hear your opinions about this. | priority | refactor backend get version hi maintainers as a possible refactor suggestion i have something in my mind while i was developing new backends for anitya over the last two months i noticed that almost every backend has the exact same get version implementation exact number is out of the backends of them has the same implementation for get version method it s like this python classmethod def get version cls project method called to retrieve the latest version of the projects provided project that relies on the backend of this plugin arg project project a class anitya db models project object whose backend corresponds to the current plugin return the latest version found upstream return type str raise anityapluginexception a class anitya lib exceptions anityapluginexception exception when the version cannot be retrieved correctly return cls get ordered versions project why don t we move that implementation to basebackend class and remove duplication from backends that would make source code lines lesser and avoid duplication i would love to hear your opinions about this | 1 |
202,539 | 7,048,813,164 | IssuesEvent | 2018-01-02 19:20:41 | steemit/hivemind | https://api.github.com/repos/steemit/hivemind | closed | resync on wake | priority/low | if the process is behind on blocks by a certain threshold it needs to go back to the sync routine | 1.0 | resync on wake - if the process is behind on blocks by a certain threshold it needs to go back to the sync routine | priority | resync on wake if the process is behind on blocks by a certain threshold it needs to go back to the sync routine | 1 |
155,104 | 5,949,060,145 | IssuesEvent | 2017-05-26 13:20:16 | odalic/sti | https://api.github.com/repos/odalic/sti | closed | Make the need for reexecution explicit | core duplicate enhancement extension priority: Low ready tasks | In Czech:
Design: Uživatel musí často klikat na Reexecute, i když k tomu nemá žádný zjevný
důvod. | 1.0 | Make the need for reexecution explicit - In Czech:
Design: Uživatel musí často klikat na Reexecute, i když k tomu nemá žádný zjevný
důvod. | priority | make the need for reexecution explicit in czech design uživatel musí často klikat na reexecute i když k tomu nemá žádný zjevný důvod | 1 |
753,202 | 26,340,886,456 | IssuesEvent | 2023-01-10 17:34:13 | uhh-cms/columnflow | https://api.github.com/repos/uhh-cms/columnflow | closed | Show category label in plots | low-priority plotting | It would be nice if the label of the `category_inst` would be shown in plots. | 1.0 | Show category label in plots - It would be nice if the label of the `category_inst` would be shown in plots. | priority | show category label in plots it would be nice if the label of the category inst would be shown in plots | 1 |
287,925 | 8,822,975,006 | IssuesEvent | 2019-01-02 11:39:52 | telerik/kendo-ui-core | https://api.github.com/repos/telerik/kendo-ui-core | closed | Chart throws error when pane clipping is disabled and the user tries to zoom using selection | Bug C: Chart Kendo1 Priority 1 SEV: Low | ### Bug report
When clipping is turned off (`panes[{clip: false}`] and user tries to zoom in using Shift-key selection, an error is thrown:
`Uncaught TypeError: Cannot read property 'x2' of undefined.`
### Reproduction of the problem
Open this Dojo and try to zoom the Chart by holding shift and doing selection in the Chart area:
[https://dojo.telerik.com/oJuvOTig/3](https://dojo.telerik.com/oJuvOTig/3)
Observe the error in the browser console.
### Expected/desired behavior
The combination of disabled clipping and pan/zoom feature may be unsupported but the Chart should not throw a generic error if this features combination is used.
### Environment
* **Kendo UI version:** 2018.2.620
Reported in: 1173309
| 1.0 | Chart throws error when pane clipping is disabled and the user tries to zoom using selection - ### Bug report
When clipping is turned off (`panes[{clip: false}`] and user tries to zoom in using Shift-key selection, an error is thrown:
`Uncaught TypeError: Cannot read property 'x2' of undefined.`
### Reproduction of the problem
Open this Dojo and try to zoom the Chart by holding shift and doing selection in the Chart area:
[https://dojo.telerik.com/oJuvOTig/3](https://dojo.telerik.com/oJuvOTig/3)
Observe the error in the browser console.
### Expected/desired behavior
The combination of disabled clipping and pan/zoom feature may be unsupported but the Chart should not throw a generic error if this features combination is used.
### Environment
* **Kendo UI version:** 2018.2.620
Reported in: 1173309
| priority | chart throws error when pane clipping is disabled and the user tries to zoom using selection bug report when clipping is turned off panes and user tries to zoom in using shift key selection an error is thrown uncaught typeerror cannot read property of undefined reproduction of the problem open this dojo and try to zoom the chart by holding shift and doing selection in the chart area observe the error in the browser console expected desired behavior the combination of disabled clipping and pan zoom feature may be unsupported but the chart should not throw a generic error if this features combination is used environment kendo ui version reported in | 1 |
552,598 | 16,244,652,179 | IssuesEvent | 2021-05-07 13:31:20 | usemoslinux/aprelendo | https://api.github.com/repos/usemoslinux/aprelendo | closed | Implement word separator characters for each language? | Priority: low Type: improvement | LWT has a good implementation for this.
Compare performance between preg_replace and explode. | 1.0 | Implement word separator characters for each language? - LWT has a good implementation for this.
Compare performance between preg_replace and explode. | priority | implement word separator characters for each language lwt has a good implementation for this compare performance between preg replace and explode | 1 |
633,244 | 20,249,096,778 | IssuesEvent | 2022-02-14 16:14:33 | CDCgov/prime-reportstream | https://api.github.com/repos/CDCgov/prime-reportstream | closed | Update ImageMover Schema to make Specimen Collection Date to have a Cardinality of One | onboarding-ops sender Enhancement Low Priority | Based on the ticket @brick-green-agile6 created for a message MN received without a specimen collection date (#4198) we need to update the schema for Image Move to make sure they're always sending us that value. Let's add the value to their schema and update the cardinality and then test it out.
FYSA: @Adrian-Brewster @anshulkumar-usds | 1.0 | Update ImageMover Schema to make Specimen Collection Date to have a Cardinality of One - Based on the ticket @brick-green-agile6 created for a message MN received without a specimen collection date (#4198) we need to update the schema for Image Move to make sure they're always sending us that value. Let's add the value to their schema and update the cardinality and then test it out.
FYSA: @Adrian-Brewster @anshulkumar-usds | priority | update imagemover schema to make specimen collection date to have a cardinality of one based on the ticket brick green created for a message mn received without a specimen collection date we need to update the schema for image move to make sure they re always sending us that value let s add the value to their schema and update the cardinality and then test it out fysa adrian brewster anshulkumar usds | 1 |
752,026 | 26,270,365,153 | IssuesEvent | 2023-01-06 16:24:31 | 8bitPit/Niagara-Issues | https://api.github.com/repos/8bitPit/Niagara-Issues | reopened | Show upcoming weather data in agenda panel when Weather widget is toggled off | low priority | ### Is your feature request related to a problem?
Yes, i can't make the upcoming weather data appear when weather widget is turned off in agenda panel with (niagara://agenda) formula
### Describe the solution you'd like
Please make it possible to show weather data in agenda panel even when weather widget is turned off, just like the upcoming calender event, so that when users disable all the Niagara widget and Call the agenda panel in Kustom Apps with (niagara://agenda) formula the upcoming whether should appear how when weather widget is toggled on
https://user-images.githubusercontent.com/96917972/191723172-307a3761-453a-48d2-8386-2e46ef101681.mp4
### Feature Request Procedure
- [X] I have read the [knowledge base article on feature requests](https://help.niagaralauncher.app/article/44-feature-requests) and followed the steps mentioned | 1.0 | Show upcoming weather data in agenda panel when Weather widget is toggled off - ### Is your feature request related to a problem?
Yes, i can't make the upcoming weather data appear when weather widget is turned off in agenda panel with (niagara://agenda) formula
### Describe the solution you'd like
Please make it possible to show weather data in agenda panel even when weather widget is turned off, just like the upcoming calender event, so that when users disable all the Niagara widget and Call the agenda panel in Kustom Apps with (niagara://agenda) formula the upcoming whether should appear how when weather widget is toggled on
https://user-images.githubusercontent.com/96917972/191723172-307a3761-453a-48d2-8386-2e46ef101681.mp4
### Feature Request Procedure
- [X] I have read the [knowledge base article on feature requests](https://help.niagaralauncher.app/article/44-feature-requests) and followed the steps mentioned | priority | show upcoming weather data in agenda panel when weather widget is toggled off is your feature request related to a problem yes i can t make the upcoming weather data appear when weather widget is turned off in agenda panel with niagara agenda formula describe the solution you d like please make it possible to show weather data in agenda panel even when weather widget is turned off just like the upcoming calender event so that when users disable all the niagara widget and call the agenda panel in kustom apps with niagara agenda formula the upcoming whether should appear how when weather widget is toggled on feature request procedure i have read the and followed the steps mentioned | 1 |
232,963 | 7,688,152,254 | IssuesEvent | 2018-05-17 08:35:03 | vanilla-framework/vanilla-framework | https://api.github.com/repos/vanilla-framework/vanilla-framework | closed | Context menu stays open when clicking elsewhere | Priority: Low | 1\. Go to [the page for context menus](https://docs.vanillaframework.io/en/patterns/contextual-menu) (which Vanilla oddly calls “contextual menus”).
2\. In the example section, click one of the “Link” links.
3\. Click anywhere else.
What happens: The menu stays open.
What should happen: The menu closes — as it does in Ubuntu, Windows, macOS, and the “More” menu on [www.ubuntu.com](https://www.ubuntu.com/).
One example of why this is bad: it can result in multiple menus open at once, even overlapping each other.

| 1.0 | Context menu stays open when clicking elsewhere - 1\. Go to [the page for context menus](https://docs.vanillaframework.io/en/patterns/contextual-menu) (which Vanilla oddly calls “contextual menus”).
2\. In the example section, click one of the “Link” links.
3\. Click anywhere else.
What happens: The menu stays open.
What should happen: The menu closes — as it does in Ubuntu, Windows, macOS, and the “More” menu on [www.ubuntu.com](https://www.ubuntu.com/).
One example of why this is bad: it can result in multiple menus open at once, even overlapping each other.

| priority | context menu stays open when clicking elsewhere go to which vanilla oddly calls “contextual menus” in the example section click one of the “link” links click anywhere else what happens the menu stays open what should happen the menu closes — as it does in ubuntu windows macos and the “more” menu on one example of why this is bad it can result in multiple menus open at once even overlapping each other | 1 |
805,824 | 29,668,964,271 | IssuesEvent | 2023-06-11 06:43:38 | chaotic-aur/packages | https://api.github.com/repos/chaotic-aur/packages | closed | [Request] hyprshot | request:new-pkg priority:low | ### Requested Package:
[hyprshot](https://aur.archlinux.org/packages/hyprshot)
### Purpose and Use?
A utility to easily take screenshots in Hyprland using your mouse.
### Benefits?
_No response_
### Builds in clean chroot?
_No response_
### Copyright License?
GPL
### Expected interest
Many.
### Prior availability?
No
### Is this request unique?
Yes
### Is the package banned?
No
### More information
_No response_ | 1.0 | [Request] hyprshot - ### Requested Package:
[hyprshot](https://aur.archlinux.org/packages/hyprshot)
### Purpose and Use?
A utility to easily take screenshots in Hyprland using your mouse.
### Benefits?
_No response_
### Builds in clean chroot?
_No response_
### Copyright License?
GPL
### Expected interest
Many.
### Prior availability?
No
### Is this request unique?
Yes
### Is the package banned?
No
### More information
_No response_ | priority | hyprshot requested package purpose and use a utility to easily take screenshots in hyprland using your mouse benefits no response builds in clean chroot no response copyright license gpl expected interest many prior availability no is this request unique yes is the package banned no more information no response | 1 |
494,336 | 14,248,839,498 | IssuesEvent | 2020-11-19 13:29:52 | OpenMined/PySyft | https://api.github.com/repos/OpenMined/PySyft | closed | Remove duplication of Benchmark | 0.2.x Good first issue :mortar_board: Priority: 4 - Low :sunglasses: Severity: 4 - Low :sunglasses: Type: Improvement :chart_with_upwards_trend: | ## Description
Duplicate of code contained in `benchmarks/frameworks/torch/mpc/scripts` must be removed.
The `benchmark_X.py` included a very similar shape. Create reusable Benchmark modules using function extraction.
## Are you interested in working on this improvement yourself?
- Yes, I am.
## Additional Context | 1.0 | Remove duplication of Benchmark - ## Description
Duplicate of code contained in `benchmarks/frameworks/torch/mpc/scripts` must be removed.
The `benchmark_X.py` included a very similar shape. Create reusable Benchmark modules using function extraction.
## Are you interested in working on this improvement yourself?
- Yes, I am.
## Additional Context | priority | remove duplication of benchmark description duplicate of code contained in benchmarks frameworks torch mpc scripts must be removed the benchmark x py included a very similar shape create reusable benchmark modules using function extraction are you interested in working on this improvement yourself yes i am additional context | 1 |
232,160 | 7,655,607,753 | IssuesEvent | 2018-05-10 13:48:43 | xmichelo/Beeftext | https://api.github.com/repos/xmichelo/Beeftext | closed | Always select first group when displaying 'new combo' dialog. | bug low priority | As the software should not allow the user to have zero group, a combo group should always be pre-selected when creating a new combo. | 1.0 | Always select first group when displaying 'new combo' dialog. - As the software should not allow the user to have zero group, a combo group should always be pre-selected when creating a new combo. | priority | always select first group when displaying new combo dialog as the software should not allow the user to have zero group a combo group should always be pre selected when creating a new combo | 1 |
424,170 | 12,306,916,305 | IssuesEvent | 2020-05-12 02:56:10 | woocommerce/woocommerce | https://api.github.com/repos/woocommerce/woocommerce | closed | DocBlock in template/emails/plain/customer-details.php contains an error | bug has pull request priority: low | Line 7 of template/emails/plain/customer-details.php should say
> This template can be overridden by copying it to yourtheme/woocommerce/emails/plain/customer-details.php.
instead of
> This template can be overridden by copying it to yourtheme/woocommerce/emails/plain/email-addresses.php.
| 1.0 | DocBlock in template/emails/plain/customer-details.php contains an error - Line 7 of template/emails/plain/customer-details.php should say
> This template can be overridden by copying it to yourtheme/woocommerce/emails/plain/customer-details.php.
instead of
> This template can be overridden by copying it to yourtheme/woocommerce/emails/plain/email-addresses.php.
| priority | docblock in template emails plain customer details php contains an error line of template emails plain customer details php should say this template can be overridden by copying it to yourtheme woocommerce emails plain customer details php instead of this template can be overridden by copying it to yourtheme woocommerce emails plain email addresses php | 1 |
398,161 | 11,738,539,213 | IssuesEvent | 2020-03-11 16:13:55 | MilyMilo/educat | https://api.github.com/repos/MilyMilo/educat | closed | Fix users list width | good first issue priority: low scope: front-end type: bug | Tabela powinna być szeroka na całą szerokość containera. Obecnie wygląda tak:

| 1.0 | Fix users list width - Tabela powinna być szeroka na całą szerokość containera. Obecnie wygląda tak:

| priority | fix users list width tabela powinna być szeroka na całą szerokość containera obecnie wygląda tak | 1 |
379,269 | 11,218,647,287 | IssuesEvent | 2020-01-07 12:01:41 | conan-io/conan | https://api.github.com/repos/conan-io/conan | closed | [bug] pkg_config generator has wrong casing in the requires section | complex: low priority: high type: bug | coming from https://github.com/conan-io/conan-center-index/pull/471#issuecomment-565057342
Seems that there is a missing conditional to make the default name `.lower()` here:
https://github.com/conan-io/conan/blob/5336a31744bb114f419ad91310bc3e50dc2eb1cd/conans/client/generators/pkg_config.py#L90
As it was done previously for the file name here:
https://github.com/conan-io/conan/blob/5336a31744bb114f419ad91310bc3e50dc2eb1cd/conans/client/generators/pkg_config.py#L43 | 1.0 | [bug] pkg_config generator has wrong casing in the requires section - coming from https://github.com/conan-io/conan-center-index/pull/471#issuecomment-565057342
Seems that there is a missing conditional to make the default name `.lower()` here:
https://github.com/conan-io/conan/blob/5336a31744bb114f419ad91310bc3e50dc2eb1cd/conans/client/generators/pkg_config.py#L90
As it was done previously for the file name here:
https://github.com/conan-io/conan/blob/5336a31744bb114f419ad91310bc3e50dc2eb1cd/conans/client/generators/pkg_config.py#L43 | priority | pkg config generator has wrong casing in the requires section coming from seems that there is a missing conditional to make the default name lower here as it was done previously for the file name here | 1 |
330,775 | 10,055,485,306 | IssuesEvent | 2019-07-22 06:35:20 | gbv/cocoda | https://api.github.com/repos/gbv/cocoda | opened | Don't break application when local storage is not available | bug low priority user experience | Apparently, local storage is not available when cookies are blocked in the browser (#440). This causes Cocoda to not load correctly.
Cocoda should be usable without local storage though. So in case local storage is not available, show a message to the user that settings will not be persisted and make sure it doesn't crash due to writes to local storage. | 1.0 | Don't break application when local storage is not available - Apparently, local storage is not available when cookies are blocked in the browser (#440). This causes Cocoda to not load correctly.
Cocoda should be usable without local storage though. So in case local storage is not available, show a message to the user that settings will not be persisted and make sure it doesn't crash due to writes to local storage. | priority | don t break application when local storage is not available apparently local storage is not available when cookies are blocked in the browser this causes cocoda to not load correctly cocoda should be usable without local storage though so in case local storage is not available show a message to the user that settings will not be persisted and make sure it doesn t crash due to writes to local storage | 1 |
384,602 | 11,395,214,560 | IssuesEvent | 2020-01-30 10:56:08 | stencila/encoda | https://api.github.com/repos/stencila/encoda | opened | JATS: Collaboration authors in references | eLife 🌴 Low priority | Collaboration type authors in references appear to be missed in the conversion.
See [here](https://elifesciences.org/articles/42512#bib69). This is captured in the jats as:
```xml
<ref id="bib69">
<element-citation publication-type="software">
<person-group person-group-type="author">
<collab>R Core Team</collab>
</person-group>
<year iso-8601-date="2017">2017</year>
<data-title>R: A Language and Environment for Statistical Computing</data-title>
<source>R Foundation for Statistical Computing</source>
<publisher-loc>Vienna, Austria</publisher-loc>
</element-citation>
</ref>
```
After running
```
encoda convert https://elifesciences.org/articles/42512 48114.jsonld
encoda convert https://elifesciences.org/articles/42512 48114.xml --to jats
```
it is output as:
```json
{
"authors": [],
"title": "",
"type": "Article",
"datePublished": "2017",
"isPartOf": {
"title": "R Foundation for Statistical Computing",
"type": "PublicationVolume"
},
"id": "bib69"
},
```
and
```xml
<ref id="bib69">
<element-citation>
<year iso-8601-date="2017">2017</year>
<source>R Foundation for Statistical Computing</source>
</element-citation>
</ref>
```
respectively.
| 1.0 | JATS: Collaboration authors in references - Collaboration type authors in references appear to be missed in the conversion.
See [here](https://elifesciences.org/articles/42512#bib69). This is captured in the jats as:
```xml
<ref id="bib69">
<element-citation publication-type="software">
<person-group person-group-type="author">
<collab>R Core Team</collab>
</person-group>
<year iso-8601-date="2017">2017</year>
<data-title>R: A Language and Environment for Statistical Computing</data-title>
<source>R Foundation for Statistical Computing</source>
<publisher-loc>Vienna, Austria</publisher-loc>
</element-citation>
</ref>
```
After running
```
encoda convert https://elifesciences.org/articles/42512 48114.jsonld
encoda convert https://elifesciences.org/articles/42512 48114.xml --to jats
```
it is output as:
```json
{
"authors": [],
"title": "",
"type": "Article",
"datePublished": "2017",
"isPartOf": {
"title": "R Foundation for Statistical Computing",
"type": "PublicationVolume"
},
"id": "bib69"
},
```
and
```xml
<ref id="bib69">
<element-citation>
<year iso-8601-date="2017">2017</year>
<source>R Foundation for Statistical Computing</source>
</element-citation>
</ref>
```
respectively.
| priority | jats collaboration authors in references collaboration type authors in references appear to be missed in the conversion see this is captured in the jats as xml r core team r a language and environment for statistical computing r foundation for statistical computing vienna austria after running encoda convert jsonld encoda convert xml to jats it is output as json authors title type article datepublished ispartof title r foundation for statistical computing type publicationvolume id and xml r foundation for statistical computing respectively | 1 |
260,729 | 8,214,168,401 | IssuesEvent | 2018-09-04 22:04:43 | opentargets/genetics | https://api.github.com/repos/opentargets/genetics | closed | gene dictionary for clickhouse needs to remove spaces in the exons list serialisation | Kind: Bug Priority: Low Status: New | it has to look like this
```json
{
"gene_id": "ENSG00000000003",
"gene_name": "TSPAN6",
"description": "tetraspanin 6 [Source:HGNC Symbol;Acc:11858]",
"biotype": "protein_coding",
"chr": "X",
"tss": 99894988,
"start": 99883667,
"end": 99894988,
"fwdstrand": 0,
"exons": "[99891605,99891803,99890555,99890743,99890175,99890249,99888928,99889026,99888402,99888536,99887482,99887565,99885756,99885863,99883667,99884983]"
}
```
but it is like this
```json
{
"gene_id": "ENSG00000000003",
"gene_name": "TSPAN6",
"description": "tetraspanin 6 [Source:HGNC Symbol;Acc:11858]",
"biotype": "protein_coding",
"chr": "X",
"tss": 99894988,
"start": 99883667,
"end": 99894988,
"fwdstrand": 0,
"exons": "[99891605, 99891803, 99890555, 99890743, 99890175, 99890249, 99888928, 99889026, 99888402, 99888536, 99887482, 99887565, 99885756, 99885863, 99883667, 99884983]"
}
```
please note the exons serialisation. | 1.0 | gene dictionary for clickhouse needs to remove spaces in the exons list serialisation - it has to look like this
```json
{
"gene_id": "ENSG00000000003",
"gene_name": "TSPAN6",
"description": "tetraspanin 6 [Source:HGNC Symbol;Acc:11858]",
"biotype": "protein_coding",
"chr": "X",
"tss": 99894988,
"start": 99883667,
"end": 99894988,
"fwdstrand": 0,
"exons": "[99891605,99891803,99890555,99890743,99890175,99890249,99888928,99889026,99888402,99888536,99887482,99887565,99885756,99885863,99883667,99884983]"
}
```
but it is like this
```json
{
"gene_id": "ENSG00000000003",
"gene_name": "TSPAN6",
"description": "tetraspanin 6 [Source:HGNC Symbol;Acc:11858]",
"biotype": "protein_coding",
"chr": "X",
"tss": 99894988,
"start": 99883667,
"end": 99894988,
"fwdstrand": 0,
"exons": "[99891605, 99891803, 99890555, 99890743, 99890175, 99890249, 99888928, 99889026, 99888402, 99888536, 99887482, 99887565, 99885756, 99885863, 99883667, 99884983]"
}
```
please note the exons serialisation. | priority | gene dictionary for clickhouse needs to remove spaces in the exons list serialisation it has to look like this json gene id gene name description tetraspanin biotype protein coding chr x tss start end fwdstrand exons but it is like this json gene id gene name description tetraspanin biotype protein coding chr x tss start end fwdstrand exons please note the exons serialisation | 1 |
430,523 | 12,462,196,122 | IssuesEvent | 2020-05-28 08:29:58 | netdata/netdata | https://api.github.com/repos/netdata/netdata | closed | Docker Healthcheck support | area/packaging feature request priority/low | **Describe the feature**
Being able to see a "health status" of the Netdata Docker container.
**Describe the solution you'd like**
I would like support for the Docker Healthcheck (that is also shown in Portainer.io and probably other Docker management software).
**Additional context**
The `Dockerfile` could contain something like this:
`HEALTHCHECK --interval=60s --timeout=10s --retries=3 CMD curl -sS http://localhost:19999 || exit 1`.
For debugging and testing purposses you can use:
`docker inspect --format "{{json .State.Health}}" containername`

| 1.0 | Docker Healthcheck support - **Describe the feature**
Being able to see a "health status" of the Netdata Docker container.
**Describe the solution you'd like**
I would like support for the Docker Healthcheck (that is also shown in Portainer.io and probably other Docker management software).
**Additional context**
The `Dockerfile` could contain something like this:
`HEALTHCHECK --interval=60s --timeout=10s --retries=3 CMD curl -sS http://localhost:19999 || exit 1`.
For debugging and testing purposses you can use:
`docker inspect --format "{{json .State.Health}}" containername`

| priority | docker healthcheck support describe the feature being able to see a health status of the netdata docker container describe the solution you d like i would like support for the docker healthcheck that is also shown in portainer io and probably other docker management software additional context the dockerfile could contain something like this healthcheck interval timeout retries cmd curl ss exit for debugging and testing purposses you can use docker inspect format json state health containername | 1 |
452,050 | 13,045,374,094 | IssuesEvent | 2020-07-29 07:07:13 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Remove fadeout for tooltips | Category: UI Priority: Low Status: Fixed | This is making them take longer to go away and getting in the way of your mouse. | 1.0 | Remove fadeout for tooltips - This is making them take longer to go away and getting in the way of your mouse. | priority | remove fadeout for tooltips this is making them take longer to go away and getting in the way of your mouse | 1 |
693,057 | 23,761,126,470 | IssuesEvent | 2022-09-01 08:58:10 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | STM32G0B0 errors out on stm32g0_disable_dead_battery function in soc.c | bug priority: low platform: STM32 | The stm32g0b0xx.h does not define UCPD1_BASE, but does define SYSCFG_CFGR1_UCPD1_STROBE so it errors out in the stm32g0_disable_dead_battery function in soc.c.
@str4t0m pointed out in Discord the following:
"While the STM32g0x0 Socs don't have UCPD support the G070 and G0b0 still have *_strobe. meaning they pull down PD0,PD2, PB15, and PA8 unless reconfigured.
Therefore we need to chagne the code to deal with this w/o requiring the UCPDx_base defines."
and has opened a PR ( #49461 ) | 1.0 | STM32G0B0 errors out on stm32g0_disable_dead_battery function in soc.c - The stm32g0b0xx.h does not define UCPD1_BASE, but does define SYSCFG_CFGR1_UCPD1_STROBE so it errors out in the stm32g0_disable_dead_battery function in soc.c.
@str4t0m pointed out in Discord the following:
"While the STM32g0x0 Socs don't have UCPD support the G070 and G0b0 still have *_strobe. meaning they pull down PD0,PD2, PB15, and PA8 unless reconfigured.
Therefore we need to chagne the code to deal with this w/o requiring the UCPDx_base defines."
and has opened a PR ( #49461 ) | priority | errors out on disable dead battery function in soc c the h does not define base but does define syscfg strobe so it errors out in the disable dead battery function in soc c pointed out in discord the following while the socs don t have ucpd support the and still have strobe meaning they pull down and unless reconfigured therefore we need to chagne the code to deal with this w o requiring the ucpdx base defines and has opened a pr | 1 |
289,997 | 8,881,240,212 | IssuesEvent | 2019-01-14 09:32:56 | ddionrails/ddionrails | https://api.github.com/repos/ddionrails/ddionrails | closed | If a user logs in from any page, he gets redirected to the home page | Priority: Low Type: Maintenance | ### Subject of the issue
If a user is on any page other than the home page and clicks on login, he gets redirected to the home page.
### Expected behaviour
The user should stay on the current page, but should be logged in.
### Actual behaviour
The user gets redirected to the home page.
### Steps to reproduce
Go to https://paneldata.org/soep-core/data/ah (any page other than https://paneldata.org/ works) and click on login. Enter your credentials. Click on login. | 1.0 | If a user logs in from any page, he gets redirected to the home page - ### Subject of the issue
If a user is on any page other than the home page and clicks on login, he gets redirected to the home page.
### Expected behaviour
The user should stay on the current page, but should be logged in.
### Actual behaviour
The user gets redirected to the home page.
### Steps to reproduce
Go to https://paneldata.org/soep-core/data/ah (any page other than https://paneldata.org/ works) and click on login. Enter your credentials. Click on login. | priority | if a user logs in from any page he gets redirected to the home page subject of the issue if a user is on any page other than the home page and clicks on login he gets redirected to the home page expected behaviour the user should stay on the current page but should be logged in actual behaviour the user gets redirected to the home page steps to reproduce go to any page other than works and click on login enter your credentials click on login | 1 |
30,212 | 2,722,938,050 | IssuesEvent | 2015-04-14 08:59:20 | BlackCodec/tint2 | https://api.github.com/repos/BlackCodec/tint2 | closed | Pager | auto-migrated Component-New Priority-Low Type-Enhancement | ```
Right now, the pager functionality depends on having different taskbar for
different desktop. With only one taskbar, the pager must be an external
program: in my case, NetWMPager.
I think that a "proper" pager like the one I mentioned above would be a
really great built-in feature for the panel.
```
Original issue reported on code.google.com by `fairpoin...@gmail.com` on 5 Nov 2009 at 7:45 | 1.0 | Pager - ```
Right now, the pager functionality depends on having different taskbar for
different desktop. With only one taskbar, the pager must be an external
program: in my case, NetWMPager.
I think that a "proper" pager like the one I mentioned above would be a
really great built-in feature for the panel.
```
Original issue reported on code.google.com by `fairpoin...@gmail.com` on 5 Nov 2009 at 7:45 | priority | pager right now the pager functionality depends on having different taskbar for different desktop with only one taskbar the pager must be an external program in my case netwmpager i think that a proper pager like the one i mentioned above would be a really great built in feature for the panel original issue reported on code google com by fairpoin gmail com on nov at | 1 |
822,033 | 30,849,366,060 | IssuesEvent | 2023-08-02 15:38:55 | woocommerce/woocommerce | https://api.github.com/repos/woocommerce/woocommerce | closed | Fatal error if a coupon is (permanently) deleted after being added to a cart | type: bug priority: low focus: checkout [team:Proton] plugin: woocommerce team: Rubik | If a customer adds a coupon to the cart, and the coupon is then **permanently** deleted, the customer will experience a fatal error when accessing the checkout page/when attempting to check out.
```
Fatal error: Uncaught Exception: Invalid coupon.
in /.../plugins/woocommerce/includes/data-stores/class-wc-coupon-data-store-cpt.php on line 118
```
Originally flagged by @nickpagz [(over here)](https://github.com/woocommerce/woocommerce/issues/22052#issuecomment-1226136046).
### Steps to replicate
1. As an admin, create a coupon.
2. As a customer, add some items to your cart and apply the coupon (on the cart page).
3. As the admin, trash then permanently delete the coupon.
4. As the customer, attempt to access the checkout page.
5. Fatal/uncaught exception.
| 1.0 | Fatal error if a coupon is (permanently) deleted after being added to a cart - If a customer adds a coupon to the cart, and the coupon is then **permanently** deleted, the customer will experience a fatal error when accessing the checkout page/when attempting to check out.
```
Fatal error: Uncaught Exception: Invalid coupon.
in /.../plugins/woocommerce/includes/data-stores/class-wc-coupon-data-store-cpt.php on line 118
```
Originally flagged by @nickpagz [(over here)](https://github.com/woocommerce/woocommerce/issues/22052#issuecomment-1226136046).
### Steps to replicate
1. As an admin, create a coupon.
2. As a customer, add some items to your cart and apply the coupon (on the cart page).
3. As the admin, trash then permanently delete the coupon.
4. As the customer, attempt to access the checkout page.
5. Fatal/uncaught exception.
| priority | fatal error if a coupon is permanently deleted after being added to a cart if a customer adds a coupon to the cart and the coupon is then permanently deleted the customer will experience a fatal error when accessing the checkout page when attempting to check out fatal error uncaught exception invalid coupon in plugins woocommerce includes data stores class wc coupon data store cpt php on line originally flagged by nickpagz steps to replicate as an admin create a coupon as a customer add some items to your cart and apply the coupon on the cart page as the admin trash then permanently delete the coupon as the customer attempt to access the checkout page fatal uncaught exception | 1 |
169,559 | 6,404,173,154 | IssuesEvent | 2017-08-07 01:23:08 | ChrisALee/twitch-stocks | https://api.github.com/repos/ChrisALee/twitch-stocks | opened | Remove Husky or replace pre-commit with it | Easy to Medium Priority: Low Project Setup | Husky gives us access to other hooks [here](https://github.com/typicode/husky/blob/master/HOOKS.md).
We'd want to use Husky if we want any of those hooks. One situation I can think of is using pre-push when one file relies on another and they both get committed separately.
All the CI stuff like pushing the code to our host in prod could be probably just be handled by TravisCI. | 1.0 | Remove Husky or replace pre-commit with it - Husky gives us access to other hooks [here](https://github.com/typicode/husky/blob/master/HOOKS.md).
We'd want to use Husky if we want any of those hooks. One situation I can think of is using pre-push when one file relies on another and they both get committed separately.
All the CI stuff like pushing the code to our host in prod could be probably just be handled by TravisCI. | priority | remove husky or replace pre commit with it husky gives us access to other hooks we d want to use husky if we want any of those hooks one situation i can think of is using pre push when one file relies on another and they both get committed separately all the ci stuff like pushing the code to our host in prod could be probably just be handled by travisci | 1 |
241,993 | 7,836,442,702 | IssuesEvent | 2018-06-17 19:33:07 | hackoregon/civic-devops | https://api.github.com/repos/hackoregon/civic-devops | closed | "Outdated ECS Agent" warning in hacko-integration ECS Instances | Priority: low legacy maintenance | Browse to the ECS cluster **hacko-integration**, and click on the **ECS Instances** tab. It presents a massive warning:
> Outdated ECS Agent
> One or more container instances are not running the latest version of the Amazon ECS container agent.
Each of the two EC2 VMs that are hosting the cluster's containers is running v1.17.2 of the ECS Agent, current version is 1.17.3. Given we're almost certainly not using the current [ECS-Optimized AMI](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html#checking_agent_version), we would have to have the current SSH keypair available to us to update these VMs. Unfortunately, the private key for _hackoregon-integration-ecs_ was never transferred from last year's keymaster, so this cluster will ultimately have to be rebuilt if we're to update any of the OS-level artifacts like this. | 1.0 | "Outdated ECS Agent" warning in hacko-integration ECS Instances - Browse to the ECS cluster **hacko-integration**, and click on the **ECS Instances** tab. It presents a massive warning:
> Outdated ECS Agent
> One or more container instances are not running the latest version of the Amazon ECS container agent.
Each of the two EC2 VMs that are hosting the cluster's containers is running v1.17.2 of the ECS Agent, current version is 1.17.3. Given we're almost certainly not using the current [ECS-Optimized AMI](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html#checking_agent_version), we would have to have the current SSH keypair available to us to update these VMs. Unfortunately, the private key for _hackoregon-integration-ecs_ was never transferred from last year's keymaster, so this cluster will ultimately have to be rebuilt if we're to update any of the OS-level artifacts like this. | priority | outdated ecs agent warning in hacko integration ecs instances browse to the ecs cluster hacko integration and click on the ecs instances tab it presents a massive warning outdated ecs agent one or more container instances are not running the latest version of the amazon ecs container agent each of the two vms that are hosting the cluster s containers is running of the ecs agent current version is given we re almost certainly not using the current we would have to have the current ssh keypair available to us to update these vms unfortunately the private key for hackoregon integration ecs was never transferred from last year s keymaster so this cluster will ultimately have to be rebuilt if we re to update any of the os level artifacts like this | 1 |
43,048 | 2,879,257,359 | IssuesEvent | 2015-06-10 09:02:26 | macbid/website | https://api.github.com/repos/macbid/website | opened | séparation visuelle des news | low priority question | > Dans la vue par jour, il serait intéressant de mieux marquer la séparation entre les différents articles (ligne plus grasse, de couleur différente, autre idée...) | 1.0 | séparation visuelle des news - > Dans la vue par jour, il serait intéressant de mieux marquer la séparation entre les différents articles (ligne plus grasse, de couleur différente, autre idée...) | priority | séparation visuelle des news dans la vue par jour il serait intéressant de mieux marquer la séparation entre les différents articles ligne plus grasse de couleur différente autre idée | 1 |
359,614 | 10,678,705,721 | IssuesEvent | 2019-10-21 17:48:50 | chef/chef | https://api.github.com/repos/chef/chef | closed | validation_client_name not escaped properly when using knife bootstrap | Priority: Low Type: Bug | When you have a single quote in the validation_client_name of knife.rb it doesn't get escaped properly when running knife bootstrap.
In my case I had literally set the validation_client_name to "A path that doesn't exist" because of another bug I was running into with some code thinking nil/false was a file, need to dig into that and submit another report for that though.
Chef: 12.11.18
Client: OSx
Server: Ubuntu
```
➜ example mkdir .chef
➜ example git:(master) ✗ cat <<EOH
heredoc> validation_client_name "A path that doesn't exist"
heredoc> EOH
validation_client_name "A path that doesn't exist"
➜ example git:(master) ✗ knife bootstrap ubuntu@1.1.1.1 -z -i ~/.ssh/privatekey.pem
Doing old-style registration with the validation key at ...
Delete your validation key in order to use your user credentials instead
Connecting to 52.40.10.128
52.40.10.128 bash: -c: line 196: unexpected EOF while looking for matching `"'
52.40.10.128 bash: -c: line 199: syntax error: unexpected end of file
➜ example git:(master) ✗
```
| 1.0 | validation_client_name not escaped properly when using knife bootstrap - When you have a single quote in the validation_client_name of knife.rb it doesn't get escaped properly when running knife bootstrap.
In my case I had literally set the validation_client_name to "A path that doesn't exist" because of another bug I was running into with some code thinking nil/false was a file, need to dig into that and submit another report for that though.
Chef: 12.11.18
Client: OSx
Server: Ubuntu
```
➜ example mkdir .chef
➜ example git:(master) ✗ cat <<EOH
heredoc> validation_client_name "A path that doesn't exist"
heredoc> EOH
validation_client_name "A path that doesn't exist"
➜ example git:(master) ✗ knife bootstrap ubuntu@1.1.1.1 -z -i ~/.ssh/privatekey.pem
Doing old-style registration with the validation key at ...
Delete your validation key in order to use your user credentials instead
Connecting to 52.40.10.128
52.40.10.128 bash: -c: line 196: unexpected EOF while looking for matching `"'
52.40.10.128 bash: -c: line 199: syntax error: unexpected end of file
➜ example git:(master) ✗
```
| priority | validation client name not escaped properly when using knife bootstrap when you have a single quote in the validation client name of knife rb it doesn t get escaped properly when running knife bootstrap in my case i had literally set the validation client name to a path that doesn t exist because of another bug i was running into with some code thinking nil false was a file need to dig into that and submit another report for that though chef client osx server ubuntu ➜ example mkdir chef ➜ example git master ✗ cat eoh heredoc validation client name a path that doesn t exist heredoc eoh validation client name a path that doesn t exist ➜ example git master ✗ knife bootstrap ubuntu z i ssh privatekey pem doing old style registration with the validation key at delete your validation key in order to use your user credentials instead connecting to bash c line unexpected eof while looking for matching bash c line syntax error unexpected end of file ➜ example git master ✗ | 1 |
323,162 | 9,850,749,436 | IssuesEvent | 2019-06-19 08:54:22 | high-mood/PSE | https://api.github.com/repos/high-mood/PSE | closed | Remove the backend query file from the frontend. | Low priority | Currently, the file ```query.py``` has been included within the web-facing front-end for easier testing. For production this should be removed. | 1.0 | Remove the backend query file from the frontend. - Currently, the file ```query.py``` has been included within the web-facing front-end for easier testing. For production this should be removed. | priority | remove the backend query file from the frontend currently the file query py has been included within the web facing front end for easier testing for production this should be removed | 1 |
447,840 | 12,905,953,279 | IssuesEvent | 2020-07-15 00:02:26 | jeanvillete/fiap-stock-ecommerce | https://api.github.com/repos/jeanvillete/fiap-stock-ecommerce | opened | Implementar testes integrados | enhancement fiap.stock.mgnt fiap.stock.portal priority: low | Implementar testes integrados de todos os componentes de BE com docker e scripts ``` .sh ```. | 1.0 | Implementar testes integrados - Implementar testes integrados de todos os componentes de BE com docker e scripts ``` .sh ```. | priority | implementar testes integrados implementar testes integrados de todos os componentes de be com docker e scripts sh | 1 |
287,023 | 8,798,150,450 | IssuesEvent | 2018-12-24 05:02:05 | Alsciende/thronesdb | https://api.github.com/repos/Alsciende/thronesdb | closed | "show unusabled cards", what is it? | bug low priority | 
- [x] figure out what this does (clicking around didn't do anything for me), if anything.
- [ ] fix label, _unusabled_ is not a proper English word. ~or remove this altogether (see step 1).~ | 1.0 | "show unusabled cards", what is it? - 
- [x] figure out what this does (clicking around didn't do anything for me), if anything.
- [ ] fix label, _unusabled_ is not a proper English word. ~or remove this altogether (see step 1).~ | priority | show unusabled cards what is it figure out what this does clicking around didn t do anything for me if anything fix label unusabled is not a proper english word or remove this altogether see step | 1 |
519,108 | 15,044,468,775 | IssuesEvent | 2021-02-03 03:03:29 | SacredDuckwhale/Rarity | https://api.github.com/repos/SacredDuckwhale/Rarity | opened | Add About panel to the Options menu | Complexity: Low Module: Options Priority: Normal Status: Accepted Type: Task | Similar to other addons, giving some brief description of the various features (ingame) and link to support articles, GitHub, Discord etc. might be helpful. | 1.0 | Add About panel to the Options menu - Similar to other addons, giving some brief description of the various features (ingame) and link to support articles, GitHub, Discord etc. might be helpful. | priority | add about panel to the options menu similar to other addons giving some brief description of the various features ingame and link to support articles github discord etc might be helpful | 1 |
371,266 | 10,964,055,555 | IssuesEvent | 2019-11-27 21:23:31 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.8.2.0 staging-11-d-2] Talent "Tool Strength: Mining" is intended behavior? | Low Priority QA Staging | Test in Basalt.
Without talent:
Stone Pickaxe - 6 hit; Iron Pickaxe - 3 hit; Steel Pickaxe - 2 hit; Modern Pickaxe - 1 hit
With talent:
Stone Pickaxe - 3 hit; Iron Pickaxe - 2 hit; Steel Pickaxe - 2 hit (It should be like modern pickaxe without talent - 1 hit ); Modern Pickaxe - 1 hit.
This may be due to fact that level of Steel Pickaxe is 4, and the level of the Modern Pickaxe is 6.
But for an Iron Pickaxe, everything works. Iron Pickaxe level is 2. With talent becomes 3. But by properties it works like 4.
| 1.0 | [0.8.2.0 staging-11-d-2] Talent "Tool Strength: Mining" is intended behavior? - Test in Basalt.
Without talent:
Stone Pickaxe - 6 hit; Iron Pickaxe - 3 hit; Steel Pickaxe - 2 hit; Modern Pickaxe - 1 hit
With talent:
Stone Pickaxe - 3 hit; Iron Pickaxe - 2 hit; Steel Pickaxe - 2 hit (It should be like modern pickaxe without talent - 1 hit ); Modern Pickaxe - 1 hit.
This may be due to fact that level of Steel Pickaxe is 4, and the level of the Modern Pickaxe is 6.
But for an Iron Pickaxe, everything works. Iron Pickaxe level is 2. With talent becomes 3. But by properties it works like 4.
| priority | talent tool strength mining is intended behavior test in basalt without talent stone pickaxe hit iron pickaxe hit steel pickaxe hit modern pickaxe hit with talent stone pickaxe hit iron pickaxe hit steel pickaxe hit it should be like modern pickaxe without talent hit modern pickaxe hit this may be due to fact that level of steel pickaxe is and the level of the modern pickaxe is but for an iron pickaxe everything works iron pickaxe level is with talent becomes but by properties it works like | 1 |
398,848 | 11,742,428,531 | IssuesEvent | 2020-03-12 00:45:21 | thaliawww/concrexit | https://api.github.com/repos/thaliawww/concrexit | closed | Automatic generation of board email addresses | feature priority: low | In GitLab by @se-bastiaan on Jun 21, 2018, 15:49
### One-sentence description
Automatic generation of board email addresses
### Desired behaviour
Currently we create a mailinglist for every board every single year, however we could just generate them automatically based on the Board models. | 1.0 | Automatic generation of board email addresses - In GitLab by @se-bastiaan on Jun 21, 2018, 15:49
### One-sentence description
Automatic generation of board email addresses
### Desired behaviour
Currently we create a mailinglist for every board every single year, however we could just generate them automatically based on the Board models. | priority | automatic generation of board email addresses in gitlab by se bastiaan on jun one sentence description automatic generation of board email addresses desired behaviour currently we create a mailinglist for every board every single year however we could just generate them automatically based on the board models | 1 |
34,932 | 2,789,433,750 | IssuesEvent | 2015-05-08 19:22:28 | orwant/google-visualization-issues | https://api.github.com/repos/orwant/google-visualization-issues | opened | Add isStacked to Annotated Time Line | Priority-Low Type-Enhancement | Original [issue 45](https://code.google.com/p/google-visualization-api-issues/issues/detail?id=45) created by orwant on 2009-09-03T17:15:49.000Z:
<b>What would you like to see us add to this API?</b>
The Area Chart vis. has an isStacked parameter that accumulates the values. I'd like to see that
on Annotated Time Line. I want the interaction provided by Annotated Time Line, but this
feature from Area Chart.
<b>What component is this issue related to (PieChart, LineChart, DataTable,</b>
<b>Query, etc)?</b>
Annotated Time Line
<b>*********************************************************</b>
<b>For developers viewing this issue: please click the 'star' icon to be</b>
<b>notified of future changes, and to let us know how many of you are</b>
<b>interested in seeing it resolved.</b>
<b>*********************************************************</b>
| 1.0 | Add isStacked to Annotated Time Line - Original [issue 45](https://code.google.com/p/google-visualization-api-issues/issues/detail?id=45) created by orwant on 2009-09-03T17:15:49.000Z:
<b>What would you like to see us add to this API?</b>
The Area Chart vis. has an isStacked parameter that accumulates the values. I'd like to see that
on Annotated Time Line. I want the interaction provided by Annotated Time Line, but this
feature from Area Chart.
<b>What component is this issue related to (PieChart, LineChart, DataTable,</b>
<b>Query, etc)?</b>
Annotated Time Line
<b>*********************************************************</b>
<b>For developers viewing this issue: please click the 'star' icon to be</b>
<b>notified of future changes, and to let us know how many of you are</b>
<b>interested in seeing it resolved.</b>
<b>*********************************************************</b>
| priority | add isstacked to annotated time line original created by orwant on what would you like to see us add to this api the area chart vis has an isstacked parameter that accumulates the values i d like to see that on annotated time line i want the interaction provided by annotated time line but this feature from area chart what component is this issue related to piechart linechart datatable query etc annotated time line for developers viewing this issue please click the star icon to be notified of future changes and to let us know how many of you are interested in seeing it resolved | 1 |
612,866 | 19,057,808,376 | IssuesEvent | 2021-11-26 00:13:44 | ImperialSpaceSociety/LoRaMac-node | https://api.github.com/repos/ImperialSpaceSociety/LoRaMac-node | closed | Consider sending the most accurate known position from GPS after timeout | low priority | The GPS is given 120 seconds to get a fix. If its got something, just send it. Even if its not a 4 sat fix. | 1.0 | Consider sending the most accurate known position from GPS after timeout - The GPS is given 120 seconds to get a fix. If its got something, just send it. Even if its not a 4 sat fix. | priority | consider sending the most accurate known position from gps after timeout the gps is given seconds to get a fix if its got something just send it even if its not a sat fix | 1 |
460,595 | 13,213,513,278 | IssuesEvent | 2020-08-16 13:11:43 | InfiniteFlightAirportEditing/Airports | https://api.github.com/repos/InfiniteFlightAirportEditing/Airports | closed | 3LL9-Compton Airstrip-ILLINOIS-USA | Being Redone Low Priority | # Airport Name
Aurukun Airport - YAUR
# Country?
Australia
# Improvements that need to be made?
From scratch
# Are you working on this airport?
Yeah
# Airport Priority? (A380, 10000ft+ Runway)
Low priority
| 1.0 | 3LL9-Compton Airstrip-ILLINOIS-USA - # Airport Name
Aurukun Airport - YAUR
# Country?
Australia
# Improvements that need to be made?
From scratch
# Are you working on this airport?
Yeah
# Airport Priority? (A380, 10000ft+ Runway)
Low priority
| priority | compton airstrip illinois usa airport name aurukun airport yaur country australia improvements that need to be made from scratch are you working on this airport yeah airport priority runway low priority | 1 |
418,416 | 12,197,400,941 | IssuesEvent | 2020-04-29 20:42:43 | jbowens/peernote | https://api.github.com/repos/jbowens/peernote | closed | Splash on Android freaks out | bug low-priority | - Popup causes random zoom in
- clicking links that scroll to contact box causes random zoom-in
| 1.0 | Splash on Android freaks out - - Popup causes random zoom in
- clicking links that scroll to contact box causes random zoom-in
| priority | splash on android freaks out popup causes random zoom in clicking links that scroll to contact box causes random zoom in | 1 |
398,351 | 11,740,269,721 | IssuesEvent | 2020-03-11 19:16:20 | Codaone/DEXBot | https://api.github.com/repos/Codaone/DEXBot | closed | Cli configure menu doesn't skip input for parameters you've said "No" to enabling | [3] Type: Enhancement [4] Priority: Low | Cli configure menu doesn't skip input for parameters you've said "No" to enabling.
Not too much of a problem to work around but for ease of use some changes could be made:
## Expected Behavior
$ cd dexbot
$ dexbot-cli configure
Follow the cli configure menu for RO,
When choosing "No" to using an external price feed, the box to choose the possible external feed sources should be skipped to avoid confusion.
The "input fixed order size" option should appear AFTER the "Relative order size? YES/NO" window, so that inputting a fixed order size can be ignored if relative order size is YES
When choosing "NO" for dynamic spread, the input of Market depth to measure dynamic spread from input should be skipped
The "measure centre price from market orders" window should appear BEFORE the "input manual centre price" so that manual entry can be skipped if "measure centre price from market orders" is selected as YES
The "manual centre price offset" should be skipped if the user says "NO" to "Centre price offset based on market orders"
If NO is chosen for "reset orders on partial fill" the "fill threshold" parameter should be skipped
If NO is chosen for "reset orders on centre price change" the "price change threshold" window should be skipped
If NO is chosen for "order expiration override" the "Order expiration time" window should be skipped. (The default value for order expiration should have the ".0" decimal removed from the end as it's an invalid input for cli configure)
## Specifications
- Version: 0.15.5
- OS: Ubuntu Linux
| 1.0 | Cli configure menu doesn't skip input for parameters you've said "No" to enabling - Cli configure menu doesn't skip input for parameters you've said "No" to enabling.
Not too much of a problem to work around but for ease of use some changes could be made:
## Expected Behavior
$ cd dexbot
$ dexbot-cli configure
Follow the cli configure menu for RO,
When choosing "No" to using an external price feed, the box to choose the possible external feed sources should be skipped to avoid confusion.
The "input fixed order size" option should appear AFTER the "Relative order size? YES/NO" window, so that inputting a fixed order size can be ignored if relative order size is YES
When choosing "NO" for dynamic spread, the input of Market depth to measure dynamic spread from input should be skipped
The "measure centre price from market orders" window should appear BEFORE the "input manual centre price" so that manual entry can be skipped if "measure centre price from market orders" is selected as YES
The "manual centre price offset" should be skipped if the user says "NO" to "Centre price offset based on market orders"
If NO is chosen for "reset orders on partial fill" the "fill threshold" parameter should be skipped
If NO is chosen for "reset orders on centre price change" the "price change threshold" window should be skipped
If NO is chosen for "order expiration override" the "Order expiration time" window should be skipped. (The default value for order expiration should have the ".0" decimal removed from the end as it's an invalid input for cli configure)
## Specifications
- Version: 0.15.5
- OS: Ubuntu Linux
| priority | cli configure menu doesn t skip input for parameters you ve said no to enabling cli configure menu doesn t skip input for parameters you ve said no to enabling not too much of a problem to work around but for ease of use some changes could be made expected behavior cd dexbot dexbot cli configure follow the cli configure menu for ro when choosing no to using an external price feed the box to choose the possible external feed sources should be skipped to avoid confusion the input fixed order size option should appear after the relative order size yes no window so that inputting a fixed order size can be ignored if relative order size is yes when choosing no for dynamic spread the input of market depth to measure dynamic spread from input should be skipped the measure centre price from market orders window should appear before the input manual centre price so that manual entry can be skipped if measure centre price from market orders is selected as yes the manual centre price offset should be skipped if the user says no to centre price offset based on market orders if no is chosen for reset orders on partial fill the fill threshold parameter should be skipped if no is chosen for reset orders on centre price change the price change threshold window should be skipped if no is chosen for order expiration override the order expiration time window should be skipped the default value for order expiration should have the decimal removed from the end as it s an invalid input for cli configure specifications version os ubuntu linux | 1 |
485,002 | 13,959,710,668 | IssuesEvent | 2020-10-24 17:39:52 | ihhub/fheroes2 | https://api.github.com/repos/ihhub/fheroes2 | closed | Castle construction screen, Recruit Hero window, "OKAY" and "CANCEL" buttons are not at the same horizontal distance from the edge of the window | low priority ui | In fheroes2, the "OKAY" and "CANCEL" buttons are not at the same horizontal distance from the edge of the window.
In fheroes2:
 | 1.0 | Castle construction screen, Recruit Hero window, "OKAY" and "CANCEL" buttons are not at the same horizontal distance from the edge of the window - In fheroes2, the "OKAY" and "CANCEL" buttons are not at the same horizontal distance from the edge of the window.
In fheroes2:
 | priority | castle construction screen recruit hero window okay and cancel buttons are not at the same horizontal distance from the edge of the window in the okay and cancel buttons are not at the same horizontal distance from the edge of the window in | 1 |
192,696 | 6,876,404,282 | IssuesEvent | 2017-11-20 00:11:04 | OpenNebula/one | https://api.github.com/repos/OpenNebula/one | opened | Per-datastore DEFAULT_IMAGE_TYPE | Category: Core & System Priority: Low Status: Pending Tracker: Backlog | ---
Author Name: **Ruben S. Montero** (@rsmontero)
Original Redmine Issue: 2112, https://dev.opennebula.org/issues/2112
Original Date: 2013-06-09
---
```
Hi,
Is it possible to set DEFAULT_IMAGE_TYPE per-datastore? Ex. if I want all images created in a certain datastore to be of type CDROM I would:
- Set DEFAULT_IMAGE_TYPE to CDROM for the datastore.
- Deny images creation in my DS driver for new images type which are not CDROM (in case a user tries to create an IMAGE and specify a TYPE other than CDROM.
```
| 1.0 | Per-datastore DEFAULT_IMAGE_TYPE - ---
Author Name: **Ruben S. Montero** (@rsmontero)
Original Redmine Issue: 2112, https://dev.opennebula.org/issues/2112
Original Date: 2013-06-09
---
```
Hi,
Is it possible to set DEFAULT_IMAGE_TYPE per-datastore? Ex. if I want all images created in a certain datastore to be of type CDROM I would:
- Set DEFAULT_IMAGE_TYPE to CDROM for the datastore.
- Deny images creation in my DS driver for new images type which are not CDROM (in case a user tries to create an IMAGE and specify a TYPE other than CDROM.
```
| priority | per datastore default image type author name ruben s montero rsmontero original redmine issue original date hi is it possible to set default image type per datastore ex if i want all images created in a certain datastore to be of type cdrom i would set default image type to cdrom for the datastore deny images creation in my ds driver for new images type which are not cdrom in case a user tries to create an image and specify a type other than cdrom | 1 |
514,750 | 14,943,482,472 | IssuesEvent | 2021-01-25 23:09:06 | ProjectSidewalk/SidewalkWebpage | https://api.github.com/repos/ProjectSidewalk/SidewalkWebpage | closed | Admin Interface: Update comments table to show street ids and user position and add a link that allows you to jump to that location | Admin Interface Priority: Low potential-intern-assignment | Currently, the comments table (see figure below) only shows the panorama id where the comment was submitted. Some times, we have seen that, there is no pano id for a location. It would be useful to show more information to specifically pin-point the location where the feedback was submitted.
I checked that the database stores `street_edge_id` as well as `latlng` position of the user. We should surface those values in the admin interface as two new columns.
The street edge id should be a link to audit that street id which is the end point `<>/audit/street/<street-id>`.
It would also be useful to have an endpoint that directly puts you at the location where the comment was submitted. So something like `<>/audit/street/<street-id>/?lat=<lat>&lng=<lng>`.

| 1.0 | Admin Interface: Update comments table to show street ids and user position and add a link that allows you to jump to that location - Currently, the comments table (see figure below) only shows the panorama id where the comment was submitted. Some times, we have seen that, there is no pano id for a location. It would be useful to show more information to specifically pin-point the location where the feedback was submitted.
I checked that the database stores `street_edge_id` as well as `latlng` position of the user. We should surface those values in the admin interface as two new columns.
The street edge id should be a link to audit that street id which is the end point `<>/audit/street/<street-id>`.
It would also be useful to have an endpoint that directly puts you at the location where the comment was submitted. So something like `<>/audit/street/<street-id>/?lat=<lat>&lng=<lng>`.

| priority | admin interface update comments table to show street ids and user position and add a link that allows you to jump to that location currently the comments table see figure below only shows the panorama id where the comment was submitted some times we have seen that there is no pano id for a location it would be useful to show more information to specifically pin point the location where the feedback was submitted i checked that the database stores street edge id as well as latlng position of the user we should surface those values in the admin interface as two new columns the street edge id should be a link to audit that street id which is the end point audit street it would also be useful to have an endpoint that directly puts you at the location where the comment was submitted so something like audit street lat lng | 1 |
679,264 | 23,225,982,805 | IssuesEvent | 2022-08-03 00:11:26 | docker-mailserver/docker-mailserver | https://api.github.com/repos/docker-mailserver/docker-mailserver | opened | Dovecot LDAP Operations Error | meta/needs triage meta/help wanted kind/question priority/low | I am attempting to configure docker mailserver to use LDAP for authentication. I've spent several hours going over the documentation and have fixed a lot of problems I've ran into but I can't get past this one. When attempting to login via Thunderbird, I see the following error in DMS docker logs:
```dovecot: auth: Error: ldap(test@example.com,192.168.1.123,<Jnfofjflu37AqAHD>): ldap_search(base=DC=example,DC=com filter=(&(objectclass=person)(sAMAccountName=test))) failed: Operations error```
This is weird because if I run the exact same query in ldp on Windows I get a success:
```
***Searching...
ldap_search_s(ld, "DC=example,DC=com", 2, "(&(objectclass=person)(sAMAccountName=test))", attrList, 0, &msg)
Getting 1 entries:
Dn: CN=test,OU=User,OU=Accounts,DC=example,DC=com
canonicalName: example.com/Accounts/User/test;
name: test;
objectClass (4): top; person; organizationalPerson; user;
```
I have a single domain controller (dc.example.com) running Windows Server 2019. It has SSL enabled on port 636 with a custom CA installed in DMS on startup. Before I did that, I was getting a different error, so I don't think SSL or being able to execute queries on the server is the problem.
Inspecting the security log on the DC reveals this error when I attempt to login to DMS with LDAP:
```
Log Name: Security
Source: Microsoft-Windows-Security-Auditing
Date: 8/2/2022 6:40:44 PM
Event ID: 4625
Task Category: Logon
Level: Information
Keywords: Audit Failure
User: N/A
Computer: DC.example.com
Description:
An account failed to log on.
Subject:
Security ID: SYSTEM
Account Name: DC$
Account Domain: EXAMPLE
Logon ID: 0x3E7
Logon Type: 3
Account For Which Logon Failed:
Security ID: NULL SID
Account Name: test
Account Domain: EXAMPLE
Failure Information:
Failure Reason: Unknown user name or bad password.
Status: 0xC000006D
Sub Status: 0xC000006A
Process Information:
Caller Process ID: 0x278
Caller Process Name: C:\Windows\System32\lsass.exe
Network Information:
Workstation Name: DC
Source Network Address: (docker host IP)
Source Port: 42226
Detailed Authentication Information:
Logon Process: Advapi
Authentication Package: MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
Transited Services: -
Package Name (NTLM only): -
Key Length: 0
```
I've triple check username and password, they are correct. So I have run out of things I can try. Here is my docker-compose file:
```yml
version: '3.3'
services:
docker-mailserver:
restart: unless-stopped
container_name: mail_test
ports:
- "(docker host ip):25:25"
- "(docker host ip):143:143"
- "(docker host ip):587:587"
environment:
- OVERRIDE_HOSTNAME=mail_test.example.com
- ENABLE_SPAMASSASSIN=0
- ENABLE_CLAMAV=0
- ENABLE_FAIL2BAN=0
- ENABLE_POSTGREY=0
- ONE_DIR=1
- POSTFIX_INET_PROTOCOLS=ipv4
- TZ=America/Chicago
- LOG_LEVEL=trace
- SSL_TYPE=manual
- SSL_CERT_PATH=/tmp/docker-mailserver/pub.pem
- SSL_KEY_PATH=/tmp/docker-mailserver/priv.pem
- ENABLE_LDAP=1
- LDAP_SERVER_HOST=ldaps://dc.example.com:636
- LDAP_BIND_DN=CN=Admin,OU=User,OU=Accounts,DC=example,DC=com
- LDAP_BIND_PW=****
- LDAP_SEARCH_BASE=DC=example,DC=com
- SPOOF_PROTECTION=1
- LDAP_QUERY_FILTER_DOMAIN=(mail=*@%s)
- LDAP_QUERY_FILTER_USER=(&(objectclass=person)(mail=%s))
- LDAP_QUERY_FILTER_ALIAS=(&(objectclass=person)(proxyAddresses=smtp:%s))
- LDAP_QUERY_FILTER_GROUP=(&(objectClass=group)(mail=%s))
- LDAP_QUERY_FILTER_SENDERS=(mail=%s)
- DOVECOT_USER_FILTER=(&(objectclass=person)(sAMAccountName=%n))
- DOVECOT_USER_ATTRS==uid=5000,=gid=5000,=home=/var/mail/%Ln,=mail=maildir:~/Maildir
- DOVECOT_PASS_ATTR=sAMAccountName=user,userPassword=password
- ENABLE_SASLAUTHD=1
- SASLAUTHD_MECHANISMS=ldap
- SASLAUTHD_LDAP_FILTER=(&(sAMAccountName=%U)(objectClass=person))
volumes:
- 'data:/var/mail'
- 'state:/var/mail-state'
- 'logs:/var/log/mail'
- 'config:/tmp/docker-mailserver/'
image: 'mailserver/docker-mailserver:11.1.0'
volumes:
data:
state:
logs:
config:
```
And here are my Thunderbird settings:

| 1.0 | Dovecot LDAP Operations Error - I am attempting to configure docker mailserver to use LDAP for authentication. I've spent several hours going over the documentation and have fixed a lot of problems I've ran into but I can't get past this one. When attempting to login via Thunderbird, I see the following error in DMS docker logs:
```dovecot: auth: Error: ldap(test@example.com,192.168.1.123,<Jnfofjflu37AqAHD>): ldap_search(base=DC=example,DC=com filter=(&(objectclass=person)(sAMAccountName=test))) failed: Operations error```
This is weird because if I run the exact same query in ldp on Windows I get a success:
```
***Searching...
ldap_search_s(ld, "DC=example,DC=com", 2, "(&(objectclass=person)(sAMAccountName=test))", attrList, 0, &msg)
Getting 1 entries:
Dn: CN=test,OU=User,OU=Accounts,DC=example,DC=com
canonicalName: example.com/Accounts/User/test;
name: test;
objectClass (4): top; person; organizationalPerson; user;
```
I have a single domain controller (dc.example.com) running Windows Server 2019. It has SSL enabled on port 636 with a custom CA installed in DMS on startup. Before I did that, I was getting a different error, so I don't think SSL or being able to execute queries on the server is the problem.
Inspecting the security log on the DC reveals this error when I attempt to login to DMS with LDAP:
```
Log Name: Security
Source: Microsoft-Windows-Security-Auditing
Date: 8/2/2022 6:40:44 PM
Event ID: 4625
Task Category: Logon
Level: Information
Keywords: Audit Failure
User: N/A
Computer: DC.example.com
Description:
An account failed to log on.
Subject:
Security ID: SYSTEM
Account Name: DC$
Account Domain: EXAMPLE
Logon ID: 0x3E7
Logon Type: 3
Account For Which Logon Failed:
Security ID: NULL SID
Account Name: test
Account Domain: EXAMPLE
Failure Information:
Failure Reason: Unknown user name or bad password.
Status: 0xC000006D
Sub Status: 0xC000006A
Process Information:
Caller Process ID: 0x278
Caller Process Name: C:\Windows\System32\lsass.exe
Network Information:
Workstation Name: DC
Source Network Address: (docker host IP)
Source Port: 42226
Detailed Authentication Information:
Logon Process: Advapi
Authentication Package: MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
Transited Services: -
Package Name (NTLM only): -
Key Length: 0
```
I've triple check username and password, they are correct. So I have run out of things I can try. Here is my docker-compose file:
```yml
version: '3.3'
services:
docker-mailserver:
restart: unless-stopped
container_name: mail_test
ports:
- "(docker host ip):25:25"
- "(docker host ip):143:143"
- "(docker host ip):587:587"
environment:
- OVERRIDE_HOSTNAME=mail_test.example.com
- ENABLE_SPAMASSASSIN=0
- ENABLE_CLAMAV=0
- ENABLE_FAIL2BAN=0
- ENABLE_POSTGREY=0
- ONE_DIR=1
- POSTFIX_INET_PROTOCOLS=ipv4
- TZ=America/Chicago
- LOG_LEVEL=trace
- SSL_TYPE=manual
- SSL_CERT_PATH=/tmp/docker-mailserver/pub.pem
- SSL_KEY_PATH=/tmp/docker-mailserver/priv.pem
- ENABLE_LDAP=1
- LDAP_SERVER_HOST=ldaps://dc.example.com:636
- LDAP_BIND_DN=CN=Admin,OU=User,OU=Accounts,DC=example,DC=com
- LDAP_BIND_PW=****
- LDAP_SEARCH_BASE=DC=example,DC=com
- SPOOF_PROTECTION=1
- LDAP_QUERY_FILTER_DOMAIN=(mail=*@%s)
- LDAP_QUERY_FILTER_USER=(&(objectclass=person)(mail=%s))
- LDAP_QUERY_FILTER_ALIAS=(&(objectclass=person)(proxyAddresses=smtp:%s))
- LDAP_QUERY_FILTER_GROUP=(&(objectClass=group)(mail=%s))
- LDAP_QUERY_FILTER_SENDERS=(mail=%s)
- DOVECOT_USER_FILTER=(&(objectclass=person)(sAMAccountName=%n))
- DOVECOT_USER_ATTRS==uid=5000,=gid=5000,=home=/var/mail/%Ln,=mail=maildir:~/Maildir
- DOVECOT_PASS_ATTR=sAMAccountName=user,userPassword=password
- ENABLE_SASLAUTHD=1
- SASLAUTHD_MECHANISMS=ldap
- SASLAUTHD_LDAP_FILTER=(&(sAMAccountName=%U)(objectClass=person))
volumes:
- 'data:/var/mail'
- 'state:/var/mail-state'
- 'logs:/var/log/mail'
- 'config:/tmp/docker-mailserver/'
image: 'mailserver/docker-mailserver:11.1.0'
volumes:
data:
state:
logs:
config:
```
And here are my Thunderbird settings:

| priority | dovecot ldap operations error i am attempting to configure docker mailserver to use ldap for authentication i ve spent several hours going over the documentation and have fixed a lot of problems i ve ran into but i can t get past this one when attempting to login via thunderbird i see the following error in dms docker logs dovecot auth error ldap test example com ldap search base dc example dc com filter objectclass person samaccountname test failed operations error this is weird because if i run the exact same query in ldp on windows i get a success searching ldap search s ld dc example dc com objectclass person samaccountname test attrlist msg getting entries dn cn test ou user ou accounts dc example dc com canonicalname example com accounts user test name test objectclass top person organizationalperson user i have a single domain controller dc example com running windows server it has ssl enabled on port with a custom ca installed in dms on startup before i did that i was getting a different error so i don t think ssl or being able to execute queries on the server is the problem inspecting the security log on the dc reveals this error when i attempt to login to dms with ldap log name security source microsoft windows security auditing date pm event id task category logon level information keywords audit failure user n a computer dc example com description an account failed to log on subject security id system account name dc account domain example logon id logon type account for which logon failed security id null sid account name test account domain example failure information failure reason unknown user name or bad password status sub status process information caller process id caller process name c windows lsass exe network information workstation name dc source network address docker host ip source port detailed authentication information logon process advapi authentication package microsoft authentication package transited services package name ntlm only key length i ve triple check username and password they are correct so i have run out of things i can try here is my docker compose file yml version services docker mailserver restart unless stopped container name mail test ports docker host ip docker host ip docker host ip environment override hostname mail test example com enable spamassassin enable clamav enable enable postgrey one dir postfix inet protocols tz america chicago log level trace ssl type manual ssl cert path tmp docker mailserver pub pem ssl key path tmp docker mailserver priv pem enable ldap ldap server host ldaps dc example com ldap bind dn cn admin ou user ou accounts dc example dc com ldap bind pw ldap search base dc example dc com spoof protection ldap query filter domain mail s ldap query filter user objectclass person mail s ldap query filter alias objectclass person proxyaddresses smtp s ldap query filter group objectclass group mail s ldap query filter senders mail s dovecot user filter objectclass person samaccountname n dovecot user attrs uid gid home var mail ln mail maildir maildir dovecot pass attr samaccountname user userpassword password enable saslauthd saslauthd mechanisms ldap saslauthd ldap filter samaccountname u objectclass person volumes data var mail state var mail state logs var log mail config tmp docker mailserver image mailserver docker mailserver volumes data state logs config and here are my thunderbird settings | 1 |
422,099 | 12,266,189,238 | IssuesEvent | 2020-05-07 08:32:02 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.0 staging-1538] Recipe names use class names instead of display name | Priority: Low Status: Fixed Type: Regression Week Task | Recently the item filter and Ecopedia were fixed to use display names instead of class names. This same fix needs to happen for recipe names.

| 1.0 | [0.9.0 staging-1538] Recipe names use class names instead of display name - Recently the item filter and Ecopedia were fixed to use display names instead of class names. This same fix needs to happen for recipe names.

| priority | recipe names use class names instead of display name recently the item filter and ecopedia were fixed to use display names instead of class names this same fix needs to happen for recipe names | 1 |
429,039 | 12,420,201,107 | IssuesEvent | 2020-05-23 10:43:11 | nativescript-vue/nativescript-vue | https://api.github.com/repos/nativescript-vue/nativescript-vue | closed | Whats the differences between $navigateTo and $showModal? | priority:low | I didnt find any explanation in the document, so I am confused with these two functions, In which scenario I should use $showModal? Please help me understand them, thanks. | 1.0 | Whats the differences between $navigateTo and $showModal? - I didnt find any explanation in the document, so I am confused with these two functions, In which scenario I should use $showModal? Please help me understand them, thanks. | priority | whats the differences between navigateto and showmodal i didnt find any explanation in the document so i am confused with these two functions in which scenario i should use showmodal please help me understand them thanks | 1 |
104,222 | 4,203,444,430 | IssuesEvent | 2016-06-28 05:21:39 | Itseez/opencv | https://api.github.com/repos/Itseez/opencv | closed | Add support for IR-Images by VideoCapture(CV_CAP_OPENNI_ASUS) | auto-transferred category: highgui-camera feature priority: low | Transferred from http://code.opencv.org/issues/1961
```
|| Marcel Debout on 2012-05-18 13:00
|| Priority: Low
|| Affected: None
|| Category: highgui-camera
|| Tracker: Feature
|| Difficulty: None
|| PR: None
|| Platform: None / None
```
Add support for IR-Images by VideoCapture(CV_CAP_OPENNI_ASUS)
-----------
```
Hi folks!
It would be nice, if you could add the feature to get the IR Images from the Asus XtionPro by using VideoCapture(CV_CAP_OPENNI_ASUS).
Up to now, it seems like it's only possible to get the RGB and the depth images.
Kind regards,
Marcel
```
History
-------
##### Andrey Kamaev on 2012-05-18 13:02
```
- Target version deleted (2.4.1)
- Priority changed from Normal to Low
```
##### Andrey Kamaev on 2012-08-16 15:28
```
- Category changed from highgui-images to highgui-camera
``` | 1.0 | Add support for IR-Images by VideoCapture(CV_CAP_OPENNI_ASUS) - Transferred from http://code.opencv.org/issues/1961
```
|| Marcel Debout on 2012-05-18 13:00
|| Priority: Low
|| Affected: None
|| Category: highgui-camera
|| Tracker: Feature
|| Difficulty: None
|| PR: None
|| Platform: None / None
```
Add support for IR-Images by VideoCapture(CV_CAP_OPENNI_ASUS)
-----------
```
Hi folks!
It would be nice, if you could add the feature to get the IR Images from the Asus XtionPro by using VideoCapture(CV_CAP_OPENNI_ASUS).
Up to now, it seems like it's only possible to get the RGB and the depth images.
Kind regards,
Marcel
```
History
-------
##### Andrey Kamaev on 2012-05-18 13:02
```
- Target version deleted (2.4.1)
- Priority changed from Normal to Low
```
##### Andrey Kamaev on 2012-08-16 15:28
```
- Category changed from highgui-images to highgui-camera
``` | priority | add support for ir images by videocapture cv cap openni asus transferred from marcel debout on priority low affected none category highgui camera tracker feature difficulty none pr none platform none none add support for ir images by videocapture cv cap openni asus hi folks it would be nice if you could add the feature to get the ir images from the asus xtionpro by using videocapture cv cap openni asus up to now it seems like it s only possible to get the rgb and the depth images kind regards marcel history andrey kamaev on target version deleted priority changed from normal to low andrey kamaev on category changed from highgui images to highgui camera | 1 |
481,050 | 13,879,693,184 | IssuesEvent | 2020-10-17 15:32:52 | michaelskyba/GL-wPoints | https://api.github.com/repos/michaelskyba/GL-wPoints | opened | Show the date of the last time you applied a transaction | Priority 3 - Low enhancement | Have this as an option in the settings tab, which will be disabled by default
This will be shown on the transactions tab, at the bottom of each transaction | 1.0 | Show the date of the last time you applied a transaction - Have this as an option in the settings tab, which will be disabled by default
This will be shown on the transactions tab, at the bottom of each transaction | priority | show the date of the last time you applied a transaction have this as an option in the settings tab which will be disabled by default this will be shown on the transactions tab at the bottom of each transaction | 1 |
578,853 | 17,156,218,005 | IssuesEvent | 2021-07-14 07:14:37 | logisim-evolution/logisim-evolution | https://api.github.com/repos/logisim-evolution/logisim-evolution | closed | Simple Verilog and VHDL exports. | low priority | I just want to be able to export my design as a verilog or vhdl file. I don't want to have to specify a board and mark which parts of the board I am using. I want to give an input a name and have it listed as that in a verilog output.
Also somewhat related, could someone give me a brief description of how to add a part to the list of compatible parts. I want to use the controlled buffer in my fpga designs and I think it should be simple for me to implement. | 1.0 | Simple Verilog and VHDL exports. - I just want to be able to export my design as a verilog or vhdl file. I don't want to have to specify a board and mark which parts of the board I am using. I want to give an input a name and have it listed as that in a verilog output.
Also somewhat related, could someone give me a brief description of how to add a part to the list of compatible parts. I want to use the controlled buffer in my fpga designs and I think it should be simple for me to implement. | priority | simple verilog and vhdl exports i just want to be able to export my design as a verilog or vhdl file i don t want to have to specify a board and mark which parts of the board i am using i want to give an input a name and have it listed as that in a verilog output also somewhat related could someone give me a brief description of how to add a part to the list of compatible parts i want to use the controlled buffer in my fpga designs and i think it should be simple for me to implement | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.