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
957
labels
stringlengths
4
795
body
stringlengths
1
259k
index
stringclasses
12 values
text_combine
stringlengths
96
259k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
250,557
7,978,750,561
IssuesEvent
2018-07-17 19:21:29
Vhoyon/Discord-Bot
https://api.github.com/repos/Vhoyon/Discord-Bot
closed
Add a Volume setting to the settings command
Feature Request: Commands Priority: Medium settings
This field could take the form of `volume`. The field would only take numeric values between 0 and 100. This would default to `60`.
1.0
Add a Volume setting to the settings command - This field could take the form of `volume`. The field would only take numeric values between 0 and 100. This would default to `60`.
priority
add a volume setting to the settings command this field could take the form of volume the field would only take numeric values between and this would default to
1
126,640
4,998,539,185
IssuesEvent
2016-12-09 20:10:59
ProjectSidewalk/SidewalkWebpage
https://api.github.com/repos/ProjectSidewalk/SidewalkWebpage
closed
Change jumping mechanism in the system
Priority: Medium pull-request-submitted
Frequent jumps while auditing is annoying and many users (>4/10 434 students) in our usability studies have that pointed out. Jumps usually occur when the routing algorithm places the user either near the boundary of a neighborhood or when all connected routes around the user's current location are audited and (s)he is moved to a new location. This becomes even more frequent when you are nearing neighborhood completion. This dramatically reduces user experience esp for users who actively contribute. Based on today's discussion in the meeting, here is the **solution**: **Idea**: Not to automatically jump the user but give the user an option to label the intersection before instructing the user to jump. **Steps**: 1: Determine the jump location > **TODO**: Implement the required mechanism 2: At the jump location, give the user a message (bottom right corner of the GSV screen) telling the user to finish labeling this location and then click on that message to jump > **TODO**: brainstorm the message text 3: If the user moves far from the jump location after labeling, then show the modal message that “we are jumping you to a new location” > **TODO**: (1) Implement the required mechanism to track user's actions at the jump location, and (2) brainstorm this jump message text - #286 This will also resolve issues #275, #314 and #286.
1.0
Change jumping mechanism in the system - Frequent jumps while auditing is annoying and many users (>4/10 434 students) in our usability studies have that pointed out. Jumps usually occur when the routing algorithm places the user either near the boundary of a neighborhood or when all connected routes around the user's current location are audited and (s)he is moved to a new location. This becomes even more frequent when you are nearing neighborhood completion. This dramatically reduces user experience esp for users who actively contribute. Based on today's discussion in the meeting, here is the **solution**: **Idea**: Not to automatically jump the user but give the user an option to label the intersection before instructing the user to jump. **Steps**: 1: Determine the jump location > **TODO**: Implement the required mechanism 2: At the jump location, give the user a message (bottom right corner of the GSV screen) telling the user to finish labeling this location and then click on that message to jump > **TODO**: brainstorm the message text 3: If the user moves far from the jump location after labeling, then show the modal message that “we are jumping you to a new location” > **TODO**: (1) Implement the required mechanism to track user's actions at the jump location, and (2) brainstorm this jump message text - #286 This will also resolve issues #275, #314 and #286.
priority
change jumping mechanism in the system frequent jumps while auditing is annoying and many users students in our usability studies have that pointed out jumps usually occur when the routing algorithm places the user either near the boundary of a neighborhood or when all connected routes around the user s current location are audited and s he is moved to a new location this becomes even more frequent when you are nearing neighborhood completion this dramatically reduces user experience esp for users who actively contribute based on today s discussion in the meeting here is the solution idea not to automatically jump the user but give the user an option to label the intersection before instructing the user to jump steps determine the jump location todo implement the required mechanism at the jump location give the user a message bottom right corner of the gsv screen telling the user to finish labeling this location and then click on that message to jump todo brainstorm the message text if the user moves far from the jump location after labeling then show the modal message that “we are jumping you to a new location” todo implement the required mechanism to track user s actions at the jump location and brainstorm this jump message text this will also resolve issues and
1
711,445
24,464,481,372
IssuesEvent
2022-10-07 13:57:10
AY2223S1-CS2103T-T15-1/tp
https://api.github.com/repos/AY2223S1-CS2103T-T15-1/tp
closed
Change how information is presented in the `PersonCard`
enhancement priority.medium type.ui
Currently the information shown in the `PersonCard` does not contains a field name besides the **Employee ID**. <img width="1015" alt="image" src="https://user-images.githubusercontent.com/37807290/194542174-dd923a00-d910-4277-a2a6-16058b9d71c3.png"> Hence, I think we can include a field name for every field so that the delivery of content is clearer and easier to be understand.
1.0
Change how information is presented in the `PersonCard` - Currently the information shown in the `PersonCard` does not contains a field name besides the **Employee ID**. <img width="1015" alt="image" src="https://user-images.githubusercontent.com/37807290/194542174-dd923a00-d910-4277-a2a6-16058b9d71c3.png"> Hence, I think we can include a field name for every field so that the delivery of content is clearer and easier to be understand.
priority
change how information is presented in the personcard currently the information shown in the personcard does not contains a field name besides the employee id img width alt image src hence i think we can include a field name for every field so that the delivery of content is clearer and easier to be understand
1
165,161
6,264,629,170
IssuesEvent
2017-07-16 10:03:50
pmrukot/aion
https://api.github.com/repos/pmrukot/aion
opened
Refactor Elm
Priority: Medium Status: Blocked Type: Question
**Type** Enhancement **Current behaviour** We need to improve our frontend code, the more we add to it, the worse it gets. We should do this as soon as we finish with #34 **Expected behaviour** My suggestions: - [ ] `roomId` is an `Int`, not sure why that's the case, as in most of the cases we convert it to String. We could just make it a string and AFAIK, that's the way it should be done anyway. - [ ] Actually in the later stages I would refrain from using a raw id as it's not so safe, I believe our frontend part should use encoded ids, we don't want to let users know how much data we actually have in our dbs. - [ ] As for the architecture: * Create Update.elm for Room and move all room-specific logic to this file * Create Msgs.elm for Room resource * I believe that we should have separate modules for `Room`, `Profile` (#35) and `DataPanel` (or however we would call the module taking care of the question, subject forms etc.) **Motivation / use case** Our project grows larger, we need to remodel it so that it's easier to maintain.
1.0
Refactor Elm - **Type** Enhancement **Current behaviour** We need to improve our frontend code, the more we add to it, the worse it gets. We should do this as soon as we finish with #34 **Expected behaviour** My suggestions: - [ ] `roomId` is an `Int`, not sure why that's the case, as in most of the cases we convert it to String. We could just make it a string and AFAIK, that's the way it should be done anyway. - [ ] Actually in the later stages I would refrain from using a raw id as it's not so safe, I believe our frontend part should use encoded ids, we don't want to let users know how much data we actually have in our dbs. - [ ] As for the architecture: * Create Update.elm for Room and move all room-specific logic to this file * Create Msgs.elm for Room resource * I believe that we should have separate modules for `Room`, `Profile` (#35) and `DataPanel` (or however we would call the module taking care of the question, subject forms etc.) **Motivation / use case** Our project grows larger, we need to remodel it so that it's easier to maintain.
priority
refactor elm type enhancement current behaviour we need to improve our frontend code the more we add to it the worse it gets we should do this as soon as we finish with expected behaviour my suggestions roomid is an int not sure why that s the case as in most of the cases we convert it to string we could just make it a string and afaik that s the way it should be done anyway actually in the later stages i would refrain from using a raw id as it s not so safe i believe our frontend part should use encoded ids we don t want to let users know how much data we actually have in our dbs as for the architecture create update elm for room and move all room specific logic to this file create msgs elm for room resource i believe that we should have separate modules for room profile and datapanel or however we would call the module taking care of the question subject forms etc motivation use case our project grows larger we need to remodel it so that it s easier to maintain
1
271,910
8,492,030,550
IssuesEvent
2018-10-27 18:42:47
CS2103-AY1819S1-W17-2/main
https://api.github.com/repos/CS2103-AY1819S1-W17-2/main
opened
Add UI for display of module details
enhancement priority.Medium type.UI
The details of module card should be shown inside browser panel when the user clicks on the module card.
1.0
Add UI for display of module details - The details of module card should be shown inside browser panel when the user clicks on the module card.
priority
add ui for display of module details the details of module card should be shown inside browser panel when the user clicks on the module card
1
685,874
23,470,126,747
IssuesEvent
2022-08-16 20:51:41
dhowe/AdNauseam
https://api.github.com/repos/dhowe/AdNauseam
closed
Update Logger Color Reference.
PRIORITY: Medium
In high resolution screens the image reference for the logger colors is really low quality. We should probably do it in HTML instead. ![Screenshot 2022-08-16 at 15 20 03](https://user-images.githubusercontent.com/4967860/184890073-aa3d9848-f14b-44ff-bae6-f45ce7034297.png)
1.0
Update Logger Color Reference. - In high resolution screens the image reference for the logger colors is really low quality. We should probably do it in HTML instead. ![Screenshot 2022-08-16 at 15 20 03](https://user-images.githubusercontent.com/4967860/184890073-aa3d9848-f14b-44ff-bae6-f45ce7034297.png)
priority
update logger color reference in high resolution screens the image reference for the logger colors is really low quality we should probably do it in html instead
1
179,800
6,628,718,677
IssuesEvent
2017-09-23 21:43:34
beloitcollegecomputerscience/OED
https://api.github.com/repos/beloitcollegecomputerscience/OED
closed
Client UI options is not responsive on mobile devices
medium priority
We need to display properly on multiple types of screens.
1.0
Client UI options is not responsive on mobile devices - We need to display properly on multiple types of screens.
priority
client ui options is not responsive on mobile devices we need to display properly on multiple types of screens
1
676,254
23,120,478,037
IssuesEvent
2022-07-27 20:54:05
Alluxio/alluxio
https://api.github.com/repos/Alluxio/alluxio
closed
Supports Fuse chown user or group separately
priority-medium area-fuse type-bug
**Alluxio Version:** 2.9.0-SNAPSHOT **Describe the bug** Currently when chown user or group only, the non-set user or group is INVALID user/group id and chown will return 0 and do nothing which violate the POSIX assumption **To Reproduce** PJDFSTEST chown/05.t ``` expect 0 -u 65534 -g 65533,65534 -- chown ${n1}/${n2} -1 65533 expect 65534,65533 -u 65534 -g 65534 stat ${n1}/${n2} uid,gid expected 65534,65533, got 65534,65534 ``` **Expected behavior** Chown should be able to set owner or group separately **Urgency** Describe the impact and urgency of the bug. **Are you planning to fix it** Please indicate if you are already working on a PR. **Additional context** Add any other context about the problem here.
1.0
Supports Fuse chown user or group separately - **Alluxio Version:** 2.9.0-SNAPSHOT **Describe the bug** Currently when chown user or group only, the non-set user or group is INVALID user/group id and chown will return 0 and do nothing which violate the POSIX assumption **To Reproduce** PJDFSTEST chown/05.t ``` expect 0 -u 65534 -g 65533,65534 -- chown ${n1}/${n2} -1 65533 expect 65534,65533 -u 65534 -g 65534 stat ${n1}/${n2} uid,gid expected 65534,65533, got 65534,65534 ``` **Expected behavior** Chown should be able to set owner or group separately **Urgency** Describe the impact and urgency of the bug. **Are you planning to fix it** Please indicate if you are already working on a PR. **Additional context** Add any other context about the problem here.
priority
supports fuse chown user or group separately alluxio version snapshot describe the bug currently when chown user or group only the non set user or group is invalid user group id and chown will return and do nothing which violate the posix assumption to reproduce pjdfstest chown t expect u g chown expect u g stat uid gid expected got expected behavior chown should be able to set owner or group separately urgency describe the impact and urgency of the bug are you planning to fix it please indicate if you are already working on a pr additional context add any other context about the problem here
1
40,349
2,868,621,634
IssuesEvent
2015-06-05 19:59:19
dart-lang/dart_style
https://api.github.com/repos/dart-lang/dart_style
closed
Scrollbar resets after invoking formatter
bug Fixed Priority-Medium
<a href="https://github.com/pq"><img src="https://avatars.githubusercontent.com/u/67586?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [pq](https://github.com/pq)** _Originally opened as dart-lang/sdk#16968_ ---- Reported in dartbug.com/2059: The scroll bar resets to zero when you format the source code so the window view jumps back to the beginning of the file.
1.0
Scrollbar resets after invoking formatter - <a href="https://github.com/pq"><img src="https://avatars.githubusercontent.com/u/67586?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [pq](https://github.com/pq)** _Originally opened as dart-lang/sdk#16968_ ---- Reported in dartbug.com/2059: The scroll bar resets to zero when you format the source code so the window view jumps back to the beginning of the file.
priority
scrollbar resets after invoking formatter issue by originally opened as dart lang sdk reported in dartbug com the scroll bar resets to zero when you format the source code so the window view jumps back to the beginning of the file
1
356,286
10,591,184,037
IssuesEvent
2019-10-09 10:18:23
qlcchain/go-qlc
https://api.github.com/repos/qlcchain/go-qlc
closed
simplify the release steps
Priority: Medium Type: Maintenance
### Description of the issue - improve build speed - simplify the release steps ### Issue-Type - [ ] bug report - [x] feature request - [ ] Documentation improvement
1.0
simplify the release steps - ### Description of the issue - improve build speed - simplify the release steps ### Issue-Type - [ ] bug report - [x] feature request - [ ] Documentation improvement
priority
simplify the release steps description of the issue improve build speed simplify the release steps issue type bug report feature request documentation improvement
1
761,269
26,674,048,555
IssuesEvent
2023-01-26 12:54:07
dodona-edu/dodona
https://api.github.com/repos/dodona-edu/dodona
closed
Too much feedback is not always properly stopped from showing up
bug medium priority
In most cases, Dodona automatically stops printing the output of a specific submission if this becomes too much. However, this seems to be judge-specific behaviour and is not handled properly in all cases causing some browsers to crash. See this submission link for an example of the issue: https://dodona.ugent.be/nl/submissions/12839569/
1.0
Too much feedback is not always properly stopped from showing up - In most cases, Dodona automatically stops printing the output of a specific submission if this becomes too much. However, this seems to be judge-specific behaviour and is not handled properly in all cases causing some browsers to crash. See this submission link for an example of the issue: https://dodona.ugent.be/nl/submissions/12839569/
priority
too much feedback is not always properly stopped from showing up in most cases dodona automatically stops printing the output of a specific submission if this becomes too much however this seems to be judge specific behaviour and is not handled properly in all cases causing some browsers to crash see this submission link for an example of the issue
1
488,977
14,100,006,715
IssuesEvent
2020-11-06 02:57:03
hydroshare/hydroshare
https://api.github.com/repos/hydroshare/hydroshare
closed
Selection of map coverage boxes do not work
Discover Medium Priority bug geo and maps
related to #2649 i guess. See that when you select a box within a very large box that expands to most of the world you cannot narrow down results. ![image](https://user-images.githubusercontent.com/13852599/37480414-93cff83c-2855-11e8-908e-a858d0d0ba63.png) ![image](https://user-images.githubusercontent.com/13852599/37480420-993b4c9a-2855-11e8-943e-6a788748317a.png)
1.0
Selection of map coverage boxes do not work - related to #2649 i guess. See that when you select a box within a very large box that expands to most of the world you cannot narrow down results. ![image](https://user-images.githubusercontent.com/13852599/37480414-93cff83c-2855-11e8-908e-a858d0d0ba63.png) ![image](https://user-images.githubusercontent.com/13852599/37480420-993b4c9a-2855-11e8-943e-6a788748317a.png)
priority
selection of map coverage boxes do not work related to i guess see that when you select a box within a very large box that expands to most of the world you cannot narrow down results
1
88,245
3,775,330,487
IssuesEvent
2016-03-17 13:09:26
SpeedCurve-Metrics/SpeedCurve
https://api.github.com/repos/SpeedCurve-Metrics/SpeedCurve
closed
Charts annotated with deployment info are very difficult to read on sites with frequent deploys
priority medium status accepted type enhancement
After adding deploys to my project's SpeedCurve, I see the following, which is a little hard to read :) : <img width="1229" alt="screen shot 2015-12-03 at 4 54 23 pm" src="https://cloud.githubusercontent.com/assets/237410/11575373/a2ea985c-99de-11e5-86f4-cf05b0a993df.png">
1.0
Charts annotated with deployment info are very difficult to read on sites with frequent deploys - After adding deploys to my project's SpeedCurve, I see the following, which is a little hard to read :) : <img width="1229" alt="screen shot 2015-12-03 at 4 54 23 pm" src="https://cloud.githubusercontent.com/assets/237410/11575373/a2ea985c-99de-11e5-86f4-cf05b0a993df.png">
priority
charts annotated with deployment info are very difficult to read on sites with frequent deploys after adding deploys to my project s speedcurve i see the following which is a little hard to read img width alt screen shot at pm src
1
290,509
8,896,015,705
IssuesEvent
2019-01-16 10:16:56
salesagility/SuiteCRM
https://api.github.com/repos/salesagility/SuiteCRM
closed
Emails Module: Inbound Settings Layout, Date Sent and Draft Sending
Emails Fix Proposed Medium Priority Resolved: Next Release bug
When sending an email from SuiteCRM, **date_sent** is not being recorded. When saving the email as **Draft**, there's no option to send the mail. Broken layout for email settings. #### Issue When sending an email from SuiteCRM, **date_sent** is not being recorded. Saved **Draft** emails, don't have option to for sending. Broken layout for email settings. #### Expected Behavior When an email is sent, **date_sent** is not populated. When email is saved as **Draft**, there's an option to send it. #### Actual Behavior When email is sent, date_sent is empty in DB. When email is saved as **Draft**, there's no option for sending it. #### Possible Fix <!--- Not obligatory, but suggest a fix or reason for the bug --> #### Steps to Reproduce 1. Configure inbound email 2. Compose and send an email, check record in database, date_sent is empty. 3. Compose an email and save as **Draft**. Open email record, no option to send it. #### Context This is High priority. Emails module is not working as expected. #### Your Environment * SuiteCRM Version used: v7.10.1 * Browser name and version: Google Chrome - Version 64.0.3282.186 (Official Build) (64-bit) * Environment name and version: PHP 5.5.38, Mysql 5.5 * Operating System and version: CentOS 6.5
1.0
Emails Module: Inbound Settings Layout, Date Sent and Draft Sending - When sending an email from SuiteCRM, **date_sent** is not being recorded. When saving the email as **Draft**, there's no option to send the mail. Broken layout for email settings. #### Issue When sending an email from SuiteCRM, **date_sent** is not being recorded. Saved **Draft** emails, don't have option to for sending. Broken layout for email settings. #### Expected Behavior When an email is sent, **date_sent** is not populated. When email is saved as **Draft**, there's an option to send it. #### Actual Behavior When email is sent, date_sent is empty in DB. When email is saved as **Draft**, there's no option for sending it. #### Possible Fix <!--- Not obligatory, but suggest a fix or reason for the bug --> #### Steps to Reproduce 1. Configure inbound email 2. Compose and send an email, check record in database, date_sent is empty. 3. Compose an email and save as **Draft**. Open email record, no option to send it. #### Context This is High priority. Emails module is not working as expected. #### Your Environment * SuiteCRM Version used: v7.10.1 * Browser name and version: Google Chrome - Version 64.0.3282.186 (Official Build) (64-bit) * Environment name and version: PHP 5.5.38, Mysql 5.5 * Operating System and version: CentOS 6.5
priority
emails module inbound settings layout date sent and draft sending when sending an email from suitecrm date sent is not being recorded when saving the email as draft there s no option to send the mail broken layout for email settings issue when sending an email from suitecrm date sent is not being recorded saved draft emails don t have option to for sending broken layout for email settings expected behavior when an email is sent date sent is not populated when email is saved as draft there s an option to send it actual behavior when email is sent date sent is empty in db when email is saved as draft there s no option for sending it possible fix steps to reproduce configure inbound email compose and send an email check record in database date sent is empty compose an email and save as draft open email record no option to send it context this is high priority emails module is not working as expected your environment suitecrm version used browser name and version google chrome version official build bit environment name and version php mysql operating system and version centos
1
609,221
18,857,696,954
IssuesEvent
2021-11-12 08:55:28
status-im/status-desktop
https://api.github.com/repos/status-im/status-desktop
opened
Links can't be opened in Status browser
bug Browser priority 2: medium
# Bug Report ## Description Clicking a link and proceeding with Open in Status leads to new tab being opened, however the URL is not being pasted and reached ## Steps to reproduce 1. enable browser 2. paste a link in public chat 3. click link 4. choose Open in Status #### Expected behavior New tab is opened with the URL u clicked #### Actual behavior Tab is empty https://user-images.githubusercontent.com/82375995/141439027-ccdba71d-106e-49c2-b991-f43608066498.mov ### Additional Information - Status desktop version: master, commit `2d0c95feb3e3eca8895fde4425c9c861c49ca992` - Operating System: macOS Big Sur
1.0
Links can't be opened in Status browser - # Bug Report ## Description Clicking a link and proceeding with Open in Status leads to new tab being opened, however the URL is not being pasted and reached ## Steps to reproduce 1. enable browser 2. paste a link in public chat 3. click link 4. choose Open in Status #### Expected behavior New tab is opened with the URL u clicked #### Actual behavior Tab is empty https://user-images.githubusercontent.com/82375995/141439027-ccdba71d-106e-49c2-b991-f43608066498.mov ### Additional Information - Status desktop version: master, commit `2d0c95feb3e3eca8895fde4425c9c861c49ca992` - Operating System: macOS Big Sur
priority
links can t be opened in status browser bug report description clicking a link and proceeding with open in status leads to new tab being opened however the url is not being pasted and reached steps to reproduce enable browser paste a link in public chat click link choose open in status expected behavior new tab is opened with the url u clicked actual behavior tab is empty additional information status desktop version master commit operating system macos big sur
1
565,151
16,749,926,202
IssuesEvent
2021-06-11 21:10:25
Kong/kubernetes-ingress-controller
https://api.github.com/repos/Kong/kubernetes-ingress-controller
closed
Fix 2.0 KongClusterPlugin handling
bug priority/medium size/medium
As-is, 2.0 cannot see KongClusterPlugins (see https://github.com/Kong/kubernetes-ingress-controller/pull/1360#issue-654148265). Initial review indicates that this is because the current KongClusterPlugin type is namespaced: https://github.com/Kong/kubernetes-ingress-controller/blob/e7ca5dd403f95e58dd30c7428afc4d3f76814b9f/railgun/config/crd/bases/configuration.konghq.com_kongclusterplugins.yaml#L10-L17 It should not be, as all controller code that interacts with it expects cluster-level resources by design. Debugging indicates that you can currently create namespaced KongClusterPlugins in the store fine, but the store package can't handle those. Fixing kubebuilder tags should address this: ``` diff --git a/railgun/apis/configuration/v1/kongclusterplugin_types.go b/railgun/apis/configuration/v1/kongclusterplugin_types.go index 90b481bf..7a5a741f 100644 --- a/railgun/apis/configuration/v1/kongclusterplugin_types.go +++ b/railgun/apis/configuration/v1/kongclusterplugin_types.go @@ -24,6 +24,7 @@ import ( //+genclient //+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object //+kubebuilder:object:root=true +//+kubebuilder:resource:scope=Cluster //+kubebuilder:subresource:status //+kubebuilder:storageversion ``` With that in place, [regenerating code](https://github.com/Kong/kubernetes-ingress-controller/issues/1358) does update the CRD manifest, but not the generated client. `make generate.clientsets` should, AFAIK, be the last remaining step, but it's [giving me trouble](https://gist.github.com/rainest/418d72770a43848414f0e042b8f57283). Note that the original test from #1360 will need a small change to remove the namespace from its clientset calls once this is fixed.
1.0
Fix 2.0 KongClusterPlugin handling - As-is, 2.0 cannot see KongClusterPlugins (see https://github.com/Kong/kubernetes-ingress-controller/pull/1360#issue-654148265). Initial review indicates that this is because the current KongClusterPlugin type is namespaced: https://github.com/Kong/kubernetes-ingress-controller/blob/e7ca5dd403f95e58dd30c7428afc4d3f76814b9f/railgun/config/crd/bases/configuration.konghq.com_kongclusterplugins.yaml#L10-L17 It should not be, as all controller code that interacts with it expects cluster-level resources by design. Debugging indicates that you can currently create namespaced KongClusterPlugins in the store fine, but the store package can't handle those. Fixing kubebuilder tags should address this: ``` diff --git a/railgun/apis/configuration/v1/kongclusterplugin_types.go b/railgun/apis/configuration/v1/kongclusterplugin_types.go index 90b481bf..7a5a741f 100644 --- a/railgun/apis/configuration/v1/kongclusterplugin_types.go +++ b/railgun/apis/configuration/v1/kongclusterplugin_types.go @@ -24,6 +24,7 @@ import ( //+genclient //+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object //+kubebuilder:object:root=true +//+kubebuilder:resource:scope=Cluster //+kubebuilder:subresource:status //+kubebuilder:storageversion ``` With that in place, [regenerating code](https://github.com/Kong/kubernetes-ingress-controller/issues/1358) does update the CRD manifest, but not the generated client. `make generate.clientsets` should, AFAIK, be the last remaining step, but it's [giving me trouble](https://gist.github.com/rainest/418d72770a43848414f0e042b8f57283). Note that the original test from #1360 will need a small change to remove the namespace from its clientset calls once this is fixed.
priority
fix kongclusterplugin handling as is cannot see kongclusterplugins see initial review indicates that this is because the current kongclusterplugin type is namespaced it should not be as all controller code that interacts with it expects cluster level resources by design debugging indicates that you can currently create namespaced kongclusterplugins in the store fine but the store package can t handle those fixing kubebuilder tags should address this diff git a railgun apis configuration kongclusterplugin types go b railgun apis configuration kongclusterplugin types go index a railgun apis configuration kongclusterplugin types go b railgun apis configuration kongclusterplugin types go import genclient deepcopy gen interfaces io apimachinery pkg runtime object kubebuilder object root true kubebuilder resource scope cluster kubebuilder subresource status kubebuilder storageversion with that in place does update the crd manifest but not the generated client make generate clientsets should afaik be the last remaining step but it s note that the original test from will need a small change to remove the namespace from its clientset calls once this is fixed
1
416,417
12,146,096,046
IssuesEvent
2020-04-24 10:29:32
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Second tooltip in a chat message cant be hovered over
Priority: Medium Status: Fixed Week Task
![image](https://user-images.githubusercontent.com/3536496/78733740-228cd200-78fb-11ea-8540-cb50ece7d2ca.png) Cant hover 'the dude' in this one.
1.0
Second tooltip in a chat message cant be hovered over - ![image](https://user-images.githubusercontent.com/3536496/78733740-228cd200-78fb-11ea-8540-cb50ece7d2ca.png) Cant hover 'the dude' in this one.
priority
second tooltip in a chat message cant be hovered over cant hover the dude in this one
1
76,977
3,506,234,101
IssuesEvent
2016-01-08 04:56:36
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
[Spell]Sweeping Strikes (BB #36)
Category: Miscellaneous migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** pdx15 **Original Date:** 18.02.2010 18:17:31 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/36 <hr> Sweeping Strikes http://www.wowhead.com/?spell=12328 stuck with Whirlwind http://www.wowhead.com/?spell=1680 ,however the such shouldn't be. thx :) Sorry for English :)
1.0
[Spell]Sweeping Strikes (BB #36) - This issue was migrated from bitbucket. **Original Reporter:** pdx15 **Original Date:** 18.02.2010 18:17:31 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/36 <hr> Sweeping Strikes http://www.wowhead.com/?spell=12328 stuck with Whirlwind http://www.wowhead.com/?spell=1680 ,however the such shouldn't be. thx :) Sorry for English :)
priority
sweeping strikes bb this issue was migrated from bitbucket original reporter original date gmt original priority major original type bug original state resolved direct link sweeping strikes stuck with whirlwind however the such shouldn t be thx sorry for english
1
504,084
14,612,793,124
IssuesEvent
2020-12-22 06:56:26
Fl45h13-SS13/Fl45h13_Bay
https://api.github.com/repos/Fl45h13-SS13/Fl45h13_Bay
opened
Подгрузка ресурсов NanoUI
priority: medium type: feature
<!-- Это общий шаблон для создания issue. Все данные необходимо вписывать ниже заголовка, но до комментария следующего раздела --> <!-- Этот раздел должен содержать описание предложения, либо же описание и шаги для воспроизведения ошибки --> ## Описание Каждый раз при перезаходе приходится ждать довольно большое время, пока NanoUI manager отправит все ресурсы клиенту. Неважно, есть у клиента кэш, нет у него кэша. Это поведение нужно исправить, либо оптимизировать отдачу - сейчас оно отправляет файлы по одному, это уж точно не адекватно.
1.0
Подгрузка ресурсов NanoUI - <!-- Это общий шаблон для создания issue. Все данные необходимо вписывать ниже заголовка, но до комментария следующего раздела --> <!-- Этот раздел должен содержать описание предложения, либо же описание и шаги для воспроизведения ошибки --> ## Описание Каждый раз при перезаходе приходится ждать довольно большое время, пока NanoUI manager отправит все ресурсы клиенту. Неважно, есть у клиента кэш, нет у него кэша. Это поведение нужно исправить, либо оптимизировать отдачу - сейчас оно отправляет файлы по одному, это уж точно не адекватно.
priority
подгрузка ресурсов nanoui описание каждый раз при перезаходе приходится ждать довольно большое время пока nanoui manager отправит все ресурсы клиенту неважно есть у клиента кэш нет у него кэша это поведение нужно исправить либо оптимизировать отдачу сейчас оно отправляет файлы по одному это уж точно не адекватно
1
23,038
2,652,185,169
IssuesEvent
2015-03-16 16:01:32
BlakeCS-Spring2015/Bakken-Prototype
https://api.github.com/repos/BlakeCS-Spring2015/Bakken-Prototype
closed
Many shades of grey on collectionview
enhancement group-3 Medium Priority
Launch app, look at collection view. The photos multiple shades of grey just around the picture. Looks strange.
1.0
Many shades of grey on collectionview - Launch app, look at collection view. The photos multiple shades of grey just around the picture. Looks strange.
priority
many shades of grey on collectionview launch app look at collection view the photos multiple shades of grey just around the picture looks strange
1
41,061
2,868,969,699
IssuesEvent
2015-06-05 22:16:48
dart-lang/pub
https://api.github.com/repos/dart-lang/pub
opened
Pub's version resolution goes exponential on a simple pubspec
bug Priority-Medium Started
<a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)** _Originally opened as dart-lang/sdk#16961_ ---- The following pubspec causes pub's version resolution to go exponential: &nbsp;&nbsp;name: app &nbsp;&nbsp;dependencies: &nbsp;&nbsp;&nbsp;&nbsp;intl: 0.9.0 &nbsp;&nbsp;&nbsp;&nbsp;polymer: &quot;&lt;=0.9.5&quot; This happens as of 1.2.0-edge.32615; the exponential churn involves pub's barback constraint, so it may change in future versions. The same pattern should persist, though. This is caused by a conflicting constraint (intl and recent stack_trace versions have disjoint constraints on path), and compounded by the fact that pub tries to backtrack through every archived version of polymer. We may be able to mitigate this behavior by more aggressively checking for disjoint constraints; we may not be able to avoid checking all older polymer versions, but we can quickly discard them by noticing that their barback constraint is disjoint with pub's.
1.0
Pub's version resolution goes exponential on a simple pubspec - <a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)** _Originally opened as dart-lang/sdk#16961_ ---- The following pubspec causes pub's version resolution to go exponential: &nbsp;&nbsp;name: app &nbsp;&nbsp;dependencies: &nbsp;&nbsp;&nbsp;&nbsp;intl: 0.9.0 &nbsp;&nbsp;&nbsp;&nbsp;polymer: &quot;&lt;=0.9.5&quot; This happens as of 1.2.0-edge.32615; the exponential churn involves pub's barback constraint, so it may change in future versions. The same pattern should persist, though. This is caused by a conflicting constraint (intl and recent stack_trace versions have disjoint constraints on path), and compounded by the fact that pub tries to backtrack through every archived version of polymer. We may be able to mitigate this behavior by more aggressively checking for disjoint constraints; we may not be able to avoid checking all older polymer versions, but we can quickly discard them by noticing that their barback constraint is disjoint with pub's.
priority
pub s version resolution goes exponential on a simple pubspec issue by originally opened as dart lang sdk the following pubspec causes pub s version resolution to go exponential nbsp nbsp name app nbsp nbsp dependencies nbsp nbsp nbsp nbsp intl nbsp nbsp nbsp nbsp polymer quot lt quot this happens as of edge the exponential churn involves pub s barback constraint so it may change in future versions the same pattern should persist though this is caused by a conflicting constraint intl and recent stack trace versions have disjoint constraints on path and compounded by the fact that pub tries to backtrack through every archived version of polymer we may be able to mitigate this behavior by more aggressively checking for disjoint constraints we may not be able to avoid checking all older polymer versions but we can quickly discard them by noticing that their barback constraint is disjoint with pub s
1
717,373
24,673,227,221
IssuesEvent
2022-10-18 15:05:54
netdata/netdata-cloud
https://api.github.com/repos/netdata/netdata-cloud
closed
[Bug]: Area chart showing only one of the two areas
bug priority/medium cloud-frontend
### Bug description Below you see two dimensions that are supposed to have a value of 5 each, but only one is properly drawn in the area chart. Dunno what happened to the other: <img width="638" alt="image" src="https://user-images.githubusercontent.com/43294513/194118655-7f397d41-84d1-4e32-804f-5107115bd9b4.png"> ### Expected behavior - ### Steps to reproduce Set up fping and try it? I'll provide access to my room if needed. ### Screenshots _No response_ ### Error Logs _No response_ ### Desktop OS: [e.g. iOS] Browser [e.g. chrome, safari] Browser Version [e.g. 22] ### Additional context _No response_
1.0
[Bug]: Area chart showing only one of the two areas - ### Bug description Below you see two dimensions that are supposed to have a value of 5 each, but only one is properly drawn in the area chart. Dunno what happened to the other: <img width="638" alt="image" src="https://user-images.githubusercontent.com/43294513/194118655-7f397d41-84d1-4e32-804f-5107115bd9b4.png"> ### Expected behavior - ### Steps to reproduce Set up fping and try it? I'll provide access to my room if needed. ### Screenshots _No response_ ### Error Logs _No response_ ### Desktop OS: [e.g. iOS] Browser [e.g. chrome, safari] Browser Version [e.g. 22] ### Additional context _No response_
priority
area chart showing only one of the two areas bug description below you see two dimensions that are supposed to have a value of each but only one is properly drawn in the area chart dunno what happened to the other img width alt image src expected behavior steps to reproduce set up fping and try it i ll provide access to my room if needed screenshots no response error logs no response desktop os browser browser version additional context no response
1
465,134
13,357,274,733
IssuesEvent
2020-08-31 09:32:51
DIAGNijmegen/website-content
https://api.github.com/repos/DIAGNijmegen/website-content
opened
AI for health home page restructering
Priority: Medium content enhancement
- [ ] Vacancies in cards - [ ] PhD projects in cards (with fixed max number, active only) - [ ] Master projects in cards (with fixed max number, active only)
1.0
AI for health home page restructering - - [ ] Vacancies in cards - [ ] PhD projects in cards (with fixed max number, active only) - [ ] Master projects in cards (with fixed max number, active only)
priority
ai for health home page restructering vacancies in cards phd projects in cards with fixed max number active only master projects in cards with fixed max number active only
1
523,575
15,185,500,026
IssuesEvent
2021-02-15 11:01:21
FAIRsharing/fairsharing.github.io
https://api.github.com/repos/FAIRsharing/fairsharing.github.io
opened
mocking alert in an alert box
Medium priority
Due to multiple alerts can take up too much space, task should resolve the issue by defining a way to show alerts in a more compact way..
1.0
mocking alert in an alert box - Due to multiple alerts can take up too much space, task should resolve the issue by defining a way to show alerts in a more compact way..
priority
mocking alert in an alert box due to multiple alerts can take up too much space task should resolve the issue by defining a way to show alerts in a more compact way
1
801,157
28,454,871,990
IssuesEvent
2023-04-17 06:05:17
masastack/MASA.Auth
https://api.github.com/repos/masastack/MASA.Auth
closed
Custom Login - Register, action button newline, should be displayed in one line
type/bug status/resolved severity/medium site/staging priority/p2
自定义登录-注册,操作按钮换行,应显示在一行,背景偏移了 ![image](https://user-images.githubusercontent.com/95004531/231726617-60437230-4b99-43dc-a8af-9c81c4d057ae.png) ![image](https://user-images.githubusercontent.com/95004531/231727640-97f6765e-1fe9-430a-96fd-df0818593d81.png)
1.0
Custom Login - Register, action button newline, should be displayed in one line - 自定义登录-注册,操作按钮换行,应显示在一行,背景偏移了 ![image](https://user-images.githubusercontent.com/95004531/231726617-60437230-4b99-43dc-a8af-9c81c4d057ae.png) ![image](https://user-images.githubusercontent.com/95004531/231727640-97f6765e-1fe9-430a-96fd-df0818593d81.png)
priority
custom login register action button newline should be displayed in one line 自定义登录 注册,操作按钮换行,应显示在一行,背景偏移了
1
793,931
28,017,298,526
IssuesEvent
2023-03-28 00:27:29
AY2223S2-CS2103T-W12-1/tp
https://api.github.com/repos/AY2223S2-CS2103T-W12-1/tp
closed
Storing age in FriendlyLink may be a feature flaw
type.Enhancement priority.High severity.Medium
Currently, age of the person is stored in FriendlyLink. This makes it very troublesome for users, since age need to be updated yearly Let's keep the date of birth of each person instead of their age.
1.0
Storing age in FriendlyLink may be a feature flaw - Currently, age of the person is stored in FriendlyLink. This makes it very troublesome for users, since age need to be updated yearly Let's keep the date of birth of each person instead of their age.
priority
storing age in friendlylink may be a feature flaw currently age of the person is stored in friendlylink this makes it very troublesome for users since age need to be updated yearly let s keep the date of birth of each person instead of their age
1
512,969
14,913,419,560
IssuesEvent
2021-01-22 14:07:07
wazuh/wazuh-documentation
https://api.github.com/repos/wazuh/wazuh-documentation
opened
Installation Guide - Open Distro - Rephrase
priority: medium type: refactor
Hi! This issue aims to change the text in the Wazuh documentation - Installation Guide - Open Distro Regards, Pilar
1.0
Installation Guide - Open Distro - Rephrase - Hi! This issue aims to change the text in the Wazuh documentation - Installation Guide - Open Distro Regards, Pilar
priority
installation guide open distro rephrase hi this issue aims to change the text in the wazuh documentation installation guide open distro regards pilar
1
632,573
20,201,248,504
IssuesEvent
2022-02-11 15:27:45
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[studio-ui] Make "Save & close" the default across the board
enhancement priority: medium
Save & close should be the default button for all places where it's implemented.
1.0
[studio-ui] Make "Save & close" the default across the board - Save & close should be the default button for all places where it's implemented.
priority
make save close the default across the board save close should be the default button for all places where it s implemented
1
515,767
14,969,033,019
IssuesEvent
2021-01-27 17:35:57
StingraySoftware/stingray
https://api.github.com/repos/StingraySoftware/stingray
closed
Powerspectrum is not calculated if Lightcurve attributes are vulnerable to little endian / big endian conflict
bug medium-priority
I recently run into a bug where after reading the lightcurve from a file I tried to create a Powerspectra and the following error was thrown: ```python ValueError: dtype >f8 not supported ``` From a little research on StackOverflow this happens because some computers have different definitions of what a double float resolution is. The lightcurve attributes `time` and `counts` were saved as arrays of type `>f8`. manually converting the `lc.time` and `lc.counts` to an array with `dtype=float` solved the problem for me. We should either 1) make this conversion inside the Powerspectrum code, or when storing the Lightcurve values or 2) make the Powerspectrum code compatible with `>f8`. Aparently from the full error log below, `scipy.fftpack` needs a native float type to work, so I believe option 1) is the best one ERROR LOG === ```python --------------------------------------------------------------------------- KeyError Traceback (most recent call last) ~/anaconda3/lib/python3.6/site-packages/scipy/fftpack/basic.py in fft(x, n, axis, overwrite_x) 261 try: --> 262 work_function = _DTYPE_TO_FFT[tmp.dtype] 263 except KeyError: KeyError: dtype('>f8') During handling of the above exception, another exception occurred: ValueError Traceback (most recent call last) <ipython-input-18-1daa50ea0335> in <module>() ----> 1 pd = stingray.AveragedPowerspectrum(slc, segment_size=16, norm='leahy') ~/stingray/build/lib.linux-x86_64-3.6/stingray/powerspectrum.py in __init__(self, lc, segment_size, norm, gti) 408 self.segment_size = segment_size 409 --> 410 Powerspectrum.__init__(self, lc, norm, gti=gti) 411 412 return ~/stingray/build/lib.linux-x86_64-3.6/stingray/powerspectrum.py in __init__(self, lc, norm, gti) 174 """ 175 --> 176 Crossspectrum.__init__(self, lc1=lc, lc2=lc, norm=norm, gti=gti) 177 self.nphots = self.nphots1 178 ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in __init__(self, lc1, lc2, norm, gti) 131 self.lc2 = lc2 132 --> 133 self._make_crossspectrum(lc1, lc2) 134 # These are needed to calculate coherence 135 self._make_auxil_pds(lc1, lc2) ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in _make_crossspectrum(self, lc1, lc2) 651 elif self.type == "powerspectrum": 652 self.cs_all, nphots1_all = \ --> 653 self._make_segment_spectrum(lc1, self.segment_size) 654 655 else: ~/stingray/build/lib.linux-x86_64-3.6/stingray/powerspectrum.py in _make_segment_spectrum(self, lc, segment_size) 432 lc_seg = lightcurve.Lightcurve(time, counts, err=counts_err, 433 err_dist=lc.err_dist.lower()) --> 434 power_seg = Powerspectrum(lc_seg, norm=self.norm) 435 power_all.append(power_seg) 436 nphots_all.append(np.sum(lc_seg.counts)) ~/stingray/build/lib.linux-x86_64-3.6/stingray/powerspectrum.py in __init__(self, lc, norm, gti) 174 """ 175 --> 176 Crossspectrum.__init__(self, lc1=lc, lc2=lc, norm=norm, gti=gti) 177 self.nphots = self.nphots1 178 ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in __init__(self, lc1, lc2, norm, gti) 131 self.lc2 = lc2 132 --> 133 self._make_crossspectrum(lc1, lc2) 134 # These are needed to calculate coherence 135 self._make_auxil_pds(lc1, lc2) ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in _make_crossspectrum(self, lc1, lc2) 198 199 # make the actual Fourier transform and compute cross spectrum --> 200 self.freq, self.unnorm_power = self._fourier_cross(lc1, lc2) 201 202 # If co-spectrum is desired, normalize here. Otherwise, get raw back ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in _fourier_cross(self, lc1, lc2) 250 251 """ --> 252 fourier_1 = scipy.fftpack.fft(lc1.counts) # do Fourier transform 1 253 fourier_2 = scipy.fftpack.fft(lc2.counts) # do Fourier transform 2 254 ~/anaconda3/lib/python3.6/site-packages/scipy/fftpack/basic.py in fft(x, n, axis, overwrite_x) 262 work_function = _DTYPE_TO_FFT[tmp.dtype] 263 except KeyError: --> 264 raise ValueError("type %s is not supported" % tmp.dtype) 265 266 if not (istype(tmp, numpy.complex64) or istype(tmp, numpy.complex128)): ValueError: type >f8 is not supported ```
1.0
Powerspectrum is not calculated if Lightcurve attributes are vulnerable to little endian / big endian conflict - I recently run into a bug where after reading the lightcurve from a file I tried to create a Powerspectra and the following error was thrown: ```python ValueError: dtype >f8 not supported ``` From a little research on StackOverflow this happens because some computers have different definitions of what a double float resolution is. The lightcurve attributes `time` and `counts` were saved as arrays of type `>f8`. manually converting the `lc.time` and `lc.counts` to an array with `dtype=float` solved the problem for me. We should either 1) make this conversion inside the Powerspectrum code, or when storing the Lightcurve values or 2) make the Powerspectrum code compatible with `>f8`. Aparently from the full error log below, `scipy.fftpack` needs a native float type to work, so I believe option 1) is the best one ERROR LOG === ```python --------------------------------------------------------------------------- KeyError Traceback (most recent call last) ~/anaconda3/lib/python3.6/site-packages/scipy/fftpack/basic.py in fft(x, n, axis, overwrite_x) 261 try: --> 262 work_function = _DTYPE_TO_FFT[tmp.dtype] 263 except KeyError: KeyError: dtype('>f8') During handling of the above exception, another exception occurred: ValueError Traceback (most recent call last) <ipython-input-18-1daa50ea0335> in <module>() ----> 1 pd = stingray.AveragedPowerspectrum(slc, segment_size=16, norm='leahy') ~/stingray/build/lib.linux-x86_64-3.6/stingray/powerspectrum.py in __init__(self, lc, segment_size, norm, gti) 408 self.segment_size = segment_size 409 --> 410 Powerspectrum.__init__(self, lc, norm, gti=gti) 411 412 return ~/stingray/build/lib.linux-x86_64-3.6/stingray/powerspectrum.py in __init__(self, lc, norm, gti) 174 """ 175 --> 176 Crossspectrum.__init__(self, lc1=lc, lc2=lc, norm=norm, gti=gti) 177 self.nphots = self.nphots1 178 ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in __init__(self, lc1, lc2, norm, gti) 131 self.lc2 = lc2 132 --> 133 self._make_crossspectrum(lc1, lc2) 134 # These are needed to calculate coherence 135 self._make_auxil_pds(lc1, lc2) ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in _make_crossspectrum(self, lc1, lc2) 651 elif self.type == "powerspectrum": 652 self.cs_all, nphots1_all = \ --> 653 self._make_segment_spectrum(lc1, self.segment_size) 654 655 else: ~/stingray/build/lib.linux-x86_64-3.6/stingray/powerspectrum.py in _make_segment_spectrum(self, lc, segment_size) 432 lc_seg = lightcurve.Lightcurve(time, counts, err=counts_err, 433 err_dist=lc.err_dist.lower()) --> 434 power_seg = Powerspectrum(lc_seg, norm=self.norm) 435 power_all.append(power_seg) 436 nphots_all.append(np.sum(lc_seg.counts)) ~/stingray/build/lib.linux-x86_64-3.6/stingray/powerspectrum.py in __init__(self, lc, norm, gti) 174 """ 175 --> 176 Crossspectrum.__init__(self, lc1=lc, lc2=lc, norm=norm, gti=gti) 177 self.nphots = self.nphots1 178 ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in __init__(self, lc1, lc2, norm, gti) 131 self.lc2 = lc2 132 --> 133 self._make_crossspectrum(lc1, lc2) 134 # These are needed to calculate coherence 135 self._make_auxil_pds(lc1, lc2) ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in _make_crossspectrum(self, lc1, lc2) 198 199 # make the actual Fourier transform and compute cross spectrum --> 200 self.freq, self.unnorm_power = self._fourier_cross(lc1, lc2) 201 202 # If co-spectrum is desired, normalize here. Otherwise, get raw back ~/stingray/build/lib.linux-x86_64-3.6/stingray/crossspectrum.py in _fourier_cross(self, lc1, lc2) 250 251 """ --> 252 fourier_1 = scipy.fftpack.fft(lc1.counts) # do Fourier transform 1 253 fourier_2 = scipy.fftpack.fft(lc2.counts) # do Fourier transform 2 254 ~/anaconda3/lib/python3.6/site-packages/scipy/fftpack/basic.py in fft(x, n, axis, overwrite_x) 262 work_function = _DTYPE_TO_FFT[tmp.dtype] 263 except KeyError: --> 264 raise ValueError("type %s is not supported" % tmp.dtype) 265 266 if not (istype(tmp, numpy.complex64) or istype(tmp, numpy.complex128)): ValueError: type >f8 is not supported ```
priority
powerspectrum is not calculated if lightcurve attributes are vulnerable to little endian big endian conflict i recently run into a bug where after reading the lightcurve from a file i tried to create a powerspectra and the following error was thrown python valueerror dtype not supported from a little research on stackoverflow this happens because some computers have different definitions of what a double float resolution is the lightcurve attributes time and counts were saved as arrays of type manually converting the lc time and lc counts to an array with dtype float solved the problem for me we should either make this conversion inside the powerspectrum code or when storing the lightcurve values or make the powerspectrum code compatible with aparently from the full error log below scipy fftpack needs a native float type to work so i believe option is the best one error log python keyerror traceback most recent call last lib site packages scipy fftpack basic py in fft x n axis overwrite x try work function dtype to fft except keyerror keyerror dtype during handling of the above exception another exception occurred valueerror traceback most recent call last in pd stingray averagedpowerspectrum slc segment size norm leahy stingray build lib linux stingray powerspectrum py in init self lc segment size norm gti self segment size segment size powerspectrum init self lc norm gti gti return stingray build lib linux stingray powerspectrum py in init self lc norm gti crossspectrum init self lc lc norm norm gti gti self nphots self stingray build lib linux stingray crossspectrum py in init self norm gti self self make crossspectrum these are needed to calculate coherence self make auxil pds stingray build lib linux stingray crossspectrum py in make crossspectrum self elif self type powerspectrum self cs all all self make segment spectrum self segment size else stingray build lib linux stingray powerspectrum py in make segment spectrum self lc segment size lc seg lightcurve lightcurve time counts err counts err err dist lc err dist lower power seg powerspectrum lc seg norm self norm power all append power seg nphots all append np sum lc seg counts stingray build lib linux stingray powerspectrum py in init self lc norm gti crossspectrum init self lc lc norm norm gti gti self nphots self stingray build lib linux stingray crossspectrum py in init self norm gti self self make crossspectrum these are needed to calculate coherence self make auxil pds stingray build lib linux stingray crossspectrum py in make crossspectrum self make the actual fourier transform and compute cross spectrum self freq self unnorm power self fourier cross if co spectrum is desired normalize here otherwise get raw back stingray build lib linux stingray crossspectrum py in fourier cross self fourier scipy fftpack fft counts do fourier transform fourier scipy fftpack fft counts do fourier transform lib site packages scipy fftpack basic py in fft x n axis overwrite x work function dtype to fft except keyerror raise valueerror type s is not supported tmp dtype if not istype tmp numpy or istype tmp numpy valueerror type is not supported
1
768,117
26,953,910,447
IssuesEvent
2023-02-08 13:41:30
pika-org/pika
https://api.github.com/repos/pika-org/pika
opened
Ensure that various thread pool and scheduler headers are not included transitively by public headers
effort: 3 priority: medium type: cleanup
Headers like `scheduling_loop.hpp` or `scheduled_thread_pool_impl.hpp` should not be necessary for users to include, even transitively, I _think_. We should check if they're not necessary, and make sure that they're not included accidentally by public API headers. We also explicitly instantiate schedulers/thread pools, so at least some headers should be possible to exclude.
1.0
Ensure that various thread pool and scheduler headers are not included transitively by public headers - Headers like `scheduling_loop.hpp` or `scheduled_thread_pool_impl.hpp` should not be necessary for users to include, even transitively, I _think_. We should check if they're not necessary, and make sure that they're not included accidentally by public API headers. We also explicitly instantiate schedulers/thread pools, so at least some headers should be possible to exclude.
priority
ensure that various thread pool and scheduler headers are not included transitively by public headers headers like scheduling loop hpp or scheduled thread pool impl hpp should not be necessary for users to include even transitively i think we should check if they re not necessary and make sure that they re not included accidentally by public api headers we also explicitly instantiate schedulers thread pools so at least some headers should be possible to exclude
1
819,824
30,752,351,601
IssuesEvent
2023-07-28 20:35:55
rstudio/gt
https://api.github.com/repos/rstudio/gt
closed
opt_interactive() removes html-columns
Type: ☹︎ Bug Difficulty: [2] Intermediate Effort: [2] Medium Priority: [3] High Focus: HTML Output
## Prework * [x] Read and agree to the [code of conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html) and [contributing guidelines](https://github.com/rstudio/gt/blob/master/.github/CONTRIBUTING.md). * [x] If there is [already a relevant issue](https://github.com/rstudio/gt/issues), whether open or closed, comment on the existing thread instead of posting a new issue. ## Description An html-column renders fine (provided `fmt_markdown()` is applied) but the content disappears as soon as `opt_interactive()` is used. ## Reproducible example This works fine: ``` tbl <- towny |> dplyr::select(name, land_area_km2) |> dplyr::slice(1:10) |> dplyr::mutate(bla = '<div> This is a div </div>') |> gt() |> fmt_markdown(columns = bla) |> tab_options( table.width = '500px', container.width = '500px' ) tbl ``` ![image](https://user-images.githubusercontent.com/65388595/230904495-f3b86d74-a012-4729-8739-258a2fd4ce65.png) This does not: ``` tbl |> opt_interactive() ``` ![image](https://user-images.githubusercontent.com/65388595/230904600-1c2c5b5a-b06f-47cd-8083-c08ca03d5d3f.png) ## Expected result Same as first input ## Session info <details> ``` R version 4.2.3 (2023-03-15) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Ubuntu 20.04.6 LTS Matrix products: default BLAS: /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.9.0 LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.9.0 locale: [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C LC_TIME=de_DE.UTF-8 LC_COLLATE=en_US.UTF-8 [5] LC_MONETARY=de_DE.UTF-8 LC_MESSAGES=en_US.UTF-8 LC_PAPER=de_DE.UTF-8 LC_NAME=C [9] LC_ADDRESS=C LC_TELEPHONE=C LC_MEASUREMENT=de_DE.UTF-8 LC_IDENTIFICATION=C attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] gt_0.9.0.9000 loaded via a namespace (and not attached): [1] pillar_1.9.0 compiler_4.2.3 R.utils_2.11.0 R.methodsS3_1.8.2 tools_4.2.3 digest_0.6.31 evaluate_0.20 [8] jsonlite_1.8.4 lifecycle_1.0.3 tibble_3.2.1 R.cache_0.15.0 pkgconfig_2.0.3 rlang_1.1.0 reprex_2.0.2 [15] cli_3.6.1 rstudioapi_0.14 crosstalk_1.2.0 commonmark_1.9.0 yaml_2.3.7 xfun_0.38 fastmap_1.1.1 [22] knitr_1.42 reactR_0.4.4 withr_2.5.0 dplyr_1.1.1.9000 styler_1.9.0 xml2_1.3.3 generics_0.1.3 [29] vctrs_0.6.1.9000 htmlwidgets_1.6.2 sass_0.4.5.9000 fs_1.6.1 tidyselect_1.2.0 reactable_0.4.4 glue_1.6.2 [36] R6_2.5.1 processx_3.8.0 fansi_1.0.4 rmarkdown_2.21 callr_3.7.3 clipr_0.8.0 purrr_1.0.1.9000 [43] magrittr_2.0.3 ps_1.7.3 htmltools_0.5.5 ellipsis_0.3.2 utf8_1.2.3 markdown_1.5 R.oo_1.25.0 ``` </details>
1.0
opt_interactive() removes html-columns - ## Prework * [x] Read and agree to the [code of conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html) and [contributing guidelines](https://github.com/rstudio/gt/blob/master/.github/CONTRIBUTING.md). * [x] If there is [already a relevant issue](https://github.com/rstudio/gt/issues), whether open or closed, comment on the existing thread instead of posting a new issue. ## Description An html-column renders fine (provided `fmt_markdown()` is applied) but the content disappears as soon as `opt_interactive()` is used. ## Reproducible example This works fine: ``` tbl <- towny |> dplyr::select(name, land_area_km2) |> dplyr::slice(1:10) |> dplyr::mutate(bla = '<div> This is a div </div>') |> gt() |> fmt_markdown(columns = bla) |> tab_options( table.width = '500px', container.width = '500px' ) tbl ``` ![image](https://user-images.githubusercontent.com/65388595/230904495-f3b86d74-a012-4729-8739-258a2fd4ce65.png) This does not: ``` tbl |> opt_interactive() ``` ![image](https://user-images.githubusercontent.com/65388595/230904600-1c2c5b5a-b06f-47cd-8083-c08ca03d5d3f.png) ## Expected result Same as first input ## Session info <details> ``` R version 4.2.3 (2023-03-15) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Ubuntu 20.04.6 LTS Matrix products: default BLAS: /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.9.0 LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.9.0 locale: [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C LC_TIME=de_DE.UTF-8 LC_COLLATE=en_US.UTF-8 [5] LC_MONETARY=de_DE.UTF-8 LC_MESSAGES=en_US.UTF-8 LC_PAPER=de_DE.UTF-8 LC_NAME=C [9] LC_ADDRESS=C LC_TELEPHONE=C LC_MEASUREMENT=de_DE.UTF-8 LC_IDENTIFICATION=C attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] gt_0.9.0.9000 loaded via a namespace (and not attached): [1] pillar_1.9.0 compiler_4.2.3 R.utils_2.11.0 R.methodsS3_1.8.2 tools_4.2.3 digest_0.6.31 evaluate_0.20 [8] jsonlite_1.8.4 lifecycle_1.0.3 tibble_3.2.1 R.cache_0.15.0 pkgconfig_2.0.3 rlang_1.1.0 reprex_2.0.2 [15] cli_3.6.1 rstudioapi_0.14 crosstalk_1.2.0 commonmark_1.9.0 yaml_2.3.7 xfun_0.38 fastmap_1.1.1 [22] knitr_1.42 reactR_0.4.4 withr_2.5.0 dplyr_1.1.1.9000 styler_1.9.0 xml2_1.3.3 generics_0.1.3 [29] vctrs_0.6.1.9000 htmlwidgets_1.6.2 sass_0.4.5.9000 fs_1.6.1 tidyselect_1.2.0 reactable_0.4.4 glue_1.6.2 [36] R6_2.5.1 processx_3.8.0 fansi_1.0.4 rmarkdown_2.21 callr_3.7.3 clipr_0.8.0 purrr_1.0.1.9000 [43] magrittr_2.0.3 ps_1.7.3 htmltools_0.5.5 ellipsis_0.3.2 utf8_1.2.3 markdown_1.5 R.oo_1.25.0 ``` </details>
priority
opt interactive removes html columns prework read and agree to the and if there is whether open or closed comment on the existing thread instead of posting a new issue description an html column renders fine provided fmt markdown is applied but the content disappears as soon as opt interactive is used reproducible example this works fine tbl dplyr select name land area dplyr slice dplyr mutate bla this is a div gt fmt markdown columns bla tab options table width container width tbl this does not tbl opt interactive expected result same as first input session info r version platform pc linux gnu bit running under ubuntu lts matrix products default blas usr lib linux gnu blas libblas so lapack usr lib linux gnu lapack liblapack so locale lc ctype en us utf lc numeric c lc time de de utf lc collate en us utf lc monetary de de utf lc messages en us utf lc paper de de utf lc name c lc address c lc telephone c lc measurement de de utf lc identification c attached base packages stats graphics grdevices utils datasets methods base other attached packages gt loaded via a namespace and not attached pillar compiler r utils r tools digest evaluate jsonlite lifecycle tibble r cache pkgconfig rlang reprex cli rstudioapi crosstalk commonmark yaml xfun fastmap knitr reactr withr dplyr styler generics vctrs htmlwidgets sass fs tidyselect reactable glue processx fansi rmarkdown callr clipr purrr magrittr ps htmltools ellipsis markdown r oo
1
830,395
32,005,918,574
IssuesEvent
2023-09-21 14:50:08
ImTheCactus/Crow-Get-It-Game
https://api.github.com/repos/ImTheCactus/Crow-Get-It-Game
opened
Player can "fly"
Priority: Medium Status: Not in progress Bug
Describe the bug: Player can "fly". Version: Crow Get It 3.5 version 0.2.0 *(To be updated on) Steps to reproduce the behaviour: Player can "fly" by timing the space button so that it is pressed just before colliding with the ground so that the player progressively increases in altitude. Expected behaviour: Player should not be able to "fly" at all. Desktop system details: OS: Windows10
1.0
Player can "fly" - Describe the bug: Player can "fly". Version: Crow Get It 3.5 version 0.2.0 *(To be updated on) Steps to reproduce the behaviour: Player can "fly" by timing the space button so that it is pressed just before colliding with the ground so that the player progressively increases in altitude. Expected behaviour: Player should not be able to "fly" at all. Desktop system details: OS: Windows10
priority
player can fly describe the bug player can fly version crow get it version to be updated on steps to reproduce the behaviour player can fly by timing the space button so that it is pressed just before colliding with the ground so that the player progressively increases in altitude expected behaviour player should not be able to fly at all desktop system details os
1
363,921
10,756,856,148
IssuesEvent
2019-10-31 12:07:59
ansible/awx
https://api.github.com/repos/ansible/awx
opened
In tower_inventory_source, take organization parameter for inventory org
component:awx_collection priority:medium state:needs_devel type:enhancement
##### ISSUE TYPE - Feature Idea ##### SUMMARY If you create an inventory source like this: ```yaml tower_inventory_source: name: source-test-inventory inventory: openstack-test-inventory ``` It will fail if there are 2 versions of "openstack-test-inventory" in different organizations. This module should have the organization parameter added, and filter the inventory according to that. Basically this is to track cherry-picking https://github.com/ansible/ansible/pull/63100
1.0
In tower_inventory_source, take organization parameter for inventory org - ##### ISSUE TYPE - Feature Idea ##### SUMMARY If you create an inventory source like this: ```yaml tower_inventory_source: name: source-test-inventory inventory: openstack-test-inventory ``` It will fail if there are 2 versions of "openstack-test-inventory" in different organizations. This module should have the organization parameter added, and filter the inventory according to that. Basically this is to track cherry-picking https://github.com/ansible/ansible/pull/63100
priority
in tower inventory source take organization parameter for inventory org issue type feature idea summary if you create an inventory source like this yaml tower inventory source name source test inventory inventory openstack test inventory it will fail if there are versions of openstack test inventory in different organizations this module should have the organization parameter added and filter the inventory according to that basically this is to track cherry picking
1
374,126
11,072,508,226
IssuesEvent
2019-12-12 10:26:09
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[master-preview] Work party: it doesn't count labor
Medium Priority
We should count labor too as someone can provide labor without resources. to @Hakuhonoo for labor help
1.0
[master-preview] Work party: it doesn't count labor - We should count labor too as someone can provide labor without resources. to @Hakuhonoo for labor help
priority
work party it doesn t count labor we should count labor too as someone can provide labor without resources to hakuhonoo for labor help
1
16,909
2,615,126,322
IssuesEvent
2015-03-01 05:54:45
chrsmith/google-api-java-client
https://api.github.com/repos/chrsmith/google-api-java-client
opened
Code example for "Installed Applications" is wrong on OAuth2Native.java
auto-migrated Priority-Medium Type-Wiki
``` I'm using Java 6 and my google-api-java-client is 1.8.0-beta. The code example for installed applications described on the class OAuth2Native.java is partially wrong, I suppose. I'm doing some requests for the Google Calendar API and I noted the credentialStore attribute from the AuthorizationCodeFlow was null. Then, when doing multiple requests, it isn't possible to know if the user credentials are set or not. The current code example is: GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(transport, jsonFactory, clientSecrets, scopes).build(); But I think it should be: GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(JACKSON_FACTORY, CLIENTS_SECRETS, SCOPES).new MemoryCredentialStore()).build(); The last one sets the MemoryCredentialStore on the Builder instance, but it could be other credential store strategies, as stated in OAuth2 page. ``` Original issue reported on code.google.com by `[email protected]` on 19 May 2012 at 2:16
1.0
Code example for "Installed Applications" is wrong on OAuth2Native.java - ``` I'm using Java 6 and my google-api-java-client is 1.8.0-beta. The code example for installed applications described on the class OAuth2Native.java is partially wrong, I suppose. I'm doing some requests for the Google Calendar API and I noted the credentialStore attribute from the AuthorizationCodeFlow was null. Then, when doing multiple requests, it isn't possible to know if the user credentials are set or not. The current code example is: GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(transport, jsonFactory, clientSecrets, scopes).build(); But I think it should be: GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(JACKSON_FACTORY, CLIENTS_SECRETS, SCOPES).new MemoryCredentialStore()).build(); The last one sets the MemoryCredentialStore on the Builder instance, but it could be other credential store strategies, as stated in OAuth2 page. ``` Original issue reported on code.google.com by `[email protected]` on 19 May 2012 at 2:16
priority
code example for installed applications is wrong on java i m using java and my google api java client is beta the code example for installed applications described on the class java is partially wrong i suppose i m doing some requests for the google calendar api and i noted the credentialstore attribute from the authorizationcodeflow was null then when doing multiple requests it isn t possible to know if the user credentials are set or not the current code example is googleauthorizationcodeflow flow new googleauthorizationcodeflow builder transport jsonfactory clientsecrets scopes build but i think it should be googleauthorizationcodeflow flow new googleauthorizationcodeflow builder jackson factory clients secrets scopes new memorycredentialstore build the last one sets the memorycredentialstore on the builder instance but it could be other credential store strategies as stated in page original issue reported on code google com by rafael n gmail com on may at
1
822,016
30,848,307,306
IssuesEvent
2023-08-02 15:01:53
tudalgo/algoutils
https://api.github.com/repos/tudalgo/algoutils
closed
Annotation in student/annotation cannot be used for classes and constructors
bug priority: medium
The commit (https://github.com/tudalgo/algoutils/commit/5ae447336d04eca595f95c4cd24ac119476fad04) introduced annotations where fields, method, classes, constructors and local variables can be annotated but at the moment we cannot annotate classes and constructors.
1.0
Annotation in student/annotation cannot be used for classes and constructors - The commit (https://github.com/tudalgo/algoutils/commit/5ae447336d04eca595f95c4cd24ac119476fad04) introduced annotations where fields, method, classes, constructors and local variables can be annotated but at the moment we cannot annotate classes and constructors.
priority
annotation in student annotation cannot be used for classes and constructors the commit introduced annotations where fields method classes constructors and local variables can be annotated but at the moment we cannot annotate classes and constructors
1
505,603
14,642,386,529
IssuesEvent
2020-12-25 10:51:50
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
opened
Message Improvement
feature: enhancement priority: medium
Some code refactoring required to fix some performance-related core logic - With the Message thread ajax, We sending all recipients lists for every thread. it'll be a little heavy with a large network > We should send recipients with some limit like 10 and we also need to send total recipients with thread objects. - We need to provide separate ajax to get message thread recipients so we can support pagination. - One major refactoring we can do is, we can move our message logic based on Rest endpoint instead of ajax, by this change we no need to maintain two chunks of code.
1.0
Message Improvement - Some code refactoring required to fix some performance-related core logic - With the Message thread ajax, We sending all recipients lists for every thread. it'll be a little heavy with a large network > We should send recipients with some limit like 10 and we also need to send total recipients with thread objects. - We need to provide separate ajax to get message thread recipients so we can support pagination. - One major refactoring we can do is, we can move our message logic based on Rest endpoint instead of ajax, by this change we no need to maintain two chunks of code.
priority
message improvement some code refactoring required to fix some performance related core logic with the message thread ajax we sending all recipients lists for every thread it ll be a little heavy with a large network we should send recipients with some limit like and we also need to send total recipients with thread objects we need to provide separate ajax to get message thread recipients so we can support pagination one major refactoring we can do is we can move our message logic based on rest endpoint instead of ajax by this change we no need to maintain two chunks of code
1
330,121
10,029,586,574
IssuesEvent
2019-07-17 14:12:53
bibaev/code-completion-evaluation
https://api.github.com/repos/bibaev/code-completion-evaluation
closed
Добавлять диагностику в отчет, если что-то пошло не так
effort: medium priority: low type: bug
Сейчас если запустить с выключенными докером, то получится такое: ![image](https://user-images.githubusercontent.com/7608535/60754476-314ffc80-9fea-11e9-96ef-ac8bbc796761.png) При этом в лог валятся два ислючения. Проблема в том, что сейчас в отчете нет информации о том, на каких файлах мы запустили, и что на некоторыз файлах ничего не получилось, а происхошла ошибка. Более правильно добавить файл с ошибками в отчет, но сделать гиперссылку красной, либо добавить еще одну кнопку `errors`, которая откроет страницу со стек трейсом исключения. Также можно писать в начале отчета короткий summary вида `No errors occurred`, `1 error(s) happened`. Пример с докером выдуман, но там могут происходить и другие ошибки при построении UAST :)
1.0
Добавлять диагностику в отчет, если что-то пошло не так - Сейчас если запустить с выключенными докером, то получится такое: ![image](https://user-images.githubusercontent.com/7608535/60754476-314ffc80-9fea-11e9-96ef-ac8bbc796761.png) При этом в лог валятся два ислючения. Проблема в том, что сейчас в отчете нет информации о том, на каких файлах мы запустили, и что на некоторыз файлах ничего не получилось, а происхошла ошибка. Более правильно добавить файл с ошибками в отчет, но сделать гиперссылку красной, либо добавить еще одну кнопку `errors`, которая откроет страницу со стек трейсом исключения. Также можно писать в начале отчета короткий summary вида `No errors occurred`, `1 error(s) happened`. Пример с докером выдуман, но там могут происходить и другие ошибки при построении UAST :)
priority
добавлять диагностику в отчет если что то пошло не так сейчас если запустить с выключенными докером то получится такое при этом в лог валятся два ислючения проблема в том что сейчас в отчете нет информации о том на каких файлах мы запустили и что на некоторыз файлах ничего не получилось а происхошла ошибка более правильно добавить файл с ошибками в отчет но сделать гиперссылку красной либо добавить еще одну кнопку errors которая откроет страницу со стек трейсом исключения также можно писать в начале отчета короткий summary вида no errors occurred error s happened пример с докером выдуман но там могут происходить и другие ошибки при построении uast
1
25,534
2,683,835,531
IssuesEvent
2015-03-28 11:13:58
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
closed
Maximus5 - 2009.09.23 - не работает с 4-мя ядрами ...
2–5 stars bug imported Priority-Medium
_From [[email protected]](https://code.google.com/u/106652170189453997668/) on September 24, 2009 15:05:52_ Vista 7 x64, Far 2.0 build 1133 x86 Баг следующий - на 4-х ядерном проце(Phenom X4) ConEmu запускается всегда только на двух ядрах(видно через диспетчер задач), более старые версии - тоже самое. И самое плохое в этом - что любая программа, запускаемая из под Far/ ConEmu - используется тоже только два ядра, пока не задашь все 4 с помощью TaskManager. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=93_
1.0
Maximus5 - 2009.09.23 - не работает с 4-мя ядрами ... - _From [[email protected]](https://code.google.com/u/106652170189453997668/) on September 24, 2009 15:05:52_ Vista 7 x64, Far 2.0 build 1133 x86 Баг следующий - на 4-х ядерном проце(Phenom X4) ConEmu запускается всегда только на двух ядрах(видно через диспетчер задач), более старые версии - тоже самое. И самое плохое в этом - что любая программа, запускаемая из под Far/ ConEmu - используется тоже только два ядра, пока не задашь все 4 с помощью TaskManager. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=93_
priority
не работает с мя ядрами from on september vista far build баг следующий на х ядерном проце phenom conemu запускается всегда только на двух ядрах видно через диспетчер задач более старые версии тоже самое и самое плохое в этом что любая программа запускаемая из под far conemu используется тоже только два ядра пока не задашь все с помощью taskmanager original issue
1
405,623
11,879,878,584
IssuesEvent
2020-03-27 09:38:39
AugurProject/augur
https://api.github.com/repos/AugurProject/augur
closed
Issues with market info on markets in reporting
Needed for V2 launch Priority: Medium
Images from build. The Event expiration should be shown here with the arrow to expand to show more market details ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/627f3c2e-d6e0-490d-a26f-1d742ca06f6a) Now when clicking the arrow you see two arrow. This shouldn't happen - only need the one arrow here ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/eaceac12-199b-4bf5-b0ad-66612730e053) Clicking the arrow shows the spacing on the event expiration is broken: ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/7feac52c-80af-4199-aa3f-7e8058e87fc4) Design: https://www.figma.com/file/fLWVwmanAwetVZbujQquEi/Market-Page?node-id=449%3A953 If it's easier, show the event expiration and total volume as default but just make sure everything lines up ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/d923de43-d06c-4c2c-a7e0-5c2dca2ea320)
1.0
Issues with market info on markets in reporting - Images from build. The Event expiration should be shown here with the arrow to expand to show more market details ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/627f3c2e-d6e0-490d-a26f-1d742ca06f6a) Now when clicking the arrow you see two arrow. This shouldn't happen - only need the one arrow here ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/eaceac12-199b-4bf5-b0ad-66612730e053) Clicking the arrow shows the spacing on the event expiration is broken: ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/7feac52c-80af-4199-aa3f-7e8058e87fc4) Design: https://www.figma.com/file/fLWVwmanAwetVZbujQquEi/Market-Page?node-id=449%3A953 If it's easier, show the event expiration and total volume as default but just make sure everything lines up ![image.png](https://images.zenhubusercontent.com/5c07af47035895308911c4c5/d923de43-d06c-4c2c-a7e0-5c2dca2ea320)
priority
issues with market info on markets in reporting images from build the event expiration should be shown here with the arrow to expand to show more market details now when clicking the arrow you see two arrow this shouldn t happen only need the one arrow here clicking the arrow shows the spacing on the event expiration is broken design if it s easier show the event expiration and total volume as default but just make sure everything lines up
1
123,627
4,865,989,282
IssuesEvent
2016-11-14 22:20:29
salesagility/SuiteCRM
https://api.github.com/repos/salesagility/SuiteCRM
closed
Tasks widget won't advance >10
bug Fix Proposed Medium Priority
#### Issue Pressing the advance button on the the task widget does nothing, so a list with >10 tasks won't show anything from task 11 onward. #### Expected Behavior Task widget shows 10 tasks - pressing the advance button (single triangle pointing right) should show tasks 11 onward. #### Actual Behavior Nothing happens on mine. Testing in the demo, it expands the list of tasks to full page width. #### Steps to Reproduce Press the right arrow on the task widget. #### Your Environment PHP 7 Suite 7.7.4
1.0
Tasks widget won't advance >10 - #### Issue Pressing the advance button on the the task widget does nothing, so a list with >10 tasks won't show anything from task 11 onward. #### Expected Behavior Task widget shows 10 tasks - pressing the advance button (single triangle pointing right) should show tasks 11 onward. #### Actual Behavior Nothing happens on mine. Testing in the demo, it expands the list of tasks to full page width. #### Steps to Reproduce Press the right arrow on the task widget. #### Your Environment PHP 7 Suite 7.7.4
priority
tasks widget won t advance issue pressing the advance button on the the task widget does nothing so a list with tasks won t show anything from task onward expected behavior task widget shows tasks pressing the advance button single triangle pointing right should show tasks onward actual behavior nothing happens on mine testing in the demo it expands the list of tasks to full page width steps to reproduce press the right arrow on the task widget your environment php suite
1
816,615
30,604,661,251
IssuesEvent
2023-07-22 21:12:04
Haidoe/arc
https://api.github.com/repos/Haidoe/arc
closed
Production Suggestion: Make no production page and list of productions more consistant
enhancement priority-medium style
## Bug Report **Reporter: ❗️** @rjung07 **Describe the bug: ❗️** On production page, the style and layout change when there is no production and when there is a list. On mockup did not annoy me, but on the flow, it feels a little off. **Steps to reproduce: ❗️** 1. Go to 'Production' 2. Click on 'New Production' 3. See the difference between pages **Screenshots or Video** ![image](https://github.com/Haidoe/arc/assets/123789857/9f47d4a4-e6f0-447c-88db-f97fc3186961) **Expected behavior: ❗️** A layout that doesn't change much and doesn't move much. **Actual behavior: ❗️** A layout that changes a little and gives the user a weird sensation that something changed. **Follow up checklist: ❗️** - [ ] Add Assignee - [ ] Label priority ( priority-low, priority-medium, priority-high ) - [ ] Label Milestone ( Alpha, Beta ) - [ ] Label Issue Type ( Style, Code, API )
1.0
Production Suggestion: Make no production page and list of productions more consistant - ## Bug Report **Reporter: ❗️** @rjung07 **Describe the bug: ❗️** On production page, the style and layout change when there is no production and when there is a list. On mockup did not annoy me, but on the flow, it feels a little off. **Steps to reproduce: ❗️** 1. Go to 'Production' 2. Click on 'New Production' 3. See the difference between pages **Screenshots or Video** ![image](https://github.com/Haidoe/arc/assets/123789857/9f47d4a4-e6f0-447c-88db-f97fc3186961) **Expected behavior: ❗️** A layout that doesn't change much and doesn't move much. **Actual behavior: ❗️** A layout that changes a little and gives the user a weird sensation that something changed. **Follow up checklist: ❗️** - [ ] Add Assignee - [ ] Label priority ( priority-low, priority-medium, priority-high ) - [ ] Label Milestone ( Alpha, Beta ) - [ ] Label Issue Type ( Style, Code, API )
priority
production suggestion make no production page and list of productions more consistant bug report reporter ❗️ describe the bug ❗️ on production page the style and layout change when there is no production and when there is a list on mockup did not annoy me but on the flow it feels a little off steps to reproduce ❗️ go to production click on new production see the difference between pages screenshots or video expected behavior ❗️ a layout that doesn t change much and doesn t move much actual behavior ❗️ a layout that changes a little and gives the user a weird sensation that something changed follow up checklist ❗️ add assignee label priority priority low priority medium priority high label milestone alpha beta label issue type style code api
1
179,390
6,624,624,376
IssuesEvent
2017-09-22 12:31:54
ansible/awx
https://api.github.com/repos/ansible/awx
closed
LDAP configuration should be more flexible
component:api component:ui priority:medium state:needs_devel type:bug
##### ISSUE TYPE <!--- Pick one below and delete the rest: --> - Bug Report ##### COMPONENT <!-- Pick the area of AWX for this issue, you can have multiple, delete the rest: --> - API - UI ##### SUMMARY <!-- Briefly describe the problem. --> The LDAP-Configuration should be able to get configured which _member_attr_ should be looked up. member_attr='member' is hardcoded but some people use uniqueMember instead. ##### ENVIRONMENT * AWX version: 1.0.0.317 * Ansible version: any * Operating System: any * Web Browser: any ##### STEPS TO REPRODUCE <!-- For bugs, please show exactly how to reproduce the problem. For new features, show how the feature would be used. --> Logging in the first time, the user isn't added to any organisations or teams despite LDAP is otherwise correctly configured. ##### EXPECTED RESULTS <!-- For bug reports, what did you expect to happen when running the steps above? --> Logging in the first time, the user is added to any organisations or teams. ##### ACTUAL RESULTS <!-- For bug reports, what actually happened? --> Logging in the first time, the user isn't added to any organisations or teams ##### ADDITIONAL INFORMATION <!-- Include any links to sosreport, database dumps, screenshots or other information. -->
1.0
LDAP configuration should be more flexible - ##### ISSUE TYPE <!--- Pick one below and delete the rest: --> - Bug Report ##### COMPONENT <!-- Pick the area of AWX for this issue, you can have multiple, delete the rest: --> - API - UI ##### SUMMARY <!-- Briefly describe the problem. --> The LDAP-Configuration should be able to get configured which _member_attr_ should be looked up. member_attr='member' is hardcoded but some people use uniqueMember instead. ##### ENVIRONMENT * AWX version: 1.0.0.317 * Ansible version: any * Operating System: any * Web Browser: any ##### STEPS TO REPRODUCE <!-- For bugs, please show exactly how to reproduce the problem. For new features, show how the feature would be used. --> Logging in the first time, the user isn't added to any organisations or teams despite LDAP is otherwise correctly configured. ##### EXPECTED RESULTS <!-- For bug reports, what did you expect to happen when running the steps above? --> Logging in the first time, the user is added to any organisations or teams. ##### ACTUAL RESULTS <!-- For bug reports, what actually happened? --> Logging in the first time, the user isn't added to any organisations or teams ##### ADDITIONAL INFORMATION <!-- Include any links to sosreport, database dumps, screenshots or other information. -->
priority
ldap configuration should be more flexible issue type bug report component api ui summary the ldap configuration should be able to get configured which member attr should be looked up member attr member is hardcoded but some people use uniquemember instead environment awx version ansible version any operating system any web browser any steps to reproduce for bugs please show exactly how to reproduce the problem for new features show how the feature would be used logging in the first time the user isn t added to any organisations or teams despite ldap is otherwise correctly configured expected results for bug reports what did you expect to happen when running the steps above logging in the first time the user is added to any organisations or teams actual results logging in the first time the user isn t added to any organisations or teams additional information include any links to sosreport database dumps screenshots or other information
1
411,205
12,015,625,497
IssuesEvent
2020-04-10 14:23:41
AY1920S2-CS2103T-W13-1/main
https://api.github.com/repos/AY1920S2-CS2103T-W13-1/main
closed
[SELFTEST - DIET] Error in formatting for Height and Weight example
priority.Medium task.DietTracker
![Screenshot 2020-04-10 at 14 19 06](https://user-images.githubusercontent.com/51152441/78968051-5d2e7e80-7b36-11ea-8fc8-e7a1cc200b9f.png) There should be a space between `height` and `170`
1.0
[SELFTEST - DIET] Error in formatting for Height and Weight example - ![Screenshot 2020-04-10 at 14 19 06](https://user-images.githubusercontent.com/51152441/78968051-5d2e7e80-7b36-11ea-8fc8-e7a1cc200b9f.png) There should be a space between `height` and `170`
priority
error in formatting for height and weight example there should be a space between height and
1
16,200
2,612,540,968
IssuesEvent
2015-02-27 15:14:38
web2py/web2py
https://api.github.com/repos/web2py/web2py
closed
Sanitizer is closing <br> and <img> tags too.
1 star bug imported Priority-Medium
_From [c..._at_cemeren.com](https://code.google.com/u/102223031108363556982/) on January 23, 2015 06:47:19_ What steps will reproduce the problem? 1. Sanitize any html content with these tags with permitted_tags defined as no close \<br/> What is the expected output? What do you see instead? Since it is closing basically all tags, you can notice the output is not what you have designed specially if there are br tags causing doubling the spaces. What version of the product are you using? On what operating system? 2.9.12-stable+timestamp.2015.01.17.06.11.03 (Running on Apache/2.4.9 (Unix) mod_wsgi/4.3.0 Python/2.7.3, Python 2.7.3) Please provide any additional information below. _Original issue: http://code.google.com/p/web2py/issues/detail?id=2038_
1.0
Sanitizer is closing <br> and <img> tags too. - _From [c..._at_cemeren.com](https://code.google.com/u/102223031108363556982/) on January 23, 2015 06:47:19_ What steps will reproduce the problem? 1. Sanitize any html content with these tags with permitted_tags defined as no close \<br/> What is the expected output? What do you see instead? Since it is closing basically all tags, you can notice the output is not what you have designed specially if there are br tags causing doubling the spaces. What version of the product are you using? On what operating system? 2.9.12-stable+timestamp.2015.01.17.06.11.03 (Running on Apache/2.4.9 (Unix) mod_wsgi/4.3.0 Python/2.7.3, Python 2.7.3) Please provide any additional information below. _Original issue: http://code.google.com/p/web2py/issues/detail?id=2038_
priority
sanitizer is closing and tags too from on january what steps will reproduce the problem sanitize any html content with these tags with permitted tags defined as no close what is the expected output what do you see instead since it is closing basically all tags you can notice the output is not what you have designed specially if there are br tags causing doubling the spaces what version of the product are you using on what operating system stable timestamp running on apache unix mod wsgi python python please provide any additional information below original issue
1
504,126
14,613,435,114
IssuesEvent
2020-12-22 08:13:56
SAP/ownid-web-ui-sdk
https://api.github.com/repos/SAP/ownid-web-ui-sdk
closed
Autocomplete password should have ownid skip the password
Priority: Medium Type: Bug
From Dor: currently it is being removed.
1.0
Autocomplete password should have ownid skip the password - From Dor: currently it is being removed.
priority
autocomplete password should have ownid skip the password from dor currently it is being removed
1
24,922
2,674,672,851
IssuesEvent
2015-03-25 05:46:12
cs2103jan2015-w13-1j/main
https://api.github.com/repos/cs2103jan2015-w13-1j/main
closed
A user can see the number of finished/unfinished task
priority.medium
... so that he has a good idea of how much work he has left and allocate his time efficiently.
1.0
A user can see the number of finished/unfinished task - ... so that he has a good idea of how much work he has left and allocate his time efficiently.
priority
a user can see the number of finished unfinished task so that he has a good idea of how much work he has left and allocate his time efficiently
1
352,775
10,545,926,291
IssuesEvent
2019-10-02 20:15:44
clearlinux/clr-installer
https://api.github.com/repos/clearlinux/clr-installer
closed
When producing an image from a custom mix, "version: 0" wrongly points to upstream's latest _version
enhancement medium priority
When producing an image from a custom mix, "version: 0" wrongly points to upstream's latest version instead of my custom mix's latest version number. I have to specifically edit the YAML file each time the version is updated. Please change clr-installer to point </path/to/my_mix/update/www/version/latest_version>.
1.0
When producing an image from a custom mix, "version: 0" wrongly points to upstream's latest _version - When producing an image from a custom mix, "version: 0" wrongly points to upstream's latest version instead of my custom mix's latest version number. I have to specifically edit the YAML file each time the version is updated. Please change clr-installer to point </path/to/my_mix/update/www/version/latest_version>.
priority
when producing an image from a custom mix version wrongly points to upstream s latest version when producing an image from a custom mix version wrongly points to upstream s latest version instead of my custom mix s latest version number i have to specifically edit the yaml file each time the version is updated please change clr installer to point
1
79,047
3,520,016,113
IssuesEvent
2016-01-12 19:05:32
IQSS/dataverse
https://api.github.com/repos/IQSS/dataverse
closed
Ingest: clean up temp files from /tmp.
Component: File Upload & Handling Priority: Medium Status: QA Type: Suggestion
Ingest leaves a bunch of files with names like: columnBufferFile1042015997543016021bytes They are not cleaned up and probably should be, otherwise it would become an ops issue.
1.0
Ingest: clean up temp files from /tmp. - Ingest leaves a bunch of files with names like: columnBufferFile1042015997543016021bytes They are not cleaned up and probably should be, otherwise it would become an ops issue.
priority
ingest clean up temp files from tmp ingest leaves a bunch of files with names like they are not cleaned up and probably should be otherwise it would become an ops issue
1
411,885
12,033,194,972
IssuesEvent
2020-04-13 13:47:14
deora-earth/tealgarden
https://api.github.com/repos/deora-earth/tealgarden
closed
Setup Open Source Analytics tool (PP)
02 Medium Priority 350 Deora RepPoints
<!-- # Simple Summary This policy allows to write out rewards to complete required tasks. Completed tasks are payed by the deora council to the claiming member. # How to create a new bounty? 1. To start you'll have to fill out the bounty form below. - If the bounty spans across multiple repositories, consider splitting it in a smaller per-repo bounties if possible. - If the bounty is larger than M, then the best known expert in the bounty matter should be consulted and included in an "Expert" field in the bounty description. 2. Communicate the bounty to the organisation by submitting the following form: https://forms.gle/STSNjTBGygNtTUwLA - The bounty will get published on the deora communication channel. # Bounty sizes XS / 50 to 200 / DAI S / 200 to 350 / DAI M / 350 to 550 / DAI L / 550 to 900 / DAI XL / 900 to 1400 / DAI You can specify the range individually under #Roles # Pair programming If 2 people claim the bounty together, the payout increases by 1.5x. # Bounty Challenge Once a bounty is assigned, the worker is asked to start working immediately on the issue. If the worker feels blocked in execution, he/she has to communicate the tensions to the gardener. Only if tensions are not reported and the bounty get's no further attention, anyone can challenge the bounty or takeover. Bounties should be delivered within time, even if work is left to be performed. Leftover work can be tackled by submitting a new bounty with support by the organisation. Bounty forking: complexity of bounties that has been undersized can be forked out by a new bounty submission. **START DESCRIBING YOUR BOUNTY HERE:** --> # Bounty The website is live and ready for their first hungry user. To see who, why and how they are visiting we need a tracking tool that matches our values - [matomo](https://matomo.org/matomo-on-premise/) - [openwebanalytics](http://www.openwebanalytics.com/) - [countly](https://count.ly/pricing) ## Scope - Check the tools and find the best - set it up ## Deliverables - working tracking tool, maybe a PR ## Gain for the project good data analytics ## Roles bounty gardener: @cyan-one / 10% bounty worker: @johannbarbie @cyan-one / 80% bounty reviewer: name / 10%
1.0
Setup Open Source Analytics tool (PP) - <!-- # Simple Summary This policy allows to write out rewards to complete required tasks. Completed tasks are payed by the deora council to the claiming member. # How to create a new bounty? 1. To start you'll have to fill out the bounty form below. - If the bounty spans across multiple repositories, consider splitting it in a smaller per-repo bounties if possible. - If the bounty is larger than M, then the best known expert in the bounty matter should be consulted and included in an "Expert" field in the bounty description. 2. Communicate the bounty to the organisation by submitting the following form: https://forms.gle/STSNjTBGygNtTUwLA - The bounty will get published on the deora communication channel. # Bounty sizes XS / 50 to 200 / DAI S / 200 to 350 / DAI M / 350 to 550 / DAI L / 550 to 900 / DAI XL / 900 to 1400 / DAI You can specify the range individually under #Roles # Pair programming If 2 people claim the bounty together, the payout increases by 1.5x. # Bounty Challenge Once a bounty is assigned, the worker is asked to start working immediately on the issue. If the worker feels blocked in execution, he/she has to communicate the tensions to the gardener. Only if tensions are not reported and the bounty get's no further attention, anyone can challenge the bounty or takeover. Bounties should be delivered within time, even if work is left to be performed. Leftover work can be tackled by submitting a new bounty with support by the organisation. Bounty forking: complexity of bounties that has been undersized can be forked out by a new bounty submission. **START DESCRIBING YOUR BOUNTY HERE:** --> # Bounty The website is live and ready for their first hungry user. To see who, why and how they are visiting we need a tracking tool that matches our values - [matomo](https://matomo.org/matomo-on-premise/) - [openwebanalytics](http://www.openwebanalytics.com/) - [countly](https://count.ly/pricing) ## Scope - Check the tools and find the best - set it up ## Deliverables - working tracking tool, maybe a PR ## Gain for the project good data analytics ## Roles bounty gardener: @cyan-one / 10% bounty worker: @johannbarbie @cyan-one / 80% bounty reviewer: name / 10%
priority
setup open source analytics tool pp simple summary this policy allows to write out rewards to complete required tasks completed tasks are payed by the deora council to the claiming member how to create a new bounty to start you ll have to fill out the bounty form below if the bounty spans across multiple repositories consider splitting it in a smaller per repo bounties if possible if the bounty is larger than m then the best known expert in the bounty matter should be consulted and included in an expert field in the bounty description communicate the bounty to the organisation by submitting the following form the bounty will get published on the deora communication channel bounty sizes xs to dai s to dai m to dai l to dai xl to dai you can specify the range individually under roles pair programming if people claim the bounty together the payout increases by bounty challenge once a bounty is assigned the worker is asked to start working immediately on the issue if the worker feels blocked in execution he she has to communicate the tensions to the gardener only if tensions are not reported and the bounty get s no further attention anyone can challenge the bounty or takeover bounties should be delivered within time even if work is left to be performed leftover work can be tackled by submitting a new bounty with support by the organisation bounty forking complexity of bounties that has been undersized can be forked out by a new bounty submission start describing your bounty here bounty the website is live and ready for their first hungry user to see who why and how they are visiting we need a tracking tool that matches our values scope check the tools and find the best set it up deliverables working tracking tool maybe a pr gain for the project good data analytics roles bounty gardener cyan one bounty worker johannbarbie cyan one bounty reviewer name
1
408,685
11,950,815,769
IssuesEvent
2020-04-03 15:48:53
levylabpitt/Multichannel-Lockin
https://api.github.com/repos/levylabpitt/Multichannel-Lockin
opened
Generalize simulation mode
Priority: Medium Status: Pending Type: Enhancement
- How to better simulate analog inputs? - How to have more external inputs (Temperatre, Magnet Field, etc) that are not directly controlled by the Multichannel Lockin itself?
1.0
Generalize simulation mode - - How to better simulate analog inputs? - How to have more external inputs (Temperatre, Magnet Field, etc) that are not directly controlled by the Multichannel Lockin itself?
priority
generalize simulation mode how to better simulate analog inputs how to have more external inputs temperatre magnet field etc that are not directly controlled by the multichannel lockin itself
1
715,716
24,607,525,688
IssuesEvent
2022-10-14 17:43:38
duckduckgo/p5-app-duckpan
https://api.github.com/repos/duckduckgo/p5-app-duckpan
closed
DuckPAN should warn about, or not follow redirects for API calls (to mimic our NGINX)
Suggestion Priority: Medium
We've run into issues with NGINX related to HTTP APIs that redirect to HTTPS or API calls that first return a 302 and point elsewhere. DuckPAN currently follows these without problems, but our NGINX setup does not. To aid developers, we should point this out to them so they notice ahead of time
1.0
DuckPAN should warn about, or not follow redirects for API calls (to mimic our NGINX) - We've run into issues with NGINX related to HTTP APIs that redirect to HTTPS or API calls that first return a 302 and point elsewhere. DuckPAN currently follows these without problems, but our NGINX setup does not. To aid developers, we should point this out to them so they notice ahead of time
priority
duckpan should warn about or not follow redirects for api calls to mimic our nginx we ve run into issues with nginx related to http apis that redirect to https or api calls that first return a and point elsewhere duckpan currently follows these without problems but our nginx setup does not to aid developers we should point this out to them so they notice ahead of time
1
722,530
24,865,971,163
IssuesEvent
2022-10-27 11:59:24
AY2223S1-CS2103T-T10-1/tp
https://api.github.com/repos/AY2223S1-CS2103T-T10-1/tp
closed
As a student, I can add the association between a contact and module
type.Story priority.Medium
so that I can track which of my friends could potentially become my study buddy.
1.0
As a student, I can add the association between a contact and module - so that I can track which of my friends could potentially become my study buddy.
priority
as a student i can add the association between a contact and module so that i can track which of my friends could potentially become my study buddy
1
216,074
7,301,019,212
IssuesEvent
2018-02-27 02:40:18
ChromatixAU/phpcs-config-chromatix
https://api.github.com/repos/ChromatixAU/phpcs-config-chromatix
closed
Linting errors due to unavailable wpcom_vip_ functions
bandaided bug good first issue medium priority
Latest v0.0.15 giving linting error :- [phpcs] get_category_link() is prohibited, please use wpcom_vip_get_term_link() instead.
1.0
Linting errors due to unavailable wpcom_vip_ functions - Latest v0.0.15 giving linting error :- [phpcs] get_category_link() is prohibited, please use wpcom_vip_get_term_link() instead.
priority
linting errors due to unavailable wpcom vip functions latest giving linting error get category link is prohibited please use wpcom vip get term link instead
1
585,466
17,498,134,160
IssuesEvent
2021-08-10 05:23:00
vmware/singleton
https://api.github.com/repos/vmware/singleton
closed
[BUG] [S3 Service] [V1]API returns wrong when prodcut name has been configured in bundle.json ,details below
kind/bug priority/medium
**Describe the bug** API returns wrong when prodcut name has been configured in bundle.json ,details below **To Reproduce** \Service\API\V1\translation-source-api\createSourceUsingPOST_1 \Service\API\V1\translation-source-api\getTranslationBySourceUsingGET \Service\API\V1\translation-product-component-key-api\getStringTranslationExclusiveComponentUsingGET \Service\API\V1\translation-product-component-key-api\createSourceUsingPOST \Service\API\V1\translation-product-component-key-api\getStringTranslationContainComponentUsingGET \Service\API\V1\translation-product-component-api\getMultipleComponentsTranslationUsingGET_1 Request such as : ![image](https://user-images.githubusercontent.com/82644009/128591693-43ff673e-92e8-4174-822b-7003bdc9f82b.png) {component=default, source=Partner Name, locale=zh-Hans, version=1.1.0, pseudo=false, productName=vmWarevip, key=Partner_Name} ![image](https://user-images.githubusercontent.com/82644009/128591714-52584e3d-9802-4f21-9cf5-0770d13301ca.png) **Expected behavior** ![image](https://user-images.githubusercontent.com/82644009/128591721-7a0656ab-dcc9-4c16-9b7c-9627600391f4.png) **Screenshots** If applicable, add screenshots to help you explain your issue **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser Name [e.g. chrome, safari] - Browser Version [e.g. 22] **Additional context** Add any other context about the problem here.
1.0
[BUG] [S3 Service] [V1]API returns wrong when prodcut name has been configured in bundle.json ,details below - **Describe the bug** API returns wrong when prodcut name has been configured in bundle.json ,details below **To Reproduce** \Service\API\V1\translation-source-api\createSourceUsingPOST_1 \Service\API\V1\translation-source-api\getTranslationBySourceUsingGET \Service\API\V1\translation-product-component-key-api\getStringTranslationExclusiveComponentUsingGET \Service\API\V1\translation-product-component-key-api\createSourceUsingPOST \Service\API\V1\translation-product-component-key-api\getStringTranslationContainComponentUsingGET \Service\API\V1\translation-product-component-api\getMultipleComponentsTranslationUsingGET_1 Request such as : ![image](https://user-images.githubusercontent.com/82644009/128591693-43ff673e-92e8-4174-822b-7003bdc9f82b.png) {component=default, source=Partner Name, locale=zh-Hans, version=1.1.0, pseudo=false, productName=vmWarevip, key=Partner_Name} ![image](https://user-images.githubusercontent.com/82644009/128591714-52584e3d-9802-4f21-9cf5-0770d13301ca.png) **Expected behavior** ![image](https://user-images.githubusercontent.com/82644009/128591721-7a0656ab-dcc9-4c16-9b7c-9627600391f4.png) **Screenshots** If applicable, add screenshots to help you explain your issue **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser Name [e.g. chrome, safari] - Browser Version [e.g. 22] **Additional context** Add any other context about the problem here.
priority
api returns wrong when prodcut name has been configured in bundle json details below describe the bug api returns wrong when prodcut name has been configured in bundle json details below to reproduce service api translation source api createsourceusingpost service api translation source api gettranslationbysourceusingget service api translation product component key api getstringtranslationexclusivecomponentusingget service api translation product component key api createsourceusingpost service api translation product component key api getstringtranslationcontaincomponentusingget service api translation product component api getmultiplecomponentstranslationusingget request such as component default source partner name locale zh hans version pseudo false productname vmwarevip key partner name expected behavior screenshots if applicable add screenshots to help you explain your issue desktop please complete the following information os browser name browser version additional context add any other context about the problem here
1
661,816
22,089,809,189
IssuesEvent
2022-06-01 04:25:25
Railcraft/Railcraft
https://api.github.com/repos/Railcraft/Railcraft
closed
Tunnel bore drops when placed
need more info needs verification medium priority carts
When i place the tunnel bore it don´t apear, well, it do the animation of placement but when is in the rail is like it was broken for a player and go as item to the floor. Thanks for all
1.0
Tunnel bore drops when placed - When i place the tunnel bore it don´t apear, well, it do the animation of placement but when is in the rail is like it was broken for a player and go as item to the floor. Thanks for all
priority
tunnel bore drops when placed when i place the tunnel bore it don´t apear well it do the animation of placement but when is in the rail is like it was broken for a player and go as item to the floor thanks for all
1
498,050
14,399,396,076
IssuesEvent
2020-12-03 10:52:09
stanvanrooy/instauto
https://api.github.com/repos/stanvanrooy/instauto
opened
Implement pagination for direct messaging inbox
Priority: Medium Status: Available Type: Enchancement
The current implementation is only able to retrieve the first 'page' of your inbox. You should be able to iterate over all results instead.
1.0
Implement pagination for direct messaging inbox - The current implementation is only able to retrieve the first 'page' of your inbox. You should be able to iterate over all results instead.
priority
implement pagination for direct messaging inbox the current implementation is only able to retrieve the first page of your inbox you should be able to iterate over all results instead
1
310,755
9,523,722,347
IssuesEvent
2019-04-27 19:42:30
bbottema/simple-java-mail
https://api.github.com/repos/bbottema/simple-java-mail
closed
ThreadPoolExecutor terminated when sending an async mail
Priority-Medium bug
Hello, In production I had this error with simple-java-mail 4.4.5: ``` java.util.concurrent.RejectedExecutionException: Task sendMail process rejected from java.util.concurrent.ThreadPoolExecutor@79627f99[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 3] at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2047) at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:823) at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1369) at org.simplejavamail.mailer.internal.mailsender.MailSender.send(MailSender.java:196) at org.simplejavamail.mailer.Mailer.sendMail(Mailer.java:364) ``` The call was: `mailer.sendMail(email, true);` By looking at these classes: - the 4.4.5 version: https://github.com/bbottema/simple-java-mail/blob/4.4.5/src/main/java/org/simplejavamail/mailer/internal/mailsender/MailSender.java - the latest version: https://github.com/bbottema/simple-java-mail/blob/develop/modules/simple-java-mail/src/main/java/org/simplejavamail/mailer/internal/mailsender/MailSenderImpl.java There is indeed a bug: - in the synchronized `checkShutDownRunningProcesses` method, the pool is shutdown if there is no more mail to send, - in the synchronized `send` method, the pool is started if it is null or shutdown. But the thing is, calling the `shutdown ` method on a `ThreadPoolExecutor` is not a synchronized operation, it just *Initiates an orderly shutdown*. My main question is actually: why shutting down the pool if there is no mail to send? In the comment before the shutdown is is written *shutdown the threadpool, or else the Mailer will keep any JVM alive forever*. But actually by default, the thread factory in the `ThreadPoolExecutor` build non daemon threads, so it will not keep the JVM alive.
1.0
ThreadPoolExecutor terminated when sending an async mail - Hello, In production I had this error with simple-java-mail 4.4.5: ``` java.util.concurrent.RejectedExecutionException: Task sendMail process rejected from java.util.concurrent.ThreadPoolExecutor@79627f99[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 3] at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2047) at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:823) at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1369) at org.simplejavamail.mailer.internal.mailsender.MailSender.send(MailSender.java:196) at org.simplejavamail.mailer.Mailer.sendMail(Mailer.java:364) ``` The call was: `mailer.sendMail(email, true);` By looking at these classes: - the 4.4.5 version: https://github.com/bbottema/simple-java-mail/blob/4.4.5/src/main/java/org/simplejavamail/mailer/internal/mailsender/MailSender.java - the latest version: https://github.com/bbottema/simple-java-mail/blob/develop/modules/simple-java-mail/src/main/java/org/simplejavamail/mailer/internal/mailsender/MailSenderImpl.java There is indeed a bug: - in the synchronized `checkShutDownRunningProcesses` method, the pool is shutdown if there is no more mail to send, - in the synchronized `send` method, the pool is started if it is null or shutdown. But the thing is, calling the `shutdown ` method on a `ThreadPoolExecutor` is not a synchronized operation, it just *Initiates an orderly shutdown*. My main question is actually: why shutting down the pool if there is no mail to send? In the comment before the shutdown is is written *shutdown the threadpool, or else the Mailer will keep any JVM alive forever*. But actually by default, the thread factory in the `ThreadPoolExecutor` build non daemon threads, so it will not keep the JVM alive.
priority
threadpoolexecutor terminated when sending an async mail hello in production i had this error with simple java mail java util concurrent rejectedexecutionexception task sendmail process rejected from java util concurrent threadpoolexecutor at java util concurrent threadpoolexecutor abortpolicy rejectedexecution threadpoolexecutor java at java util concurrent threadpoolexecutor reject threadpoolexecutor java at java util concurrent threadpoolexecutor execute threadpoolexecutor java at org simplejavamail mailer internal mailsender mailsender send mailsender java at org simplejavamail mailer mailer sendmail mailer java the call was mailer sendmail email true by looking at these classes the version the latest version there is indeed a bug in the synchronized checkshutdownrunningprocesses method the pool is shutdown if there is no more mail to send in the synchronized send method the pool is started if it is null or shutdown but the thing is calling the shutdown method on a threadpoolexecutor is not a synchronized operation it just initiates an orderly shutdown my main question is actually why shutting down the pool if there is no mail to send in the comment before the shutdown is is written shutdown the threadpool or else the mailer will keep any jvm alive forever but actually by default the thread factory in the threadpoolexecutor build non daemon threads so it will not keep the jvm alive
1
737,231
25,507,125,718
IssuesEvent
2022-11-28 10:16:58
bounswe/bounswe2022group7
https://api.github.com/repos/bounswe/bounswe2022group7
opened
Discussion Post Upvote Downvote Transform as In Comment
Status: In Progress Priority: High Difficulty: Medium Type: Implementation Target: Backend
Now, for discussion post, we still just have counts for upvote downvote. We should convert it to lists of upvoters downvoters.
1.0
Discussion Post Upvote Downvote Transform as In Comment - Now, for discussion post, we still just have counts for upvote downvote. We should convert it to lists of upvoters downvoters.
priority
discussion post upvote downvote transform as in comment now for discussion post we still just have counts for upvote downvote we should convert it to lists of upvoters downvoters
1
817,219
30,631,495,677
IssuesEvent
2023-07-24 14:48:51
sebastien-d-me/ToDo-Co
https://api.github.com/repos/sebastien-d-me/ToDo-Co
opened
Audit report
Priority: Medium Status: Not started
#### Description: Creation of code quality audit report and performance report. ------------ ###### Estimated time: 2 day(s) ###### Difficulty: ⭐
1.0
Audit report - #### Description: Creation of code quality audit report and performance report. ------------ ###### Estimated time: 2 day(s) ###### Difficulty: ⭐
priority
audit report description creation of code quality audit report and performance report estimated time day s difficulty ⭐
1
173,186
6,521,364,173
IssuesEvent
2017-08-28 20:16:53
Aubron/scoreshots-templates
https://api.github.com/repos/Aubron/scoreshots-templates
closed
Conference Standings Template
Priority: Medium Status: Needs Finalization / Preview Image
<!--- Provide client & short description of template (preview, final, stat, etc) in Title --> <!--- If thread is long, consider including template thumbnail here for ease of identification. --> ## Requested By: <!--- PARTNER, CLIENT NAME, DESIRED DELIVERY DATE --> <!--- This tells us which organization requested the template, and who to contact. --> <!--- If requested internally, specify this. --> Internal, by Rick Perko. August 4th delivery date. ## Sharing & Intended Use: <!--- Specify PUBLIC or PRIVATE, along with SPORT and CATEGORY, if you know it. --> <!--- Always ask client if they're okay with others using the template, to help with billing/priorities. --> <!--- Also list any additional tags or categories that might apply to this template. --> Public, presumably Media Relations. ## Template Description: <!--- Provide details on what the template ought to look like and do. --> <!--- Include direct correspondence with clients in quotes IFF necessary. --> Description from Rick: > It would be dynamic and include wins and losses for both conference play and overall. It will also need bifurcation into two divisions (e.g., east and west). Would be very cool if there was a way to modify by simply bumping a team up or down. ## Dynamic/Programming Considerations: <!--- List any additional or unusual features that will require development attention. --> <!--- If there are none, list N/A. --> - Dropdown, number of games : 5 , 6, 7 and 8 (not necessarily symmetrical) ## Example Images / Additional Resources: <!--- Attach any example images or napkin drawings submitted by client. --> <!--- Specify the source of each image, so we know what we are allowed to use during referencing. --> Here's a screenshot of a website Rick linked as an example for this task. ![standings](https://user-images.githubusercontent.com/26412274/28692795-2452e188-72f0-11e7-822b-a6dc8d516dfe.png)
1.0
Conference Standings Template - <!--- Provide client & short description of template (preview, final, stat, etc) in Title --> <!--- If thread is long, consider including template thumbnail here for ease of identification. --> ## Requested By: <!--- PARTNER, CLIENT NAME, DESIRED DELIVERY DATE --> <!--- This tells us which organization requested the template, and who to contact. --> <!--- If requested internally, specify this. --> Internal, by Rick Perko. August 4th delivery date. ## Sharing & Intended Use: <!--- Specify PUBLIC or PRIVATE, along with SPORT and CATEGORY, if you know it. --> <!--- Always ask client if they're okay with others using the template, to help with billing/priorities. --> <!--- Also list any additional tags or categories that might apply to this template. --> Public, presumably Media Relations. ## Template Description: <!--- Provide details on what the template ought to look like and do. --> <!--- Include direct correspondence with clients in quotes IFF necessary. --> Description from Rick: > It would be dynamic and include wins and losses for both conference play and overall. It will also need bifurcation into two divisions (e.g., east and west). Would be very cool if there was a way to modify by simply bumping a team up or down. ## Dynamic/Programming Considerations: <!--- List any additional or unusual features that will require development attention. --> <!--- If there are none, list N/A. --> - Dropdown, number of games : 5 , 6, 7 and 8 (not necessarily symmetrical) ## Example Images / Additional Resources: <!--- Attach any example images or napkin drawings submitted by client. --> <!--- Specify the source of each image, so we know what we are allowed to use during referencing. --> Here's a screenshot of a website Rick linked as an example for this task. ![standings](https://user-images.githubusercontent.com/26412274/28692795-2452e188-72f0-11e7-822b-a6dc8d516dfe.png)
priority
conference standings template requested by internal by rick perko august delivery date sharing intended use public presumably media relations template description description from rick it would be dynamic and include wins and losses for both conference play and overall it will also need bifurcation into two divisions e g east and west would be very cool if there was a way to modify by simply bumping a team up or down dynamic programming considerations dropdown number of games and not necessarily symmetrical example images additional resources here s a screenshot of a website rick linked as an example for this task
1
484,880
13,958,541,171
IssuesEvent
2020-10-24 12:28:42
AY2021S1-CS2103T-W16-3/tp
https://api.github.com/repos/AY2021S1-CS2103T-W16-3/tp
closed
Standardize parse exception precedence across commands
priority.medium :2nd_place_medal: type.bug :bug:
The `parseCommand` method of `FinanceTrackerParser` can throw a `ParseException` for the following main reasons: 1. The command word is unknown. 2. The user is entering a command on a tab that is not applicable (e.g. `add` on Overview or Analytics tab) 3. The user enters a valid command word, but the arguments cannot be parsed (either a malformed argument or data not conforming to validation rules). For the `add` command, exceptions for reason 2 take precedence over reason 3 as the parsing is done after checking the current tab. However, this is not consistent with the behavior of other commands such as `edit`, where parsing is done before checking the current tab, resulting in exceptions under reason 3 being thrown before reason 2. We should standardize this behavior. In particular, it should follow the `add` command behavior as it does not make sense to parse the arguments to a command that is not even applicable to the current tab in the first place. This may result in the parser application being duplicated across different `switch` cases, but consistency is more important.
1.0
Standardize parse exception precedence across commands - The `parseCommand` method of `FinanceTrackerParser` can throw a `ParseException` for the following main reasons: 1. The command word is unknown. 2. The user is entering a command on a tab that is not applicable (e.g. `add` on Overview or Analytics tab) 3. The user enters a valid command word, but the arguments cannot be parsed (either a malformed argument or data not conforming to validation rules). For the `add` command, exceptions for reason 2 take precedence over reason 3 as the parsing is done after checking the current tab. However, this is not consistent with the behavior of other commands such as `edit`, where parsing is done before checking the current tab, resulting in exceptions under reason 3 being thrown before reason 2. We should standardize this behavior. In particular, it should follow the `add` command behavior as it does not make sense to parse the arguments to a command that is not even applicable to the current tab in the first place. This may result in the parser application being duplicated across different `switch` cases, but consistency is more important.
priority
standardize parse exception precedence across commands the parsecommand method of financetrackerparser can throw a parseexception for the following main reasons the command word is unknown the user is entering a command on a tab that is not applicable e g add on overview or analytics tab the user enters a valid command word but the arguments cannot be parsed either a malformed argument or data not conforming to validation rules for the add command exceptions for reason take precedence over reason as the parsing is done after checking the current tab however this is not consistent with the behavior of other commands such as edit where parsing is done before checking the current tab resulting in exceptions under reason being thrown before reason we should standardize this behavior in particular it should follow the add command behavior as it does not make sense to parse the arguments to a command that is not even applicable to the current tab in the first place this may result in the parser application being duplicated across different switch cases but consistency is more important
1
56,271
3,078,738,028
IssuesEvent
2015-08-21 12:29:36
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
opened
Быстрое отключение чата (индивидуальное для каждого хаба, аналогичное отключению списка пользователей)
Close Component-Logic Component-UI enhancement imported Priority-Medium Usability
_From [[email protected]](https://code.google.com/u/102418317896447533964/) on August 18, 2011 15:23:34_ Общий чат не всегда нужен. Хотелось бы иметь возможность его отключить одной галочкой (как сейчас можно отключить список пользователей). _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=541_
1.0
Быстрое отключение чата (индивидуальное для каждого хаба, аналогичное отключению списка пользователей) - _From [[email protected]](https://code.google.com/u/102418317896447533964/) on August 18, 2011 15:23:34_ Общий чат не всегда нужен. Хотелось бы иметь возможность его отключить одной галочкой (как сейчас можно отключить список пользователей). _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=541_
priority
быстрое отключение чата индивидуальное для каждого хаба аналогичное отключению списка пользователей from on august общий чат не всегда нужен хотелось бы иметь возможность его отключить одной галочкой как сейчас можно отключить список пользователей original issue
1
87,004
3,735,988,747
IssuesEvent
2016-03-08 14:29:53
PlanHubMe/PlanHub
https://api.github.com/repos/PlanHubMe/PlanHub
opened
HW view should handle invalid subjects properly
Feature: HW View medium priority
Somehow, some events in the database got "disconnected" from their subject. (they point to a subject number that doesn't exist) I'm not sure why this happens, but one side effect of this is that HW view stops loading. It errors out and stays "Loading..." forever, which isn't so good. We should probably display a message at the top or something warning the user and asking them to please contact support.
1.0
HW view should handle invalid subjects properly - Somehow, some events in the database got "disconnected" from their subject. (they point to a subject number that doesn't exist) I'm not sure why this happens, but one side effect of this is that HW view stops loading. It errors out and stays "Loading..." forever, which isn't so good. We should probably display a message at the top or something warning the user and asking them to please contact support.
priority
hw view should handle invalid subjects properly somehow some events in the database got disconnected from their subject they point to a subject number that doesn t exist i m not sure why this happens but one side effect of this is that hw view stops loading it errors out and stays loading forever which isn t so good we should probably display a message at the top or something warning the user and asking them to please contact support
1
297,368
9,167,630,767
IssuesEvent
2019-03-02 15:25:45
project-koku/koku-ui
https://api.github.com/repos/project-koku/koku-ui
opened
Some 'Add a Source' modal copy/paste text strings contain '#'
bug priority - medium
**Describe the bug** Some 'Add a Source' modal copy/paste text strings contain '#' **To Reproduce** Steps to reproduce the behavior: 1. Go to 'Overview' 2. Click on 'Add a Source' 3. Navigate through OCP configuration 4. Notice some copy/paste strings start with '#' 5. Pasting and running a string starting with '#' will fail **Expected behavior** Strings should not contain '#'s **Screenshots** ![screenshot from 2019-03-02 15-20-57](https://user-images.githubusercontent.com/18352403/53683976-557b9400-3cff-11e9-8a49-4f86fdd755f4.png) ![screenshot from 2019-03-02 15-22-43](https://user-images.githubusercontent.com/18352403/53683979-5a404800-3cff-11e9-84e5-c3518e6ed06e.png) **Desktop (please complete the following information):** - OS: Fedora - Browser Chrome - Version 66 **Additional context** Testing Against CI insightsbeta
1.0
Some 'Add a Source' modal copy/paste text strings contain '#' - **Describe the bug** Some 'Add a Source' modal copy/paste text strings contain '#' **To Reproduce** Steps to reproduce the behavior: 1. Go to 'Overview' 2. Click on 'Add a Source' 3. Navigate through OCP configuration 4. Notice some copy/paste strings start with '#' 5. Pasting and running a string starting with '#' will fail **Expected behavior** Strings should not contain '#'s **Screenshots** ![screenshot from 2019-03-02 15-20-57](https://user-images.githubusercontent.com/18352403/53683976-557b9400-3cff-11e9-8a49-4f86fdd755f4.png) ![screenshot from 2019-03-02 15-22-43](https://user-images.githubusercontent.com/18352403/53683979-5a404800-3cff-11e9-84e5-c3518e6ed06e.png) **Desktop (please complete the following information):** - OS: Fedora - Browser Chrome - Version 66 **Additional context** Testing Against CI insightsbeta
priority
some add a source modal copy paste text strings contain describe the bug some add a source modal copy paste text strings contain to reproduce steps to reproduce the behavior go to overview click on add a source navigate through ocp configuration notice some copy paste strings start with pasting and running a string starting with will fail expected behavior strings should not contain s screenshots desktop please complete the following information os fedora browser chrome version additional context testing against ci insightsbeta
1
372,577
11,017,103,720
IssuesEvent
2019-12-05 07:32:29
pombase/canto
https://api.github.com/repos/pombase/canto
closed
new conditions do not always show in red
bug display medium priority
Did somebody else mention this. They seem to GO red eventually, but I'm not sure why they don't appear red immediately? ![should show red](https://user-images.githubusercontent.com/7359272/65896231-c291fd80-e3a4-11e9-9cc8-8d45f44e49b9.jpg)
1.0
new conditions do not always show in red - Did somebody else mention this. They seem to GO red eventually, but I'm not sure why they don't appear red immediately? ![should show red](https://user-images.githubusercontent.com/7359272/65896231-c291fd80-e3a4-11e9-9cc8-8d45f44e49b9.jpg)
priority
new conditions do not always show in red did somebody else mention this they seem to go red eventually but i m not sure why they don t appear red immediately
1
715,328
24,594,483,140
IssuesEvent
2022-10-14 07:04:01
objectiv/objectiv-analytics
https://api.github.com/repos/objectiv/objectiv-analytics
closed
Fix BQ tests.functional.bach.test_df_sort_values.test_sort_values_expression
Priority: 3. Medium Area: Bach Component: BigQuery
* Make code changes if needed * Make test use `engine` instead of `pg_engine`
1.0
Fix BQ tests.functional.bach.test_df_sort_values.test_sort_values_expression - * Make code changes if needed * Make test use `engine` instead of `pg_engine`
priority
fix bq tests functional bach test df sort values test sort values expression make code changes if needed make test use engine instead of pg engine
1
77,218
3,506,273,361
IssuesEvent
2016-01-08 05:11:43
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
frequent crashes (BB #281)
migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** **Original Date:** 02.09.2010 16:56:31 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/281 <hr> I'm on your newest rev (682) and my server crashes every 5-10min, sometimes even earlier. I guess it's because of joining arenas' queues, but i'm not sure. Please check it.
1.0
frequent crashes (BB #281) - This issue was migrated from bitbucket. **Original Reporter:** **Original Date:** 02.09.2010 16:56:31 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/281 <hr> I'm on your newest rev (682) and my server crashes every 5-10min, sometimes even earlier. I guess it's because of joining arenas' queues, but i'm not sure. Please check it.
priority
frequent crashes bb this issue was migrated from bitbucket original reporter original date gmt original priority major original type bug original state resolved direct link i m on your newest rev and my server crashes every sometimes even earlier i guess it s because of joining arenas queues but i m not sure please check it
1
343,832
10,337,258,032
IssuesEvent
2019-09-03 14:32:17
level73/membernet
https://api.github.com/repos/level73/membernet
closed
hierarchy in nes/cbi contacts on landing page
Platform: Membernet Priority: Medium Type: Development
could we please have the list of facilitators be organised alphabetically for NES contacts? ie, NES Albania, NES Bolivia, Colombia etc.? ![Capture](https://user-images.githubusercontent.com/40179449/63942830-c281a380-ca6e-11e9-9ab4-5c859479c837.JPG) Same for CBI
1.0
hierarchy in nes/cbi contacts on landing page - could we please have the list of facilitators be organised alphabetically for NES contacts? ie, NES Albania, NES Bolivia, Colombia etc.? ![Capture](https://user-images.githubusercontent.com/40179449/63942830-c281a380-ca6e-11e9-9ab4-5c859479c837.JPG) Same for CBI
priority
hierarchy in nes cbi contacts on landing page could we please have the list of facilitators be organised alphabetically for nes contacts ie nes albania nes bolivia colombia etc same for cbi
1
486,810
14,014,986,467
IssuesEvent
2020-10-29 12:43:51
geosolutions-it/austrocontrol-C125
https://api.github.com/repos/geosolutions-it/austrocontrol-C125
closed
Responsive Design - Info Box - Update of the WYSIWYG
Accepted Priority: Medium Project: C125
Update of the WYSIWYG used by the current Details tool to allow aligning and resizing images. Use the new WYSIWYG editor implemented for Stories (draftJS editor). This means not only adapting the new Text editor to the existing Details tool, but also readapting it in order to include and manage additional utilities to allow operations on images, that are available only using the new WYSIWYG (the [Image](https://www.draft-js-plugins.com/plugin/image) and other plugins that allows to align images, **_the example Alignment + Resize + Focus + Drag’n’drop_** seems near to the desired behaviour). The most part of the estimate reported in the tasklist is needed to accomplish this specific task. ![image](https://user-images.githubusercontent.com/1280027/77438252-debba800-6de5-11ea-8fec-fe6920afb6f6.png)
1.0
Responsive Design - Info Box - Update of the WYSIWYG - Update of the WYSIWYG used by the current Details tool to allow aligning and resizing images. Use the new WYSIWYG editor implemented for Stories (draftJS editor). This means not only adapting the new Text editor to the existing Details tool, but also readapting it in order to include and manage additional utilities to allow operations on images, that are available only using the new WYSIWYG (the [Image](https://www.draft-js-plugins.com/plugin/image) and other plugins that allows to align images, **_the example Alignment + Resize + Focus + Drag’n’drop_** seems near to the desired behaviour). The most part of the estimate reported in the tasklist is needed to accomplish this specific task. ![image](https://user-images.githubusercontent.com/1280027/77438252-debba800-6de5-11ea-8fec-fe6920afb6f6.png)
priority
responsive design info box update of the wysiwyg update of the wysiwyg used by the current details tool to allow aligning and resizing images use the new wysiwyg editor implemented for stories draftjs editor this means not only adapting the new text editor to the existing details tool but also readapting it in order to include and manage additional utilities to allow operations on images that are available only using the new wysiwyg the and other plugins that allows to align images the example alignment resize focus drag’n’drop seems near to the desired behaviour the most part of the estimate reported in the tasklist is needed to accomplish this specific task
1
646,070
21,036,357,246
IssuesEvent
2022-03-31 08:13:57
AY2122S2-CS2103-F11-2/tp
https://api.github.com/repos/AY2122S2-CS2103-F11-2/tp
opened
Update `Help` window
type.Bug priority.Medium Functionality
Currently the help window does not contain all available commands in this version. Let's update it to contain all commands.
1.0
Update `Help` window - Currently the help window does not contain all available commands in this version. Let's update it to contain all commands.
priority
update help window currently the help window does not contain all available commands in this version let s update it to contain all commands
1
375,935
11,136,165,674
IssuesEvent
2019-12-20 15:58:58
dhenry-KCI/FredCo-Post-Go-Live-
https://api.github.com/repos/dhenry-KCI/FredCo-Post-Go-Live-
opened
Building Permits - Capacity - Spring View Estates Subdivision Fees
Medium Priority
CAPACITY - RESIDENTIAL SINGLE FAMILY DWELLING AP # 258425 The Spring View Estates subdivision code 041244 needs to automatically add the RESIDENTIAL SEWER FEE 20400 ($7509.00) when it is a residential occupancy type. Terry manually added these fees to the application in PROD. ![image](https://user-images.githubusercontent.com/31770504/71267012-9046cb00-2317-11ea-99e4-ca769f5fd546.png) ![image](https://user-images.githubusercontent.com/31770504/71267050-a5bbf500-2317-11ea-81a7-5f649d2ee1e3.png)
1.0
Building Permits - Capacity - Spring View Estates Subdivision Fees - CAPACITY - RESIDENTIAL SINGLE FAMILY DWELLING AP # 258425 The Spring View Estates subdivision code 041244 needs to automatically add the RESIDENTIAL SEWER FEE 20400 ($7509.00) when it is a residential occupancy type. Terry manually added these fees to the application in PROD. ![image](https://user-images.githubusercontent.com/31770504/71267012-9046cb00-2317-11ea-99e4-ca769f5fd546.png) ![image](https://user-images.githubusercontent.com/31770504/71267050-a5bbf500-2317-11ea-81a7-5f649d2ee1e3.png)
priority
building permits capacity spring view estates subdivision fees capacity residential single family dwelling ap the spring view estates subdivision code needs to automatically add the residential sewer fee when it is a residential occupancy type terry manually added these fees to the application in prod
1
5,482
2,576,697,805
IssuesEvent
2015-02-12 12:12:52
olga-jane/prizm
https://api.github.com/repos/olga-jane/prizm
closed
Add file button should be at the left, Close at the right at ExternalFile dialog
Attachments bug bug - UI Coding MEDIUM priority
Add file button should be at the left, Close at the right at ExternalFile dialog. Now both buttons are at the right.
1.0
Add file button should be at the left, Close at the right at ExternalFile dialog - Add file button should be at the left, Close at the right at ExternalFile dialog. Now both buttons are at the right.
priority
add file button should be at the left close at the right at externalfile dialog add file button should be at the left close at the right at externalfile dialog now both buttons are at the right
1
57,142
3,081,243,195
IssuesEvent
2015-08-22 14:33:35
bitfighter/bitfighter
https://api.github.com/repos/bitfighter/bitfighter
closed
Seekers seek teammates in single-team rabbit
019a bug imported Priority-Medium
_From [buckyballreaction](https://code.google.com/u/buckyballreaction/) on January 07, 2014 11:59:38_ Seekers seek teammates in single-team rabbit _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=365_
1.0
Seekers seek teammates in single-team rabbit - _From [buckyballreaction](https://code.google.com/u/buckyballreaction/) on January 07, 2014 11:59:38_ Seekers seek teammates in single-team rabbit _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=365_
priority
seekers seek teammates in single team rabbit from on january seekers seek teammates in single team rabbit original issue
1
802,126
28,718,311,306
IssuesEvent
2023-04-28 00:04:28
LiskHQ/lisk-desktop
https://api.github.com/repos/LiskHQ/lisk-desktop
opened
Inaccessible hardware wallet accounts stored in account list
type: bug priority: medium domain: hardware-wallet
### Expected behavior Previous selected and unintialized hardware wallet accounts should be removed from the account list after hardware wallet is disconnected ### Actual behavior Both previously selected and uninitialized hardware wallet accounts remain in account list after hardware wallet is disconnected ![lisk-app-test-fdbk-8](https://user-images.githubusercontent.com/31376203/235015353-8f34b8e3-f5ed-4368-a13c-ebc7d86b80e2.png) ### Steps to reproduce - Connect hardware wallet - Select "Switch account" from the account dropdown in the top bar - Select a hardware wallet account - Disconnect hardware wallet - Open the switch account modal to see the list of accounts ### Which version(s) does this affect? (Environment, OS, etc...) All
1.0
Inaccessible hardware wallet accounts stored in account list - ### Expected behavior Previous selected and unintialized hardware wallet accounts should be removed from the account list after hardware wallet is disconnected ### Actual behavior Both previously selected and uninitialized hardware wallet accounts remain in account list after hardware wallet is disconnected ![lisk-app-test-fdbk-8](https://user-images.githubusercontent.com/31376203/235015353-8f34b8e3-f5ed-4368-a13c-ebc7d86b80e2.png) ### Steps to reproduce - Connect hardware wallet - Select "Switch account" from the account dropdown in the top bar - Select a hardware wallet account - Disconnect hardware wallet - Open the switch account modal to see the list of accounts ### Which version(s) does this affect? (Environment, OS, etc...) All
priority
inaccessible hardware wallet accounts stored in account list expected behavior previous selected and unintialized hardware wallet accounts should be removed from the account list after hardware wallet is disconnected actual behavior both previously selected and uninitialized hardware wallet accounts remain in account list after hardware wallet is disconnected steps to reproduce connect hardware wallet select switch account from the account dropdown in the top bar select a hardware wallet account disconnect hardware wallet open the switch account modal to see the list of accounts which version s does this affect environment os etc all
1
636,906
20,612,641,003
IssuesEvent
2022-03-07 10:08:50
Soulcialize/souldragonknight
https://api.github.com/repos/Soulcialize/souldragonknight
opened
Add stamina and mana system
type.Enhancement priority.Medium
The knight will have stamina while the dragon has mana. These two resources are depleted when attacking and will recharge over time. This would discourage players from spamming their attacks which would make the enemies too easy to defeat. Players will have to cooperate more closely so that they do not waste stamina/mana on aimless attacks.
1.0
Add stamina and mana system - The knight will have stamina while the dragon has mana. These two resources are depleted when attacking and will recharge over time. This would discourage players from spamming their attacks which would make the enemies too easy to defeat. Players will have to cooperate more closely so that they do not waste stamina/mana on aimless attacks.
priority
add stamina and mana system the knight will have stamina while the dragon has mana these two resources are depleted when attacking and will recharge over time this would discourage players from spamming their attacks which would make the enemies too easy to defeat players will have to cooperate more closely so that they do not waste stamina mana on aimless attacks
1
288,716
8,850,723,855
IssuesEvent
2019-01-08 14:03:01
rathena/rathena
https://api.github.com/repos/rathena/rathena
closed
Unable to restore stack! Double continuation!
component:core mode:prerenewal mode:renewal priority:medium type:bug
<!-- NOTE: Anything within these brackets will be hidden on the preview of the Issue. --> * **rAthena Hash**: 79766cd99eebbc507c82f1900df60e909e46a23e <!-- Please specify the rAthena [GitHub hash](https://help.github.com/articles/autolinked-references-and-urls/#commit-shas) on which you encountered this issue. How to get your GitHub Hash: 1. cd your/rAthena/directory/ 2. git rev-parse --short HEAD 3. Copy the resulting hash. --> * **Client Date**: 2017-06-14 <!-- Please specify the client date you used. --> * **Server Mode**: Pre-renewal <!-- Which mode does your server use: Pre-Renewal or Renewal? --> * **Description of Issue**: ``` [Warning]: Unable to restore stack! Double continuation! [Debug]: Previous script (lost): [Debug]: Source (NPC): FAKE_NPC (invisible/not on a map) [Debug]: Current script: [Debug]: Source (NPC): FAKE_NPC (invisible/not on a map) Program received signal SIGSEGV, Segmentation fault. 0x00005555556b6bed in pop_stack (st=st@entry=0x7fffeca07b54, start=0, end=0) at script.cpp:3398 3398 struct script_stack* stack = st->stack; (gdb) bt full #0 0x00005555556b6bed in pop_stack (st=st@entry=0x7fffeca07b54, start=0, end=0) at script.cpp:3398 stack = 0x0 data = <optimized out> i = <optimized out> __FUNCTION__ = "pop_stack" #1 0x00005555556b7ab2 in run_func (st=st@entry=0x7fffeca07b54) at script.cpp:4007 data = <optimized out> i = <optimized out> start_sp = <optimized out> end_sp = <optimized out> func = 50 #2 0x00005555556bc800 in run_script_main (st=0x7fffeca07b54) at script.cpp:4270 c = <optimized out> cmdcount = 655339 gotocount = 2047 sd = <optimized out> stack = 0x7fffe78ceb1c #3 0x000055555564b7a8 in npc_scriptcont(map_session_data*, int, bool) () No symbol table info available. #4 0x00005555555d0905 in clif_parse (fd=8) at clif.cpp:20990 cmd = <optimized out> packet_len = 2 sd = <optimized out> pnum = 0 cmd2 = 21845 #5 0x00005555555749d5 in main () No symbol table info available. ``` This only happens today. after i applied this PR https://github.com/rathena/rathena/pull/3831 which im not sure if its connected. Edit --- Yup. reverted back without the PR and everything works fine.
1.0
Unable to restore stack! Double continuation! - <!-- NOTE: Anything within these brackets will be hidden on the preview of the Issue. --> * **rAthena Hash**: 79766cd99eebbc507c82f1900df60e909e46a23e <!-- Please specify the rAthena [GitHub hash](https://help.github.com/articles/autolinked-references-and-urls/#commit-shas) on which you encountered this issue. How to get your GitHub Hash: 1. cd your/rAthena/directory/ 2. git rev-parse --short HEAD 3. Copy the resulting hash. --> * **Client Date**: 2017-06-14 <!-- Please specify the client date you used. --> * **Server Mode**: Pre-renewal <!-- Which mode does your server use: Pre-Renewal or Renewal? --> * **Description of Issue**: ``` [Warning]: Unable to restore stack! Double continuation! [Debug]: Previous script (lost): [Debug]: Source (NPC): FAKE_NPC (invisible/not on a map) [Debug]: Current script: [Debug]: Source (NPC): FAKE_NPC (invisible/not on a map) Program received signal SIGSEGV, Segmentation fault. 0x00005555556b6bed in pop_stack (st=st@entry=0x7fffeca07b54, start=0, end=0) at script.cpp:3398 3398 struct script_stack* stack = st->stack; (gdb) bt full #0 0x00005555556b6bed in pop_stack (st=st@entry=0x7fffeca07b54, start=0, end=0) at script.cpp:3398 stack = 0x0 data = <optimized out> i = <optimized out> __FUNCTION__ = "pop_stack" #1 0x00005555556b7ab2 in run_func (st=st@entry=0x7fffeca07b54) at script.cpp:4007 data = <optimized out> i = <optimized out> start_sp = <optimized out> end_sp = <optimized out> func = 50 #2 0x00005555556bc800 in run_script_main (st=0x7fffeca07b54) at script.cpp:4270 c = <optimized out> cmdcount = 655339 gotocount = 2047 sd = <optimized out> stack = 0x7fffe78ceb1c #3 0x000055555564b7a8 in npc_scriptcont(map_session_data*, int, bool) () No symbol table info available. #4 0x00005555555d0905 in clif_parse (fd=8) at clif.cpp:20990 cmd = <optimized out> packet_len = 2 sd = <optimized out> pnum = 0 cmd2 = 21845 #5 0x00005555555749d5 in main () No symbol table info available. ``` This only happens today. after i applied this PR https://github.com/rathena/rathena/pull/3831 which im not sure if its connected. Edit --- Yup. reverted back without the PR and everything works fine.
priority
unable to restore stack double continuation rathena hash please specify the rathena on which you encountered this issue how to get your github hash cd your rathena directory git rev parse short head copy the resulting hash client date server mode pre renewal description of issue unable to restore stack double continuation previous script lost source npc fake npc invisible not on a map current script source npc fake npc invisible not on a map program received signal sigsegv segmentation fault in pop stack st st entry start end at script cpp struct script stack stack st stack gdb bt full in pop stack st st entry start end at script cpp stack data i function pop stack in run func st st entry at script cpp data i start sp end sp func in run script main st at script cpp c cmdcount gotocount sd stack in npc scriptcont map session data int bool no symbol table info available in clif parse fd at clif cpp cmd packet len sd pnum in main no symbol table info available this only happens today after i applied this pr which im not sure if its connected edit yup reverted back without the pr and everything works fine
1
763,638
26,766,353,290
IssuesEvent
2023-01-31 10:55:26
minio/mc
https://api.github.com/repos/minio/mc
closed
Display arn:bucketname under mc replicate ls
community priority: medium
## Expected behavior The current display under mc replicate ls displays entire arn value under Destbucket column ## Actual behavior The Destbucket column should display arn:buckname instead of entire arn value. ## Steps to reproduce the behavior Set up replication rule for a bucket on an instance. Run comman mc replicate ls myminio/bucket_name ![image](https://user-images.githubusercontent.com/109562845/194942607-d623429b-fe78-4b2f-93cc-437e58ba9c80.png) ## mc --version RELEASE.2022-10-06T01-20-06Z
1.0
Display arn:bucketname under mc replicate ls - ## Expected behavior The current display under mc replicate ls displays entire arn value under Destbucket column ## Actual behavior The Destbucket column should display arn:buckname instead of entire arn value. ## Steps to reproduce the behavior Set up replication rule for a bucket on an instance. Run comman mc replicate ls myminio/bucket_name ![image](https://user-images.githubusercontent.com/109562845/194942607-d623429b-fe78-4b2f-93cc-437e58ba9c80.png) ## mc --version RELEASE.2022-10-06T01-20-06Z
priority
display arn bucketname under mc replicate ls expected behavior the current display under mc replicate ls displays entire arn value under destbucket column actual behavior the destbucket column should display arn buckname instead of entire arn value steps to reproduce the behavior set up replication rule for a bucket on an instance run comman mc replicate ls myminio bucket name mc version release
1
800,332
28,361,348,999
IssuesEvent
2023-04-12 10:58:39
netdata/netdata
https://api.github.com/repos/netdata/netdata
closed
Install script should support OpenWRT
area/packaging feature request priority/medium
Netdata should install and run on OpenWRT with the install script. It is important for us that cloud works also (meaning cloud dependencies and cloud build should also work) However, right now there are some basic problems - i.e. old version of tar being used by the install script. See https://forum.openwrt.org/t/how-to-claim-agent-on-netdata/68711/5 https://github.com/openwrt/packages/pull/12164#issuecomment-655981628 https://unix.stackexchange.com/questions/249353/invalid-tar-magic-on-openwrt Initially just setting the compression explicitly should help, but let's test this end-to-end and make sure cloud features also build.
1.0
Install script should support OpenWRT - Netdata should install and run on OpenWRT with the install script. It is important for us that cloud works also (meaning cloud dependencies and cloud build should also work) However, right now there are some basic problems - i.e. old version of tar being used by the install script. See https://forum.openwrt.org/t/how-to-claim-agent-on-netdata/68711/5 https://github.com/openwrt/packages/pull/12164#issuecomment-655981628 https://unix.stackexchange.com/questions/249353/invalid-tar-magic-on-openwrt Initially just setting the compression explicitly should help, but let's test this end-to-end and make sure cloud features also build.
priority
install script should support openwrt netdata should install and run on openwrt with the install script it is important for us that cloud works also meaning cloud dependencies and cloud build should also work however right now there are some basic problems i e old version of tar being used by the install script see initially just setting the compression explicitly should help but let s test this end to end and make sure cloud features also build
1
728,527
25,082,980,156
IssuesEvent
2022-11-07 21:01:44
rmlockwood/FLExTrans
https://api.github.com/repos/rmlockwood/FLExTrans
closed
[Live Rule Tester] Refresh rules on advanced transfer unchecks the other tabs that aren't in focus
bug medium priority
All rules in all tabs should remain in the checked state they were in.
1.0
[Live Rule Tester] Refresh rules on advanced transfer unchecks the other tabs that aren't in focus - All rules in all tabs should remain in the checked state they were in.
priority
refresh rules on advanced transfer unchecks the other tabs that aren t in focus all rules in all tabs should remain in the checked state they were in
1
192,781
6,876,626,117
IssuesEvent
2017-11-20 02:15:42
PMEAL/OpenPNM
https://api.github.com/repos/PMEAL/OpenPNM
closed
Void and Solid phase visualization
enhancement Priority - Medium
It would be great if the Visualization module had the ability to produce a 3D voxel based image of the void or solid phase. This could output a tiff stack or a vti/paraview file. Having such an image is handy for visuals, but also doing simulations like LBM, or morphological image opening.
1.0
Void and Solid phase visualization - It would be great if the Visualization module had the ability to produce a 3D voxel based image of the void or solid phase. This could output a tiff stack or a vti/paraview file. Having such an image is handy for visuals, but also doing simulations like LBM, or morphological image opening.
priority
void and solid phase visualization it would be great if the visualization module had the ability to produce a voxel based image of the void or solid phase this could output a tiff stack or a vti paraview file having such an image is handy for visuals but also doing simulations like lbm or morphological image opening
1
20,162
2,622,190,749
IssuesEvent
2015-03-04 00:22:57
byzhang/cudpp
https://api.github.com/repos/byzhang/cudpp
closed
Code review request
auto-migrated Milestone-Release2.0 Priority-Medium Type-Review
``` Purpose of code changes on this branch: Add tridiagonal solvers to cudpp. When reviewing my code changes, please focus on: After the review, I'll merge this branch into: /trunk ``` Original issue reported on code.google.com by `[email protected]` on 13 Feb 2010 at 12:34
1.0
Code review request - ``` Purpose of code changes on this branch: Add tridiagonal solvers to cudpp. When reviewing my code changes, please focus on: After the review, I'll merge this branch into: /trunk ``` Original issue reported on code.google.com by `[email protected]` on 13 Feb 2010 at 12:34
priority
code review request purpose of code changes on this branch add tridiagonal solvers to cudpp when reviewing my code changes please focus on after the review i ll merge this branch into trunk original issue reported on code google com by zhangyao gmail com on feb at
1
119,159
4,762,261,036
IssuesEvent
2016-10-25 10:53:42
worona/worona-cdn
https://api.github.com/repos/worona/worona-cdn
opened
Move package versions to its own file
Priority: Medium Status: Available
So it is independent of the package.json file. This file should be in the `.gitignore`
1.0
Move package versions to its own file - So it is independent of the package.json file. This file should be in the `.gitignore`
priority
move package versions to its own file so it is independent of the package json file this file should be in the gitignore
1
472,279
13,622,070,263
IssuesEvent
2020-09-24 02:32:50
AY2021S1-CS2103T-W17-1/tp
https://api.github.com/repos/AY2021S1-CS2103T-W17-1/tp
opened
As a user, I can remove tags to an existing bug in the tracker when I find them not appropriate anymore
priority.Medium type.Story
... so that my list of bugs is more well-categorized
1.0
As a user, I can remove tags to an existing bug in the tracker when I find them not appropriate anymore - ... so that my list of bugs is more well-categorized
priority
as a user i can remove tags to an existing bug in the tracker when i find them not appropriate anymore so that my list of bugs is more well categorized
1
561,163
16,612,320,863
IssuesEvent
2021-06-02 13:02:20
gnosis/ido-ux
https://api.github.com/repos/gnosis/ido-ux
opened
Unlock token: no warning when unlock finishes with a failure
QA bug medium priority
1. Open an ongoing auction as a new bidder 2. Specify an amount to bid 3. press on the 'Unlock' token button 4. reject a transaction in a connected wallet **AR**: there is no warning 'There was an error when trying to unlock DAI. Please try again.' under amount field **ER**: warning should present when something goes wrong with the transaction mock-up: https://zpl.io/Vk1YkMZ
1.0
Unlock token: no warning when unlock finishes with a failure - 1. Open an ongoing auction as a new bidder 2. Specify an amount to bid 3. press on the 'Unlock' token button 4. reject a transaction in a connected wallet **AR**: there is no warning 'There was an error when trying to unlock DAI. Please try again.' under amount field **ER**: warning should present when something goes wrong with the transaction mock-up: https://zpl.io/Vk1YkMZ
priority
unlock token no warning when unlock finishes with a failure open an ongoing auction as a new bidder specify an amount to bid press on the unlock token button reject a transaction in a connected wallet ar there is no warning there was an error when trying to unlock dai please try again under amount field er warning should present when something goes wrong with the transaction mock up
1
213,518
7,254,277,363
IssuesEvent
2018-02-16 10:19:37
salesagility/SuiteCRM
https://api.github.com/repos/salesagility/SuiteCRM
closed
Add Dashlets modal fails to load
Fix Proposed Medium Priority Resolved: Next Release bug
#### Issue On a new installation, clicking on the Add dashlet button on the home page does not result in the content of the modal loading. #### Expected Behavior Add dashlet fields and options should load #### Actual Behavior Spinner is just spinning. In chrome console, you see `Uncaught SyntaxError: Unexpected token ] at eval (<anonymous>) at sugar_grp1.js?v=gwhOa6CsUGOOQRkDGsGskA:445 at Object.globalEval (sugar_grp1.js?v=gwhOa6CsUGOOQRkDGsGskA:445) at Object.success (VM5499 MySugar.js?v=gwhOa6CsUGOOQRkDGsGskA:73) at Object.handleTransactionResponse (sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55) at sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 (anonymous) @ sugar_grp1.js?v=gwhOa6CsUGOOQRkDGsGskA:445 globalEval @ sugar_grp1.js?v=gwhOa6CsUGOOQRkDGsGskA:445 success @ MySugar.js?v=gwhOa6CsUGOOQRkDGsGskA:73 handleTransactionResponse @ sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 (anonymous) @ sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 setInterval (async) handleReadyState @ sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 asyncRequest @ sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 showDashletsDialog @ MySugar.js?v=gwhOa6CsUGOOQRkDGsGskA:75 (anonymous) @ retrievePage.js:44 dispatch @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 r.handle @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 trigger @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 (anonymous) @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 each @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:2 each @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:2 trigger @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 c.show @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 c.toggle @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 (anonymous) @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 each @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:2 each @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:2 b @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 (anonymous) @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 dispatch @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 r.handle @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3` Upon inspecting the response from the server, I see `<br /> <b>Notice</b>: Undefined index: module in <b>C:\xampp\htdocs\suitecrm\include\MySugar\DashletsDialog\DashletsDialog.php</b> on line <b>172</b><br /> <br /> <b>Notice</b>: Undefined index: module in <b>C:\xampp\htdocs\suitecrm\include\MySugar\DashletsDialog\DashletsDialog.php</b> on line <b>172</b><br /> <br /> <b>Notice</b>: Undefined index: module in <b>C:\xampp\htdocs\suitecrm\include\MySugar\DashletsDialog\DashletsDialog.php</b> on line <b>172</b><br /> <br /> <b>Notice</b>: Undefined index: module in <b>C:\xampp\htdocs\suitecrm\include\MySugar\DashletsDialog\DashletsDialog.php</b> on line <b>172</b><br /> response = {"html":"<div align=\"right\" id=\"dashletSearch\">\n\t<table>\n\t\t<tr>\n\t\t\t<td>Find SuiteCRM Dashlet: <input id=\"search_string\" type=\"text\" length=\"15\" onKeyPress=\"javascript:if(event.keyCode==13)SUGAR.mySugar.searchDashlets(this.value,document.getElementById('search_category').value);\" title=\"Find SuiteCRM Dashlet\"\/>\n\t\t\t<input type=\"button\" class=\"button\" value=\"Search\" onClick=\"javascript:SUGAR.mySugar.searchDashlets(document.getElementById('search_string').value,document.getElementById('search_category').value);\" \/>\n\t\t\t<input type=\"button\" class=\"button\" value=\"Clear\" onClick=\"javascript:SUGAR.mySugar.clearSearch();\" \/>\t\t\t\n\t\t\t\t\t\t<input type=\"hidden\" id=\"search_category\" value=\"module\" ... Feed<\/td>\n\t\t\t<td>\n\t\t\t\t<input type=\"text\" id=\"rss_address\" value=\"http:\/\/\" style=\"width: 400px\" title=\"News Feed\" \/>\n\t\t\t\t<input type=\"button\" name=\"create\" value=\"Add\" onclick=\"return SUGAR.mySugar.addDashlet('RSSDashlet', 'web', document.getElementById('rss_address').value);\" \/>\n\t\t\t<\/td>\n\t\t<\/tr>\n <\/table>\n\t<\/div>\n<\/div>\n\n<div id=\"searchResults\" style=\"display:none;height:400px;\">\n<\/div>","script":"if (YAHOO.env.ua.ie > 5 && YAHOO.env.ua.ie < 7) {\n document.getElementById('dashletsList').style.width = '430px';\n document.getElementById('dashletsList').style.overflow = 'hidden';\n}"}` #### Possible Fix check that $dashletsFiles[$className] has a modules key...not all dashlet "ibjects" have a key. See extract below... ` Array ( [FavoritesDashlet] => Array ( [file] => modules/Favorites/Dashlets/Favorites/FavoritesDashlet.php [class] => FavoritesDashlet ) [ChartsDashlet] => Array ( [file] => modules/Home/Dashlets/ChartsDashlet/ChartsDashlet.php [class] => ChartsDashlet [meta] => modules/Home/Dashlets/ChartsDashlet/ChartsDashlet.meta.php ) ... [AOK_KnowledgeBaseDashlet] => Array ( [file] => modules/AOK_KnowledgeBase/Dashlets/AOK_KnowledgeBaseDashlet/AOK_KnowledgeBaseDashlet.php [class] => AOK_KnowledgeBaseDashlet [meta] => modules/AOK_KnowledgeBase/Dashlets/AOK_KnowledgeBaseDashlet/AOK_KnowledgeBaseDashlet.meta.php [module] => AOK_KnowledgeBase ) [AOK_Knowledge_Base_CategoriesDashlet] => Array ( [file] => modules/AOK_Knowledge_Base_Categories/Dashlets/AOK_Knowledge_Base_CategoriesDashlet/AOK_Knowledge_Base_CategoriesDashlet.php [class] => AOK_Knowledge_Base_CategoriesDashlet [meta] => modules/AOK_Knowledge_Base_Categories/Dashlets/AOK_Knowledge_Base_CategoriesDashlet/AOK_Knowledge_Base_CategoriesDashlet.meta.php [module] => AOK_Knowledge_Base_Categories ) ... ` #### Steps to Reproduce Erm...just setup a new suitecrm install and navigate to the home page. Then try to add a dashlet. #### Context Well, I cannot create a new dashlet...this is my first time actually really trying to learn suitecrm. #### Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * SuiteCRM Version used: 7.9.12 * Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): Chrome * Environment name and version (e.g. MySQL, PHP 7): PHP7.1.1 * Operating System and version (e.g Ubuntu 16.04): Windows 10
1.0
Add Dashlets modal fails to load - #### Issue On a new installation, clicking on the Add dashlet button on the home page does not result in the content of the modal loading. #### Expected Behavior Add dashlet fields and options should load #### Actual Behavior Spinner is just spinning. In chrome console, you see `Uncaught SyntaxError: Unexpected token ] at eval (<anonymous>) at sugar_grp1.js?v=gwhOa6CsUGOOQRkDGsGskA:445 at Object.globalEval (sugar_grp1.js?v=gwhOa6CsUGOOQRkDGsGskA:445) at Object.success (VM5499 MySugar.js?v=gwhOa6CsUGOOQRkDGsGskA:73) at Object.handleTransactionResponse (sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55) at sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 (anonymous) @ sugar_grp1.js?v=gwhOa6CsUGOOQRkDGsGskA:445 globalEval @ sugar_grp1.js?v=gwhOa6CsUGOOQRkDGsGskA:445 success @ MySugar.js?v=gwhOa6CsUGOOQRkDGsGskA:73 handleTransactionResponse @ sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 (anonymous) @ sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 setInterval (async) handleReadyState @ sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 asyncRequest @ sugar_grp1_yui.js?v=gwhOa6CsUGOOQRkDGsGskA:55 showDashletsDialog @ MySugar.js?v=gwhOa6CsUGOOQRkDGsGskA:75 (anonymous) @ retrievePage.js:44 dispatch @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 r.handle @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 trigger @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 (anonymous) @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 each @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:2 each @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:2 trigger @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 c.show @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 c.toggle @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 (anonymous) @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 each @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:2 each @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:2 b @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 (anonymous) @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:12 dispatch @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3 r.handle @ sugar_grp1_jquery.js?v=gwhOa6CsUGOOQRkDGsGskA:3` Upon inspecting the response from the server, I see `<br /> <b>Notice</b>: Undefined index: module in <b>C:\xampp\htdocs\suitecrm\include\MySugar\DashletsDialog\DashletsDialog.php</b> on line <b>172</b><br /> <br /> <b>Notice</b>: Undefined index: module in <b>C:\xampp\htdocs\suitecrm\include\MySugar\DashletsDialog\DashletsDialog.php</b> on line <b>172</b><br /> <br /> <b>Notice</b>: Undefined index: module in <b>C:\xampp\htdocs\suitecrm\include\MySugar\DashletsDialog\DashletsDialog.php</b> on line <b>172</b><br /> <br /> <b>Notice</b>: Undefined index: module in <b>C:\xampp\htdocs\suitecrm\include\MySugar\DashletsDialog\DashletsDialog.php</b> on line <b>172</b><br /> response = {"html":"<div align=\"right\" id=\"dashletSearch\">\n\t<table>\n\t\t<tr>\n\t\t\t<td>Find SuiteCRM Dashlet: <input id=\"search_string\" type=\"text\" length=\"15\" onKeyPress=\"javascript:if(event.keyCode==13)SUGAR.mySugar.searchDashlets(this.value,document.getElementById('search_category').value);\" title=\"Find SuiteCRM Dashlet\"\/>\n\t\t\t<input type=\"button\" class=\"button\" value=\"Search\" onClick=\"javascript:SUGAR.mySugar.searchDashlets(document.getElementById('search_string').value,document.getElementById('search_category').value);\" \/>\n\t\t\t<input type=\"button\" class=\"button\" value=\"Clear\" onClick=\"javascript:SUGAR.mySugar.clearSearch();\" \/>\t\t\t\n\t\t\t\t\t\t<input type=\"hidden\" id=\"search_category\" value=\"module\" ... Feed<\/td>\n\t\t\t<td>\n\t\t\t\t<input type=\"text\" id=\"rss_address\" value=\"http:\/\/\" style=\"width: 400px\" title=\"News Feed\" \/>\n\t\t\t\t<input type=\"button\" name=\"create\" value=\"Add\" onclick=\"return SUGAR.mySugar.addDashlet('RSSDashlet', 'web', document.getElementById('rss_address').value);\" \/>\n\t\t\t<\/td>\n\t\t<\/tr>\n <\/table>\n\t<\/div>\n<\/div>\n\n<div id=\"searchResults\" style=\"display:none;height:400px;\">\n<\/div>","script":"if (YAHOO.env.ua.ie > 5 && YAHOO.env.ua.ie < 7) {\n document.getElementById('dashletsList').style.width = '430px';\n document.getElementById('dashletsList').style.overflow = 'hidden';\n}"}` #### Possible Fix check that $dashletsFiles[$className] has a modules key...not all dashlet "ibjects" have a key. See extract below... ` Array ( [FavoritesDashlet] => Array ( [file] => modules/Favorites/Dashlets/Favorites/FavoritesDashlet.php [class] => FavoritesDashlet ) [ChartsDashlet] => Array ( [file] => modules/Home/Dashlets/ChartsDashlet/ChartsDashlet.php [class] => ChartsDashlet [meta] => modules/Home/Dashlets/ChartsDashlet/ChartsDashlet.meta.php ) ... [AOK_KnowledgeBaseDashlet] => Array ( [file] => modules/AOK_KnowledgeBase/Dashlets/AOK_KnowledgeBaseDashlet/AOK_KnowledgeBaseDashlet.php [class] => AOK_KnowledgeBaseDashlet [meta] => modules/AOK_KnowledgeBase/Dashlets/AOK_KnowledgeBaseDashlet/AOK_KnowledgeBaseDashlet.meta.php [module] => AOK_KnowledgeBase ) [AOK_Knowledge_Base_CategoriesDashlet] => Array ( [file] => modules/AOK_Knowledge_Base_Categories/Dashlets/AOK_Knowledge_Base_CategoriesDashlet/AOK_Knowledge_Base_CategoriesDashlet.php [class] => AOK_Knowledge_Base_CategoriesDashlet [meta] => modules/AOK_Knowledge_Base_Categories/Dashlets/AOK_Knowledge_Base_CategoriesDashlet/AOK_Knowledge_Base_CategoriesDashlet.meta.php [module] => AOK_Knowledge_Base_Categories ) ... ` #### Steps to Reproduce Erm...just setup a new suitecrm install and navigate to the home page. Then try to add a dashlet. #### Context Well, I cannot create a new dashlet...this is my first time actually really trying to learn suitecrm. #### Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * SuiteCRM Version used: 7.9.12 * Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): Chrome * Environment name and version (e.g. MySQL, PHP 7): PHP7.1.1 * Operating System and version (e.g Ubuntu 16.04): Windows 10
priority
add dashlets modal fails to load issue on a new installation clicking on the add dashlet button on the home page does not result in the content of the modal loading expected behavior add dashlet fields and options should load actual behavior spinner is just spinning in chrome console you see uncaught syntaxerror unexpected token at eval at sugar js v at object globaleval sugar js v at object success mysugar js v at object handletransactionresponse sugar yui js v at sugar yui js v anonymous sugar js v globaleval sugar js v success mysugar js v handletransactionresponse sugar yui js v anonymous sugar yui js v setinterval async handlereadystate sugar yui js v asyncrequest sugar yui js v showdashletsdialog mysugar js v anonymous retrievepage js dispatch sugar jquery js v r handle sugar jquery js v trigger sugar jquery js v anonymous sugar jquery js v each sugar jquery js v each sugar jquery js v trigger sugar jquery js v c show sugar jquery js v c toggle sugar jquery js v anonymous sugar jquery js v each sugar jquery js v each sugar jquery js v b sugar jquery js v anonymous sugar jquery js v dispatch sugar jquery js v r handle sugar jquery js v upon inspecting the response from the server i see notice undefined index module in c xampp htdocs suitecrm include mysugar dashletsdialog dashletsdialog php on line notice undefined index module in c xampp htdocs suitecrm include mysugar dashletsdialog dashletsdialog php on line notice undefined index module in c xampp htdocs suitecrm include mysugar dashletsdialog dashletsdialog php on line notice undefined index module in c xampp htdocs suitecrm include mysugar dashletsdialog dashletsdialog php on line response html n t n t t n t t t find suitecrm dashlet n t t t n t t t t t t n t t t t t t input type hidden id search category value module feed n t t t n t t t t n t t t t n t t t n t t n n t n n n n script if yahoo env ua ie yahoo env ua ie n document getelementbyid dashletslist style width n document getelementbyid dashletslist style overflow hidden n possible fix check that dashletsfiles has a modules key not all dashlet ibjects have a key see extract below array array modules favorites dashlets favorites favoritesdashlet php favoritesdashlet array modules home dashlets chartsdashlet chartsdashlet php chartsdashlet modules home dashlets chartsdashlet chartsdashlet meta php array modules aok knowledgebase dashlets aok knowledgebasedashlet aok knowledgebasedashlet php aok knowledgebasedashlet modules aok knowledgebase dashlets aok knowledgebasedashlet aok knowledgebasedashlet meta php aok knowledgebase array modules aok knowledge base categories dashlets aok knowledge base categoriesdashlet aok knowledge base categoriesdashlet php aok knowledge base categoriesdashlet modules aok knowledge base categories dashlets aok knowledge base categoriesdashlet aok knowledge base categoriesdashlet meta php aok knowledge base categories steps to reproduce erm just setup a new suitecrm install and navigate to the home page then try to add a dashlet context well i cannot create a new dashlet this is my first time actually really trying to learn suitecrm your environment suitecrm version used browser name and version e g chrome version bit chrome environment name and version e g mysql php operating system and version e g ubuntu windows
1
209,172
7,166,000,970
IssuesEvent
2018-01-29 15:59:39
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
CDC_ACM is limited to 4 bytes at a time for Arduino 101
area: USB bug priority: medium
**_Reported by Brian Jones:_** Due to GH-3515, CDC_ACM on the Arduino 101 is limited to sending 4 bytes at a time. This should be fixed in the long term as its inefficient to send such a small amount multiple times when larger buffers are being sent. (Imported from Jira ZEP-2401)
1.0
CDC_ACM is limited to 4 bytes at a time for Arduino 101 - **_Reported by Brian Jones:_** Due to GH-3515, CDC_ACM on the Arduino 101 is limited to sending 4 bytes at a time. This should be fixed in the long term as its inefficient to send such a small amount multiple times when larger buffers are being sent. (Imported from Jira ZEP-2401)
priority
cdc acm is limited to bytes at a time for arduino reported by brian jones due to gh cdc acm on the arduino is limited to sending bytes at a time this should be fixed in the long term as its inefficient to send such a small amount multiple times when larger buffers are being sent imported from jira zep
1
379,032
11,212,288,442
IssuesEvent
2020-01-06 17:13:52
Qiskit/qiskit-terra
https://api.github.com/repos/Qiskit/qiskit-terra
closed
qubit_lo_range and meas_lo_range are still in GHz in the configuration
bug priority: medium status: pending PR
<!-- ⚠️ If you do not respect this template, your issue will be closed --> <!-- ⚠️ Make sure to browse the opened and closed issues --> ### Information - **Qiskit Terra version**: - **Python version**: - **Operating system**: ### What is the current behavior? The qubit and meas lo ranges are in Hz rather than GHz ### Steps to reproduce the problem ### What is the expected behavior? ### Suggested solutions
1.0
qubit_lo_range and meas_lo_range are still in GHz in the configuration - <!-- ⚠️ If you do not respect this template, your issue will be closed --> <!-- ⚠️ Make sure to browse the opened and closed issues --> ### Information - **Qiskit Terra version**: - **Python version**: - **Operating system**: ### What is the current behavior? The qubit and meas lo ranges are in Hz rather than GHz ### Steps to reproduce the problem ### What is the expected behavior? ### Suggested solutions
priority
qubit lo range and meas lo range are still in ghz in the configuration information qiskit terra version python version operating system what is the current behavior the qubit and meas lo ranges are in hz rather than ghz steps to reproduce the problem what is the expected behavior suggested solutions
1
780,142
27,381,185,599
IssuesEvent
2023-02-28 10:08:53
Saga-sanga/mizo-apologia
https://api.github.com/repos/Saga-sanga/mizo-apologia
closed
Content sub heading size too large on small devices
bug medium_priority
Certain content headings are too large on smaller devices. Make the size adaptive to the view width and make it more responsive.
1.0
Content sub heading size too large on small devices - Certain content headings are too large on smaller devices. Make the size adaptive to the view width and make it more responsive.
priority
content sub heading size too large on small devices certain content headings are too large on smaller devices make the size adaptive to the view width and make it more responsive
1
410,851
12,002,809,334
IssuesEvent
2020-04-09 08:28:16
OrangeJuice7/SDL-OpenGL-Game-Framework
https://api.github.com/repos/OrangeJuice7/SDL-OpenGL-Game-Framework
closed
Fix inter-entity collision resolution
area.Model priority.medium work.low
Current collision resolution pushes entities apart with a force proportionate to the depth of penetration between the two entities. This penetration may be large if at least one of the entities travels a large distance in one frame (either due to high velocity or low frame rate), resulting in inconsistent physics. Force should be based on a transfer of momentum/velocity instead. Ideally, the point of collision should be determined as well, but this might create complications in multi-entity collisions.
1.0
Fix inter-entity collision resolution - Current collision resolution pushes entities apart with a force proportionate to the depth of penetration between the two entities. This penetration may be large if at least one of the entities travels a large distance in one frame (either due to high velocity or low frame rate), resulting in inconsistent physics. Force should be based on a transfer of momentum/velocity instead. Ideally, the point of collision should be determined as well, but this might create complications in multi-entity collisions.
priority
fix inter entity collision resolution current collision resolution pushes entities apart with a force proportionate to the depth of penetration between the two entities this penetration may be large if at least one of the entities travels a large distance in one frame either due to high velocity or low frame rate resulting in inconsistent physics force should be based on a transfer of momentum velocity instead ideally the point of collision should be determined as well but this might create complications in multi entity collisions
1
603,746
18,670,756,544
IssuesEvent
2021-10-30 17:04:37
bounswe/2021SpringGroup6
https://api.github.com/repos/bounswe/2021SpringGroup6
closed
Write the Validation Check For Emails
Type: Feature Status: Complete Priority: Medium Back-End: Validation
Writing the validation check code with the selected Validation Library for emails.
1.0
Write the Validation Check For Emails - Writing the validation check code with the selected Validation Library for emails.
priority
write the validation check for emails writing the validation check code with the selected validation library for emails
1
799,322
28,304,431,719
IssuesEvent
2023-04-10 09:32:40
AY2223S2-CS2103T-W15-2/tp
https://api.github.com/repos/AY2223S2-CS2103T-W15-2/tp
closed
As a home bakery owner, I can see the history of all my past orders
type.Story priority.Medium user.Orders
... so that I can track my business growth over time
1.0
As a home bakery owner, I can see the history of all my past orders - ... so that I can track my business growth over time
priority
as a home bakery owner i can see the history of all my past orders so that i can track my business growth over time
1
411,045
12,013,591,707
IssuesEvent
2020-04-10 09:13:59
Skatta/Aapoon-Support-Feedback-Tracker
https://api.github.com/repos/Skatta/Aapoon-Support-Feedback-Tracker
opened
Previously logged in user notifications are receiving to newly logged in user. When 2 users are using same device.
Android Messaging App Priority Medium bug
**Describe the bug** User 1 has logged in the app and used the app after some time user 1 logged out from the app, User 2 try to do signup in the same device, at that time user 1 received some notifications that notifications are receiving to user 2 when user 2 doing signup. **To Reproduce** Steps to reproduce the behavior: 1. In 1 device login to an account. 2. use the app for 2 to 3 min. 3. Logout from the App. 4. Enter a new phone number on the registration page. 5. Register with the new number, 6. Complete phone verification. 7. Stay at phone verification. 8. Take another device. 9. Log in to another account i.e., 3rd one 10. Send messages from chit chat to user 1. **Expected behavior** Respective Notifications should receive to the respective user. **Screenshots** Please check the video reference. https://drive.google.com/file/d/1N6155QQ90OQkYTD1x6VlUlauni3yT3gy/view?usp=sharing **Smartphone (Android):** - Device: [Mi A3] - Version [9]
1.0
Previously logged in user notifications are receiving to newly logged in user. When 2 users are using same device. - **Describe the bug** User 1 has logged in the app and used the app after some time user 1 logged out from the app, User 2 try to do signup in the same device, at that time user 1 received some notifications that notifications are receiving to user 2 when user 2 doing signup. **To Reproduce** Steps to reproduce the behavior: 1. In 1 device login to an account. 2. use the app for 2 to 3 min. 3. Logout from the App. 4. Enter a new phone number on the registration page. 5. Register with the new number, 6. Complete phone verification. 7. Stay at phone verification. 8. Take another device. 9. Log in to another account i.e., 3rd one 10. Send messages from chit chat to user 1. **Expected behavior** Respective Notifications should receive to the respective user. **Screenshots** Please check the video reference. https://drive.google.com/file/d/1N6155QQ90OQkYTD1x6VlUlauni3yT3gy/view?usp=sharing **Smartphone (Android):** - Device: [Mi A3] - Version [9]
priority
previously logged in user notifications are receiving to newly logged in user when users are using same device describe the bug user has logged in the app and used the app after some time user logged out from the app user try to do signup in the same device at that time user received some notifications that notifications are receiving to user when user doing signup to reproduce steps to reproduce the behavior in device login to an account use the app for to min logout from the app enter a new phone number on the registration page register with the new number complete phone verification stay at phone verification take another device log in to another account i e one send messages from chit chat to user expected behavior respective notifications should receive to the respective user screenshots please check the video reference smartphone android device version
1
681,493
23,312,904,401
IssuesEvent
2022-08-08 09:51:30
PenPow/Sentry
https://api.github.com/repos/PenPow/Sentry
closed
Refactor Commands to use DM Permission
refactor priority:medium semver:minor commands
# Overview Discord allows us to set the DM permission on deployment, so we can use this to limit moderation commands to guilds!
1.0
Refactor Commands to use DM Permission - # Overview Discord allows us to set the DM permission on deployment, so we can use this to limit moderation commands to guilds!
priority
refactor commands to use dm permission overview discord allows us to set the dm permission on deployment so we can use this to limit moderation commands to guilds
1
590,239
17,774,471,909
IssuesEvent
2021-08-30 17:21:33
Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2
https://api.github.com/repos/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2
opened
Goblin Burials
new feature :star: suggestion :question: lore :books: priority medium :grey_exclamation:
<!-- **DO NOT REMOVE PRE-EXISTING LINES** ------------------------------------------------------------------------------------------------------------ --> **Describe your suggestion in full detail below:** Goblins may have special burials (working like sky burials) where they spend a big part of their money to get piety and dynasty prestige. https://wowpedia.fandom.com/wiki/Goblin#Beliefs
1.0
Goblin Burials - <!-- **DO NOT REMOVE PRE-EXISTING LINES** ------------------------------------------------------------------------------------------------------------ --> **Describe your suggestion in full detail below:** Goblins may have special burials (working like sky burials) where they spend a big part of their money to get piety and dynasty prestige. https://wowpedia.fandom.com/wiki/Goblin#Beliefs
priority
goblin burials do not remove pre existing lines describe your suggestion in full detail below goblins may have special burials working like sky burials where they spend a big part of their money to get piety and dynasty prestige
1
202,041
7,043,482,274
IssuesEvent
2017-12-31 07:00:47
ChrisCScott/forecaster
https://api.github.com/repos/ChrisCScott/forecaster
closed
Implement spousal RRSPs
canada medium priority RRSP
It may be possible to do this without subclassing `RRSP`, or via a very limited subclass (simply by setting `contributor = owner.spouse`). This hasn't been tested, so the first order of business is to implement some tests and see how the existing code works with the logic in `TransactionStrategy` and other classes.
1.0
Implement spousal RRSPs - It may be possible to do this without subclassing `RRSP`, or via a very limited subclass (simply by setting `contributor = owner.spouse`). This hasn't been tested, so the first order of business is to implement some tests and see how the existing code works with the logic in `TransactionStrategy` and other classes.
priority
implement spousal rrsps it may be possible to do this without subclassing rrsp or via a very limited subclass simply by setting contributor owner spouse this hasn t been tested so the first order of business is to implement some tests and see how the existing code works with the logic in transactionstrategy and other classes
1
146,306
5,615,156,045
IssuesEvent
2017-04-03 14:03:32
laradock/laradock
https://api.github.com/repos/laradock/laradock
opened
CI integration to auto-generate the Hugo docs
Priority: Medium Type: Enhancement
Noticed the contributions to the docs became so slow, after moving to hugo... Would cool if anyone can find a good CI service to build the site automatically after each commit. This way users will only update the text in the markdown files without worrying about regenerating the site.
1.0
CI integration to auto-generate the Hugo docs - Noticed the contributions to the docs became so slow, after moving to hugo... Would cool if anyone can find a good CI service to build the site automatically after each commit. This way users will only update the text in the markdown files without worrying about regenerating the site.
priority
ci integration to auto generate the hugo docs noticed the contributions to the docs became so slow after moving to hugo would cool if anyone can find a good ci service to build the site automatically after each commit this way users will only update the text in the markdown files without worrying about regenerating the site
1
300,013
9,206,060,451
IssuesEvent
2019-03-08 12:35:23
pmem/issues
https://api.github.com/repos/pmem/issues
closed
Remote files removed from replica although pool is opened
Exposure: Medium OS: Linux Priority: 3 medium State: To be verified Type: Bug
$cat pool.set: ``` PMEMPOOLSET 15M /dev/shm/pool REPLICA 192.168.0.182 rep.set ``` $cat rep.set: ``` PMEMPOOLSET 10M /dev/shm/rep.1 10M /dev/shm/rep.2 ``` App: ``` int main() { PMEMobjpool *pop = pmemobj_create("pool.set", NULL, 0, 0666); assert(pop); int ret = pmempool_rm("pool.set", 0); printf("ret: %i\nerrno: %i", ret, errno); pmemobj_close(pop); return 0; } ``` All local and remote pool files were created properly. When pmempool_rm was called: ret = -1 and errno = 11, but remote pool files were removed from remote host. Dbg.logs: ``` (...) <libpmempool>: <4> [set.c:1686 util_poolset_parse] set file format correct (pool.set) <libpmempool>: <3> [set.c:1186 util_poolset_check_options] set 0x69ae690 <libpmempool>: <3> [set.c:1202 util_poolset_set_size] set 0x69ae690 <libpmempool>: <3> [set.c:1238 util_poolset_set_size] pool size set to 15728640 <libpmempool>: <3> [file.c:590 util_unlink_flock] path "/dev/shm/pool" <libpmempool>: <3> [file.c:503 util_file_open] path "/dev/shm/pool" size (nil) minsize 0 flags 0 <libpmempool>: <1> [file.c:518 util_file_open] flock "/dev/shm/pool": Resource temporarily unavailable <libpmempool>: <2> [file.c:601 util_unlink_flock] failed to open file "/dev/shm/pool" <libpmempool>: <1> [rm.c:94 rm_local] /dev/shm/pool: removing file failed <librpmem>: <3> [rpmem.c:751 rpmem_remove] target 192.168.0.182, pool_set rep.set, flags 0 <librpmem>: <4> [rpmem_cmd.c:147 rpmem_cmd_log] executing command 'ssh -T -oBatchMode=yes 192.168.0.182 rpmemd --remove rep.set' <libpmempool>: <3> [rm.c:129 rm_remote] 192.168.0.182/rep.set: removed (...) ``` Found on 1.4-rc3-14-g53bdc41
1.0
Remote files removed from replica although pool is opened - $cat pool.set: ``` PMEMPOOLSET 15M /dev/shm/pool REPLICA 192.168.0.182 rep.set ``` $cat rep.set: ``` PMEMPOOLSET 10M /dev/shm/rep.1 10M /dev/shm/rep.2 ``` App: ``` int main() { PMEMobjpool *pop = pmemobj_create("pool.set", NULL, 0, 0666); assert(pop); int ret = pmempool_rm("pool.set", 0); printf("ret: %i\nerrno: %i", ret, errno); pmemobj_close(pop); return 0; } ``` All local and remote pool files were created properly. When pmempool_rm was called: ret = -1 and errno = 11, but remote pool files were removed from remote host. Dbg.logs: ``` (...) <libpmempool>: <4> [set.c:1686 util_poolset_parse] set file format correct (pool.set) <libpmempool>: <3> [set.c:1186 util_poolset_check_options] set 0x69ae690 <libpmempool>: <3> [set.c:1202 util_poolset_set_size] set 0x69ae690 <libpmempool>: <3> [set.c:1238 util_poolset_set_size] pool size set to 15728640 <libpmempool>: <3> [file.c:590 util_unlink_flock] path "/dev/shm/pool" <libpmempool>: <3> [file.c:503 util_file_open] path "/dev/shm/pool" size (nil) minsize 0 flags 0 <libpmempool>: <1> [file.c:518 util_file_open] flock "/dev/shm/pool": Resource temporarily unavailable <libpmempool>: <2> [file.c:601 util_unlink_flock] failed to open file "/dev/shm/pool" <libpmempool>: <1> [rm.c:94 rm_local] /dev/shm/pool: removing file failed <librpmem>: <3> [rpmem.c:751 rpmem_remove] target 192.168.0.182, pool_set rep.set, flags 0 <librpmem>: <4> [rpmem_cmd.c:147 rpmem_cmd_log] executing command 'ssh -T -oBatchMode=yes 192.168.0.182 rpmemd --remove rep.set' <libpmempool>: <3> [rm.c:129 rm_remote] 192.168.0.182/rep.set: removed (...) ``` Found on 1.4-rc3-14-g53bdc41
priority
remote files removed from replica although pool is opened cat pool set pmempoolset dev shm pool replica rep set cat rep set pmempoolset dev shm rep dev shm rep app int main pmemobjpool pop pmemobj create pool set null assert pop int ret pmempool rm pool set printf ret i nerrno i ret errno pmemobj close pop return all local and remote pool files were created properly when pmempool rm was called ret and errno but remote pool files were removed from remote host dbg logs set file format correct pool set set set pool size set to path dev shm pool path dev shm pool size nil minsize flags flock dev shm pool resource temporarily unavailable failed to open file dev shm pool dev shm pool removing file failed target pool set rep set flags executing command ssh t obatchmode yes rpmemd remove rep set rep set removed found on
1
25,892
2,684,028,934
IssuesEvent
2015-03-28 15:50:06
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
closed
PicView2 does not properly display BMP files (adds some kind of transparency to them)
1 star bug imported invalid Priority-Medium
_From [[email protected]](https://code.google.com/u/107935209617580335268/) on November 10, 2011 05:53:08_ It seems that PicView2 has some issues displaying BMP files. I will attach both sample bmp and screenshot. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=453_
1.0
PicView2 does not properly display BMP files (adds some kind of transparency to them) - _From [[email protected]](https://code.google.com/u/107935209617580335268/) on November 10, 2011 05:53:08_ It seems that PicView2 has some issues displaying BMP files. I will attach both sample bmp and screenshot. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=453_
priority
does not properly display bmp files adds some kind of transparency to them from on november it seems that has some issues displaying bmp files i will attach both sample bmp and screenshot original issue
1
470,512
13,539,355,685
IssuesEvent
2020-09-16 13:22:23
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
closed
BP REST Media Endpoint does not support additional REST fields
bug priority: medium
**Describe the bug** Fields added to the 'bp_media' object type via `register_rest_field()` are not present in REST response. The `prepare_item_for_response` function does not call `add_additional_fields_to_object()` **To Reproduce** Steps to reproduce the behavior: 1. Register a REST field for bp_media 2. Send request to endpoint 3. View response **Expected behavior** The registered REST field to be present in the REST response.
1.0
BP REST Media Endpoint does not support additional REST fields - **Describe the bug** Fields added to the 'bp_media' object type via `register_rest_field()` are not present in REST response. The `prepare_item_for_response` function does not call `add_additional_fields_to_object()` **To Reproduce** Steps to reproduce the behavior: 1. Register a REST field for bp_media 2. Send request to endpoint 3. View response **Expected behavior** The registered REST field to be present in the REST response.
priority
bp rest media endpoint does not support additional rest fields describe the bug fields added to the bp media object type via register rest field are not present in rest response the prepare item for response function does not call add additional fields to object to reproduce steps to reproduce the behavior register a rest field for bp media send request to endpoint view response expected behavior the registered rest field to be present in the rest response
1