Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
844
labels
stringlengths
4
721
body
stringlengths
1
261k
index
stringclasses
12 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
248k
binary_label
int64
0
1
500,191
14,492,395,392
IssuesEvent
2020-12-11 06:53:21
telerik/kendo-ui-core
https://api.github.com/repos/telerik/kendo-ui-core
opened
The toolbar of the Inline Editor hides on a click over it or a click on a disabled button
Bug C: Editor Kendo2 Priority 5 SEV: Low
### Bug report The toolbar of the inline Editor hides when the user click on a disabled button inside it or on the toolbar itself * This is a regression introduced with R3 2020 SP1 - 2020.3.1021 ### Reproduction of the problem 1. Open this Dojo 1. Open the toolbar and click on the disabled "Unlink" button or on the right part of the toolbar where there are no buttons ### Current behavior The toolbar hides after the user click on it. ![090873e5-5386-409c-a2fa-4fd501bf53e7_editor-toolbar-issue](https://user-images.githubusercontent.com/41293735/101872490-00380c00-3b8e-11eb-9896-b3406b5ba8df.gif) ### Expected/desired behavior The toolbar should stay visible after the user click it ### Environment * **Kendo UI version:** 2020.3.1118 * **jQuery version:** x.y * **Browser:** [all]
1.0
The toolbar of the Inline Editor hides on a click over it or a click on a disabled button - ### Bug report The toolbar of the inline Editor hides when the user click on a disabled button inside it or on the toolbar itself * This is a regression introduced with R3 2020 SP1 - 2020.3.1021 ### Reproduction of the problem 1. Open this Dojo 1. Open the toolbar and click on the disabled "Unlink" button or on the right part of the toolbar where there are no buttons ### Current behavior The toolbar hides after the user click on it. ![090873e5-5386-409c-a2fa-4fd501bf53e7_editor-toolbar-issue](https://user-images.githubusercontent.com/41293735/101872490-00380c00-3b8e-11eb-9896-b3406b5ba8df.gif) ### Expected/desired behavior The toolbar should stay visible after the user click it ### Environment * **Kendo UI version:** 2020.3.1118 * **jQuery version:** x.y * **Browser:** [all]
priority
the toolbar of the inline editor hides on a click over it or a click on a disabled button bug report the toolbar of the inline editor hides when the user click on a disabled button inside it or on the toolbar itself this is a regression introduced with reproduction of the problem open this dojo open the toolbar and click on the disabled unlink button or on the right part of the toolbar where there are no buttons current behavior the toolbar hides after the user click on it expected desired behavior the toolbar should stay visible after the user click it environment kendo ui version jquery version x y browser
1
549,076
16,085,128,886
IssuesEvent
2021-04-26 10:16:52
hazelcast/imdg-docs
https://api.github.com/repos/hazelcast/imdg-docs
closed
DOCS: IMDG Reference Manual: Minor improvement propositions for intro page - Partners chapter
content enhancement priority: low
https://github.com/hazelcast/imdg-docs/blob/master/docs/modules/ROOT/pages/index.adoc 1. Hazelcast partners with leading -> verb “partners” clashes with noun “partners”. I would recommend to change to, say, “Hazelcast partners (noun) offer …” or “Hazelcast collaborates with..” 2. See the Partners page for the full list of and information on our partners. - > We are talking about list of existing partners, but link leads to partners page, not to partners list. I would suggest to change the link to https://hazelcast.com/partners/find-a-partner/ for better user experience 3. See the Partners page for the full list of and information on our partners. - > I don’t feel fully comfortable with this sentence, it seems, it would be better to remove it at all and add link to “Hazelcast partners” in first sentence for better user experience, or it could be simplified like “See the full list of our partners _link_”
1.0
DOCS: IMDG Reference Manual: Minor improvement propositions for intro page - Partners chapter - https://github.com/hazelcast/imdg-docs/blob/master/docs/modules/ROOT/pages/index.adoc 1. Hazelcast partners with leading -> verb “partners” clashes with noun “partners”. I would recommend to change to, say, “Hazelcast partners (noun) offer …” or “Hazelcast collaborates with..” 2. See the Partners page for the full list of and information on our partners. - > We are talking about list of existing partners, but link leads to partners page, not to partners list. I would suggest to change the link to https://hazelcast.com/partners/find-a-partner/ for better user experience 3. See the Partners page for the full list of and information on our partners. - > I don’t feel fully comfortable with this sentence, it seems, it would be better to remove it at all and add link to “Hazelcast partners” in first sentence for better user experience, or it could be simplified like “See the full list of our partners _link_”
priority
docs imdg reference manual minor improvement propositions for intro page partners chapter hazelcast partners with leading verb “partners” clashes with noun “partners” i would recommend to change to say “hazelcast partners noun offer …” or “hazelcast collaborates with ” see the partners page for the full list of and information on our partners we are talking about list of existing partners but link leads to partners page not to partners list i would suggest to change the link to for better user experience see the partners page for the full list of and information on our partners i don’t feel fully comfortable with this sentence it seems it would be better to remove it at all and add link to “hazelcast partners” in first sentence for better user experience or it could be simplified like “see the full list of our partners link ”
1
41,394
2,869,003,358
IssuesEvent
2015-06-05 22:30:37
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
closed
allow to share assets without serializing them within a transformer group
Area-Pkg Pkg-Barback Priority-Low Triaged Type-Enhancement
I'm not sure if this is worth the complexity, but here are some ideas:  - only serialize assets if they are requested on a separate isolate  - allow transformers to expose custom serialization/deserialization types so they can be encoded concisely in the communication with the main isolate (like FileAssets are), and decoded quickly if the asset ends up arriving back to the same isolate where they were encoded. The main motivation I have for this is that in polymer we parse and serialize html files many times. I wouldn't be surprised if something similar is needed to process .dart files in multiple phases with the Dart analyzer. It would be great if we could parse files once, and pass the HtmlDocument to the next phase.
1.0
allow to share assets without serializing them within a transformer group - I'm not sure if this is worth the complexity, but here are some ideas:  - only serialize assets if they are requested on a separate isolate  - allow transformers to expose custom serialization/deserialization types so they can be encoded concisely in the communication with the main isolate (like FileAssets are), and decoded quickly if the asset ends up arriving back to the same isolate where they were encoded. The main motivation I have for this is that in polymer we parse and serialize html files many times. I wouldn't be surprised if something similar is needed to process .dart files in multiple phases with the Dart analyzer. It would be great if we could parse files once, and pass the HtmlDocument to the next phase.
priority
allow to share assets without serializing them within a transformer group i m not sure if this is worth the complexity but here are some ideas nbsp only serialize assets if they are requested on a separate isolate nbsp allow transformers to expose custom serialization deserialization types so they can be encoded concisely in the communication with the main isolate like fileassets are and decoded quickly if the asset ends up arriving back to the same isolate where they were encoded the main motivation i have for this is that in polymer we parse and serialize html files many times i wouldn t be surprised if something similar is needed to process dart files in multiple phases with the dart analyzer it would be great if we could parse files once and pass the htmldocument to the next phase
1
253,680
8,059,055,492
IssuesEvent
2018-08-02 20:34:04
purduesigbots/pros
https://api.github.com/repos/purduesigbots/pros
closed
How do I use auto.c?
Platform: Any Priority: Low Project: PROS Kernel Status: Invalid Type: Question
#### Expected Behavior: Autonomous function runs #### Actual Behavior: Nothing happens #### Steps to reproduce: void autonomous() { motorSet(rightFront, 127); } #### System information: Kernel Version: 2.12.1 Windows 8.1 #### Additional Information How do I initialize my autonomous function so it runs once the competition switch is flipped to autonomous? Motor is defined in main.h.
1.0
How do I use auto.c? - #### Expected Behavior: Autonomous function runs #### Actual Behavior: Nothing happens #### Steps to reproduce: void autonomous() { motorSet(rightFront, 127); } #### System information: Kernel Version: 2.12.1 Windows 8.1 #### Additional Information How do I initialize my autonomous function so it runs once the competition switch is flipped to autonomous? Motor is defined in main.h.
priority
how do i use auto c expected behavior autonomous function runs actual behavior nothing happens steps to reproduce void autonomous motorset rightfront system information kernel version windows additional information how do i initialize my autonomous function so it runs once the competition switch is flipped to autonomous motor is defined in main h
1
764,797
26,817,667,985
IssuesEvent
2023-02-02 06:46:20
UTDNebula/planner
https://api.github.com/repos/UTDNebula/planner
closed
[🐛 Bug]: Hide OR text when no providers available
Good First Issue Priority: Low
### What did you expect to happen? Not below. ### What happened? We see this in Preview deployments since Discord provider isn't available there. <img width="1436" alt="Screenshot 2023-01-31 at 9 43 01 AM" src="https://user-images.githubusercontent.com/47403443/215817445-13d1224b-062a-4fed-bbdf-bf738aaf9457.png"> ### Version Beta 0.1.0 ### What browsers are you seeing the problem on? Firefox, Chrome, Safari, Microsoft Edge ### Relevant log output _No response_ ### Code of Conduct - [X] I agree to follow this project's Code of Conduct
1.0
[🐛 Bug]: Hide OR text when no providers available - ### What did you expect to happen? Not below. ### What happened? We see this in Preview deployments since Discord provider isn't available there. <img width="1436" alt="Screenshot 2023-01-31 at 9 43 01 AM" src="https://user-images.githubusercontent.com/47403443/215817445-13d1224b-062a-4fed-bbdf-bf738aaf9457.png"> ### Version Beta 0.1.0 ### What browsers are you seeing the problem on? Firefox, Chrome, Safari, Microsoft Edge ### Relevant log output _No response_ ### Code of Conduct - [X] I agree to follow this project's Code of Conduct
priority
hide or text when no providers available what did you expect to happen not below what happened we see this in preview deployments since discord provider isn t available there img width alt screenshot at am src version beta what browsers are you seeing the problem on firefox chrome safari microsoft edge relevant log output no response code of conduct i agree to follow this project s code of conduct
1
663,912
22,215,754,053
IssuesEvent
2022-06-08 01:20:15
OctopusDeploy/Issues
https://api.github.com/repos/OctopusDeploy/Issues
opened
Deployment creation accepts any value for a prompted variable with predefined values
kind/bug priority/low state/backlog team/fire-and-motion
### Team - [X] I've assigned a team label to this issue ### Severity Non blocking ### Version any ### Latest Version I could reproduce the problem in the latest build ### What happened? When a project has a prompted dropdown variable with a list of values/options, the API accepts _any_ value for that variable when creating a deployment.. I'd expect the API to validate the value and error on unsupported values. Example scenario could be a user hitting the API with the CLI or a script that has a typo in it or an outdated value for a prompted variable. If it goes through silently it could lead to surprises. ### Reproduction - Create a project variable `Foo` that has `Prompt for value` checked and control type `Drop down`. - In the dropdown options provide a list of options, e.g. `v1|Value1` and `v2|Value2`. - Using either the CLI or manually making an API call, create a deployment using a different value, e.g. `Foo:v3` - See that the deployment gets the value `v3` for `Foo`. ### Error and Stacktrace _No response_ ### More Information Internal discussion: https://octopusdeploy.slack.com/archives/CNHBHV2BX/p1654578845237099 ### Workaround _No response_
1.0
Deployment creation accepts any value for a prompted variable with predefined values - ### Team - [X] I've assigned a team label to this issue ### Severity Non blocking ### Version any ### Latest Version I could reproduce the problem in the latest build ### What happened? When a project has a prompted dropdown variable with a list of values/options, the API accepts _any_ value for that variable when creating a deployment.. I'd expect the API to validate the value and error on unsupported values. Example scenario could be a user hitting the API with the CLI or a script that has a typo in it or an outdated value for a prompted variable. If it goes through silently it could lead to surprises. ### Reproduction - Create a project variable `Foo` that has `Prompt for value` checked and control type `Drop down`. - In the dropdown options provide a list of options, e.g. `v1|Value1` and `v2|Value2`. - Using either the CLI or manually making an API call, create a deployment using a different value, e.g. `Foo:v3` - See that the deployment gets the value `v3` for `Foo`. ### Error and Stacktrace _No response_ ### More Information Internal discussion: https://octopusdeploy.slack.com/archives/CNHBHV2BX/p1654578845237099 ### Workaround _No response_
priority
deployment creation accepts any value for a prompted variable with predefined values team i ve assigned a team label to this issue severity non blocking version any latest version i could reproduce the problem in the latest build what happened when a project has a prompted dropdown variable with a list of values options the api accepts any value for that variable when creating a deployment i d expect the api to validate the value and error on unsupported values example scenario could be a user hitting the api with the cli or a script that has a typo in it or an outdated value for a prompted variable if it goes through silently it could lead to surprises reproduction create a project variable foo that has prompt for value checked and control type drop down in the dropdown options provide a list of options e g and using either the cli or manually making an api call create a deployment using a different value e g foo see that the deployment gets the value for foo error and stacktrace no response more information internal discussion workaround no response
1
253,569
8,057,886,865
IssuesEvent
2018-08-02 16:40:45
roboticslab-uc3m/openrave-yarp-plugins
https://api.github.com/repos/roboticslab-uc3m/openrave-yarp-plugins
closed
Review included headers, tweak CMake code
priority: low
As a follow up to #56, C++ code should be thoroughly inspected with roboticslab-uc3m/best-practices#19 in mind. Once all implicit and explicit dependencies are tracked down, CMake code should reflect proper include/link paths and linked libraries (OpenRAVE, YARP, Boost). This also spreads over `find_package()` calls, i.e. required Boost components. This is a rather tedious and low priority task.
1.0
Review included headers, tweak CMake code - As a follow up to #56, C++ code should be thoroughly inspected with roboticslab-uc3m/best-practices#19 in mind. Once all implicit and explicit dependencies are tracked down, CMake code should reflect proper include/link paths and linked libraries (OpenRAVE, YARP, Boost). This also spreads over `find_package()` calls, i.e. required Boost components. This is a rather tedious and low priority task.
priority
review included headers tweak cmake code as a follow up to c code should be thoroughly inspected with roboticslab best practices in mind once all implicit and explicit dependencies are tracked down cmake code should reflect proper include link paths and linked libraries openrave yarp boost this also spreads over find package calls i e required boost components this is a rather tedious and low priority task
1
798,479
28,281,243,772
IssuesEvent
2023-04-08 02:53:49
attributeerror/daisuke-bot
https://api.github.com/repos/attributeerror/daisuke-bot
closed
Poll command
enhancement priority/low workflow/todo
Will be able to take 10 options in initial creation, similar to choose command. New table to be created: `polls`. - `/poll` - `/poll list` - List all open polls, sorted by creation timestamp. - Each poll will have an ID associated to it in order of creation. - ID could also be the a short UUID to prevent issues with numbering? - `/poll view <ID:string>` - View more information about a specific poll. - Information such as how many people have voted in total, then a breakdown by each option. - There will be a button on this embed to close the poll. - `/poll add_option <ID:string> <option:string> <option:string> ...` - Only accessible by the person who started the poll. - Add further options to an existing poll. - `/poll close <ID:string>` - Close a poll by ID. Consider adding timed polls, possibly a premium feature?
1.0
Poll command - Will be able to take 10 options in initial creation, similar to choose command. New table to be created: `polls`. - `/poll` - `/poll list` - List all open polls, sorted by creation timestamp. - Each poll will have an ID associated to it in order of creation. - ID could also be the a short UUID to prevent issues with numbering? - `/poll view <ID:string>` - View more information about a specific poll. - Information such as how many people have voted in total, then a breakdown by each option. - There will be a button on this embed to close the poll. - `/poll add_option <ID:string> <option:string> <option:string> ...` - Only accessible by the person who started the poll. - Add further options to an existing poll. - `/poll close <ID:string>` - Close a poll by ID. Consider adding timed polls, possibly a premium feature?
priority
poll command will be able to take options in initial creation similar to choose command new table to be created polls poll poll list list all open polls sorted by creation timestamp each poll will have an id associated to it in order of creation id could also be the a short uuid to prevent issues with numbering poll view view more information about a specific poll information such as how many people have voted in total then a breakdown by each option there will be a button on this embed to close the poll poll add option only accessible by the person who started the poll add further options to an existing poll poll close close a poll by id consider adding timed polls possibly a premium feature
1
133,666
5,206,633,892
IssuesEvent
2017-01-24 21:10:49
Radarr/Radarr
https://api.github.com/repos/Radarr/Radarr
closed
'Display Existing Movies' Toggle not working
enhancement priority:low
It appears that the 'Display Existing Movies' toggle when adding movies already on the disk isn't working. When toggled to 'No' before searching the disk, nothing is changed. When toggled to 'No' after a search, the poster and details go away but the entry for the movie remains in the list.
1.0
'Display Existing Movies' Toggle not working - It appears that the 'Display Existing Movies' toggle when adding movies already on the disk isn't working. When toggled to 'No' before searching the disk, nothing is changed. When toggled to 'No' after a search, the poster and details go away but the entry for the movie remains in the list.
priority
display existing movies toggle not working it appears that the display existing movies toggle when adding movies already on the disk isn t working when toggled to no before searching the disk nothing is changed when toggled to no after a search the poster and details go away but the entry for the movie remains in the list
1
520,574
15,088,323,781
IssuesEvent
2021-02-06 00:26:07
infinyon/fluvio
https://api.github.com/repos/infinyon/fluvio
closed
Add profile name to `fluvio version` printout next to Platform version
CLI enhancement priority/low
Right now we have the following printout for `fluvio version` ``` Fluvio CLI : 0.6.0-alpha.6 Fluvio Platform : Not available Git Commit : 4143b882c8b8ed5dff4d824d5dc0a60e5c881396 OS Details : Darwin 19.6.0 x86_64 Rustc Version : 1.47.0 (18bf6b4 2020-10-07) ``` We should add a hint that prints the name of the active profile next to the platform version. For example, if the `local` profile is active, the version printed would look like: ``` Fluvio CLI : 0.6.0-alpha.6 Fluvio Platform : Not available (local) Git Commit : 4143b882c8b8ed5dff4d824d5dc0a60e5c881396 OS Details : Darwin 19.6.0 x86_64 Rustc Version : 1.47.0 (18bf6b4 2020-10-07) ```
1.0
Add profile name to `fluvio version` printout next to Platform version - Right now we have the following printout for `fluvio version` ``` Fluvio CLI : 0.6.0-alpha.6 Fluvio Platform : Not available Git Commit : 4143b882c8b8ed5dff4d824d5dc0a60e5c881396 OS Details : Darwin 19.6.0 x86_64 Rustc Version : 1.47.0 (18bf6b4 2020-10-07) ``` We should add a hint that prints the name of the active profile next to the platform version. For example, if the `local` profile is active, the version printed would look like: ``` Fluvio CLI : 0.6.0-alpha.6 Fluvio Platform : Not available (local) Git Commit : 4143b882c8b8ed5dff4d824d5dc0a60e5c881396 OS Details : Darwin 19.6.0 x86_64 Rustc Version : 1.47.0 (18bf6b4 2020-10-07) ```
priority
add profile name to fluvio version printout next to platform version right now we have the following printout for fluvio version fluvio cli alpha fluvio platform not available git commit os details darwin rustc version we should add a hint that prints the name of the active profile next to the platform version for example if the local profile is active the version printed would look like fluvio cli alpha fluvio platform not available local git commit os details darwin rustc version
1
506,864
14,674,669,169
IssuesEvent
2020-12-30 15:49:46
Zettlr/Zettlr
https://api.github.com/repos/Zettlr/Zettlr
closed
[BUG]: UTF Byte Order Mark displayed as content in MarkDown files.
confirmed enhancement pinned priority:low
<!-- Below, please describe what the Bug does in one or two short sentences. --> ## Description Files with a UTF-8 / 16 / 32 [Byte Order Mark](https://en.wikipedia.org/wiki/Byte_order_mark) (BOM) (hex `0xEF 0xBB 0xBF` for UTF-8, `0xFE 0xFF` [big endian] or `0xFF 0xFE` [little endian] for UTF-16/32) at the beginning of the file have this displayed in Zettlr as one or more characters. <!-- Below describe the steps necessary to reproduce the malicious behaviour --> ## Reproducing Generate a file with a UTF-8/16 BOM at the beginning of the file and open it in Zettlr. <!-- Below, please describe what Zettlr should do instead --> ## Expected behaviour The BOM should be retained in the text document (if present) to signal that the following text is UTF-# encoded, but it should not (under any circumstances) be displayed as a character in the editor, and should not be edited unless the encoding of the MarkDown file is modified. <!-- If helpful, add Screenshots to further narrow down the issue --> **Screenshots** UTF-8: ![UTF-8](https://user-images.githubusercontent.com/9733178/90362750-af634b80-e0a4-11ea-8e44-e1504736fec0.png) UTF-16: ![UTF-16](https://user-images.githubusercontent.com/9733178/90363116-6c55a800-e0a5-11ea-88c8-102e81c85f60.png) <!-- Please provide information on your operating system --> ## Platform - OS and version: Win10 20.04 - Zettlr Version: 1.7.5 - Screen Resolution: 1920x1080 <!-- If there is anything else that might be of interest, please provide it here --> ## Additional information [UTF-8 Test](https://github.com/Zettlr/Zettlr/files/5082440/test.zip) is a zip file containing an example MarkDown file with UTF-8 BOM. [UTF-16 Test](https://github.com/Zettlr/Zettlr/files/5082446/test2.zip) is a zip file containing an example MarkDown file with UTF-16 BOM - This is also standard for UTF-32, but rarely used. Note that UTF-16 BOM example that I created on a lark (my content is all UTF-8) is *really* bad. I don't know where all of the extra characters came from, and they aren't in the source document. If I had to take a guess, I'd say that Zettlr is ignoring the UTF-16 encoding, and attempting to decode as UTF-8, putting a whitespace character `00` between each legitimate character, because UTF-16 encodes (e.g. 'T') as `00 54`, resulting in a 'doubling' of characters through odd characters when the file is read by Zettlr. Of note is that the UTF BOM is not visible in UTF-8 or 16 flavours within either Notepad, Wordpad, or VS Code - I had to dig out a hex editor to work out why these funny characters were showing up in Zettlr and what they are! If I'm on the right track, let me know and I'll split this into two bugs: One for (the lack of) UTF-16 support, and the other for UTF-8 BOM issues.
1.0
[BUG]: UTF Byte Order Mark displayed as content in MarkDown files. - <!-- Below, please describe what the Bug does in one or two short sentences. --> ## Description Files with a UTF-8 / 16 / 32 [Byte Order Mark](https://en.wikipedia.org/wiki/Byte_order_mark) (BOM) (hex `0xEF 0xBB 0xBF` for UTF-8, `0xFE 0xFF` [big endian] or `0xFF 0xFE` [little endian] for UTF-16/32) at the beginning of the file have this displayed in Zettlr as one or more characters. <!-- Below describe the steps necessary to reproduce the malicious behaviour --> ## Reproducing Generate a file with a UTF-8/16 BOM at the beginning of the file and open it in Zettlr. <!-- Below, please describe what Zettlr should do instead --> ## Expected behaviour The BOM should be retained in the text document (if present) to signal that the following text is UTF-# encoded, but it should not (under any circumstances) be displayed as a character in the editor, and should not be edited unless the encoding of the MarkDown file is modified. <!-- If helpful, add Screenshots to further narrow down the issue --> **Screenshots** UTF-8: ![UTF-8](https://user-images.githubusercontent.com/9733178/90362750-af634b80-e0a4-11ea-8e44-e1504736fec0.png) UTF-16: ![UTF-16](https://user-images.githubusercontent.com/9733178/90363116-6c55a800-e0a5-11ea-88c8-102e81c85f60.png) <!-- Please provide information on your operating system --> ## Platform - OS and version: Win10 20.04 - Zettlr Version: 1.7.5 - Screen Resolution: 1920x1080 <!-- If there is anything else that might be of interest, please provide it here --> ## Additional information [UTF-8 Test](https://github.com/Zettlr/Zettlr/files/5082440/test.zip) is a zip file containing an example MarkDown file with UTF-8 BOM. [UTF-16 Test](https://github.com/Zettlr/Zettlr/files/5082446/test2.zip) is a zip file containing an example MarkDown file with UTF-16 BOM - This is also standard for UTF-32, but rarely used. Note that UTF-16 BOM example that I created on a lark (my content is all UTF-8) is *really* bad. I don't know where all of the extra characters came from, and they aren't in the source document. If I had to take a guess, I'd say that Zettlr is ignoring the UTF-16 encoding, and attempting to decode as UTF-8, putting a whitespace character `00` between each legitimate character, because UTF-16 encodes (e.g. 'T') as `00 54`, resulting in a 'doubling' of characters through odd characters when the file is read by Zettlr. Of note is that the UTF BOM is not visible in UTF-8 or 16 flavours within either Notepad, Wordpad, or VS Code - I had to dig out a hex editor to work out why these funny characters were showing up in Zettlr and what they are! If I'm on the right track, let me know and I'll split this into two bugs: One for (the lack of) UTF-16 support, and the other for UTF-8 BOM issues.
priority
utf byte order mark displayed as content in markdown files description files with a utf bom hex for utf or for utf at the beginning of the file have this displayed in zettlr as one or more characters reproducing generate a file with a utf bom at the beginning of the file and open it in zettlr expected behaviour the bom should be retained in the text document if present to signal that the following text is utf encoded but it should not under any circumstances be displayed as a character in the editor and should not be edited unless the encoding of the markdown file is modified screenshots utf utf platform os and version zettlr version screen resolution additional information is a zip file containing an example markdown file with utf bom is a zip file containing an example markdown file with utf bom this is also standard for utf but rarely used note that utf bom example that i created on a lark my content is all utf is really bad i don t know where all of the extra characters came from and they aren t in the source document if i had to take a guess i d say that zettlr is ignoring the utf encoding and attempting to decode as utf putting a whitespace character between each legitimate character because utf encodes e g t as resulting in a doubling of characters through odd characters when the file is read by zettlr of note is that the utf bom is not visible in utf or flavours within either notepad wordpad or vs code i had to dig out a hex editor to work out why these funny characters were showing up in zettlr and what they are if i m on the right track let me know and i ll split this into two bugs one for the lack of utf support and the other for utf bom issues
1
448,380
12,949,262,914
IssuesEvent
2020-07-19 08:22:54
kaldi-asr/kaldi
https://api.github.com/repos/kaldi-asr/kaldi
reopened
Maintenance script for common issues in egs scripts
low-priority stale-exclude
There are some common issues with the scripts that could be check in semi-automatic manner -- the script could flag files and those would be reviewed by an person Example of such issues are sourcing errors like `. path.sh` instead of `. ./path.sh` (and similarly with `cmd.sh`). Let's brainstorm/discuss how viable is this idea and what other issue could be flagged/detected. That could help maintainers or PR reviewers doing their job.
1.0
Maintenance script for common issues in egs scripts - There are some common issues with the scripts that could be check in semi-automatic manner -- the script could flag files and those would be reviewed by an person Example of such issues are sourcing errors like `. path.sh` instead of `. ./path.sh` (and similarly with `cmd.sh`). Let's brainstorm/discuss how viable is this idea and what other issue could be flagged/detected. That could help maintainers or PR reviewers doing their job.
priority
maintenance script for common issues in egs scripts there are some common issues with the scripts that could be check in semi automatic manner the script could flag files and those would be reviewed by an person example of such issues are sourcing errors like path sh instead of path sh and similarly with cmd sh let s brainstorm discuss how viable is this idea and what other issue could be flagged detected that could help maintainers or pr reviewers doing their job
1
60,475
3,129,710,434
IssuesEvent
2015-09-09 03:47:11
GLolol/PyLink
https://api.github.com/repos/GLolol/PyLink
closed
[relay] use JOIN instead of SJOIN for non-burst joins
priority:low relay
Also, send the join of the PyLink client as an SJOIN...
1.0
[relay] use JOIN instead of SJOIN for non-burst joins - Also, send the join of the PyLink client as an SJOIN...
priority
use join instead of sjoin for non burst joins also send the join of the pylink client as an sjoin
1
648,139
21,176,698,263
IssuesEvent
2022-04-08 01:13:00
C7-Game/Prototype
https://api.github.com/repos/C7-Game/Prototype
opened
NodePath Management
refactor low priority
In the current setup, nodes in every scene have the same name as their type, and are referenced in `GetNode` by relative path. We should define important node paths in constants, and possible only use absolute paths (in non-trivial cases) to make the code consistent and less error-prone.
1.0
NodePath Management - In the current setup, nodes in every scene have the same name as their type, and are referenced in `GetNode` by relative path. We should define important node paths in constants, and possible only use absolute paths (in non-trivial cases) to make the code consistent and less error-prone.
priority
nodepath management in the current setup nodes in every scene have the same name as their type and are referenced in getnode by relative path we should define important node paths in constants and possible only use absolute paths in non trivial cases to make the code consistent and less error prone
1
387,796
11,470,564,137
IssuesEvent
2020-02-09 04:16:29
WeakAuras/WeakAuras2
https://api.github.com/repos/WeakAuras/WeakAuras2
closed
Basic search function for Models (.m2) based on file name.
⬇️Low Priority 🎨 Feature Request 🙏Help Wanted
It would be super useful to have a basic search function under models for searching things such as "priest" or "holy" to avoid having to go through the giant list. Could be very basic just based off the file name. The website suggested doesn't show the actual animation, like WA does in-game.
1.0
Basic search function for Models (.m2) based on file name. - It would be super useful to have a basic search function under models for searching things such as "priest" or "holy" to avoid having to go through the giant list. Could be very basic just based off the file name. The website suggested doesn't show the actual animation, like WA does in-game.
priority
basic search function for models based on file name it would be super useful to have a basic search function under models for searching things such as priest or holy to avoid having to go through the giant list could be very basic just based off the file name the website suggested doesn t show the actual animation like wa does in game
1
281,702
8,698,395,085
IssuesEvent
2018-12-04 23:16:13
Dragoon-Lab/topomath
https://api.github.com/repos/Dragoon-Lab/topomath
closed
Variable order changes when a model is re-opened
Priority: Low bug
Fix for #414 missed one case. It works while the model is open, but when it is re-opened the order reverts to alphabetical order. Change it so that on the initial load, the variables are ordered by creation order.
1.0
Variable order changes when a model is re-opened - Fix for #414 missed one case. It works while the model is open, but when it is re-opened the order reverts to alphabetical order. Change it so that on the initial load, the variables are ordered by creation order.
priority
variable order changes when a model is re opened fix for missed one case it works while the model is open but when it is re opened the order reverts to alphabetical order change it so that on the initial load the variables are ordered by creation order
1
633,714
20,263,502,256
IssuesEvent
2022-02-15 09:52:13
firecracker-microvm/firecracker
https://api.github.com/repos/firecracker-microvm/firecracker
closed
Slower networking of OSv on firecracker vs QEMU/KVM
Feature: IO Virtualization Performance: IO Priority: Low
Before I dive into details of my performance test results I would to take this occasion to announce on this forum that firecracker is officially and fully supported by OSv unikernel as of latest 0.53.0 release (nickname "Firebird", for details please read [here](https://github.com/cloudius-systems/osv/releases/tag/v0.53.0)). It can boot in as low as 5ms per bootchart and 10ms per firecracker guest boot time measurement. Maybe it is worth mentioning on https://firecracker-microvm.github.io/ (section "What operating systems are supported by Firecracker?") that besides Linux, OSv can boot on firecracker as well ;-) ? From what I am aware of, OSv is the only unikernel and possibly the only other OS besides Linux that can claim this as of this point in time. As far as performance comparison between OSv running on firecracker vs QEMU/KVM goes, first I must say that at least in one aspect firecracker beats QEMU - file I/O. I have not done any other elaborate file I/IO tests but for example mounting ZFS filesystem is at least 5 times faster on firecracker - on average 60ms on firecracker vs 260ms on QEMU. Now as far networking goes, OSv performs a little worse on firecracker vs QEMU and it varies between 50-90% of the performance on QEMU in terms of requests per second depending mostly on number of vCPUs and type of the application I used to test. My tests were focused of number of REST API requests handled per seconds by a typical microservice app implemented in [Rust, using hyper](https://github.com/wkozaczuk/unikernels-v-containers/tree/master/restapi/rust-osv/src/rest), [Golang](https://github.com/wkozaczuk/unikernels-v-containers/tree/master/restapi/go-osv) and [Java using vertx.io](https://github.com/wkozaczuk/unikernels-v-containers/blob/master/restapi/java-osv/src/main/java/rest/SimpleREST.java). Each app in essence implements simple todo REST api returning a json payload of 100-200 characters long. The test setup looked like this: Host: - MacBook Pro with Intel i7 4 cores CPU with hyperthreading (8 cpus reported by lscpu) with 16GB of RAM with Ubuntu 18.10 on it - firecracker 0.15.0 - QEMU 2.12.0 Client machine: - similar to the one above with wrk as a test client firing requests using 10 threads and 100 open connections for 30 seconds in 3 series one by one (please see this test script - https://github.com/wkozaczuk/unikernels-v-containers/blob/master/test-restapi-with-wrk.sh). The host and client machine were connected directly to 1 GBit ethernet switch and host exposed guest IP using a bridged TAP nic. Here is a list of pure req/sec results: ``` Go 1 CPU - FC & QEMU ------------------- Requests/sec: 16422.33 Requests/sec: 16540.24 Requests/sec: 16721.56 ------------------- Requests/sec: 23300.26 Requests/sec: 23874.74 Requests/sec: 24313.06 Go 2 CPU - FC & QEMU ------------------- Requests/sec: 26676.68 Requests/sec: 28100.00 Requests/sec: 28538.35 ------------------- Requests/sec: 33581.87 Requests/sec: 35475.22 Requests/sec: 37089.26 Rust 1 CPU - FC & QEMU ------------------- Requests/sec: 23379.86 Requests/sec: 23477.19 Requests/sec: 23604.27 ------------------- Requests/sec: 41100.07 Requests/sec: 43455.34 Requests/sec: 43927.73 Rust 2 CPU - FC & QEMU ------------------- Requests/sec: 46128.15 Requests/sec: 46590.41 Requests/sec: 46973.84 ------------------- Requests/sec: 48076.98 Requests/sec: 49120.31 Requests/sec: 49298.28 Java 1 CPU - FC & QEMU ------------------- Requests/sec: 20191.95 Requests/sec: 21384.60 Requests/sec: 21705.82 ------------------- Requests/sec: 41049.41 Requests/sec: 43622.81 Requests/sec: 44777.60 Java 2 CPU - FC & QEMU ------------------- Requests/sec: 40625.69 Requests/sec: 40876.17 Requests/sec: 43766.45 ------------------- Requests/sec: 45746.48 Requests/sec: 46224.42 Requests/sec: 46245.95 ``` For more detailed results please see the files where I captured full output from wrk - https://github.com/wkozaczuk/unikernels-v-containers/tree/master/test_results/remote/OSv_firecracker and https://github.com/wkozaczuk/unikernels-v-containers/tree/master/test_results/remote/OSv_qemu. Would you have any insight of what might be the reason of relatively slower performance of firecracker? I think I have disabled the rate limiting which is what this script does - https://github.com/cloudius-systems/osv/blob/master/scripts/firecracker.py#L23-L97. It could be also that virtio-mmio implementation on OSv side is not very well optimized - with QEMU OSv uses virtio-pci. Any help will be greatly appreciated.
1.0
Slower networking of OSv on firecracker vs QEMU/KVM - Before I dive into details of my performance test results I would to take this occasion to announce on this forum that firecracker is officially and fully supported by OSv unikernel as of latest 0.53.0 release (nickname "Firebird", for details please read [here](https://github.com/cloudius-systems/osv/releases/tag/v0.53.0)). It can boot in as low as 5ms per bootchart and 10ms per firecracker guest boot time measurement. Maybe it is worth mentioning on https://firecracker-microvm.github.io/ (section "What operating systems are supported by Firecracker?") that besides Linux, OSv can boot on firecracker as well ;-) ? From what I am aware of, OSv is the only unikernel and possibly the only other OS besides Linux that can claim this as of this point in time. As far as performance comparison between OSv running on firecracker vs QEMU/KVM goes, first I must say that at least in one aspect firecracker beats QEMU - file I/O. I have not done any other elaborate file I/IO tests but for example mounting ZFS filesystem is at least 5 times faster on firecracker - on average 60ms on firecracker vs 260ms on QEMU. Now as far networking goes, OSv performs a little worse on firecracker vs QEMU and it varies between 50-90% of the performance on QEMU in terms of requests per second depending mostly on number of vCPUs and type of the application I used to test. My tests were focused of number of REST API requests handled per seconds by a typical microservice app implemented in [Rust, using hyper](https://github.com/wkozaczuk/unikernels-v-containers/tree/master/restapi/rust-osv/src/rest), [Golang](https://github.com/wkozaczuk/unikernels-v-containers/tree/master/restapi/go-osv) and [Java using vertx.io](https://github.com/wkozaczuk/unikernels-v-containers/blob/master/restapi/java-osv/src/main/java/rest/SimpleREST.java). Each app in essence implements simple todo REST api returning a json payload of 100-200 characters long. The test setup looked like this: Host: - MacBook Pro with Intel i7 4 cores CPU with hyperthreading (8 cpus reported by lscpu) with 16GB of RAM with Ubuntu 18.10 on it - firecracker 0.15.0 - QEMU 2.12.0 Client machine: - similar to the one above with wrk as a test client firing requests using 10 threads and 100 open connections for 30 seconds in 3 series one by one (please see this test script - https://github.com/wkozaczuk/unikernels-v-containers/blob/master/test-restapi-with-wrk.sh). The host and client machine were connected directly to 1 GBit ethernet switch and host exposed guest IP using a bridged TAP nic. Here is a list of pure req/sec results: ``` Go 1 CPU - FC & QEMU ------------------- Requests/sec: 16422.33 Requests/sec: 16540.24 Requests/sec: 16721.56 ------------------- Requests/sec: 23300.26 Requests/sec: 23874.74 Requests/sec: 24313.06 Go 2 CPU - FC & QEMU ------------------- Requests/sec: 26676.68 Requests/sec: 28100.00 Requests/sec: 28538.35 ------------------- Requests/sec: 33581.87 Requests/sec: 35475.22 Requests/sec: 37089.26 Rust 1 CPU - FC & QEMU ------------------- Requests/sec: 23379.86 Requests/sec: 23477.19 Requests/sec: 23604.27 ------------------- Requests/sec: 41100.07 Requests/sec: 43455.34 Requests/sec: 43927.73 Rust 2 CPU - FC & QEMU ------------------- Requests/sec: 46128.15 Requests/sec: 46590.41 Requests/sec: 46973.84 ------------------- Requests/sec: 48076.98 Requests/sec: 49120.31 Requests/sec: 49298.28 Java 1 CPU - FC & QEMU ------------------- Requests/sec: 20191.95 Requests/sec: 21384.60 Requests/sec: 21705.82 ------------------- Requests/sec: 41049.41 Requests/sec: 43622.81 Requests/sec: 44777.60 Java 2 CPU - FC & QEMU ------------------- Requests/sec: 40625.69 Requests/sec: 40876.17 Requests/sec: 43766.45 ------------------- Requests/sec: 45746.48 Requests/sec: 46224.42 Requests/sec: 46245.95 ``` For more detailed results please see the files where I captured full output from wrk - https://github.com/wkozaczuk/unikernels-v-containers/tree/master/test_results/remote/OSv_firecracker and https://github.com/wkozaczuk/unikernels-v-containers/tree/master/test_results/remote/OSv_qemu. Would you have any insight of what might be the reason of relatively slower performance of firecracker? I think I have disabled the rate limiting which is what this script does - https://github.com/cloudius-systems/osv/blob/master/scripts/firecracker.py#L23-L97. It could be also that virtio-mmio implementation on OSv side is not very well optimized - with QEMU OSv uses virtio-pci. Any help will be greatly appreciated.
priority
slower networking of osv on firecracker vs qemu kvm before i dive into details of my performance test results i would to take this occasion to announce on this forum that firecracker is officially and fully supported by osv unikernel as of latest release nickname firebird for details please read it can boot in as low as per bootchart and per firecracker guest boot time measurement maybe it is worth mentioning on section what operating systems are supported by firecracker that besides linux osv can boot on firecracker as well from what i am aware of osv is the only unikernel and possibly the only other os besides linux that can claim this as of this point in time as far as performance comparison between osv running on firecracker vs qemu kvm goes first i must say that at least in one aspect firecracker beats qemu file i o i have not done any other elaborate file i io tests but for example mounting zfs filesystem is at least times faster on firecracker on average on firecracker vs on qemu now as far networking goes osv performs a little worse on firecracker vs qemu and it varies between of the performance on qemu in terms of requests per second depending mostly on number of vcpus and type of the application i used to test my tests were focused of number of rest api requests handled per seconds by a typical microservice app implemented in and each app in essence implements simple todo rest api returning a json payload of characters long the test setup looked like this host macbook pro with intel cores cpu with hyperthreading cpus reported by lscpu with of ram with ubuntu on it firecracker qemu client machine similar to the one above with wrk as a test client firing requests using threads and open connections for seconds in series one by one please see this test script the host and client machine were connected directly to gbit ethernet switch and host exposed guest ip using a bridged tap nic here is a list of pure req sec results go cpu fc qemu requests sec requests sec requests sec requests sec requests sec requests sec go cpu fc qemu requests sec requests sec requests sec requests sec requests sec requests sec rust cpu fc qemu requests sec requests sec requests sec requests sec requests sec requests sec rust cpu fc qemu requests sec requests sec requests sec requests sec requests sec requests sec java cpu fc qemu requests sec requests sec requests sec requests sec requests sec requests sec java cpu fc qemu requests sec requests sec requests sec requests sec requests sec requests sec for more detailed results please see the files where i captured full output from wrk and would you have any insight of what might be the reason of relatively slower performance of firecracker i think i have disabled the rate limiting which is what this script does it could be also that virtio mmio implementation on osv side is not very well optimized with qemu osv uses virtio pci any help will be greatly appreciated
1
460,573
13,213,034,055
IssuesEvent
2020-08-16 10:39:09
clowdr-app/clowdr-web-app
https://api.github.com/repos/clowdr-app/clowdr-web-app
closed
Date+time on chats
Easy / small Low priority good first issue
See date-timestapms on chats; not only time <img width="317" alt="Screen Shot 2020-08-14 at 12 13 08" src="https://user-images.githubusercontent.com/506426/90270116-b29dd380-de27-11ea-8267-d3c3e2cceba6.png">
1.0
Date+time on chats - See date-timestapms on chats; not only time <img width="317" alt="Screen Shot 2020-08-14 at 12 13 08" src="https://user-images.githubusercontent.com/506426/90270116-b29dd380-de27-11ea-8267-d3c3e2cceba6.png">
priority
date time on chats see date timestapms on chats not only time img width alt screen shot at src
1
702,954
24,142,700,153
IssuesEvent
2022-09-21 15:59:29
Automattic/woocommerce-payments
https://api.github.com/repos/Automattic/woocommerce-payments
closed
[SPIKE] Break down outstanding platform checkout and WC Blocks incompatibilities
priority: low category: projects type: spike component: platform checkout
### Description Currently when wanting to benefit from the platform checkout, you need to use the shortcode checkout. The goal of this issue is to research the work needed to add Cart and Checkout Blocks compatibility and to create the issues necessary to add this implementation. ### Acceptance criteria <!-- A list of predefined requirements that must be met in order to mark the issue as complete. --> Issues that need to be tackled in order for us to add Blocks checkout compatibility are created. ### Additional context <!-- Any additional context or details you think might be helpful. --> <!-- Ticket numbers/links, P2s, project threads, etc. --> Notes on items taken in the past that might require creating issues for: pdpOw2-ls-p2
1.0
[SPIKE] Break down outstanding platform checkout and WC Blocks incompatibilities - ### Description Currently when wanting to benefit from the platform checkout, you need to use the shortcode checkout. The goal of this issue is to research the work needed to add Cart and Checkout Blocks compatibility and to create the issues necessary to add this implementation. ### Acceptance criteria <!-- A list of predefined requirements that must be met in order to mark the issue as complete. --> Issues that need to be tackled in order for us to add Blocks checkout compatibility are created. ### Additional context <!-- Any additional context or details you think might be helpful. --> <!-- Ticket numbers/links, P2s, project threads, etc. --> Notes on items taken in the past that might require creating issues for: pdpOw2-ls-p2
priority
break down outstanding platform checkout and wc blocks incompatibilities description currently when wanting to benefit from the platform checkout you need to use the shortcode checkout the goal of this issue is to research the work needed to add cart and checkout blocks compatibility and to create the issues necessary to add this implementation acceptance criteria issues that need to be tackled in order for us to add blocks checkout compatibility are created additional context notes on items taken in the past that might require creating issues for ls
1
173,736
6,530,439,137
IssuesEvent
2017-08-30 15:07:11
keboola/developer-portal-ui
https://api.github.com/repos/keboola/developer-portal-ui
opened
Store "top 9 apps" to some data file
area:js module:open priority:low type:enhancement
Vybral by som tych 9 apiek, co tam maju byt a ulozil tieto data normalne do suboru ako js objekt, aby vyrenderovanie homepage bolo rychle a nezaviselo na API.
1.0
Store "top 9 apps" to some data file - Vybral by som tych 9 apiek, co tam maju byt a ulozil tieto data normalne do suboru ako js objekt, aby vyrenderovanie homepage bolo rychle a nezaviselo na API.
priority
store top apps to some data file vybral by som tych apiek co tam maju byt a ulozil tieto data normalne do suboru ako js objekt aby vyrenderovanie homepage bolo rychle a nezaviselo na api
1
6,947
2,595,888,209
IssuesEvent
2015-02-20 17:04:19
OpenSprites/OpenSprites
https://api.github.com/repos/OpenSprites/OpenSprites
closed
Translation of the site?
enhancement feature idea input wanted low priority ongoing question
ScratchBlocks2 supports translation since it gets the translations from the Scratch translation server. Perhaps we could implement translation at a much later stage to open the site to non-english speakers? I know we have some multilingual speakers in the development team, so that could be a bonus for translation?
1.0
Translation of the site? - ScratchBlocks2 supports translation since it gets the translations from the Scratch translation server. Perhaps we could implement translation at a much later stage to open the site to non-english speakers? I know we have some multilingual speakers in the development team, so that could be a bonus for translation?
priority
translation of the site supports translation since it gets the translations from the scratch translation server perhaps we could implement translation at a much later stage to open the site to non english speakers i know we have some multilingual speakers in the development team so that could be a bonus for translation
1
299,034
9,204,399,468
IssuesEvent
2019-03-08 07:13:42
qissue-bot/QGIS
https://api.github.com/repos/qissue-bot/QGIS
closed
Georeferencer doesn't use decimals
Category: C++ Plugins Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report
--- Author Name: **stuarteve-gmail-com -** (stuarteve-gmail-com -) Original Redmine Issue: 479, https://issues.qgis.org/issues/479 Original Assignee: nobody - --- I have been using the georeferencer plugin in v.0.7.4 and the 08 Preview2. I use a Helmert transformation, and am trying to get some 1:50 plans properly georeferenced. It would seem that the GRef plugin doesn't transform using floats - instead it rounds everything up to the nearest whole number. This results in the plans being georef'd to the wrong place. Is it possible to change the precision so that my georeff'd tifs don't come out 40cms in the wrong place.
1.0
Georeferencer doesn't use decimals - --- Author Name: **stuarteve-gmail-com -** (stuarteve-gmail-com -) Original Redmine Issue: 479, https://issues.qgis.org/issues/479 Original Assignee: nobody - --- I have been using the georeferencer plugin in v.0.7.4 and the 08 Preview2. I use a Helmert transformation, and am trying to get some 1:50 plans properly georeferenced. It would seem that the GRef plugin doesn't transform using floats - instead it rounds everything up to the nearest whole number. This results in the plans being georef'd to the wrong place. Is it possible to change the precision so that my georeff'd tifs don't come out 40cms in the wrong place.
priority
georeferencer doesn t use decimals author name stuarteve gmail com stuarteve gmail com original redmine issue original assignee nobody i have been using the georeferencer plugin in v and the i use a helmert transformation and am trying to get some plans properly georeferenced it would seem that the gref plugin doesn t transform using floats instead it rounds everything up to the nearest whole number this results in the plans being georef d to the wrong place is it possible to change the precision so that my georeff d tifs don t come out in the wrong place
1
760,689
26,652,676,122
IssuesEvent
2023-01-25 14:45:51
ProjectStarlight/StarlightRiver
https://api.github.com/repos/ProjectStarlight/StarlightRiver
closed
Using Ripshatter leaves you at an angle until you return to main menu.
bug demo Low Priority
Github issues should match the following format, for ease of organization and readability. ## Issue Description **A thorough description of the problem, including:** Expected behavior: Not being at an angle Actual behavior: Being at an angle Context: Using Ripshatter one or more times ## Reproduction **A detailed walkthrough of how to reproduce the issue, as thorough as possible.** Mod list: Starlight River, Cheat Sheet Config settings: Default Game settings: Default Gameplay events happening: After attacking any enemy with the Ripshatter Your inputs: Attacking an enemy with the Ripshatter OS: Windows ## Additional context and log files ![image](https://user-images.githubusercontent.com/92641277/140988422-a66bd5fa-5a77-4c2f-97ad-f4a64853efdc.png) ![image](https://user-images.githubusercontent.com/92641277/140988978-d2347690-8216-4206-96b5-3046db131e0a.png) ![image](https://user-images.githubusercontent.com/92641277/140989223-baf335e2-619b-44d2-8b50-6f52f0f39d62.png) It happens no matter what equipment you have equipped, and death does not solve it.
1.0
Using Ripshatter leaves you at an angle until you return to main menu. - Github issues should match the following format, for ease of organization and readability. ## Issue Description **A thorough description of the problem, including:** Expected behavior: Not being at an angle Actual behavior: Being at an angle Context: Using Ripshatter one or more times ## Reproduction **A detailed walkthrough of how to reproduce the issue, as thorough as possible.** Mod list: Starlight River, Cheat Sheet Config settings: Default Game settings: Default Gameplay events happening: After attacking any enemy with the Ripshatter Your inputs: Attacking an enemy with the Ripshatter OS: Windows ## Additional context and log files ![image](https://user-images.githubusercontent.com/92641277/140988422-a66bd5fa-5a77-4c2f-97ad-f4a64853efdc.png) ![image](https://user-images.githubusercontent.com/92641277/140988978-d2347690-8216-4206-96b5-3046db131e0a.png) ![image](https://user-images.githubusercontent.com/92641277/140989223-baf335e2-619b-44d2-8b50-6f52f0f39d62.png) It happens no matter what equipment you have equipped, and death does not solve it.
priority
using ripshatter leaves you at an angle until you return to main menu github issues should match the following format for ease of organization and readability issue description a thorough description of the problem including expected behavior not being at an angle actual behavior being at an angle context using ripshatter one or more times reproduction a detailed walkthrough of how to reproduce the issue as thorough as possible mod list starlight river cheat sheet config settings default game settings default gameplay events happening after attacking any enemy with the ripshatter your inputs attacking an enemy with the ripshatter os windows additional context and log files it happens no matter what equipment you have equipped and death does not solve it
1
369,296
10,895,161,869
IssuesEvent
2019-11-19 10:07:24
ospalh/anki-addons
https://api.github.com/repos/ospalh/anki-addons
closed
Japanese - Nothing Downloaded
downloadaudio enhancement priority:low
It seems that nothing is downloaded when "ja" is selected as the language. Field detection works fine, but a Nothing downloaded notification pops up when attempting to download now, no matter which of the 3 download options I select. It seems like others have had this problem recently as well.
1.0
Japanese - Nothing Downloaded - It seems that nothing is downloaded when "ja" is selected as the language. Field detection works fine, but a Nothing downloaded notification pops up when attempting to download now, no matter which of the 3 download options I select. It seems like others have had this problem recently as well.
priority
japanese nothing downloaded it seems that nothing is downloaded when ja is selected as the language field detection works fine but a nothing downloaded notification pops up when attempting to download now no matter which of the download options i select it seems like others have had this problem recently as well
1
690,038
23,643,955,441
IssuesEvent
2022-08-25 19:56:47
MontyTRC89/Tomb-Editor
https://api.github.com/repos/MontyTRC89/Tomb-Editor
closed
WT: State changes: Animation name in tooltip is catalog name, not WAD name
bug low priority
Very minor thing: In the State changes window, you can hover the **Next animation** column, and it will show the name of the animation. But this name is the name stored in **TRCatalog.xml**. It should be showing the name of the actual animation in the WAD. -------------------------------------------- For example: Lara's animation 101 is named "**JUMP_FORWARD_START_TO_REACH_ALTERNATE_UNUSED**" in **TrCatalog.xml** : ```xml <anim item="0" id="101" name="JUMP_FORWARD_START_TO_REACH_ALTERNATE_UNUSED" ``` Since it is unused, I reused it for another purpose, and named it accordingly: "**RUN_START_END_TO_STAND**". This animation is referenced in my animation **6** (**RUN_START**) via a State Change. But when I select animation **6** (**RUN_START**), open the State Change window, and hover the line which references my animation, it shows the old name that is in **TrCatalog.xml** instead ("**JUMP_FORWARD_START_TO_REACH_ALTERNATE_UNUSED**"): ![image](https://user-images.githubusercontent.com/12445716/186680491-35c5d9a7-32b7-471b-ac1d-e2172a037035.png) _Also don't mind my idiotic state changes with an animation that is probably never gonna be triggered, I literally just noticed this 🌚 And this is what made me notice this bug._
1.0
WT: State changes: Animation name in tooltip is catalog name, not WAD name - Very minor thing: In the State changes window, you can hover the **Next animation** column, and it will show the name of the animation. But this name is the name stored in **TRCatalog.xml**. It should be showing the name of the actual animation in the WAD. -------------------------------------------- For example: Lara's animation 101 is named "**JUMP_FORWARD_START_TO_REACH_ALTERNATE_UNUSED**" in **TrCatalog.xml** : ```xml <anim item="0" id="101" name="JUMP_FORWARD_START_TO_REACH_ALTERNATE_UNUSED" ``` Since it is unused, I reused it for another purpose, and named it accordingly: "**RUN_START_END_TO_STAND**". This animation is referenced in my animation **6** (**RUN_START**) via a State Change. But when I select animation **6** (**RUN_START**), open the State Change window, and hover the line which references my animation, it shows the old name that is in **TrCatalog.xml** instead ("**JUMP_FORWARD_START_TO_REACH_ALTERNATE_UNUSED**"): ![image](https://user-images.githubusercontent.com/12445716/186680491-35c5d9a7-32b7-471b-ac1d-e2172a037035.png) _Also don't mind my idiotic state changes with an animation that is probably never gonna be triggered, I literally just noticed this 🌚 And this is what made me notice this bug._
priority
wt state changes animation name in tooltip is catalog name not wad name very minor thing in the state changes window you can hover the next animation column and it will show the name of the animation but this name is the name stored in trcatalog xml it should be showing the name of the actual animation in the wad for example lara s animation is named jump forward start to reach alternate unused in trcatalog xml xml anim item id name jump forward start to reach alternate unused since it is unused i reused it for another purpose and named it accordingly run start end to stand this animation is referenced in my animation run start via a state change but when i select animation run start open the state change window and hover the line which references my animation it shows the old name that is in trcatalog xml instead jump forward start to reach alternate unused also don t mind my idiotic state changes with an animation that is probably never gonna be triggered i literally just noticed this 🌚 and this is what made me notice this bug
1
677,496
23,163,514,276
IssuesEvent
2022-07-29 20:44:56
AlexsLemonade/scpca-portal
https://api.github.com/repos/AlexsLemonade/scpca-portal
closed
Remove redundant `null=False` in model field definitions
Low Priority fif
### Problem or idea The Django model fields are non-nullable by default. ### Solution or next step Remove them from models, generate/apply migrations where necessery.
1.0
Remove redundant `null=False` in model field definitions - ### Problem or idea The Django model fields are non-nullable by default. ### Solution or next step Remove them from models, generate/apply migrations where necessery.
priority
remove redundant null false in model field definitions problem or idea the django model fields are non nullable by default solution or next step remove them from models generate apply migrations where necessery
1
378,811
11,209,051,603
IssuesEvent
2020-01-06 09:33:53
easystats/parameters
https://api.github.com/repos/easystats/parameters
closed
rescale design weights
low priority :sleeping: what's your opinion :revolving_hearts:
I re-implemented `sjstats::scale_weights()` here: https://easystats.github.io/parameters/reference/rescale_weights.html @DominiqueMakowski would you say this function makes sense in this package, or would you suggest moving it to another package?
1.0
rescale design weights - I re-implemented `sjstats::scale_weights()` here: https://easystats.github.io/parameters/reference/rescale_weights.html @DominiqueMakowski would you say this function makes sense in this package, or would you suggest moving it to another package?
priority
rescale design weights i re implemented sjstats scale weights here dominiquemakowski would you say this function makes sense in this package or would you suggest moving it to another package
1
740,116
25,737,352,244
IssuesEvent
2022-12-08 02:11:02
nativescript-vue/nativescript-vue
https://api.github.com/repos/nativescript-vue/nativescript-vue
closed
use plugin npm without plugin nativescript
priority:low V2
<!-- 🚨🚨 IMPORTANT 🚨🚨 Please use the following link to create a new issue: https://new-issue.nativescript-vue.org/?repo=nativescript-vue/nativescript-vue i want use this pkg https://github.com/runkids/vue2-timeago i try that but don't work --> i want use this pkg https://github.com/runkids/vue2-timeago i try that but don't work
1.0
use plugin npm without plugin nativescript - <!-- 🚨🚨 IMPORTANT 🚨🚨 Please use the following link to create a new issue: https://new-issue.nativescript-vue.org/?repo=nativescript-vue/nativescript-vue i want use this pkg https://github.com/runkids/vue2-timeago i try that but don't work --> i want use this pkg https://github.com/runkids/vue2-timeago i try that but don't work
priority
use plugin npm without plugin nativescript 🚨🚨 important 🚨🚨 please use the following link to create a new issue i want use this pkg i try that but don t work i want use this pkg i try that but don t work
1
813,629
30,464,302,498
IssuesEvent
2023-07-17 09:16:30
frequenz-floss/frequenz-sdk-python
https://api.github.com/repos/frequenz-floss/frequenz-sdk-python
closed
Bump the channels dependency to use 0.16.x
priority:low type:enhancement
### What's needed? There was a channels release and even when the SDK is not desperately needing to use the new version, users might need to. ### Proposed solution Bump the dependency and adapt the SDK code to work with the new channels release. ### Use cases _No response_ ### Alternatives and workarounds _No response_ ### Additional context _No response_
1.0
Bump the channels dependency to use 0.16.x - ### What's needed? There was a channels release and even when the SDK is not desperately needing to use the new version, users might need to. ### Proposed solution Bump the dependency and adapt the SDK code to work with the new channels release. ### Use cases _No response_ ### Alternatives and workarounds _No response_ ### Additional context _No response_
priority
bump the channels dependency to use x what s needed there was a channels release and even when the sdk is not desperately needing to use the new version users might need to proposed solution bump the dependency and adapt the sdk code to work with the new channels release use cases no response alternatives and workarounds no response additional context no response
1
122,850
4,846,218,927
IssuesEvent
2016-11-10 10:59:11
HBHWoolacotts/RPii
https://api.github.com/repos/HBHWoolacotts/RPii
closed
Address DB field too short - but allows you to enter more characters
FIXED - HBH Live Label: General RP Bugs and Support Priority - Low
This should be "Building 12" - you enter it and save, but it always reverts to Building 1. ![image](https://cloud.githubusercontent.com/assets/10868496/19438547/6e58d4c0-9472-11e6-9a00-74797b65e383.png)
1.0
Address DB field too short - but allows you to enter more characters - This should be "Building 12" - you enter it and save, but it always reverts to Building 1. ![image](https://cloud.githubusercontent.com/assets/10868496/19438547/6e58d4c0-9472-11e6-9a00-74797b65e383.png)
priority
address db field too short but allows you to enter more characters this should be building you enter it and save but it always reverts to building
1
471,907
13,612,939,203
IssuesEvent
2020-09-23 11:05:19
emory-libraries/ezpaarse-platforms
https://api.github.com/repos/emory-libraries/ezpaarse-platforms
closed
Latinobarometro Database
Add Parser Low Priority
### Example:star::star: : www.latinobarometro.org.proxy.library.emory.edu latinobarometro.com www.latinobarometro.com ### Priority: Low ### Subscriber (Library): Woodruff ### ezPAARSE Analysis: http://ang.couperin.org/platforms/to_be_completed/
1.0
Latinobarometro Database - ### Example:star::star: : www.latinobarometro.org.proxy.library.emory.edu latinobarometro.com www.latinobarometro.com ### Priority: Low ### Subscriber (Library): Woodruff ### ezPAARSE Analysis: http://ang.couperin.org/platforms/to_be_completed/
priority
latinobarometro database example star star latinobarometro com priority low subscriber library woodruff ezpaarse analysis
1
482,475
13,907,358,983
IssuesEvent
2020-10-20 12:31:19
theislab/cellrank
https://api.github.com/repos/theislab/cellrank
closed
Condition number for sparse matrices
enhancement low-priority
Currently, we use `np.linalg.cond` to get the condition number, which works only on dense matrices. Implement the approximation for sparse matrices as described in: https://github.com/sparse-condest/condest
1.0
Condition number for sparse matrices - Currently, we use `np.linalg.cond` to get the condition number, which works only on dense matrices. Implement the approximation for sparse matrices as described in: https://github.com/sparse-condest/condest
priority
condition number for sparse matrices currently we use np linalg cond to get the condition number which works only on dense matrices implement the approximation for sparse matrices as described in
1
129,260
5,093,317,963
IssuesEvent
2017-01-03 04:52:29
chaorace/cqui
https://api.github.com/repos/chaorace/cqui
opened
Clean up accumulated console prints
enhancement low priority
Over time many useless prints to console have found their way into CQUI, which is beginning to make debugging quite the chore! Useless prints to console need to be cleaned up wherever possible. For the most part, something should only be printed to console if something has gone considerably wrong.
1.0
Clean up accumulated console prints - Over time many useless prints to console have found their way into CQUI, which is beginning to make debugging quite the chore! Useless prints to console need to be cleaned up wherever possible. For the most part, something should only be printed to console if something has gone considerably wrong.
priority
clean up accumulated console prints over time many useless prints to console have found their way into cqui which is beginning to make debugging quite the chore useless prints to console need to be cleaned up wherever possible for the most part something should only be printed to console if something has gone considerably wrong
1
251,350
8,014,114,936
IssuesEvent
2018-07-25 04:33:25
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
zephyr.git/tests/net/mld/testcase.yaml#test :evalution failed
area: X86 bug priority: low
**_Reported by rahul kumar:_** This testcase failed is due to evalution failure. This Testcase evalution getting failed on the Board such as ma:x86 ,arduino101:x86 and qemu-zephyr-x86. As per [35.5]--testcase failure report is pasted below :- ``` Automated test run failed. Output (the target might have produced none; GDB will be needed at this point): build passed: 'mkdir -p /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run-170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard; rm -f /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/.run-170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard/.config' @/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git//app_zephyr.py:134 build passed: 'make -j -C /home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/net/mld/ EXTRA_CFLAGS="-Werror -Wno-error=deprecated-declarations" KCPPFLAGS=-DTC_RUNID=170831-1228-90:xacc BOARD=quark_se_c1000_devboard ARCH=x86 O=/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard initconfig' @/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/app_zephyr.py:176 build output: Using /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/boards/x86/quark_se_c1000_devboard/quark_se_c1000_devboard_defconfig as base build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/include/test.config build output: Merging prj.conf build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard/arc_target.conf build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/.run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard/boot_config.conf build output: # build output: # configuration written to .config build output: # build passed: 'make -j -C /home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/net/mld EXTRA_CFLAGS="-Werror -Wno-error=deprecated-declarations" KCPPFLAGS=-DTC_RUNID=170831-1228-90:xacc BOARD=quark_se_c1000_devboard ARCH=x86 O=/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run-170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/app_zephyr.py:206 rc build passed: 'mkdir -p /home/jenkins/workspace/zephyr-master-0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run-170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard; rm -f /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/.run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard/.config' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/cf.git/app_zephyr.py:134 rc build passed: 'make -j -C /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/booting/stub/ EXTRA_CFLAGS="-Werror -Wno-error=deprecated-declarations" KCPPFLAGS=-DTC_RUNID=170831-1228-90:xacc BOARD=quark_se_c1000_ss_devboard ARCH=arc O=/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard initconfig' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/app_zephyr.py:176 rc build output: Using /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/boards/arc/quark_se_c1000_ss_devboard/quark_se_c1000_ss_devboard_defconfig as base rc build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/include/test.config rc build output: Merging prj.conf rc build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/un170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard/arc_target.conf rc build output: Merging /home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard/boot_stub_config.conf rc build output: # rc build output: # configuration written to .config build output: # build passed: 'make -j -C /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/booting/stub EXTRA_CFLAGS="-Werror -Wno-error=deprecated-declarations" KCPPFLAGS=-DTC_RUNID=170831-1228-90:xacc BOARD=quark_se_c1000_ss_devboard ARCH=arc O=/home/jenkins/workspace/zephyr-master-0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard' @/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git//app_zephyr.py:206 @local build passed type:ma console output: PASS - mld_setup. console output: =================================================================== console output: starting test - join_group console output: console output: Assertion failed at /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/net/mld/src/main.c:208: join_group: Cannot join IPv6 multicast group (ret not equal to 0) console output: FAIL - join_group. console output: =================================================================== console output: starting test - leave_group console output: PASS - leave_group. console output: =================================================================== console output: starting test - catch_join_group console output: PASS - catch_join_group. console output: =================================================================== console output: starting test - catch_leave_group console output: PASS - catch_leave_group. console output: =================================================================== console output: starting test - verify_join_group console output: PASS - verify_join_group. console output: =================================================================== console output: starting test - verify_leave_group console output: PASS - verify_leave_group. console output: =================================================================== console output: starting test - catch_query console output: PASS - catch_query. console output: =================================================================== console output: starting test - verify_send_report console output: PASS - verify_send_report. console output: =================================================================== console output: starting test - test_allnodes console output: PASS - test_allnodes. console output: =================================================================== console output: starting test - test_soli_node console output: PASS - test_soli_node. console output: =================================================================== console output: =================================================================== console output: RunID: 170831-1228-90:xacc console output: PROJECT EXECUTION FAILED eval failed trace: Traceback (most recent call last): eval failed trace: File "/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/.git/tc.py", line 1478, in _decorated_fn eval failed trace: r = fn(*args, **kwargs) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 2971, in _method_run eval failed trace: return self.__method_trampoline_call(fname, fn, _type, targets) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 2927, in __method_trampoline_call eval failed trace: r = getattr(self, fname)(*targets) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc_zephyr_sanity.py", line 606, in eval eval failed trace: console = target.rt.get("console", None)) eval failed trace: File "/home/jenkins/workspace/zephyr-master-0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 995, in expect eval failed trace: self.testcase.expecter.run() console output: PROJECT EXECUTION FAILED eval failed trace: Traceback (most recent call last): eval failed trace: File "/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/.git/tc.py", line 1478, in _decorated_fn eval failed trace: r = fn(*args, **kwargs) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 2971, in _method_run eval failed trace: return self.__method_trampoline_call(fname, fn, _type, targets) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 2927, in __method_trampoline_call eval failed trace: r = getattr(self, fname)(*targets) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc_zephyr_sanity.py", line 606, in eval eval failed trace: console = target.rt.get("console", None)) eval failed trace: File "/home/jenkins/workspace/zephyr-master-0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 995, in expect eval failed trace: self.testcase.expecter.run() eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/expecter.py", line 255, in run eval failed trace: r = f(*args) eval failed trace: File "/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/expecter.py", line 451, in console_rx_eval eval failed trace: { 'target': target, "console output": of }) eval failed trace: failed_e: (u'found expected (for failure) `PROJECT EXECUTION FAILED` in console `srrsotc02/qc1000-03:default` at 1.59s', {'console output': <open file u'/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/eval-buffers-00-0/console-srrsotc02qc1000-03:8q6g-default.log', mode 'a+' at 0x7f4f781aadb0>, 'target': <tc.target_c object at 0x7f4f3818c1d0>}) evaluation failed type:ma clean passed: 'rm -rf /home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/app_zephyr.py:256 rc clean passed: 'rm -rf /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run1-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/app_zephyr.py:256 clean passed type:ma ``` (Imported from Jira ZEP-2589)
1.0
zephyr.git/tests/net/mld/testcase.yaml#test :evalution failed - **_Reported by rahul kumar:_** This testcase failed is due to evalution failure. This Testcase evalution getting failed on the Board such as ma:x86 ,arduino101:x86 and qemu-zephyr-x86. As per [35.5]--testcase failure report is pasted below :- ``` Automated test run failed. Output (the target might have produced none; GDB will be needed at this point): build passed: 'mkdir -p /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run-170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard; rm -f /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/.run-170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard/.config' @/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git//app_zephyr.py:134 build passed: 'make -j -C /home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/net/mld/ EXTRA_CFLAGS="-Werror -Wno-error=deprecated-declarations" KCPPFLAGS=-DTC_RUNID=170831-1228-90:xacc BOARD=quark_se_c1000_devboard ARCH=x86 O=/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard initconfig' @/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/app_zephyr.py:176 build output: Using /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/boards/x86/quark_se_c1000_devboard/quark_se_c1000_devboard_defconfig as base build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/include/test.config build output: Merging prj.conf build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard/arc_target.conf build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/.run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard/boot_config.conf build output: # build output: # configuration written to .config build output: # build passed: 'make -j -C /home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/net/mld EXTRA_CFLAGS="-Werror -Wno-error=deprecated-declarations" KCPPFLAGS=-DTC_RUNID=170831-1228-90:xacc BOARD=quark_se_c1000_devboard ARCH=x86 O=/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run-170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/app_zephyr.py:206 rc build passed: 'mkdir -p /home/jenkins/workspace/zephyr-master-0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run-170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard; rm -f /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/.run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard/.config' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/cf.git/app_zephyr.py:134 rc build passed: 'make -j -C /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/booting/stub/ EXTRA_CFLAGS="-Werror -Wno-error=deprecated-declarations" KCPPFLAGS=-DTC_RUNID=170831-1228-90:xacc BOARD=quark_se_c1000_ss_devboard ARCH=arc O=/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard initconfig' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/app_zephyr.py:176 rc build output: Using /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/boards/arc/quark_se_c1000_ss_devboard/quark_se_c1000_ss_devboard_defconfig as base rc build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/include/test.config rc build output: Merging prj.conf rc build output: Merging /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/un170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard/arc_target.conf rc build output: Merging /home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard/boot_stub_config.conf rc build output: # rc build output: # configuration written to .config build output: # build passed: 'make -j -C /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/booting/stub EXTRA_CFLAGS="-Werror -Wno-error=deprecated-declarations" KCPPFLAGS=-DTC_RUNID=170831-1228-90:xacc BOARD=quark_se_c1000_ss_devboard ARCH=arc O=/home/jenkins/workspace/zephyr-master-0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard' @/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git//app_zephyr.py:206 @local build passed type:ma console output: PASS - mld_setup. console output: =================================================================== console output: starting test - join_group console output: console output: Assertion failed at /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/zephyr.git/tests/net/mld/src/main.c:208: join_group: Cannot join IPv6 multicast group (ret not equal to 0) console output: FAIL - join_group. console output: =================================================================== console output: starting test - leave_group console output: PASS - leave_group. console output: =================================================================== console output: starting test - catch_join_group console output: PASS - catch_join_group. console output: =================================================================== console output: starting test - catch_leave_group console output: PASS - catch_leave_group. console output: =================================================================== console output: starting test - verify_join_group console output: PASS - verify_join_group. console output: =================================================================== console output: starting test - verify_leave_group console output: PASS - verify_leave_group. console output: =================================================================== console output: starting test - catch_query console output: PASS - catch_query. console output: =================================================================== console output: starting test - verify_send_report console output: PASS - verify_send_report. console output: =================================================================== console output: starting test - test_allnodes console output: PASS - test_allnodes. console output: =================================================================== console output: starting test - test_soli_node console output: PASS - test_soli_node. console output: =================================================================== console output: =================================================================== console output: RunID: 170831-1228-90:xacc console output: PROJECT EXECUTION FAILED eval failed trace: Traceback (most recent call last): eval failed trace: File "/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/.git/tc.py", line 1478, in _decorated_fn eval failed trace: r = fn(*args, **kwargs) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 2971, in _method_run eval failed trace: return self.__method_trampoline_call(fname, fn, _type, targets) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 2927, in __method_trampoline_call eval failed trace: r = getattr(self, fname)(*targets) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc_zephyr_sanity.py", line 606, in eval eval failed trace: console = target.rt.get("console", None)) eval failed trace: File "/home/jenkins/workspace/zephyr-master-0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 995, in expect eval failed trace: self.testcase.expecter.run() console output: PROJECT EXECUTION FAILED eval failed trace: Traceback (most recent call last): eval failed trace: File "/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/.git/tc.py", line 1478, in _decorated_fn eval failed trace: r = fn(*args, **kwargs) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 2971, in _method_run eval failed trace: return self.__method_trampoline_call(fname, fn, _type, targets) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 2927, in __method_trampoline_call eval failed trace: r = getattr(self, fname)(*targets) eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc_zephyr_sanity.py", line 606, in eval eval failed trace: console = target.rt.get("console", None)) eval failed trace: File "/home/jenkins/workspace/zephyr-master-0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/tc.py", line 995, in expect eval failed trace: self.testcase.expecter.run() eval failed trace: File "/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/expecter.py", line 255, in run eval failed trace: r = f(*args) eval failed trace: File "/home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/expecter.py", line 451, in console_rx_eval eval failed trace: { 'target': target, "console output": of }) eval failed trace: failed_e: (u'found expected (for failure) `PROJECT EXECUTION FAILED` in console `srrsotc02/qc1000-03:default` at 1.59s', {'console output': <open file u'/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/eval-buffers-00-0/console-srrsotc02qc1000-03:8q6g-default.log', mode 'a+' at 0x7f4f781aadb0>, 'target': <tc.target_c object at 0x7f4f3818c1d0>}) evaluation failed type:ma clean passed: 'rm -rf /home/jenkins/workspace/zephyr-master--v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run170831-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_devboard' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/git/app_zephyr.py:256 rc clean passed: 'rm -rf /home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/tmp/run1-1228-90-tKjlQW/8q6g/outdir-8q6g-xacc-quark_se_c1000_ss_devboard' @/home/jenkins/workspace/zephyr-master-v0.11-branch/LABEL/verify/SHARD/1-3/ZEPHYR_GCC_VARIANT/zephyr/app_zephyr.py:256 clean passed type:ma ``` (Imported from Jira ZEP-2589)
priority
zephyr git tests net mld testcase yaml test evalution failed reported by rahul kumar this testcase failed is due to evalution failure this testcase evalution getting failed on the board such as ma and qemu zephyr as per testcase failure report is pasted below automated test run failed output the target might have produced none gdb will be needed at this point build passed mkdir p home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp run tkjlqw outdir xacc quark se devboard rm f home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp run tkjlqw outdir xacc quark se devboard config home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git app zephyr py build passed make j c home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr zephyr git tests net mld extra cflags werror wno error deprecated declarations kcppflags dtc runid xacc board quark se devboard arch o home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se devboard initconfig home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git app zephyr py build output using home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr zephyr git boards quark se devboard quark se devboard defconfig as base build output merging home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr zephyr git tests include test config build output merging prj conf build output merging home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se devboard arc target conf build output merging home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se devboard boot config conf build output build output configuration written to config build output build passed make j c home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr zephyr git tests net mld extra cflags werror wno error deprecated declarations kcppflags dtc runid xacc board quark se devboard arch o home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp run tkjlqw outdir xacc quark se devboard home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git app zephyr py rc build passed mkdir p home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp run tkjlqw outdir xacc quark se ss devboard rm f home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se ss devboard config home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr cf git app zephyr py rc build passed make j c home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr zephyr git tests booting stub extra cflags werror wno error deprecated declarations kcppflags dtc runid xacc board quark se ss devboard arch arc o home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se ss devboard initconfig home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git app zephyr py rc build output using home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr zephyr git boards arc quark se ss devboard quark se ss devboard defconfig as base rc build output merging home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr zephyr git tests include test config rc build output merging prj conf rc build output merging home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se ss devboard arc target conf rc build output merging home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se ss devboard boot stub config conf rc build output rc build output configuration written to config build output build passed make j c home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr zephyr git tests booting stub extra cflags werror wno error deprecated declarations kcppflags dtc runid xacc board quark se ss devboard arch arc o home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se ss devboard home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git app zephyr py local build passed type ma console output pass mld setup console output console output starting test join group console output console output assertion failed at home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr zephyr git tests net mld src main c join group cannot join multicast group ret not equal to console output fail join group console output console output starting test leave group console output pass leave group console output console output starting test catch join group console output pass catch join group console output console output starting test catch leave group console output pass catch leave group console output console output starting test verify join group console output pass verify join group console output console output starting test verify leave group console output pass verify leave group console output console output starting test catch query console output pass catch query console output console output starting test verify send report console output pass verify send report console output console output starting test test allnodes console output pass test allnodes console output console output starting test test soli node console output pass test soli node console output console output console output runid xacc console output project execution failed eval failed trace traceback most recent call last eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc py line in decorated fn eval failed trace r fn args kwargs eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc py line in method run eval failed trace return self method trampoline call fname fn type targets eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc py line in method trampoline call eval failed trace r getattr self fname targets eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc zephyr sanity py line in eval eval failed trace console target rt get console none eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc py line in expect eval failed trace self testcase expecter run console output project execution failed eval failed trace traceback most recent call last eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc py line in decorated fn eval failed trace r fn args kwargs eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc py line in method run eval failed trace return self method trampoline call fname fn type targets eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc py line in method trampoline call eval failed trace r getattr self fname targets eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc zephyr sanity py line in eval eval failed trace console target rt get console none eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git tc py line in expect eval failed trace self testcase expecter run eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git expecter py line in run eval failed trace r f args eval failed trace file home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git expecter py line in console rx eval eval failed trace target target console output of eval failed trace failed e u found expected for failure project execution failed in console default at console output target evaluation failed type ma clean passed rm rf home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se devboard home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr git app zephyr py rc clean passed rm rf home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr tmp tkjlqw outdir xacc quark se ss devboard home jenkins workspace zephyr master branch label verify shard zephyr gcc variant zephyr app zephyr py clean passed type ma imported from jira zep
1
412,092
12,035,210,507
IssuesEvent
2020-04-13 17:28:20
InfiniteFlightAirportEditing/Airports
https://api.github.com/repos/InfiniteFlightAirportEditing/Airports
closed
LFCK-Castres/Mazamet Airport-AQUITAINE-FRANCE
Being Redone Low Priority
# Airport Name Castres-Mazamet # Country? France # Improvements that need to be made? complete rework # Are you working on this airport? yes # Airport Priority? (IF Event, 10000ft+ Runway, World/US Capital, Low) low
1.0
LFCK-Castres/Mazamet Airport-AQUITAINE-FRANCE - # Airport Name Castres-Mazamet # Country? France # Improvements that need to be made? complete rework # Are you working on this airport? yes # Airport Priority? (IF Event, 10000ft+ Runway, World/US Capital, Low) low
priority
lfck castres mazamet airport aquitaine france airport name castres mazamet country france improvements that need to be made complete rework are you working on this airport yes airport priority if event runway world us capital low low
1
73,458
3,412,334,141
IssuesEvent
2015-12-05 20:17:51
peli0451/arcactus
https://api.github.com/repos/peli0451/arcactus
closed
Power-Up Prefab erstellen
priority:low type:feature
Unity-Prefab für Power-Up erstellen mit entsprechenden Script. Übergabe der einzelnen Effekte der Power-Ups zum Player implementieren
1.0
Power-Up Prefab erstellen - Unity-Prefab für Power-Up erstellen mit entsprechenden Script. Übergabe der einzelnen Effekte der Power-Ups zum Player implementieren
priority
power up prefab erstellen unity prefab für power up erstellen mit entsprechenden script übergabe der einzelnen effekte der power ups zum player implementieren
1
385,100
11,412,533,649
IssuesEvent
2020-02-01 13:51:50
DragonHeart000/ModernWarfareBugs
https://api.github.com/repos/DragonHeart000/ModernWarfareBugs
opened
Texture on Grazna Raid clipping
Game Type: Multiplayer Issue Type (map): Texture Map: Grazna Raid Priority: Low Type: Map
**Summary** There is a texture on Grazna Raid that is clipping with another texture. **Steps to Reproduce** Steps to reproduce the behavior: 1. Go to the location shown on the radar 2. Head to the second floor 3. Look at the structure next to you from the hole in the building. 4. There will be a texture clipping with another. **Expected behavior** For there to only be one texture there. **Actual results** The textures clip and it switches between the two. **Screenshots** Location (radar): ![map for texture](https://user-images.githubusercontent.com/31231968/73591233-ab2d6300-44b1-11ea-8cad-01ed589fb011.PNG) Texture ![messed up texture](https://user-images.githubusercontent.com/31231968/73591234-ad8fbd00-44b1-11ea-8d93-b2286b133715.PNG) Close up: ![close up](https://user-images.githubusercontent.com/31231968/73591251-e891f080-44b1-11ea-8cd1-5448aa615c54.PNG) [Video link (shows it the best)](https://i.gyazo.com/dfcfa1baeb231621c716bebd99a5ae54.mp4) **System info** - System: PC - Computer specs: Windows 10 i7-6700k GTX 1080 Asus Maximus viii hero - Game version 1.13.0 **Additional context** Texture quality does not change the outcome. Video link shows the issue the best
1.0
Texture on Grazna Raid clipping - **Summary** There is a texture on Grazna Raid that is clipping with another texture. **Steps to Reproduce** Steps to reproduce the behavior: 1. Go to the location shown on the radar 2. Head to the second floor 3. Look at the structure next to you from the hole in the building. 4. There will be a texture clipping with another. **Expected behavior** For there to only be one texture there. **Actual results** The textures clip and it switches between the two. **Screenshots** Location (radar): ![map for texture](https://user-images.githubusercontent.com/31231968/73591233-ab2d6300-44b1-11ea-8cad-01ed589fb011.PNG) Texture ![messed up texture](https://user-images.githubusercontent.com/31231968/73591234-ad8fbd00-44b1-11ea-8d93-b2286b133715.PNG) Close up: ![close up](https://user-images.githubusercontent.com/31231968/73591251-e891f080-44b1-11ea-8cd1-5448aa615c54.PNG) [Video link (shows it the best)](https://i.gyazo.com/dfcfa1baeb231621c716bebd99a5ae54.mp4) **System info** - System: PC - Computer specs: Windows 10 i7-6700k GTX 1080 Asus Maximus viii hero - Game version 1.13.0 **Additional context** Texture quality does not change the outcome. Video link shows the issue the best
priority
texture on grazna raid clipping summary there is a texture on grazna raid that is clipping with another texture steps to reproduce steps to reproduce the behavior go to the location shown on the radar head to the second floor look at the structure next to you from the hole in the building there will be a texture clipping with another expected behavior for there to only be one texture there actual results the textures clip and it switches between the two screenshots location radar texture close up system info system pc computer specs windows gtx asus maximus viii hero game version additional context texture quality does not change the outcome video link shows the issue the best
1
299,913
9,205,966,243
IssuesEvent
2019-03-08 12:15:58
qissue-bot/QGIS
https://api.github.com/repos/qissue-bot/QGIS
closed
crash due to an unhandled GEOSException
Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report
--- Author Name: **Maciej Sieczka -** (Maciej Sieczka -) Original Redmine Issue: 1268, https://issues.qgis.org/issues/1268 Original Assignee: nobody - --- QGIS trunk r9243, GEOS 3.0.0, QT 4.4.0, Debian testing amd64. While zooming around my various data (shapefiles and an SRTM in the original hgt format) QGIS crashed out of sudden, saying in it's last lines of output: ``` Warning: QString::arg: Argument missing: GEOS exception encountered: , <³\Zó Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsgeometry.cpp: 70: (throwGEOSException) GEOS exception encountered: Warning: Qt has caught an exception thrown from an event handler. Throwing exceptions from an event handler is not supported in Qt. You must reimplement QApplication::notify() and catch all exceptions there. terminate called after throwing an instance of 'GEOSException' Aborted ``` Some more context before the crash: ``` Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 283: (render) Scale dep. visibility enabled? 0 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 284: (render) Input extent: -13638896.6873203646391630,-10303222.4935561791062355 : 5769681.5712591772899032,7573984.2448347210884094 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaplayer.cpp: 323: (connectNotify) [[QgsMapLayer]] connected to 2drawingProgress(int,int) Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgscoordinatetransform.cpp: 360: (transformBoundingBox) Entering transformBoundingBox... Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgscoordinatetransform.cpp: 407: (transformBoundingBox) Projected extent: 495968.1790201322291978,278782.9114470463246107 : 496785.5263534721452743,279693.5328877875581384 Debug: /home/shoofi/src/straight/qgis-trunk/src/providers/ogr/qgsogrprovider.cpp: 360: (select) Setting spatial filter using POLYGON((495968.17902013 278782.91144705, 495968.17902013 279693.53288779, 496785.52635347 279693.53288779, 496785.52635347 278782.91144705, 495968.17902013 278782.91144705)) Debug: /home/shoofi/src/straight/qgis-trunk/src/providers/ogr/qgsogrprovider.cpp: 323: (getNextFeature) Feature is null Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 261: (render) Rendering at layer item Data_layer20080902165046458 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 269: (render) If there is a QPaintEngine error here, it is caused by an emit call Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaplayer.cpp: 107: (name) returning name 'Data layer' Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 280: (render) Rendering layer Data layer Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 281: (render) Layer minscale 1 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 282: (render) Layer maxscale 1e+08 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 283: (render) Scale dep. visibility enabled? 0 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 284: (render) Input extent: -0.1500000000000000,-0.1500000000000000 : 236790.2799999999988358,883500.0000000000000000 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaplayer.cpp: 323: (connectNotify) [[QgsMapLayer]] connected to 2drawingProgress(int,int) Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgscoordinatetransform.cpp: 360: (transformBoundingBox) Entering transformBoundingBox... Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgscoordinatetransform.cpp: 407: (transformBoundingBox) Projected extent: 236053.6784320765582379,882728.7364222751930356 : 236871.0813827015517745,883639.5299752112478018 Debug: /home/shoofi/src/straight/qgis-trunk/src/providers/ogr/qgsogrprovider.cpp: 360: (select) Setting spatial filter using POLYGON((236053.67843208 882728.73642228, 236053.67843208 883639.52997521, 236871.08138270 883639.52997521, 236871.08138270 882728.73642228, 236053.67843208 882728.73642228)) Warning: QString::arg: Argument missing: GEOS exception encountered: , <³\Zó Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsgeometry.cpp: 70: (throwGEOSException) GEOS exception encountered: Warning: Qt has caught an exception thrown from an event handler. Throwing exceptions from an event handler is not supported in Qt. You must reimplement QApplication::notify() and catch all exceptions there. terminate called after throwing an instance of 'GEOSException' Aborted ``` --- - [ewid.zip](https://issues.qgis.org/attachments/download/2119/ewid.zip) (Maciej Sieczka -)
1.0
crash due to an unhandled GEOSException - --- Author Name: **Maciej Sieczka -** (Maciej Sieczka -) Original Redmine Issue: 1268, https://issues.qgis.org/issues/1268 Original Assignee: nobody - --- QGIS trunk r9243, GEOS 3.0.0, QT 4.4.0, Debian testing amd64. While zooming around my various data (shapefiles and an SRTM in the original hgt format) QGIS crashed out of sudden, saying in it's last lines of output: ``` Warning: QString::arg: Argument missing: GEOS exception encountered: , <³\Zó Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsgeometry.cpp: 70: (throwGEOSException) GEOS exception encountered: Warning: Qt has caught an exception thrown from an event handler. Throwing exceptions from an event handler is not supported in Qt. You must reimplement QApplication::notify() and catch all exceptions there. terminate called after throwing an instance of 'GEOSException' Aborted ``` Some more context before the crash: ``` Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 283: (render) Scale dep. visibility enabled? 0 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 284: (render) Input extent: -13638896.6873203646391630,-10303222.4935561791062355 : 5769681.5712591772899032,7573984.2448347210884094 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaplayer.cpp: 323: (connectNotify) [[QgsMapLayer]] connected to 2drawingProgress(int,int) Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgscoordinatetransform.cpp: 360: (transformBoundingBox) Entering transformBoundingBox... Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgscoordinatetransform.cpp: 407: (transformBoundingBox) Projected extent: 495968.1790201322291978,278782.9114470463246107 : 496785.5263534721452743,279693.5328877875581384 Debug: /home/shoofi/src/straight/qgis-trunk/src/providers/ogr/qgsogrprovider.cpp: 360: (select) Setting spatial filter using POLYGON((495968.17902013 278782.91144705, 495968.17902013 279693.53288779, 496785.52635347 279693.53288779, 496785.52635347 278782.91144705, 495968.17902013 278782.91144705)) Debug: /home/shoofi/src/straight/qgis-trunk/src/providers/ogr/qgsogrprovider.cpp: 323: (getNextFeature) Feature is null Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 261: (render) Rendering at layer item Data_layer20080902165046458 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 269: (render) If there is a QPaintEngine error here, it is caused by an emit call Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaplayer.cpp: 107: (name) returning name 'Data layer' Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 280: (render) Rendering layer Data layer Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 281: (render) Layer minscale 1 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 282: (render) Layer maxscale 1e+08 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 283: (render) Scale dep. visibility enabled? 0 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaprenderer.cpp: 284: (render) Input extent: -0.1500000000000000,-0.1500000000000000 : 236790.2799999999988358,883500.0000000000000000 Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsmaplayer.cpp: 323: (connectNotify) [[QgsMapLayer]] connected to 2drawingProgress(int,int) Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgscoordinatetransform.cpp: 360: (transformBoundingBox) Entering transformBoundingBox... Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgscoordinatetransform.cpp: 407: (transformBoundingBox) Projected extent: 236053.6784320765582379,882728.7364222751930356 : 236871.0813827015517745,883639.5299752112478018 Debug: /home/shoofi/src/straight/qgis-trunk/src/providers/ogr/qgsogrprovider.cpp: 360: (select) Setting spatial filter using POLYGON((236053.67843208 882728.73642228, 236053.67843208 883639.52997521, 236871.08138270 883639.52997521, 236871.08138270 882728.73642228, 236053.67843208 882728.73642228)) Warning: QString::arg: Argument missing: GEOS exception encountered: , <³\Zó Debug: /home/shoofi/src/straight/qgis-trunk/src/core/qgsgeometry.cpp: 70: (throwGEOSException) GEOS exception encountered: Warning: Qt has caught an exception thrown from an event handler. Throwing exceptions from an event handler is not supported in Qt. You must reimplement QApplication::notify() and catch all exceptions there. terminate called after throwing an instance of 'GEOSException' Aborted ``` --- - [ewid.zip](https://issues.qgis.org/attachments/download/2119/ewid.zip) (Maciej Sieczka -)
priority
crash due to an unhandled geosexception author name maciej sieczka maciej sieczka original redmine issue original assignee nobody qgis trunk geos qt debian testing while zooming around my various data shapefiles and an srtm in the original hgt format qgis crashed out of sudden saying in it s last lines of output warning qstring arg argument missing geos exception encountered  ³ zó debug home shoofi src straight qgis trunk src core qgsgeometry cpp throwgeosexception geos exception encountered warning qt has caught an exception thrown from an event handler throwing exceptions from an event handler is not supported in qt you must reimplement qapplication notify and catch all exceptions there terminate called after throwing an instance of geosexception aborted some more context before the crash debug home shoofi src straight qgis trunk src core qgsmaprenderer cpp render scale dep visibility enabled debug home shoofi src straight qgis trunk src core qgsmaprenderer cpp render input extent debug home shoofi src straight qgis trunk src core qgsmaplayer cpp connectnotify connected to int int debug home shoofi src straight qgis trunk src core qgscoordinatetransform cpp transformboundingbox entering transformboundingbox debug home shoofi src straight qgis trunk src core qgscoordinatetransform cpp transformboundingbox projected extent debug home shoofi src straight qgis trunk src providers ogr qgsogrprovider cpp select setting spatial filter using polygon debug home shoofi src straight qgis trunk src providers ogr qgsogrprovider cpp getnextfeature feature is null debug home shoofi src straight qgis trunk src core qgsmaprenderer cpp render rendering at layer item data debug home shoofi src straight qgis trunk src core qgsmaprenderer cpp render if there is a qpaintengine error here it is caused by an emit call debug home shoofi src straight qgis trunk src core qgsmaplayer cpp name returning name data layer debug home shoofi src straight qgis trunk src core qgsmaprenderer cpp render rendering layer data layer debug home shoofi src straight qgis trunk src core qgsmaprenderer cpp render layer minscale debug home shoofi src straight qgis trunk src core qgsmaprenderer cpp render layer maxscale debug home shoofi src straight qgis trunk src core qgsmaprenderer cpp render scale dep visibility enabled debug home shoofi src straight qgis trunk src core qgsmaprenderer cpp render input extent debug home shoofi src straight qgis trunk src core qgsmaplayer cpp connectnotify connected to int int debug home shoofi src straight qgis trunk src core qgscoordinatetransform cpp transformboundingbox entering transformboundingbox debug home shoofi src straight qgis trunk src core qgscoordinatetransform cpp transformboundingbox projected extent debug home shoofi src straight qgis trunk src providers ogr qgsogrprovider cpp select setting spatial filter using polygon warning qstring arg argument missing geos exception encountered  ³ zó debug home shoofi src straight qgis trunk src core qgsgeometry cpp throwgeosexception geos exception encountered warning qt has caught an exception thrown from an event handler throwing exceptions from an event handler is not supported in qt you must reimplement qapplication notify and catch all exceptions there terminate called after throwing an instance of geosexception aborted maciej sieczka
1
814,633
30,515,192,636
IssuesEvent
2023-07-19 01:59:31
codersforcauses/csf
https://api.github.com/repos/codersforcauses/csf
closed
Improve website accessibility score
enhancement frontend diffculty::easy priority::low
## Basic Information From looking at lighthouse in the browser devtools our accessibility score is not great We need to add aria and role attributes to elements https://vuetifyjs.com/en/features/accessibility/ <img width="579" alt="Screen Shot 2023-07-10 at 1 31 00 pm" src="https://github.com/codersforcauses/csf/assets/45170409/2969108c-dbce-4890-8689-cd6d4533cfee">
1.0
Improve website accessibility score - ## Basic Information From looking at lighthouse in the browser devtools our accessibility score is not great We need to add aria and role attributes to elements https://vuetifyjs.com/en/features/accessibility/ <img width="579" alt="Screen Shot 2023-07-10 at 1 31 00 pm" src="https://github.com/codersforcauses/csf/assets/45170409/2969108c-dbce-4890-8689-cd6d4533cfee">
priority
improve website accessibility score basic information from looking at lighthouse in the browser devtools our accessibility score is not great we need to add aria and role attributes to elements img width alt screen shot at pm src
1
133,950
5,217,562,752
IssuesEvent
2017-01-26 14:17:41
ngageoint/hootenanny
https://api.github.com/repos/ngageoint/hootenanny
closed
Improve test coverage for filters
Category: Core Priority: Low Type: Task
There may not necessarily need to be a unit test for every filter, but current test coverage should be evaluated using the code coverage report and increased if deemed necessary. See existing tests for an example. Relevant code: hoot/core/filters
1.0
Improve test coverage for filters - There may not necessarily need to be a unit test for every filter, but current test coverage should be evaluated using the code coverage report and increased if deemed necessary. See existing tests for an example. Relevant code: hoot/core/filters
priority
improve test coverage for filters there may not necessarily need to be a unit test for every filter but current test coverage should be evaluated using the code coverage report and increased if deemed necessary see existing tests for an example relevant code hoot core filters
1
502,768
14,566,592,887
IssuesEvent
2020-12-17 09:07:13
epiphany-platform/m-aws-basic-infrastructure
https://api.github.com/repos/epiphany-platform/m-aws-basic-infrastructure
closed
[BUG] Resource names are not displayed on AWS.
priority/low type/bug
**Describe the bug** Resource names are not displayed on AWS. The `Name` field is empty, which is different from the classic Epiphany. **How to reproduce** Steps to reproduce the behavior: 1. Deploy the awsbi module. 2. Check resource names on AWS (Instance name, VPC name, subnet name...) **Expected behavior** The names are displayed correctly in the list. **Actual behavior** The name field is empty. ![image](https://user-images.githubusercontent.com/43173646/102191455-b5820100-3eb9-11eb-9223-a7e83ac239f6.png) ![image](https://user-images.githubusercontent.com/43173646/102191494-c7fc3a80-3eb9-11eb-91a7-c869d0b08bc2.png) ![image](https://user-images.githubusercontent.com/43173646/102191552-dc403780-3eb9-11eb-8b7d-08daaebf84e7.png)
1.0
[BUG] Resource names are not displayed on AWS. - **Describe the bug** Resource names are not displayed on AWS. The `Name` field is empty, which is different from the classic Epiphany. **How to reproduce** Steps to reproduce the behavior: 1. Deploy the awsbi module. 2. Check resource names on AWS (Instance name, VPC name, subnet name...) **Expected behavior** The names are displayed correctly in the list. **Actual behavior** The name field is empty. ![image](https://user-images.githubusercontent.com/43173646/102191455-b5820100-3eb9-11eb-9223-a7e83ac239f6.png) ![image](https://user-images.githubusercontent.com/43173646/102191494-c7fc3a80-3eb9-11eb-91a7-c869d0b08bc2.png) ![image](https://user-images.githubusercontent.com/43173646/102191552-dc403780-3eb9-11eb-8b7d-08daaebf84e7.png)
priority
resource names are not displayed on aws describe the bug resource names are not displayed on aws the name field is empty which is different from the classic epiphany how to reproduce steps to reproduce the behavior deploy the awsbi module check resource names on aws instance name vpc name subnet name expected behavior the names are displayed correctly in the list actual behavior the name field is empty
1
770,497
27,042,251,473
IssuesEvent
2023-02-13 06:47:56
sunpy/sunkit-image
https://api.github.com/repos/sunpy/sunkit-image
reopened
Declass ASDA
Effort High Feature Request Package Novice Priority Low
When pull request #40 is merged in, it would be worthwhile to declass the code into a series of functions.
1.0
Declass ASDA - When pull request #40 is merged in, it would be worthwhile to declass the code into a series of functions.
priority
declass asda when pull request is merged in it would be worthwhile to declass the code into a series of functions
1
184,648
6,714,978,172
IssuesEvent
2017-10-13 19:07:09
opentraffic/analyst-ui
https://api.github.com/repos/opentraffic/analyst-ui
closed
region picker UI: provide a way to lock bounds and location
low priority
to prevent accidentally moving it around (e.g. during map drag) which creates an expensive re-render of data
1.0
region picker UI: provide a way to lock bounds and location - to prevent accidentally moving it around (e.g. during map drag) which creates an expensive re-render of data
priority
region picker ui provide a way to lock bounds and location to prevent accidentally moving it around e g during map drag which creates an expensive re render of data
1
725,769
24,975,294,825
IssuesEvent
2022-11-02 07:09:22
pixiebrix/pixiebrix-extension
https://api.github.com/repos/pixiebrix/pixiebrix-extension
closed
AddBlockModal: Area rounding errors lead to nested scrollbars
low priority page editor papercut
The modal usually looks fine: <img width="635" alt="Screen Shot 8" src="https://user-images.githubusercontent.com/1402241/197321011-15f6652d-48fd-4b7d-a1bd-2da1b6b2bfd7.png"> But at specific sizes it shows scrollbars, for example at exactly 940px (`window.innerWidth === 940`) <img width="635" alt="Screen Shot 6" src="https://user-images.githubusercontent.com/1402241/197320869-312cf771-f6e0-45c1-ad47-352851587df6.png">
1.0
AddBlockModal: Area rounding errors lead to nested scrollbars - The modal usually looks fine: <img width="635" alt="Screen Shot 8" src="https://user-images.githubusercontent.com/1402241/197321011-15f6652d-48fd-4b7d-a1bd-2da1b6b2bfd7.png"> But at specific sizes it shows scrollbars, for example at exactly 940px (`window.innerWidth === 940`) <img width="635" alt="Screen Shot 6" src="https://user-images.githubusercontent.com/1402241/197320869-312cf771-f6e0-45c1-ad47-352851587df6.png">
priority
addblockmodal area rounding errors lead to nested scrollbars the modal usually looks fine img width alt screen shot src but at specific sizes it shows scrollbars for example at exactly window innerwidth img width alt screen shot src
1
798,258
28,241,263,823
IssuesEvent
2023-04-06 07:22:03
CodeforHawaii/HIERR
https://api.github.com/repos/CodeforHawaii/HIERR
closed
Add onHover popup to census tract map with additional information
enhancement Low Priority
At the moment, the user cannot see any information about the census tract that they're hovering over. This task would be to add a pop-up that displays additional information such as the name and number of the census tract.
1.0
Add onHover popup to census tract map with additional information - At the moment, the user cannot see any information about the census tract that they're hovering over. This task would be to add a pop-up that displays additional information such as the name and number of the census tract.
priority
add onhover popup to census tract map with additional information at the moment the user cannot see any information about the census tract that they re hovering over this task would be to add a pop up that displays additional information such as the name and number of the census tract
1
413,363
12,066,050,856
IssuesEvent
2020-04-16 11:03:36
level73/Monithon
https://api.github.com/repos/level73/Monithon
closed
Salvando il report senza allegati dà "Errore nel caricamento del file. File non salvato. [650]".
Priority: Low
C'è chi si inquieta e ci scrive
1.0
Salvando il report senza allegati dà "Errore nel caricamento del file. File non salvato. [650]". - C'è chi si inquieta e ci scrive
priority
salvando il report senza allegati dà errore nel caricamento del file file non salvato c è chi si inquieta e ci scrive
1
452,651
13,057,535,206
IssuesEvent
2020-07-30 07:31:11
ntop/ntopng
https://api.github.com/repos/ntop/ntopng
opened
[pools] Remove hardcoded "Default"
low-priority bug priority ticket user interface
Two "Default" pools now show up in the host and mac cog page ![image](https://user-images.githubusercontent.com/3397663/88893817-344a0a80-d247-11ea-82d4-fa19d0ea7976.png) ![image](https://user-images.githubusercontent.com/3397663/88893852-41ff9000-d247-11ea-9334-d2b06b433ea8.png) It is requested to remove the "hardcoded" "Default" pool. With the current implementation, the "Default" pool is returned automatically from the lua pool classes so there's no need to handle it as an exception.
2.0
[pools] Remove hardcoded "Default" - Two "Default" pools now show up in the host and mac cog page ![image](https://user-images.githubusercontent.com/3397663/88893817-344a0a80-d247-11ea-82d4-fa19d0ea7976.png) ![image](https://user-images.githubusercontent.com/3397663/88893852-41ff9000-d247-11ea-9334-d2b06b433ea8.png) It is requested to remove the "hardcoded" "Default" pool. With the current implementation, the "Default" pool is returned automatically from the lua pool classes so there's no need to handle it as an exception.
priority
remove hardcoded default two default pools now show up in the host and mac cog page it is requested to remove the hardcoded default pool with the current implementation the default pool is returned automatically from the lua pool classes so there s no need to handle it as an exception
1
459,663
13,196,639,036
IssuesEvent
2020-08-13 21:04:30
department-of-veterans-affairs/caseflow
https://api.github.com/repos/department-of-veterans-affairs/caseflow
opened
Consolidate RESET_VIRTUAL_HEARING and RESET actions in HearingsFormContext reducer
Priority: Low Product: caseflow-hearings Team: Tango 💃 Type: Tech-Improvement
## Description Follow up ticket to consolidate `RESET_VIRTUAL_HEARING` and `RESET` actions into the `RESET` action See comment for more info: https://github.com/department-of-veterans-affairs/caseflow/pull/14944#discussion_r470227775 ## Acceptance criteria - [ ] Update documentation: [link] ## Background/context/resources ## Technical notes
1.0
Consolidate RESET_VIRTUAL_HEARING and RESET actions in HearingsFormContext reducer - ## Description Follow up ticket to consolidate `RESET_VIRTUAL_HEARING` and `RESET` actions into the `RESET` action See comment for more info: https://github.com/department-of-veterans-affairs/caseflow/pull/14944#discussion_r470227775 ## Acceptance criteria - [ ] Update documentation: [link] ## Background/context/resources ## Technical notes
priority
consolidate reset virtual hearing and reset actions in hearingsformcontext reducer description follow up ticket to consolidate reset virtual hearing and reset actions into the reset action see comment for more info acceptance criteria update documentation background context resources technical notes
1
36,476
2,799,785,432
IssuesEvent
2015-05-13 04:35:12
afollestad/cabinet-issue-tracker
https://api.github.com/repos/afollestad/cabinet-issue-tracker
closed
Save files to SD Card when shared from apps
enhancement low priority
Hi there! ES File Explorer provides a way to save a file directly to the SD card via "ES Save to...." option in the share menu. It would be great if Cabinet did the same! Here's how it looks: ![ES Save to... example](https://cloud.githubusercontent.com/assets/3627736/7557798/cbe3f4cc-f765-11e4-9b8d-51174eaec968.png) How does it work? Well that' simple: I decided to share an audio file from Whatsapp to an external app and then the option to save it to the SD card presented itself. When the "ES Save to..." option is selected ES File Explorer opens and asks where the file should be saved. I find it incredibly useful and would love to see it on Cabinet. Have a great day =)
1.0
Save files to SD Card when shared from apps - Hi there! ES File Explorer provides a way to save a file directly to the SD card via "ES Save to...." option in the share menu. It would be great if Cabinet did the same! Here's how it looks: ![ES Save to... example](https://cloud.githubusercontent.com/assets/3627736/7557798/cbe3f4cc-f765-11e4-9b8d-51174eaec968.png) How does it work? Well that' simple: I decided to share an audio file from Whatsapp to an external app and then the option to save it to the SD card presented itself. When the "ES Save to..." option is selected ES File Explorer opens and asks where the file should be saved. I find it incredibly useful and would love to see it on Cabinet. Have a great day =)
priority
save files to sd card when shared from apps hi there es file explorer provides a way to save a file directly to the sd card via es save to option in the share menu it would be great if cabinet did the same here s how it looks how does it work well that simple i decided to share an audio file from whatsapp to an external app and then the option to save it to the sd card presented itself when the es save to option is selected es file explorer opens and asks where the file should be saved i find it incredibly useful and would love to see it on cabinet have a great day
1
247,819
7,923,994,905
IssuesEvent
2018-07-05 15:33:36
Vhoyon/Discord-Bot
https://api.github.com/repos/Vhoyon/Discord-Bot
closed
Add an CharText setting field to allow for settings that requires a char
Feature Request: Framework Priority: Low settings
It could very well extends from #94 and actually automatically add the options for `minLength` and `maxLegth` to both **`1`**. This way, only a String of 1 char will be returned by the sanitization and we will get the result we want. I'll see if we should return a `char` object instead though... This issue would help #84 because a setting to change the parameter will be added (#76), but only one char will be accepted. As such, a `TextCharField` SettingField would be perfect for such a task.
1.0
Add an CharText setting field to allow for settings that requires a char - It could very well extends from #94 and actually automatically add the options for `minLength` and `maxLegth` to both **`1`**. This way, only a String of 1 char will be returned by the sanitization and we will get the result we want. I'll see if we should return a `char` object instead though... This issue would help #84 because a setting to change the parameter will be added (#76), but only one char will be accepted. As such, a `TextCharField` SettingField would be perfect for such a task.
priority
add an chartext setting field to allow for settings that requires a char it could very well extends from and actually automatically add the options for minlength and maxlegth to both this way only a string of char will be returned by the sanitization and we will get the result we want i ll see if we should return a char object instead though this issue would help because a setting to change the parameter will be added but only one char will be accepted as such a textcharfield settingfield would be perfect for such a task
1
785,879
27,626,743,005
IssuesEvent
2023-03-10 07:34:01
rism-digital/verovio
https://api.github.com/repos/rism-digital/verovio
closed
Option values not shown in help when default is equal to either min or max
bug low priority
In the command-line documentation summary for verovio, the `--beam-min-slope` option is described: ``` --beam-min-slope <i> The minimum beam slope ``` Preferably the default, min and max value for the integer operand, similar to the `--beam-max-slope`: ``` --beam-max-slope <i> The maximum beam slope (default: 10; min: 0; max: 20) ``` In options.cpp: ```cpp m_beamMinSlope.SetInfo("Beam min slope", "The minimum beam slope"); m_beamMinSlope.Init(0, 0, 0); this->Register(&m_beamMinSlope, "beamMinSlope", &m_generalLayout); ``` What does a default value of 0, min of 0 and max of 0 mean (probably hardwired to 0). Is there a need for this option?
1.0
Option values not shown in help when default is equal to either min or max - In the command-line documentation summary for verovio, the `--beam-min-slope` option is described: ``` --beam-min-slope <i> The minimum beam slope ``` Preferably the default, min and max value for the integer operand, similar to the `--beam-max-slope`: ``` --beam-max-slope <i> The maximum beam slope (default: 10; min: 0; max: 20) ``` In options.cpp: ```cpp m_beamMinSlope.SetInfo("Beam min slope", "The minimum beam slope"); m_beamMinSlope.Init(0, 0, 0); this->Register(&m_beamMinSlope, "beamMinSlope", &m_generalLayout); ``` What does a default value of 0, min of 0 and max of 0 mean (probably hardwired to 0). Is there a need for this option?
priority
option values not shown in help when default is equal to either min or max in the command line documentation summary for verovio the beam min slope option is described beam min slope the minimum beam slope preferably the default min and max value for the integer operand similar to the beam max slope beam max slope the maximum beam slope default min max in options cpp cpp m beamminslope setinfo beam min slope the minimum beam slope m beamminslope init this register m beamminslope beamminslope m generallayout what does a default value of min of and max of mean probably hardwired to is there a need for this option
1
766,173
26,873,643,271
IssuesEvent
2023-02-04 19:31:09
ita-social-projects/TeachUA
https://api.github.com/repos/ita-social-projects/TeachUA
opened
['Додати завдання'] an error should display 'Поле 'Опис' може містити ...' text when enter not enough symbols to the 'Опис' field, but shows only exklamation mark
bug Frontend UI Priority: Low Actual
**Environment:** OS: Windows 10 Home x64, Browser: Google Chrome 109.0.5414.119 **Reproducible:** always **Steps to reproduce** 1. Go to https://speak-ukrainian.org.ua/dev 2. Log in as admin ('Емейл' = 'admin@gmail.com', 'Пароль' = 'admin') 3. Click on User's icon in the right upper corner 4. Choose 'Контент' then 'Челенджі' and then 'Завдання' 5. Press 'Додати Завдання' on the page opened 6. Complete all the fields, but 'Опис' with valid data: - Choose the date into 'Дата початку' field - Upload the image into 'Фото' field - Enter valid data into 'Назва' field - Enter valid data into 'Заголовок' field - Choose the challenge in dropdown list on the 'Челендж' field 7. Enter less than 40 characters into 'Опис' field, e.g. 39. 8. Click on the 'Зберегти' button **Actual result** Only exklamation mark is shown in the error message **Expected result** Error message should show 'Поле 'Опис' може містити мінімум 40 максимум 3000 символів' text Please, also see the screenshot attached for details ![DescrInsufficientSymb](https://user-images.githubusercontent.com/31481739/216786194-d0f0d5e2-371d-4ef7-b1f4-ebc185eed334.jpg) [Bug Report] https://jira.softserve.academy/browse/TUA-592 [Test case] https://jira.softserve.academy/browse/TUA-525 **Labels to be added** Severity: "minor"
1.0
['Додати завдання'] an error should display 'Поле 'Опис' може містити ...' text when enter not enough symbols to the 'Опис' field, but shows only exklamation mark - **Environment:** OS: Windows 10 Home x64, Browser: Google Chrome 109.0.5414.119 **Reproducible:** always **Steps to reproduce** 1. Go to https://speak-ukrainian.org.ua/dev 2. Log in as admin ('Емейл' = 'admin@gmail.com', 'Пароль' = 'admin') 3. Click on User's icon in the right upper corner 4. Choose 'Контент' then 'Челенджі' and then 'Завдання' 5. Press 'Додати Завдання' on the page opened 6. Complete all the fields, but 'Опис' with valid data: - Choose the date into 'Дата початку' field - Upload the image into 'Фото' field - Enter valid data into 'Назва' field - Enter valid data into 'Заголовок' field - Choose the challenge in dropdown list on the 'Челендж' field 7. Enter less than 40 characters into 'Опис' field, e.g. 39. 8. Click on the 'Зберегти' button **Actual result** Only exklamation mark is shown in the error message **Expected result** Error message should show 'Поле 'Опис' може містити мінімум 40 максимум 3000 символів' text Please, also see the screenshot attached for details ![DescrInsufficientSymb](https://user-images.githubusercontent.com/31481739/216786194-d0f0d5e2-371d-4ef7-b1f4-ebc185eed334.jpg) [Bug Report] https://jira.softserve.academy/browse/TUA-592 [Test case] https://jira.softserve.academy/browse/TUA-525 **Labels to be added** Severity: "minor"
priority
an error should display поле опис може містити text when enter not enough symbols to the опис field but shows only exklamation mark environment os windows home browser google chrome reproducible always steps to reproduce go to log in as admin емейл admin gmail com пароль admin click on user s icon in the right upper corner choose контент then челенджі and then завдання press додати завдання on the page opened complete all the fields but опис with valid data choose the date into дата початку field upload the image into фото field enter valid data into назва field enter valid data into заголовок field choose the challenge in dropdown list on the челендж field enter less than characters into опис field e g click on the зберегти button actual result only exklamation mark is shown in the error message expected result error message should show поле опис може містити мінімум максимум символів text please also see the screenshot attached for details labels to be added severity minor
1
385,858
11,426,875,990
IssuesEvent
2020-02-03 23:01:24
CICE-Consortium/CICE
https://api.github.com/repos/CICE-Consortium/CICE
closed
setting diag_type = 'file' in namelist makes cice.run end with 'CICE run did not complete'
Priority: Low Scripts Type: Feature
Not a big issue, but still it would be nice if cice.run could grep the diag file specified in the namelist (diag_file) if diag_type is set to 'file' instead of the default value 'stdout'. Then real runtime errors would be spotted faster when diag_type = 'file' is used.
1.0
setting diag_type = 'file' in namelist makes cice.run end with 'CICE run did not complete' - Not a big issue, but still it would be nice if cice.run could grep the diag file specified in the namelist (diag_file) if diag_type is set to 'file' instead of the default value 'stdout'. Then real runtime errors would be spotted faster when diag_type = 'file' is used.
priority
setting diag type file in namelist makes cice run end with cice run did not complete not a big issue but still it would be nice if cice run could grep the diag file specified in the namelist diag file if diag type is set to file instead of the default value stdout then real runtime errors would be spotted faster when diag type file is used
1
806,596
29,837,158,724
IssuesEvent
2023-06-19 00:30:33
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
sample.modules.chre fails on qemu_leon3
bug priority: low area: QEMU Stale area: SPARC
**Describe the bug** `zephyr/samples/modules/chre/sample.modules.chre` fails to run on `qemu_leon3`. The test started to try and run on this platform since e478a4e85083dddcbc2cd7282f413f0d89d3a1eb, so it probably never ran successfully. This is the run and the output: ``` $ west build -t run -p -b qemu_leon3 samples/modules/chre ... *** Booting Zephyr OS build zephyr-v3.2.0-1913-g8f72c8d53b50 *** Failed to set thread name to "CHRE": -88 Hello CHRE! I: CHRE init, version: undefined I: EventLoop start D: Instance ID 1 assigned to app ID 0x0000000000000001 EchoApp::nanoappStart() E: E: tt = 0x07, mem_address_not_aligned E: E: INS LOCALS OUTS GLOBALS E: 0: 40008bb0 f34000c6 00000000 00000000 E: 1: 00000003 40007130 00000001 40008ad0 E: 2: 4000a7dc 40001658 ffffffff 00000000 E: 3: 400050fc 00000001 ffffffff 00000033 E: 4: ffffffff 00000002 0000000f 00000001 E: 5: 4000a73c 00000000 00000000 00000080 E: 6: 4000d128 40000060 4000d0c8 00000000 E: 7: 400050e8 00000000 40004b30 00000000 E: E: psr: f30000c5 wim: 00000080 tbr: 40000070 y: 00000000 E: pc: 40004b38 npc: 40004b3c E: E: pc sp E: #0 40004b38 4000d0c8 E: #1 400050e8 4000d128 E: #2 4000165c 4000d190 E: #3 40005b7c 4000d200 E: #4 40001820 4000d260 E: #5 40003468 4000d2c0 E: E: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0 E: Current thread: 0x40009e00 (unknown) E: Halting system ``` ``` $ addr2line -e build/zephyr/zephyr.elf 40004b38 zephyrproject/modules/lib/chre/core/event_loop.cc:497 ``` **To Reproduce** `west build -t run -p -b qemu_leon3 samples/modules/chre` **Expected behavior** Does not crash. **Impact** Breaking CI, excluding the platform. **Environment (please complete the following information):** Linux, Zephyr SDK 0.15.0, a95c93af34 (current main)
1.0
sample.modules.chre fails on qemu_leon3 - **Describe the bug** `zephyr/samples/modules/chre/sample.modules.chre` fails to run on `qemu_leon3`. The test started to try and run on this platform since e478a4e85083dddcbc2cd7282f413f0d89d3a1eb, so it probably never ran successfully. This is the run and the output: ``` $ west build -t run -p -b qemu_leon3 samples/modules/chre ... *** Booting Zephyr OS build zephyr-v3.2.0-1913-g8f72c8d53b50 *** Failed to set thread name to "CHRE": -88 Hello CHRE! I: CHRE init, version: undefined I: EventLoop start D: Instance ID 1 assigned to app ID 0x0000000000000001 EchoApp::nanoappStart() E: E: tt = 0x07, mem_address_not_aligned E: E: INS LOCALS OUTS GLOBALS E: 0: 40008bb0 f34000c6 00000000 00000000 E: 1: 00000003 40007130 00000001 40008ad0 E: 2: 4000a7dc 40001658 ffffffff 00000000 E: 3: 400050fc 00000001 ffffffff 00000033 E: 4: ffffffff 00000002 0000000f 00000001 E: 5: 4000a73c 00000000 00000000 00000080 E: 6: 4000d128 40000060 4000d0c8 00000000 E: 7: 400050e8 00000000 40004b30 00000000 E: E: psr: f30000c5 wim: 00000080 tbr: 40000070 y: 00000000 E: pc: 40004b38 npc: 40004b3c E: E: pc sp E: #0 40004b38 4000d0c8 E: #1 400050e8 4000d128 E: #2 4000165c 4000d190 E: #3 40005b7c 4000d200 E: #4 40001820 4000d260 E: #5 40003468 4000d2c0 E: E: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0 E: Current thread: 0x40009e00 (unknown) E: Halting system ``` ``` $ addr2line -e build/zephyr/zephyr.elf 40004b38 zephyrproject/modules/lib/chre/core/event_loop.cc:497 ``` **To Reproduce** `west build -t run -p -b qemu_leon3 samples/modules/chre` **Expected behavior** Does not crash. **Impact** Breaking CI, excluding the platform. **Environment (please complete the following information):** Linux, Zephyr SDK 0.15.0, a95c93af34 (current main)
priority
sample modules chre fails on qemu describe the bug zephyr samples modules chre sample modules chre fails to run on qemu the test started to try and run on this platform since so it probably never ran successfully this is the run and the output west build t run p b qemu samples modules chre booting zephyr os build zephyr failed to set thread name to chre hello chre i chre init version undefined i eventloop start d instance id assigned to app id echoapp nanoappstart e e tt mem address not aligned e e ins locals outs globals e e e ffffffff e ffffffff e ffffffff e e e e e psr wim tbr y e pc npc e e pc sp e e e e e e e e zephyr fatal error cpu exception on cpu e current thread unknown e halting system e build zephyr zephyr elf zephyrproject modules lib chre core event loop cc to reproduce west build t run p b qemu samples modules chre expected behavior does not crash impact breaking ci excluding the platform environment please complete the following information linux zephyr sdk current main
1
592,406
17,877,272,871
IssuesEvent
2021-09-07 06:33:33
RetroMusicPlayer/RetroMusicPlayer
https://api.github.com/repos/RetroMusicPlayer/RetroMusicPlayer
closed
Cloud support
enhancement Priority: Low
It would be great to connect this app to cloud services like Google Drive or a private NAS. That would make Retro the best Android / Chrome OS music player for everyone. 👍🏻
1.0
Cloud support - It would be great to connect this app to cloud services like Google Drive or a private NAS. That would make Retro the best Android / Chrome OS music player for everyone. 👍🏻
priority
cloud support it would be great to connect this app to cloud services like google drive or a private nas that would make retro the best android chrome os music player for everyone 👍🏻
1
471,962
13,613,856,867
IssuesEvent
2020-09-23 12:29:46
labsquare/cutevariant
https://api.github.com/repos/labsquare/cutevariant
closed
Create phenotype table
core enhancement low-priority
A phenotypes tables with dynamic columns : id sample_id phenotype blue_eye HTA glycemia ... In VQL : SELECT chr,pos FROM variants where phenotype("blue_eye") = True and phenotype("glycemia") > 4.2
1.0
Create phenotype table - A phenotypes tables with dynamic columns : id sample_id phenotype blue_eye HTA glycemia ... In VQL : SELECT chr,pos FROM variants where phenotype("blue_eye") = True and phenotype("glycemia") > 4.2
priority
create phenotype table a phenotypes tables with dynamic columns id sample id phenotype blue eye hta glycemia in vql select chr pos from variants where phenotype blue eye true and phenotype glycemia
1
59,022
3,100,645,303
IssuesEvent
2015-08-29 01:24:43
sakuranobushi/Gorehowl-Emu
https://api.github.com/repos/sakuranobushi/Gorehowl-Emu
opened
Multistrike
NYI Priority-Low Systems-Stats
From wowpedia: Multistrike is a new secondary attribute introduced in Warlords of Draenor. It provides a chance for spells and abilities to fire up to two additional times, at 30% effectiveness (both damage and healing). In PvE, character spells and abilities have two chances to deal an additional 30% damage. Each hit can offer up to 100% + 30% + 30% = 160% total damage. In PvP, character spells and abilities have one chance to deal an additional 30% damage. Each hit can offer up to 100% + 30% = 130% total damage. Multistrike is exactly half as valuable in PvP, point for point. [1] For example, a character might cast a [Frostbolt] against it's target, hitting for 1000 damage, and then score a multistrike, causing a second Frostbolt to hit the target (with no additional mana cost or casting time) for 300 damage. In other words, sometimes the ability will hit just once for normal damage; sometimes it will hit twice, with the second hit dealing 30% damage; and occasionally it'll hit three times, with the second and third hits each dealing 30% damage. Multistrikes don't "Double dip" into stats like Versatility or Mastery, so if a character had 10% Versatility and their [Frostbolt] hit for 1100, the Multistrike would hit for 330(As apposed to 363 if it gained the benefit twice). Multistrikes crit independently of the main attack. That is, the main attack does not have to crit in order for the multistrike to crit. As seen on the attack table, assuming the character currently has 20% crit chance and 10% multistrike chance, each multistrike roll would look like this:
1.0
Multistrike - From wowpedia: Multistrike is a new secondary attribute introduced in Warlords of Draenor. It provides a chance for spells and abilities to fire up to two additional times, at 30% effectiveness (both damage and healing). In PvE, character spells and abilities have two chances to deal an additional 30% damage. Each hit can offer up to 100% + 30% + 30% = 160% total damage. In PvP, character spells and abilities have one chance to deal an additional 30% damage. Each hit can offer up to 100% + 30% = 130% total damage. Multistrike is exactly half as valuable in PvP, point for point. [1] For example, a character might cast a [Frostbolt] against it's target, hitting for 1000 damage, and then score a multistrike, causing a second Frostbolt to hit the target (with no additional mana cost or casting time) for 300 damage. In other words, sometimes the ability will hit just once for normal damage; sometimes it will hit twice, with the second hit dealing 30% damage; and occasionally it'll hit three times, with the second and third hits each dealing 30% damage. Multistrikes don't "Double dip" into stats like Versatility or Mastery, so if a character had 10% Versatility and their [Frostbolt] hit for 1100, the Multistrike would hit for 330(As apposed to 363 if it gained the benefit twice). Multistrikes crit independently of the main attack. That is, the main attack does not have to crit in order for the multistrike to crit. As seen on the attack table, assuming the character currently has 20% crit chance and 10% multistrike chance, each multistrike roll would look like this:
priority
multistrike from wowpedia multistrike is a new secondary attribute introduced in warlords of draenor it provides a chance for spells and abilities to fire up to two additional times at effectiveness both damage and healing in pve character spells and abilities have two chances to deal an additional damage each hit can offer up to total damage in pvp character spells and abilities have one chance to deal an additional damage each hit can offer up to total damage multistrike is exactly half as valuable in pvp point for point for example a character might cast a against it s target hitting for damage and then score a multistrike causing a second frostbolt to hit the target with no additional mana cost or casting time for damage in other words sometimes the ability will hit just once for normal damage sometimes it will hit twice with the second hit dealing damage and occasionally it ll hit three times with the second and third hits each dealing damage multistrikes don t double dip into stats like versatility or mastery so if a character had versatility and their hit for the multistrike would hit for as apposed to if it gained the benefit twice multistrikes crit independently of the main attack that is the main attack does not have to crit in order for the multistrike to crit as seen on the attack table assuming the character currently has crit chance and multistrike chance each multistrike roll would look like this
1
814,388
30,505,524,655
IssuesEvent
2023-07-18 16:35:26
3liz/lizmap-web-client
https://api.github.com/repos/3liz/lizmap-web-client
closed
Toggle of group change expanding state of its layers in treeview
bug priority:low
### What is the bug? Lizmap does not keep expanding state for layers when group expanding state is toggled. ### Steps to reproduce the issue QGIS (ok) : 1. ![image](https://user-images.githubusercontent.com/2145040/70744885-f84b4f00-1d22-11ea-9d70-8e8608263d16.png) 2. ![image](https://user-images.githubusercontent.com/2145040/70744923-0bf6b580-1d23-11ea-9c95-c6eba1b82fc4.png) 3. ![image](https://user-images.githubusercontent.com/2145040/70744944-17e27780-1d23-11ea-938b-2a22727e3319.png) Lizmap (nok) : 1. ![image](https://user-images.githubusercontent.com/2145040/70745191-95a68300-1d23-11ea-98d0-a66fa42259ae.png) 2. ![image](https://user-images.githubusercontent.com/2145040/70745223-a1924500-1d23-11ea-988e-e023d190be13.png) 3. ![image](https://user-images.githubusercontent.com/2145040/70745246-afe06100-1d23-11ea-96e3-281cef254e9f.png) ### Environment <!-- please complete the following information --> - Lizmap version: master - QGIS Server version: 3.4.13
1.0
Toggle of group change expanding state of its layers in treeview - ### What is the bug? Lizmap does not keep expanding state for layers when group expanding state is toggled. ### Steps to reproduce the issue QGIS (ok) : 1. ![image](https://user-images.githubusercontent.com/2145040/70744885-f84b4f00-1d22-11ea-9d70-8e8608263d16.png) 2. ![image](https://user-images.githubusercontent.com/2145040/70744923-0bf6b580-1d23-11ea-9c95-c6eba1b82fc4.png) 3. ![image](https://user-images.githubusercontent.com/2145040/70744944-17e27780-1d23-11ea-938b-2a22727e3319.png) Lizmap (nok) : 1. ![image](https://user-images.githubusercontent.com/2145040/70745191-95a68300-1d23-11ea-98d0-a66fa42259ae.png) 2. ![image](https://user-images.githubusercontent.com/2145040/70745223-a1924500-1d23-11ea-988e-e023d190be13.png) 3. ![image](https://user-images.githubusercontent.com/2145040/70745246-afe06100-1d23-11ea-96e3-281cef254e9f.png) ### Environment <!-- please complete the following information --> - Lizmap version: master - QGIS Server version: 3.4.13
priority
toggle of group change expanding state of its layers in treeview what is the bug lizmap does not keep expanding state for layers when group expanding state is toggled steps to reproduce the issue qgis ok lizmap nok environment lizmap version master qgis server version
1
628,049
19,960,472,045
IssuesEvent
2022-01-28 07:47:12
OptimistikSAS/OIBus
https://api.github.com/repos/OptimistikSAS/OIBus
closed
[U/X] Help text
enhancement help wanted question priority:low
A suggestion: It appears that most people starting with OIBus are missing the fact they can click on the ? to get more information about the different fields. What about making the default behavior to have the text visible? It takes some space but it's not so important with a web interface that allow to scroll very conveniently.
1.0
[U/X] Help text - A suggestion: It appears that most people starting with OIBus are missing the fact they can click on the ? to get more information about the different fields. What about making the default behavior to have the text visible? It takes some space but it's not so important with a web interface that allow to scroll very conveniently.
priority
help text a suggestion it appears that most people starting with oibus are missing the fact they can click on the to get more information about the different fields what about making the default behavior to have the text visible it takes some space but it s not so important with a web interface that allow to scroll very conveniently
1
609,750
18,886,694,841
IssuesEvent
2021-11-15 08:46:13
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
reopened
missing translations in background selector layer edit mode
bug Priority: Low Internal Good first issue BackportNeeded
## Description <!-- Add here a few sentences describing the bug. --> ## How to reproduce <!-- A list of steps to reproduce the bug --> - login as admin - open background selector - add new bakground - select geoserver wms - add linea_costa layer - confirm add - close catalog - edit the added layer *Expected Result* <!-- Describe here the expected result --> to see format label correctly translated *Current Result* <!-- Describe here the current behavior --> ![image](https://user-images.githubusercontent.com/11991428/139433939-6d97dbcb-f1ae-42cd-b13b-e7f7e7e6e362.png) - [x] Not browser related <details><summary> <b>Browser info</b> </summary> <!-- If browser related, please compile the following table --> <!-- If your browser is not in the list please add a new row to the table with the version --> (use this site: <a href="https://www.whatsmybrowser.org/">https://www.whatsmybrowser.org/</a> for non expert users) | Browser Affected | Version | |---|---| |Internet Explorer| | |Edge| | |Chrome| | |Firefox| | |Safari| | </details> ## Other useful information <!-- error stack trace, screenshot, videos, or link to repository code are welcome -->
1.0
missing translations in background selector layer edit mode - ## Description <!-- Add here a few sentences describing the bug. --> ## How to reproduce <!-- A list of steps to reproduce the bug --> - login as admin - open background selector - add new bakground - select geoserver wms - add linea_costa layer - confirm add - close catalog - edit the added layer *Expected Result* <!-- Describe here the expected result --> to see format label correctly translated *Current Result* <!-- Describe here the current behavior --> ![image](https://user-images.githubusercontent.com/11991428/139433939-6d97dbcb-f1ae-42cd-b13b-e7f7e7e6e362.png) - [x] Not browser related <details><summary> <b>Browser info</b> </summary> <!-- If browser related, please compile the following table --> <!-- If your browser is not in the list please add a new row to the table with the version --> (use this site: <a href="https://www.whatsmybrowser.org/">https://www.whatsmybrowser.org/</a> for non expert users) | Browser Affected | Version | |---|---| |Internet Explorer| | |Edge| | |Chrome| | |Firefox| | |Safari| | </details> ## Other useful information <!-- error stack trace, screenshot, videos, or link to repository code are welcome -->
priority
missing translations in background selector layer edit mode description how to reproduce login as admin open background selector add new bakground select geoserver wms add linea costa layer confirm add close catalog edit the added layer expected result to see format label correctly translated current result not browser related browser info use this site a href for non expert users browser affected version internet explorer edge chrome firefox safari other useful information
1
54,003
3,058,443,167
IssuesEvent
2015-08-14 08:13:42
jackjonesfashion/tasks
https://api.github.com/repos/jackjonesfashion/tasks
closed
Storefront, Highlights - Change title of the blog link
Priority: Low Ready Task
Change "The Denim Journal" to "The Journal" ----- **Live-date: 6/8**
1.0
Storefront, Highlights - Change title of the blog link - Change "The Denim Journal" to "The Journal" ----- **Live-date: 6/8**
priority
storefront highlights change title of the blog link change the denim journal to the journal live date
1
792,707
27,972,071,512
IssuesEvent
2023-03-25 05:43:02
SkriptLang/Skript
https://api.github.com/repos/SkriptLang/Skript
closed
Removes item in players mouse slot in inventory when removing a potion effect
bug priority: low completed
### Skript/Server Version ```markdown [22:19:10 INFO]: [Skript] Skript's aliases can be found here: https://github.com/SkriptLang/skript-aliases [22:19:10 INFO]: [Skript] Skript's documentation can be found here: https://skriptlang.github.io/Skript [22:19:10 INFO]: [Skript] Skript's tutorials can be found here: https://docs.skriptlang.org/tutorials [22:19:10 INFO]: [Skript] Server Version: git-Paper-387 (MC: 1.18.2) [22:19:10 INFO]: [Skript] Skript Version: 2.6.3 [22:19:10 INFO]: [Skript] Installed Skript Addons: [22:19:10 INFO]: [Skript] - skript-placeholders v1.5.2 (https://github.com/APickledWalrus/skript-placeholders) [22:19:10 INFO]: [Skript] - DiSky v4.1.1 [22:19:10 INFO]: [Skript] - skRayFall v1.9.27 (https://sk.rayfall.net/) [22:19:10 INFO]: [Skript] - SkQuery v4.1.6 [22:19:10 INFO]: [Skript] - SkBee v2.4.0 (https://github.com/ShaneBeee/SkBee) [22:19:10 INFO]: [Skript] - Ersatz v1.0 [22:19:10 INFO]: [Skript] Installed dependencies: [22:19:10 INFO]: [Skript] - Vault v1.7.3-b131 [22:19:10 INFO]: [Skript] - WorldGuard v7.0.5+3827266 ``` ### Bug Description When removing a potion effect the item the player has in their cursor in the inventory is removed. Aswell as removing the potion effect. ### Expected Behavior Just remove the potion effect, don't delete item from cursor. ### Steps to Reproduce apply a potion effect, click and item in your inventory and wait for a usage of `remove <effectname> from player` ### Errors or Screenshots _No response_ ### Other _No response_ ### Agreement - [X] I have read the guidelines above and affirm I am following them with this report.
1.0
Removes item in players mouse slot in inventory when removing a potion effect - ### Skript/Server Version ```markdown [22:19:10 INFO]: [Skript] Skript's aliases can be found here: https://github.com/SkriptLang/skript-aliases [22:19:10 INFO]: [Skript] Skript's documentation can be found here: https://skriptlang.github.io/Skript [22:19:10 INFO]: [Skript] Skript's tutorials can be found here: https://docs.skriptlang.org/tutorials [22:19:10 INFO]: [Skript] Server Version: git-Paper-387 (MC: 1.18.2) [22:19:10 INFO]: [Skript] Skript Version: 2.6.3 [22:19:10 INFO]: [Skript] Installed Skript Addons: [22:19:10 INFO]: [Skript] - skript-placeholders v1.5.2 (https://github.com/APickledWalrus/skript-placeholders) [22:19:10 INFO]: [Skript] - DiSky v4.1.1 [22:19:10 INFO]: [Skript] - skRayFall v1.9.27 (https://sk.rayfall.net/) [22:19:10 INFO]: [Skript] - SkQuery v4.1.6 [22:19:10 INFO]: [Skript] - SkBee v2.4.0 (https://github.com/ShaneBeee/SkBee) [22:19:10 INFO]: [Skript] - Ersatz v1.0 [22:19:10 INFO]: [Skript] Installed dependencies: [22:19:10 INFO]: [Skript] - Vault v1.7.3-b131 [22:19:10 INFO]: [Skript] - WorldGuard v7.0.5+3827266 ``` ### Bug Description When removing a potion effect the item the player has in their cursor in the inventory is removed. Aswell as removing the potion effect. ### Expected Behavior Just remove the potion effect, don't delete item from cursor. ### Steps to Reproduce apply a potion effect, click and item in your inventory and wait for a usage of `remove <effectname> from player` ### Errors or Screenshots _No response_ ### Other _No response_ ### Agreement - [X] I have read the guidelines above and affirm I am following them with this report.
priority
removes item in players mouse slot in inventory when removing a potion effect skript server version markdown skript s aliases can be found here skript s documentation can be found here skript s tutorials can be found here server version git paper mc skript version installed skript addons skript placeholders disky skrayfall skquery skbee ersatz installed dependencies vault worldguard bug description when removing a potion effect the item the player has in their cursor in the inventory is removed aswell as removing the potion effect expected behavior just remove the potion effect don t delete item from cursor steps to reproduce apply a potion effect click and item in your inventory and wait for a usage of remove from player errors or screenshots no response other no response agreement i have read the guidelines above and affirm i am following them with this report
1
346,391
10,411,798,606
IssuesEvent
2019-09-13 14:36:36
ni/nimi-python
https://api.github.com/repos/ni/nimi-python
opened
Simplify CONTRIBUTING.md instructions by getting rid of Win7/8+Cygwin
docs priority-low
# Description of issue In CONTRIBUTING.md we have instructions for building in 3 platforms: 1. Windows 7/8/10 + CygWin 2. Windows 10 Windows Subsystem for Linux 3. macOS I think it's a good idea to simplify this by cutting down on the number of "official" platforms, with "Windows 7/8/10 + CygWin" being the one to go... Win7 and Win8 are obsolete or soon to be, and CygWin adds a third party complication into the picture.
1.0
Simplify CONTRIBUTING.md instructions by getting rid of Win7/8+Cygwin - # Description of issue In CONTRIBUTING.md we have instructions for building in 3 platforms: 1. Windows 7/8/10 + CygWin 2. Windows 10 Windows Subsystem for Linux 3. macOS I think it's a good idea to simplify this by cutting down on the number of "official" platforms, with "Windows 7/8/10 + CygWin" being the one to go... Win7 and Win8 are obsolete or soon to be, and CygWin adds a third party complication into the picture.
priority
simplify contributing md instructions by getting rid of cygwin description of issue in contributing md we have instructions for building in platforms windows cygwin windows windows subsystem for linux macos i think it s a good idea to simplify this by cutting down on the number of official platforms with windows cygwin being the one to go and are obsolete or soon to be and cygwin adds a third party complication into the picture
1
33,950
2,773,893,475
IssuesEvent
2015-05-04 01:10:42
firejake308/code-versus-bugs
https://api.github.com/repos/firejake308/code-versus-bugs
closed
Wrong Title
bug Low Priority
The title of the main frame is still Code Versus Bugs In Development. This might be a problem with lanuch4j or possibly with source code.
1.0
Wrong Title - The title of the main frame is still Code Versus Bugs In Development. This might be a problem with lanuch4j or possibly with source code.
priority
wrong title the title of the main frame is still code versus bugs in development this might be a problem with or possibly with source code
1
89,636
3,798,180,139
IssuesEvent
2016-03-23 11:21:21
BrcMapsTeam/europe-15-situational-awareness
https://api.github.com/repos/BrcMapsTeam/europe-15-situational-awareness
opened
Find new IFRC logo that is not "fuzzy"
appearance low priority
Been told the logo is "fuzzy". Anything that can be done to fix or do we need a different one?
1.0
Find new IFRC logo that is not "fuzzy" - Been told the logo is "fuzzy". Anything that can be done to fix or do we need a different one?
priority
find new ifrc logo that is not fuzzy been told the logo is fuzzy anything that can be done to fix or do we need a different one
1
706,574
24,277,944,607
IssuesEvent
2022-09-28 15:05:45
DinoDevs/GladiatusCrazyAddon
https://api.github.com/repos/DinoDevs/GladiatusCrazyAddon
closed
Disable GCA on blank/error page
🛠️ enhancement 💤 Low priority
![white](https://user-images.githubusercontent.com/23278552/190018845-5b30fbf3-970c-4e06-bdae-b3ef2590cc11.PNG) This is now the "new" backup page, and you get it time to time when the server is overloaded, the problem with this is, that GCA is still running in the background, and naturally throws errors, it would be probably wise, to disable GCA scripts, when the page isn't working.
1.0
Disable GCA on blank/error page - ![white](https://user-images.githubusercontent.com/23278552/190018845-5b30fbf3-970c-4e06-bdae-b3ef2590cc11.PNG) This is now the "new" backup page, and you get it time to time when the server is overloaded, the problem with this is, that GCA is still running in the background, and naturally throws errors, it would be probably wise, to disable GCA scripts, when the page isn't working.
priority
disable gca on blank error page this is now the new backup page and you get it time to time when the server is overloaded the problem with this is that gca is still running in the background and naturally throws errors it would be probably wise to disable gca scripts when the page isn t working
1
707,124
24,296,206,124
IssuesEvent
2022-09-29 10:15:10
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
Bluetooth: Host: CONFIG_BT_LOG_SNIFFER_INFO doesn't work as intended without bonding
bug priority: low area: Bluetooth area: Bluetooth Host
**Describe the bug** The help text of `CONFIG_BT_LOG_SNIFFER_INFO` says that it will enable logging of e.g. the LTK and private keys. While this is mostly true, the LTK is not logged if the link isn't bonding (triggered by e.g. setting `CONFIG_BT_BONDABLE=n`). **To Reproduce** Steps to reproduce the behavior: 1. Build the BT shell (`zephyr/tests/bluetooth/shell`) with `CONFIG_BT_BONDABLE=n` 2. Connect to a device and do `bt security 2` to encrypt the link 3. See missing logging of the LTK **Expected behavior** Expected to see the LTK regardless of bonding, as debugging a non-bonded connection is equally valid. **Impact** Annoyance **Logs and console output** Central with bonding: ``` uart:~$ bt security 2 LE conn param updated: int 0x0018 lat 0 to 42 Security changed: 5E:C8:43:72:21:1E (random) level 2 Identity resolved 5E:C8:43:72:21:1E (random) -> C2:35:E5:CA:5E:A1 (random) Bonded with C2:35:E5:CA:5E:A1 (random) [00:01:19.844,970] <inf> bt_keys: SC LTK: 0xca1505d416abfc96ab0db3cba088c6b8 uart:~$ ``` Peripheral with bonding: ``` Security changed: 59:48:1E:1B:D4:30 (random) level 2 Identity resolved 59:48:1E:1B:D4:30 (random) -> D7:8C:A2:75:B6:07 (random) Bonded with D7:8C:A2:75:B6:07 (random) [00:02:24.922,943] <inf> bt_keys: SC LTK: 0xca1505d416abfc96ab0db3cba088c6b8 uart:~$ ``` Central without bonding: ``` uart:~$ bt security 2 Security changed: 4E:22:41:2D:FE:6F (random) level 2 Paired with 4E:22:41:2D:FE:6F (random) uart:~$ ``` Peripheral without bonding: ``` Security changed: 71:46:D3:9B:A6:7A (random) level 2 Paired with 71:46:D3:9B:A6:7A (random) uart:~$ ``` **Environment (please complete the following information):** - Commit SHA or Version used: 489e8eb02c2a7bd46a9e73ee1a07a9bd20a61e98 **Additional context** N/A
1.0
Bluetooth: Host: CONFIG_BT_LOG_SNIFFER_INFO doesn't work as intended without bonding - **Describe the bug** The help text of `CONFIG_BT_LOG_SNIFFER_INFO` says that it will enable logging of e.g. the LTK and private keys. While this is mostly true, the LTK is not logged if the link isn't bonding (triggered by e.g. setting `CONFIG_BT_BONDABLE=n`). **To Reproduce** Steps to reproduce the behavior: 1. Build the BT shell (`zephyr/tests/bluetooth/shell`) with `CONFIG_BT_BONDABLE=n` 2. Connect to a device and do `bt security 2` to encrypt the link 3. See missing logging of the LTK **Expected behavior** Expected to see the LTK regardless of bonding, as debugging a non-bonded connection is equally valid. **Impact** Annoyance **Logs and console output** Central with bonding: ``` uart:~$ bt security 2 LE conn param updated: int 0x0018 lat 0 to 42 Security changed: 5E:C8:43:72:21:1E (random) level 2 Identity resolved 5E:C8:43:72:21:1E (random) -> C2:35:E5:CA:5E:A1 (random) Bonded with C2:35:E5:CA:5E:A1 (random) [00:01:19.844,970] <inf> bt_keys: SC LTK: 0xca1505d416abfc96ab0db3cba088c6b8 uart:~$ ``` Peripheral with bonding: ``` Security changed: 59:48:1E:1B:D4:30 (random) level 2 Identity resolved 59:48:1E:1B:D4:30 (random) -> D7:8C:A2:75:B6:07 (random) Bonded with D7:8C:A2:75:B6:07 (random) [00:02:24.922,943] <inf> bt_keys: SC LTK: 0xca1505d416abfc96ab0db3cba088c6b8 uart:~$ ``` Central without bonding: ``` uart:~$ bt security 2 Security changed: 4E:22:41:2D:FE:6F (random) level 2 Paired with 4E:22:41:2D:FE:6F (random) uart:~$ ``` Peripheral without bonding: ``` Security changed: 71:46:D3:9B:A6:7A (random) level 2 Paired with 71:46:D3:9B:A6:7A (random) uart:~$ ``` **Environment (please complete the following information):** - Commit SHA or Version used: 489e8eb02c2a7bd46a9e73ee1a07a9bd20a61e98 **Additional context** N/A
priority
bluetooth host config bt log sniffer info doesn t work as intended without bonding describe the bug the help text of config bt log sniffer info says that it will enable logging of e g the ltk and private keys while this is mostly true the ltk is not logged if the link isn t bonding triggered by e g setting config bt bondable n to reproduce steps to reproduce the behavior build the bt shell zephyr tests bluetooth shell with config bt bondable n connect to a device and do bt security to encrypt the link see missing logging of the ltk expected behavior expected to see the ltk regardless of bonding as debugging a non bonded connection is equally valid impact annoyance logs and console output central with bonding uart bt security le conn param updated int lat to security changed random level identity resolved random ca random bonded with ca random bt keys sc ltk uart peripheral with bonding security changed random level identity resolved random random bonded with random bt keys sc ltk uart central without bonding uart bt security security changed fe random level paired with fe random uart peripheral without bonding security changed random level paired with random uart environment please complete the following information commit sha or version used additional context n a
1
112,015
4,500,849,311
IssuesEvent
2016-09-01 07:08:38
2sic/2sxc
https://api.github.com/repos/2sic/2sxc
closed
Add error message when uploading a too large file in ADAM
enhancement low-priority
A message should appear when an file is uploaded, but its size exceeds the limit.
1.0
Add error message when uploading a too large file in ADAM - A message should appear when an file is uploaded, but its size exceeds the limit.
priority
add error message when uploading a too large file in adam a message should appear when an file is uploaded but its size exceeds the limit
1
741,251
25,785,922,940
IssuesEvent
2022-12-09 20:26:39
Thenlie/Streamability
https://api.github.com/repos/Thenlie/Streamability
opened
Create utility formatter function for dates and times
priority: low type: enhancement
This will be used to format movie/show release dates and movie/show runtimes
1.0
Create utility formatter function for dates and times - This will be used to format movie/show release dates and movie/show runtimes
priority
create utility formatter function for dates and times this will be used to format movie show release dates and movie show runtimes
1
94,899
3,933,552,591
IssuesEvent
2016-04-25 19:32:02
ghutchis/avogadro
https://api.github.com/repos/ghutchis/avogadro
closed
Integrate with Siam Quantum
auto-migrated feature low priority v_0.1.0
Hi, I noticed Avogadro could generate GAMESS and MOPAC input file, is it difficult for me to write a plugin for Siam Quantum? Where should I start? Please give me a few pointers. Thanks. Teepanis. Reported by: *anonymous
1.0
Integrate with Siam Quantum - Hi, I noticed Avogadro could generate GAMESS and MOPAC input file, is it difficult for me to write a plugin for Siam Quantum? Where should I start? Please give me a few pointers. Thanks. Teepanis. Reported by: *anonymous
priority
integrate with siam quantum hi i noticed avogadro could generate gamess and mopac input file is it difficult for me to write a plugin for siam quantum where should i start please give me a few pointers thanks teepanis reported by anonymous
1
691,011
23,680,863,454
IssuesEvent
2022-08-28 19:30:50
doinkythederp/lan-extender-fabric
https://api.github.com/repos/doinkythederp/lan-extender-fabric
closed
Backports to previous versions
feature low priority
### Explain the feature Some people might want to play on previous versions of Minecraft. ### Ideal solution or implementation Backporting to at least 1.18 would probably be for the best. ### [Optional] Alternative solutions or implementations _No response_ ### [Optional] Other context - [x] 1.18 - [x] 1.17 (?) - [x] 1.16 (?, Not worth doing anything before this)
1.0
Backports to previous versions - ### Explain the feature Some people might want to play on previous versions of Minecraft. ### Ideal solution or implementation Backporting to at least 1.18 would probably be for the best. ### [Optional] Alternative solutions or implementations _No response_ ### [Optional] Other context - [x] 1.18 - [x] 1.17 (?) - [x] 1.16 (?, Not worth doing anything before this)
priority
backports to previous versions explain the feature some people might want to play on previous versions of minecraft ideal solution or implementation backporting to at least would probably be for the best alternative solutions or implementations no response other context not worth doing anything before this
1
751,846
26,261,336,100
IssuesEvent
2023-01-06 08:10:00
docker-mailserver/docker-mailserver
https://api.github.com/repos/docker-mailserver/docker-mailserver
closed
[FR] add docker-data to .gitignore
meta/needs triage priority/low
# Feature Request ## Context I think its common to git pull the repo and `docker compose up -d` after editing the files When you have `docker-data` in .gitignore, git diff will show all the relevant changes to the configuration without the `docker-data` clutter
1.0
[FR] add docker-data to .gitignore - # Feature Request ## Context I think its common to git pull the repo and `docker compose up -d` after editing the files When you have `docker-data` in .gitignore, git diff will show all the relevant changes to the configuration without the `docker-data` clutter
priority
add docker data to gitignore feature request context i think its common to git pull the repo and docker compose up d after editing the files when you have docker data in gitignore git diff will show all the relevant changes to the configuration without the docker data clutter
1
183,397
6,688,378,140
IssuesEvent
2017-10-08 14:06:53
ArmaAchilles/AresModAchillesExpansion
https://api.github.com/repos/ArmaAchilles/AresModAchillesExpansion
opened
Create an ability that allows to set what kind of altitude should a drone fly
feature request priority/low
Add an option that allows Zeus to specify what kind of altitude should a drone fly at. Possibly include planes or helos.
1.0
Create an ability that allows to set what kind of altitude should a drone fly - Add an option that allows Zeus to specify what kind of altitude should a drone fly at. Possibly include planes or helos.
priority
create an ability that allows to set what kind of altitude should a drone fly add an option that allows zeus to specify what kind of altitude should a drone fly at possibly include planes or helos
1
309,924
9,481,706,884
IssuesEvent
2019-04-21 08:04:10
PhlexPlexico/get5-web
https://api.github.com/repos/PhlexPlexico/get5-web
closed
Recreate Layout Page
low-priority
Too many things on the headers now. Need to recreate and maybe create submenus for Seasons Teams Matches Servers
1.0
Recreate Layout Page - Too many things on the headers now. Need to recreate and maybe create submenus for Seasons Teams Matches Servers
priority
recreate layout page too many things on the headers now need to recreate and maybe create submenus for seasons teams matches servers
1
561,973
16,628,601,097
IssuesEvent
2021-06-03 12:57:55
DIAGNijmegen/website-content
https://api.github.com/repos/DIAGNijmegen/website-content
closed
Picture Micael Karlberg
Priority: Low content
Hi Mart, Micael Karlberg initially gave a picture which was already cropped in a circle. This resulted in a black rim around his picture on the website. I have updated the picture yesterday (it is still round but I pasted it on a white square), yet the picture hasn't changed on the website. Can you help out? Thanks!
1.0
Picture Micael Karlberg - Hi Mart, Micael Karlberg initially gave a picture which was already cropped in a circle. This resulted in a black rim around his picture on the website. I have updated the picture yesterday (it is still round but I pasted it on a white square), yet the picture hasn't changed on the website. Can you help out? Thanks!
priority
picture micael karlberg hi mart micael karlberg initially gave a picture which was already cropped in a circle this resulted in a black rim around his picture on the website i have updated the picture yesterday it is still round but i pasted it on a white square yet the picture hasn t changed on the website can you help out thanks
1
731,745
25,229,761,252
IssuesEvent
2022-11-14 18:47:06
YunoHost/issues
https://api.github.com/repos/YunoHost/issues
closed
certificats wildcards et nouveaux sous-domaines
:cake: enhancement :lock: Certificate :deciduous_tree: mid/long term Priority: low
###### Original Redmine Issue: [648](https://dev.yunohost.org/issues/648) Author Name: **Anonymous** --- Bonjour, merci pour votre lecture. Mon fils ne sert à rien pour ceux qui utilisent Let'sencrypt (que j'aime pas). Mais pour moi qui utilise un wildcard, j'en serais heureux. Parce que j'utilise CAcert, et [sa possibilité de faire des wildcards gratuitement](https://forum.yunohost.org/t/cacert-certificat-principal-et-wildcard-gratuits/2101). Or, quand on a notre certificat puis que l'on crée un nouveau sous-domaine depuis l'interface d'administration, le certificat wildcard ne se copie pas, tandis que yunohost certifie lui même (après vérification) le nouveau sous-domaine. Et ce n'est pas reconnu par les navigateurs, obligeant à retourner en ssl pour copier soi même le bon certificat. Une case à cocher lors de la sélections du "j'ai déjà un nom de domaine" avec en plus, la possibilité de sélectionner ou pas un domaine déjà existant comme dans la création d'un sous domaine, pourrait permettre cette automatisation de copie de certificat wildcard et éviter de repasser par ssh. Merci encore pour votre lecture. :) [FugazziPL](https://forum.yunohost.org/users/FugazziPL)
1.0
certificats wildcards et nouveaux sous-domaines - ###### Original Redmine Issue: [648](https://dev.yunohost.org/issues/648) Author Name: **Anonymous** --- Bonjour, merci pour votre lecture. Mon fils ne sert à rien pour ceux qui utilisent Let'sencrypt (que j'aime pas). Mais pour moi qui utilise un wildcard, j'en serais heureux. Parce que j'utilise CAcert, et [sa possibilité de faire des wildcards gratuitement](https://forum.yunohost.org/t/cacert-certificat-principal-et-wildcard-gratuits/2101). Or, quand on a notre certificat puis que l'on crée un nouveau sous-domaine depuis l'interface d'administration, le certificat wildcard ne se copie pas, tandis que yunohost certifie lui même (après vérification) le nouveau sous-domaine. Et ce n'est pas reconnu par les navigateurs, obligeant à retourner en ssl pour copier soi même le bon certificat. Une case à cocher lors de la sélections du "j'ai déjà un nom de domaine" avec en plus, la possibilité de sélectionner ou pas un domaine déjà existant comme dans la création d'un sous domaine, pourrait permettre cette automatisation de copie de certificat wildcard et éviter de repasser par ssh. Merci encore pour votre lecture. :) [FugazziPL](https://forum.yunohost.org/users/FugazziPL)
priority
certificats wildcards et nouveaux sous domaines original redmine issue author name anonymous bonjour merci pour votre lecture mon fils ne sert à rien pour ceux qui utilisent let sencrypt que j aime pas mais pour moi qui utilise un wildcard j en serais heureux parce que j utilise cacert et or quand on a notre certificat puis que l on crée un nouveau sous domaine depuis l interface d administration le certificat wildcard ne se copie pas tandis que yunohost certifie lui même après vérification le nouveau sous domaine et ce n est pas reconnu par les navigateurs obligeant à retourner en ssl pour copier soi même le bon certificat une case à cocher lors de la sélections du j ai déjà un nom de domaine avec en plus la possibilité de sélectionner ou pas un domaine déjà existant comme dans la création d un sous domaine pourrait permettre cette automatisation de copie de certificat wildcard et éviter de repasser par ssh merci encore pour votre lecture
1
525,932
15,269,348,525
IssuesEvent
2021-02-22 12:40:15
ihhub/fheroes2
https://api.github.com/repos/ihhub/fheroes2
closed
Castle screen, creature recruit window, creature information window with left click
low priority ui
In the original game, it is possible to display an information window with an "EXIT" button by left clicking on the creature's sprite. In fheroes2 this is not possible. In original game: ![Recruit creature info creature left H2 01](https://user-images.githubusercontent.com/43583994/93664839-2019d100-fa72-11ea-8eb4-e5cd0f269075.png)
1.0
Castle screen, creature recruit window, creature information window with left click - In the original game, it is possible to display an information window with an "EXIT" button by left clicking on the creature's sprite. In fheroes2 this is not possible. In original game: ![Recruit creature info creature left H2 01](https://user-images.githubusercontent.com/43583994/93664839-2019d100-fa72-11ea-8eb4-e5cd0f269075.png)
priority
castle screen creature recruit window creature information window with left click in the original game it is possible to display an information window with an exit button by left clicking on the creature s sprite in this is not possible in original game
1
302,627
9,284,713,792
IssuesEvent
2019-03-21 03:05:45
stageosu/StageBot
https://api.github.com/repos/stageosu/StageBot
closed
Tune $osuset
Feature Request Low Priority osu!
Tune $osuset's embed.WithFooter(); to specify that players with spaces in their names must include quotes when setting their username. Alternatively, find a way to do this automatically through the program without the user having to put their name in quotes.
1.0
Tune $osuset - Tune $osuset's embed.WithFooter(); to specify that players with spaces in their names must include quotes when setting their username. Alternatively, find a way to do this automatically through the program without the user having to put their name in quotes.
priority
tune osuset tune osuset s embed withfooter to specify that players with spaces in their names must include quotes when setting their username alternatively find a way to do this automatically through the program without the user having to put their name in quotes
1
595,988
18,093,335,305
IssuesEvent
2021-09-22 05:59:00
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
stm32: g0b1: garbage output in log and suspected hard fault when configuring modem
bug priority: low platform: STM32 area: Modem
**Describe the bug** This issue documents what happens after applying #38521, and make it easier to differentiate from #38519. I'm observing a system hang (~~which is usually a hard fault but Zephyr didn't manage to print the message to the log~~ read the end) when the MCU attempts to configure the modem. My setup is a STM32G0B1RET custom board with Quectel EC21 modem using the `gsm_ppp` modem driver. As the STM32's UART driver doesn't have the ability to wake the modem from LPM, it is necessary to constraint the MCU from entering deep sleep. **To Reproduce** I'm building my own application with the `gsm_ppp` set to autostart and mux-enabled. In my main I have `pm_constraint_set(PM_STATE_SUSPEND_TO_IDLE);` so that the MCU doesn't enter deep sleep. **Expected behavior** The application and the modem should work normally **Impact** showstopper **Logs and console output** ``` I: Starting bootloader I: Primary image: magic=good, swap_type=0x1, copy_done=0x3, image_ok=0x1 I: Scratch: magic=unset, swap_type=0x1, copy_done=0x3, image_ok=0x3 I: Boot source: primary slot I: Swap type: none I: Bootloader chainload address offset: 0x10000 I: Jumping to the first image slot ø1;3òmgmoc:~F¶´­û***** delaying boot 2000ms (per build configuration) ***** Build time: Sep 15 2021 17:03:18 Malaysia! ``` Output of the modem's TX line: ``` RDY AT OK ``` **Environment (please complete the following information):** - win10 - gnuarmemb - f83dc928f6 **Additional context** My `main.c`: ```c ... void main(void) { int i = 1; printk("\r\n\r\nBuild time: " __DATE__ " " __TIME__ " Malaysia!\r\n\r\n\r\n\r\n"); pm_constraint_set(PM_STATE_SUSPEND_TO_IDLE); while (true) { k_sleep(K_SECONDS(40)); } ... ``` I tried to trace this using a debugger, put breakpoints at [here](https://github.com/zephyrproject-rtos/zephyr/blob/main/drivers/modem/gsm_ppp.c#L933) and [here](https://github.com/zephyrproject-rtos/zephyr/blob/main/drivers/modem/gsm_ppp.c#L939). The execution never reach the second breakpoint. It stucks somewhere inside `uart_poll_out` and the step through option of the debugger doesn't work anymore, if I press pause I can see that it is doing something inside `ringbuffer.c`/`modem_iface_uart.c`/`uart_stm32.c`, unlike the typical hardfault that I'm familiar with where it just stuck at the `fault.c`
1.0
stm32: g0b1: garbage output in log and suspected hard fault when configuring modem - **Describe the bug** This issue documents what happens after applying #38521, and make it easier to differentiate from #38519. I'm observing a system hang (~~which is usually a hard fault but Zephyr didn't manage to print the message to the log~~ read the end) when the MCU attempts to configure the modem. My setup is a STM32G0B1RET custom board with Quectel EC21 modem using the `gsm_ppp` modem driver. As the STM32's UART driver doesn't have the ability to wake the modem from LPM, it is necessary to constraint the MCU from entering deep sleep. **To Reproduce** I'm building my own application with the `gsm_ppp` set to autostart and mux-enabled. In my main I have `pm_constraint_set(PM_STATE_SUSPEND_TO_IDLE);` so that the MCU doesn't enter deep sleep. **Expected behavior** The application and the modem should work normally **Impact** showstopper **Logs and console output** ``` I: Starting bootloader I: Primary image: magic=good, swap_type=0x1, copy_done=0x3, image_ok=0x1 I: Scratch: magic=unset, swap_type=0x1, copy_done=0x3, image_ok=0x3 I: Boot source: primary slot I: Swap type: none I: Bootloader chainload address offset: 0x10000 I: Jumping to the first image slot ø1;3òmgmoc:~F¶´­û***** delaying boot 2000ms (per build configuration) ***** Build time: Sep 15 2021 17:03:18 Malaysia! ``` Output of the modem's TX line: ``` RDY AT OK ``` **Environment (please complete the following information):** - win10 - gnuarmemb - f83dc928f6 **Additional context** My `main.c`: ```c ... void main(void) { int i = 1; printk("\r\n\r\nBuild time: " __DATE__ " " __TIME__ " Malaysia!\r\n\r\n\r\n\r\n"); pm_constraint_set(PM_STATE_SUSPEND_TO_IDLE); while (true) { k_sleep(K_SECONDS(40)); } ... ``` I tried to trace this using a debugger, put breakpoints at [here](https://github.com/zephyrproject-rtos/zephyr/blob/main/drivers/modem/gsm_ppp.c#L933) and [here](https://github.com/zephyrproject-rtos/zephyr/blob/main/drivers/modem/gsm_ppp.c#L939). The execution never reach the second breakpoint. It stucks somewhere inside `uart_poll_out` and the step through option of the debugger doesn't work anymore, if I press pause I can see that it is doing something inside `ringbuffer.c`/`modem_iface_uart.c`/`uart_stm32.c`, unlike the typical hardfault that I'm familiar with where it just stuck at the `fault.c`
priority
garbage output in log and suspected hard fault when configuring modem describe the bug this issue documents what happens after applying and make it easier to differentiate from i m observing a system hang which is usually a hard fault but zephyr didn t manage to print the message to the log read the end when the mcu attempts to configure the modem my setup is a custom board with quectel modem using the gsm ppp modem driver as the s uart driver doesn t have the ability to wake the modem from lpm it is necessary to constraint the mcu from entering deep sleep to reproduce i m building my own application with the gsm ppp set to autostart and mux enabled in my main i have pm constraint set pm state suspend to idle so that the mcu doesn t enter deep sleep expected behavior the application and the modem should work normally impact showstopper logs and console output i starting bootloader i primary image magic good swap type copy done image ok i scratch magic unset swap type copy done image ok i boot source primary slot i swap type none i bootloader chainload address offset i jumping to the first image slot f¶´­û delaying boot per build configuration build time sep malaysia output of the modem s tx line rdy at ok environment please complete the following information gnuarmemb additional context my main c c void main void int i printk r n r nbuild time date time malaysia r n r n r n r n pm constraint set pm state suspend to idle while true k sleep k seconds i tried to trace this using a debugger put breakpoints at and the execution never reach the second breakpoint it stucks somewhere inside uart poll out and the step through option of the debugger doesn t work anymore if i press pause i can see that it is doing something inside ringbuffer c modem iface uart c uart c unlike the typical hardfault that i m familiar with where it just stuck at the fault c
1
23,228
2,657,703,825
IssuesEvent
2015-03-18 11:01:46
centre-for-educational-technology/learnmixer
https://api.github.com/repos/centre-for-educational-technology/learnmixer
opened
Organizing learning resources inside a structural element
low priority
_From @ilyashmorgun on March 17, 2015 19:50_ It should be possible to reorder learning resources in a structural element (e.g. chapter or sub-chapter) through drag and drop. _Copied from original issue: ilyashmorgun/LearnMix-Prototypes#9_
1.0
Organizing learning resources inside a structural element - _From @ilyashmorgun on March 17, 2015 19:50_ It should be possible to reorder learning resources in a structural element (e.g. chapter or sub-chapter) through drag and drop. _Copied from original issue: ilyashmorgun/LearnMix-Prototypes#9_
priority
organizing learning resources inside a structural element from ilyashmorgun on march it should be possible to reorder learning resources in a structural element e g chapter or sub chapter through drag and drop copied from original issue ilyashmorgun learnmix prototypes
1
249,989
7,966,220,862
IssuesEvent
2018-07-14 19:06:49
tootsuite/mastodon
https://api.github.com/repos/tootsuite/mastodon
closed
Link @username@twitter.com to Twitter profile pages
enhancement priority - low
For those of us who like to be on both Mastodon and Twitter, I imagine it might be pretty handy to have @username@twitter.com become a link to people's Twitter profiles that opens in a new tab/window. I would like this a lot. I understand that there would be no notifications Twitter-side, no ability to search for @username@twitter.com, no federation, and so on. It's just an instinctive urge I have sometimes when posting, because sometimes I post something and I want to correctly credit someone who's on Twitter. All this would do would turn @username@twitter.com into a link to a Twitter profile, and maybe (?) for tidiness remove the @twitter.com from the end. I can imagine this will not go down well among the "ugh Twitter gross" crowd but... I understand that Twitter does some things that OStatus founders and contributors would find *completely abhorrent*, but then... there will presumably be SJW safe spaces and white supremacist spaces both using OStatus-based sites, and that's totally fine too! People just say "that's the beauty of it, people can block other instances if they make content that is unwanted" etc. And, this bit is hard to describe but I feel like it would be a nice making-friends gesture. Like, in the unlikely event that Twitter somehow magically became FOSS and federate-able, wouldn't that be cool? But even if they never do (way more likely), it's a usability feature that expresses good intentions in addition to being intuitive and functional and helpful. * * * * - [Yes] I searched or browsed the repo’s other issues to ensure this is not a duplicate.
1.0
Link @username@twitter.com to Twitter profile pages - For those of us who like to be on both Mastodon and Twitter, I imagine it might be pretty handy to have @username@twitter.com become a link to people's Twitter profiles that opens in a new tab/window. I would like this a lot. I understand that there would be no notifications Twitter-side, no ability to search for @username@twitter.com, no federation, and so on. It's just an instinctive urge I have sometimes when posting, because sometimes I post something and I want to correctly credit someone who's on Twitter. All this would do would turn @username@twitter.com into a link to a Twitter profile, and maybe (?) for tidiness remove the @twitter.com from the end. I can imagine this will not go down well among the "ugh Twitter gross" crowd but... I understand that Twitter does some things that OStatus founders and contributors would find *completely abhorrent*, but then... there will presumably be SJW safe spaces and white supremacist spaces both using OStatus-based sites, and that's totally fine too! People just say "that's the beauty of it, people can block other instances if they make content that is unwanted" etc. And, this bit is hard to describe but I feel like it would be a nice making-friends gesture. Like, in the unlikely event that Twitter somehow magically became FOSS and federate-able, wouldn't that be cool? But even if they never do (way more likely), it's a usability feature that expresses good intentions in addition to being intuitive and functional and helpful. * * * * - [Yes] I searched or browsed the repo’s other issues to ensure this is not a duplicate.
priority
link username twitter com to twitter profile pages for those of us who like to be on both mastodon and twitter i imagine it might be pretty handy to have username twitter com become a link to people s twitter profiles that opens in a new tab window i would like this a lot i understand that there would be no notifications twitter side no ability to search for username twitter com no federation and so on it s just an instinctive urge i have sometimes when posting because sometimes i post something and i want to correctly credit someone who s on twitter all this would do would turn username twitter com into a link to a twitter profile and maybe for tidiness remove the twitter com from the end i can imagine this will not go down well among the ugh twitter gross crowd but i understand that twitter does some things that ostatus founders and contributors would find completely abhorrent but then there will presumably be sjw safe spaces and white supremacist spaces both using ostatus based sites and that s totally fine too people just say that s the beauty of it people can block other instances if they make content that is unwanted etc and this bit is hard to describe but i feel like it would be a nice making friends gesture like in the unlikely event that twitter somehow magically became foss and federate able wouldn t that be cool but even if they never do way more likely it s a usability feature that expresses good intentions in addition to being intuitive and functional and helpful i searched or browsed the repo’s other issues to ensure this is not a duplicate
1
810,298
30,235,326,044
IssuesEvent
2023-07-06 09:48:52
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
drivers: uart_mcux_flexcomm: async api does not connect interrupt
bug priority: low area: UART platform: NXP
Interrupt connect/configuration doesn't happen unless CONFIG_INTERRUPT_DRIVEN is set, but building with CONFIG_ASYNC_API only should connect/configure the interrupt, since it is needed for the async api to function. This problem has gone unnoticed this far because all of the boards this driver / async api was tested on have CONFIG_INTERRUPT_DRIVEN set in their board _defconfig.
1.0
drivers: uart_mcux_flexcomm: async api does not connect interrupt - Interrupt connect/configuration doesn't happen unless CONFIG_INTERRUPT_DRIVEN is set, but building with CONFIG_ASYNC_API only should connect/configure the interrupt, since it is needed for the async api to function. This problem has gone unnoticed this far because all of the boards this driver / async api was tested on have CONFIG_INTERRUPT_DRIVEN set in their board _defconfig.
priority
drivers uart mcux flexcomm async api does not connect interrupt interrupt connect configuration doesn t happen unless config interrupt driven is set but building with config async api only should connect configure the interrupt since it is needed for the async api to function this problem has gone unnoticed this far because all of the boards this driver async api was tested on have config interrupt driven set in their board defconfig
1
169,272
6,397,965,857
IssuesEvent
2017-08-04 19:20:33
mreishman/Log-Hog
https://api.github.com/repos/mreishman/Log-Hog
closed
Success update/Save message
enhancement Priority - 4 - Low
- [x] Success update/save message when finished saving (Would require ajax call for saving)
1.0
Success update/Save message - - [x] Success update/save message when finished saving (Would require ajax call for saving)
priority
success update save message success update save message when finished saving would require ajax call for saving
1
227,062
7,526,475,731
IssuesEvent
2018-04-13 14:08:43
nutofem/nuto
https://api.github.com/repos/nutofem/nuto
closed
Damage material parameters
low priority question
### Problem Currently, a lot of code is required to instantiate the appropriate [laws](https://github.com/nutofem/nuto/blob/PDE_reviewed/test/mechanics/constitutive/LocalIsotropicDamage.cpp#L38)/[integrands](https://github.com/nutofem/nuto/blob/PDE_reviewed/test/mechanics/integrands/GradientDamage.cpp#L114). Like ~~~cpp template <int TDim> auto TestLaw() { // Define the law using policy based design principles, hopefully applied correctly using Damage = Constitutive::DamageLawExponential; using StrainNorm = Constitutive::ModifiedMisesStrainNorm<TDim>; using Evolution = Laws::EvolutionImplicit<TDim>; using Law = Laws::LocalIsotropicDamage<TDim, Damage, Evolution>; Damage dmg(kappa0, beta, alpha); Evolution evolutionEq(StrainNorm(nu, fc / ft), /*numCells=*/1, /*numIps=*/1); Laws::LinearElasticDamage<TDim> elasticDamage(E, nu); return Law(elasticDamage, dmg, evolutionEq); } ~~~ Some material parameters are required multiple times (`kappa0 = ft/E`) which is error prone and long. Also parameters like alpha or beta are not intuitive. But they do relate to real material parameters. ### Solution 1) Define a material class. Dealing with mechanical softening problems often involves the same set of parameters. Like ~~~cpp struct SofteningMaterial { double youngsModulus; double poissonRatio; double tensileStrength; double compressiveStrength; double residualStrength; double fractureEnergy; double nonlocalRadius; } ~~~ 2) Add constructors that takes a `SofteningMaterial` to the softening laws/integrands, as well as the deeper classes like (strain norms, damage laws, linear elastic damage). This allows a proper policy based design with defaulted template arguments. The code above would then look like ~~~cpp template <int TDim> auto TestLaw(SofteningMaterial material) { return Laws::LocalIsotropicDamage<TDim>(material); // with reasonable the default template arguments } ~~~ 3) Still allow construction with the individual parameters. Still allow customization by changing the template parameters. ### Discussion: - Is that relevant for someone else? I think so as we often deal with concrete. - Naming alright? Access via public members alright? With `m` (`mYoungsModulus` vs `youngsModulus`)?
1.0
Damage material parameters - ### Problem Currently, a lot of code is required to instantiate the appropriate [laws](https://github.com/nutofem/nuto/blob/PDE_reviewed/test/mechanics/constitutive/LocalIsotropicDamage.cpp#L38)/[integrands](https://github.com/nutofem/nuto/blob/PDE_reviewed/test/mechanics/integrands/GradientDamage.cpp#L114). Like ~~~cpp template <int TDim> auto TestLaw() { // Define the law using policy based design principles, hopefully applied correctly using Damage = Constitutive::DamageLawExponential; using StrainNorm = Constitutive::ModifiedMisesStrainNorm<TDim>; using Evolution = Laws::EvolutionImplicit<TDim>; using Law = Laws::LocalIsotropicDamage<TDim, Damage, Evolution>; Damage dmg(kappa0, beta, alpha); Evolution evolutionEq(StrainNorm(nu, fc / ft), /*numCells=*/1, /*numIps=*/1); Laws::LinearElasticDamage<TDim> elasticDamage(E, nu); return Law(elasticDamage, dmg, evolutionEq); } ~~~ Some material parameters are required multiple times (`kappa0 = ft/E`) which is error prone and long. Also parameters like alpha or beta are not intuitive. But they do relate to real material parameters. ### Solution 1) Define a material class. Dealing with mechanical softening problems often involves the same set of parameters. Like ~~~cpp struct SofteningMaterial { double youngsModulus; double poissonRatio; double tensileStrength; double compressiveStrength; double residualStrength; double fractureEnergy; double nonlocalRadius; } ~~~ 2) Add constructors that takes a `SofteningMaterial` to the softening laws/integrands, as well as the deeper classes like (strain norms, damage laws, linear elastic damage). This allows a proper policy based design with defaulted template arguments. The code above would then look like ~~~cpp template <int TDim> auto TestLaw(SofteningMaterial material) { return Laws::LocalIsotropicDamage<TDim>(material); // with reasonable the default template arguments } ~~~ 3) Still allow construction with the individual parameters. Still allow customization by changing the template parameters. ### Discussion: - Is that relevant for someone else? I think so as we often deal with concrete. - Naming alright? Access via public members alright? With `m` (`mYoungsModulus` vs `youngsModulus`)?
priority
damage material parameters problem currently a lot of code is required to instantiate the appropriate like cpp template auto testlaw define the law using policy based design principles hopefully applied correctly using damage constitutive damagelawexponential using strainnorm constitutive modifiedmisesstrainnorm using evolution laws evolutionimplicit using law laws localisotropicdamage damage dmg beta alpha evolution evolutioneq strainnorm nu fc ft numcells numips laws linearelasticdamage elasticdamage e nu return law elasticdamage dmg evolutioneq some material parameters are required multiple times ft e which is error prone and long also parameters like alpha or beta are not intuitive but they do relate to real material parameters solution define a material class dealing with mechanical softening problems often involves the same set of parameters like cpp struct softeningmaterial double youngsmodulus double poissonratio double tensilestrength double compressivestrength double residualstrength double fractureenergy double nonlocalradius add constructors that takes a softeningmaterial to the softening laws integrands as well as the deeper classes like strain norms damage laws linear elastic damage this allows a proper policy based design with defaulted template arguments the code above would then look like cpp template auto testlaw softeningmaterial material return laws localisotropicdamage material with reasonable the default template arguments still allow construction with the individual parameters still allow customization by changing the template parameters discussion is that relevant for someone else i think so as we often deal with concrete naming alright access via public members alright with m myoungsmodulus vs youngsmodulus
1
254,253
8,071,899,508
IssuesEvent
2018-08-06 14:29:42
strapi/strapi
https://api.github.com/repos/strapi/strapi
reopened
Number field doesn't accept periods for decimal/floats. Not able to save Content Type entry that has number fields
priority: low
**Informations** - **Node.js version**: v10.8.0 - **npm version**: 6.2.0 - **Strapi version**: 3.0.0-alpha.13.0.1 - **Database**: mongodb - **Operating system**: macOS High Sierra **What is the current behavior?** When entering a period in a number field inside a Content Type for any of the three available number formats, any number that was already entered is removed and replaced by a 0. The 0 cannot be removed after. It can only be changed with the up/down arrows. A coma for decimal separation seems to work which is no good for me. **Steps to reproduce the problem** Create a Content Type, add any of the available number fields to it. Go to make a new entry in your new Content Type. Type a few numbers in a number field and then try typing a period. **What is the expected behavior?** Being able to have a period for decimal separation. Not having to refresh to remove the 0 that gets stuck in the field. **Suggestions** Maybe remove the up down arrows? Seems pointless to me for a simple number input.
1.0
Number field doesn't accept periods for decimal/floats. Not able to save Content Type entry that has number fields - **Informations** - **Node.js version**: v10.8.0 - **npm version**: 6.2.0 - **Strapi version**: 3.0.0-alpha.13.0.1 - **Database**: mongodb - **Operating system**: macOS High Sierra **What is the current behavior?** When entering a period in a number field inside a Content Type for any of the three available number formats, any number that was already entered is removed and replaced by a 0. The 0 cannot be removed after. It can only be changed with the up/down arrows. A coma for decimal separation seems to work which is no good for me. **Steps to reproduce the problem** Create a Content Type, add any of the available number fields to it. Go to make a new entry in your new Content Type. Type a few numbers in a number field and then try typing a period. **What is the expected behavior?** Being able to have a period for decimal separation. Not having to refresh to remove the 0 that gets stuck in the field. **Suggestions** Maybe remove the up down arrows? Seems pointless to me for a simple number input.
priority
number field doesn t accept periods for decimal floats not able to save content type entry that has number fields informations node js version npm version strapi version alpha database mongodb operating system macos high sierra what is the current behavior when entering a period in a number field inside a content type for any of the three available number formats any number that was already entered is removed and replaced by a the cannot be removed after it can only be changed with the up down arrows a coma for decimal separation seems to work which is no good for me steps to reproduce the problem create a content type add any of the available number fields to it go to make a new entry in your new content type type a few numbers in a number field and then try typing a period what is the expected behavior being able to have a period for decimal separation not having to refresh to remove the that gets stuck in the field suggestions maybe remove the up down arrows seems pointless to me for a simple number input
1
116,494
4,702,879,507
IssuesEvent
2016-10-13 05:02:31
ObjectiveSubject/cgu
https://api.github.com/repos/ObjectiveSubject/cgu
closed
Global Footer phone # and address edit
From Client Low Priority
@kpettinga From Hollis: Phone number should use dashes between the numbers (909-621-8000), and the address should be written: 150 E. 10th Street I didn't see the option to edit this in WP menus, let me know if I would find this elsewhere
1.0
Global Footer phone # and address edit - @kpettinga From Hollis: Phone number should use dashes between the numbers (909-621-8000), and the address should be written: 150 E. 10th Street I didn't see the option to edit this in WP menus, let me know if I would find this elsewhere
priority
global footer phone and address edit kpettinga from hollis phone number should use dashes between the numbers and the address should be written e street i didn t see the option to edit this in wp menus let me know if i would find this elsewhere
1
316,044
9,635,291,964
IssuesEvent
2019-05-16 00:27:02
sinker1345/Home-Assistant-Configuration
https://api.github.com/repos/sinker1345/Home-Assistant-Configuration
opened
Create Home Landing Page for mobile and for Desktop
Low Priority Need More Research
Create Landing page for Mobile/Desktop Clients
1.0
Create Home Landing Page for mobile and for Desktop - Create Landing page for Mobile/Desktop Clients
priority
create home landing page for mobile and for desktop create landing page for mobile desktop clients
1
177,686
6,586,496,665
IssuesEvent
2017-09-13 17:29:11
OpenBazaar/openbazaar-desktop
https://api.github.com/repos/OpenBazaar/openbazaar-desktop
opened
Change required input asterisks from green to red across the application
enhancement Low Priority
A few users have reported issues seeing which fields are required, possibly because the asterisks are green. Red is more common and will stand out more.
1.0
Change required input asterisks from green to red across the application - A few users have reported issues seeing which fields are required, possibly because the asterisks are green. Red is more common and will stand out more.
priority
change required input asterisks from green to red across the application a few users have reported issues seeing which fields are required possibly because the asterisks are green red is more common and will stand out more
1
632,728
20,205,232,353
IssuesEvent
2022-02-11 19:31:02
getting-things-gnome/gtg
https://api.github.com/repos/getting-things-gnome/gtg
opened
Regression: "Pick a date..." action is broken in the git version
bug priority:critical low-hanging-fruit reproducible-in-git
Unrelated to my branch, this also happens in master when you try to "Pick a date" to defer or retarget a task, whether from the contextual menus or from the headerbar's menubutton: ``` Traceback (most recent call last): File "GTG/gtk/browser/main_window.py", line 1216, in on_set_due_for_specific_date self.calendar.set_date(date, GTGCalendar.DATE_KIND_DUE) File "GTG/gtk/editor/calendar.py", line 79, in set_date self.__calendar.select_day(date.day) AttributeError: 'Date' object has no attribute 'day' ```
1.0
Regression: "Pick a date..." action is broken in the git version - Unrelated to my branch, this also happens in master when you try to "Pick a date" to defer or retarget a task, whether from the contextual menus or from the headerbar's menubutton: ``` Traceback (most recent call last): File "GTG/gtk/browser/main_window.py", line 1216, in on_set_due_for_specific_date self.calendar.set_date(date, GTGCalendar.DATE_KIND_DUE) File "GTG/gtk/editor/calendar.py", line 79, in set_date self.__calendar.select_day(date.day) AttributeError: 'Date' object has no attribute 'day' ```
priority
regression pick a date action is broken in the git version unrelated to my branch this also happens in master when you try to pick a date to defer or retarget a task whether from the contextual menus or from the headerbar s menubutton traceback most recent call last file gtg gtk browser main window py line in on set due for specific date self calendar set date date gtgcalendar date kind due file gtg gtk editor calendar py line in set date self calendar select day date day attributeerror date object has no attribute day
1
725,975
24,983,132,124
IssuesEvent
2022-11-02 13:17:36
AY2223S1-CS2103-F14-2/tp
https://api.github.com/repos/AY2223S1-CS2103-F14-2/tp
closed
[PE-D][Tester D] Empty name search fails
type.Bug priority.High severity.Low type.FunctionalityBug
find n/ throws Exception ![image.png](https://raw.githubusercontent.com/cheeheng/ped/main/files/6405145b-81c6-4100-a562-d895022e2b69.png) <!--session: 1666945157406-6b3e1ca5-1f16-459c-b8c8-4eb7500ccaba--> <!--Version: Web v3.4.4--> ------------- Labels: `severity.Low` `type.FunctionalityBug` original: cheeheng/ped#3
1.0
[PE-D][Tester D] Empty name search fails - find n/ throws Exception ![image.png](https://raw.githubusercontent.com/cheeheng/ped/main/files/6405145b-81c6-4100-a562-d895022e2b69.png) <!--session: 1666945157406-6b3e1ca5-1f16-459c-b8c8-4eb7500ccaba--> <!--Version: Web v3.4.4--> ------------- Labels: `severity.Low` `type.FunctionalityBug` original: cheeheng/ped#3
priority
empty name search fails find n throws exception labels severity low type functionalitybug original cheeheng ped
1
361,302
10,707,025,597
IssuesEvent
2019-10-24 16:32:42
readthedocs/sphinx_rtd_theme
https://api.github.com/repos/readthedocs/sphinx_rtd_theme
closed
Duplicated fields in _theme_layout.sass
Good First Issue Priority: low
Some fields in `_theme_layout.sass` are duplicated. For example: https://github.com/readthedocs/sphinx_rtd_theme/blob/db0f25787cefe0480b91db9b5346cf712d8a18c2/src/sass/_theme_layout.sass#L172-L175 https://github.com/readthedocs/sphinx_rtd_theme/blob/db0f25787cefe0480b91db9b5346cf712d8a18c2/src/sass/_theme_layout.sass#L179-L182
1.0
Duplicated fields in _theme_layout.sass - Some fields in `_theme_layout.sass` are duplicated. For example: https://github.com/readthedocs/sphinx_rtd_theme/blob/db0f25787cefe0480b91db9b5346cf712d8a18c2/src/sass/_theme_layout.sass#L172-L175 https://github.com/readthedocs/sphinx_rtd_theme/blob/db0f25787cefe0480b91db9b5346cf712d8a18c2/src/sass/_theme_layout.sass#L179-L182
priority
duplicated fields in theme layout sass some fields in theme layout sass are duplicated for example
1
503,860
14,599,723,512
IssuesEvent
2020-12-21 05:05:35
rism-ch/verovio
https://api.github.com/repos/rism-ch/verovio
opened
cross-staff notes + layers + articulations/slurs/ties
enhancement low priority
When notes are placed cross-staff, then are now working well to simulate virtual layers on the away staff. However, it would be useful if items such as articulations, slurs and ties operate in the virtual layer in a similar manner. Currently these items in the virtual layer are not aware of their virtual layer. Example for articulations: <img width="416" alt="Screen Shot 2020-12-20 at 8 42 45 PM" src="https://user-images.githubusercontent.com/3487289/102740402-90035600-4304-11eb-8dcd-451b61bbdf30.png"> Meause 1 renders as expected, with both staves containing a single staff. Measure 2 notes basically render as expected, but there is a problem that the beam remains on the bottom staff, due to the articulations which are to be automatically placed. (I could add a separate issue for that if you want :-) Measure 3 is correctly rendered after all articulations are given explicit placements. Ideally the data for measure 2 would be rendered the same as measure 3. <details> <summary> Click to see MEI data for the above example </summary> ```xml <?xml version="1.0" encoding="UTF-8"?> <?xml-model href="https://music-encoding.org/schema/4.0.0/mei-all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?> <?xml-model href="https://music-encoding.org/schema/4.0.0/mei-all.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?> <mei xmlns="http://www.music-encoding.org/ns/mei" meiversion="4.0.0"> <meiHead> <fileDesc> <titleStmt> <title /> </titleStmt> <pubStmt /> </fileDesc> <encodingDesc> <appInfo> <application isodate="2020-12-20T20:42:47" version="3.1.0-dev-1629129"> <name>Verovio</name> <p>Transcoded from Humdrum</p> </application> </appInfo> </encodingDesc> <workList> <work> <title /> </work> </workList> </meiHead> <music> <body> <mdiv xml:id="mdiv-0000001934478180"> <score xml:id="score-0000000528583923"> <scoreDef xml:id="scoredef-0000000451334578"> <staffGrp xml:id="staffgrp-0000001773634979" symbol="brace" bar.thru="true"> <staffDef xml:id="staffdef-0000001716949875" n="1" lines="5"> <clef xml:id="clef-L2F2" shape="G" line="2" /> </staffDef> <staffDef xml:id="staffdef-0000001413695928" n="2" lines="5"> <clef xml:id="clef-L2F1" shape="F" line="4" /> </staffDef> </staffGrp> </scoreDef> <section xml:id="section-L1F1"> <measure xml:id="measure-L1" n="1"> <staff xml:id="staff-0000000723711666" n="1"> <layer xml:id="layer-L1F2N1" n="1"> <beam xml:id="beam-L4F2-L7F2"> <note xml:id="note-L4F2" dur="8" oct="4" pname="g" accid.ges="n"> <artic xml:id="artic-L4F2" artic="stacc" /> </note> <note xml:id="note-L5F2" dur="8" oct="4" pname="f" accid.ges="n"> <artic xml:id="artic-L5F2" artic="stacc" /> </note> <note xml:id="note-L6F2" dur="8" oct="4" pname="a" accid.ges="n"> <artic xml:id="artic-L6F2" artic="stacc" /> </note> <note xml:id="note-L7F2" dur="8" oct="5" pname="c" accid.ges="n"> <artic xml:id="artic-L7F2" artic="stacc" /> </note> </beam> </layer> </staff> <staff xml:id="staff-0000000972500718" n="2"> <layer xml:id="layer-L1F1N1" n="1"> <beam xml:id="beam-L4F1-L7F1"> <note xml:id="note-L4F1" dur="8" oct="4" pname="c" accid.ges="n"> <artic xml:id="artic-L4F1" artic="stacc" /> </note> <note xml:id="note-L5F1" dur="8" oct="4" pname="e" accid.ges="n"> <artic xml:id="artic-L5F1" artic="stacc" /> </note> <note xml:id="note-L6F1" dur="8" oct="4" pname="d" accid.ges="n"> <artic xml:id="artic-L6F1" artic="stacc" /> </note> <note xml:id="note-L7F1" dur="8" oct="4" pname="c" accid.ges="n"> <artic xml:id="artic-L7F1" artic="stacc" /> </note> </beam> </layer> </staff> </measure> <measure xml:id="measure-L8" n="2"> <staff xml:id="staff-L8F2N1" n="1"> <layer xml:id="layer-L8F2N1" n="1"> <beam xml:id="beam-L10F2-L13F2"> <note xml:id="note-L10F2" dur="8" oct="4" pname="g" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L10F2" artic="stacc" /> </note> <note xml:id="note-L11F2" dur="8" oct="4" pname="f" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L11F2" artic="stacc" /> </note> <note xml:id="note-L12F2" dur="8" oct="4" pname="a" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L12F2" artic="stacc" /> </note> <note xml:id="note-L13F2" dur="8" oct="5" pname="c" accid.ges="n"> <artic xml:id="artic-L13F2" artic="stacc" /> </note> </beam> </layer> </staff> <staff xml:id="staff-L8F1N1" n="2"> <layer xml:id="layer-L8F1N1" n="1"> <beam xml:id="beam-L10F1-L13F1"> <note xml:id="note-L10F1" dur="8" staff="1" oct="4" pname="c" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L10F1" artic="stacc" /> </note> <note xml:id="note-L11F1" dur="8" staff="1" oct="4" pname="e" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L11F1" artic="stacc" /> </note> <note xml:id="note-L12F1" dur="8" staff="1" oct="4" pname="d" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L12F1" artic="stacc" /> </note> <note xml:id="note-L13F1" dur="8" oct="4" pname="c" accid.ges="n"> <artic xml:id="artic-L13F1" artic="stacc" place="above" /> </note> </beam> </layer> </staff> <dir xml:id="dir-L9F1" place="below" staff="2" tstamp="1.000000"> <rend xml:id="rend-0000000780681150" color="dodgerblue" fontstyle="normal">automatic</rend> </dir> </measure> <measure xml:id="measure-L14"> <staff xml:id="staff-L14F2N1" n="1"> <layer xml:id="layer-L14F2N1" n="1"> <beam xml:id="beam-L16F2-L19F2"> <note xml:id="note-L16F2" dur="8" oct="4" pname="g" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L16F2" artic="stacc" place="above" /> </note> <note xml:id="note-L17F2" dur="8" oct="4" pname="f" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L17F2" artic="stacc" place="above" /> </note> <note xml:id="note-L18F2" dur="8" oct="4" pname="a" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L18F2" artic="stacc" place="above" /> </note> <note xml:id="note-L19F2" dur="8" oct="5" pname="c" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L19F2" artic="stacc" place="above" /> </note> </beam> </layer> </staff> <staff xml:id="staff-L14F1N1" n="2"> <layer xml:id="layer-L14F1N1" n="1"> <beam xml:id="beam-L16F1-L19F1" beam.with="above"> <note xml:id="note-L16F1" dur="8" staff="1" oct="4" pname="c" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L16F1" artic="stacc" place="below" /> </note> <note xml:id="note-L17F1" dur="8" staff="1" oct="4" pname="e" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L17F1" artic="stacc" place="below" /> </note> <note xml:id="note-L18F1" dur="8" staff="1" oct="4" pname="d" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L18F1" artic="stacc" place="below" /> </note> <note xml:id="note-L19F1" dur="8" staff="1" oct="4" pname="c" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L19F1" artic="stacc" place="below" /> </note> </beam> </layer> </staff> <dir xml:id="dir-L15F1" place="below" staff="2" tstamp="1.000000"> <rend xml:id="rend-0000001304519702" color="dodgerblue" fontstyle="normal">expected</rend> </dir> </measure> </section> </score> </mdiv> </body> </music> </mei> ``` </details> --------------------- Here is an example of slurs on notes in virtual layers: <img width="393" alt="Screen Shot 2020-12-20 at 9 00 59 PM" src="https://user-images.githubusercontent.com/3487289/102741166-79f69500-4306-11eb-9d35-945b77a9859c.png"> In measure 2 when the slur placements are automatic, the placement of the slurs is confused. The `layer@n="1"` slur is placed as if there were no virtual second layer, and the slur in the virtual second layer attempts to move above the notes in this layer. When explicit placements are given, the slurs are rendered as expected. <details> <summary> Click to see MEI data for the above example </summary> ```xml <?xml version="1.0" encoding="UTF-8"?> <?xml-model href="https://music-encoding.org/schema/4.0.0/mei-all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?> <?xml-model href="https://music-encoding.org/schema/4.0.0/mei-all.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?> <mei xmlns="http://www.music-encoding.org/ns/mei" meiversion="4.0.0"> <meiHead> <fileDesc> <titleStmt> <title /> </titleStmt> <pubStmt /> </fileDesc> <encodingDesc> <appInfo> <application isodate="2020-12-20T20:56:29" version="3.1.0-dev-1629129"> <name>Verovio</name> <p>Transcoded from Humdrum</p> </application> </appInfo> </encodingDesc> <workList> <work> <title xml:id="title-L22" analog="humdrum:Xfi" type="translated">shed -e 's/\'//g'</title> </work> </workList> </meiHead> <music> <body> <mdiv xml:id="mdiv-0000000297103815"> <score xml:id="score-0000000409232238"> <scoreDef xml:id="scoredef-0000000205186188"> <staffGrp xml:id="staffgrp-0000001953297879" symbol="brace" bar.thru="true"> <staffDef xml:id="staffdef-0000000105764479" n="1" lines="5"> <clef xml:id="clef-L2F2" shape="G" line="2" /> </staffDef> <staffDef xml:id="staffdef-0000000843029324" n="2" lines="5"> <clef xml:id="clef-L2F1" shape="F" line="4" /> </staffDef> </staffGrp> </scoreDef> <section xml:id="section-L1F1"> <measure xml:id="measure-L1" n="1"> <staff xml:id="staff-0000000785403651" n="1"> <layer xml:id="layer-L1F2N1" n="1"> <beam xml:id="beam-L5F2-L8F2"> <note xml:id="note-L5F2" dur="8" oct="4" pname="g" color="limegreen" accid.ges="n" /> <note xml:id="note-L6F2" dur="8" oct="4" pname="f" color="limegreen" accid.ges="n" /> <note xml:id="note-L7F2" dur="8" oct="4" pname="a" color="limegreen" accid.ges="n" /> <note xml:id="note-L8F2" dur="8" oct="5" pname="c" color="limegreen" accid.ges="n" /> </beam> </layer> </staff> <staff xml:id="staff-0000001974019626" n="2"> <layer xml:id="layer-L1F1N1" n="1"> <beam xml:id="beam-L5F1-L8F1"> <note xml:id="note-L5F1" dur="8" oct="4" pname="c" color="crimson" accid.ges="n" /> <note xml:id="note-L6F1" dur="8" oct="4" pname="e" color="crimson" accid.ges="n" /> <note xml:id="note-L7F1" dur="8" oct="4" pname="d" color="crimson" accid.ges="n" /> <note xml:id="note-L8F1" dur="8" oct="4" pname="c" color="crimson" accid.ges="n" /> </beam> </layer> </staff> <slur xml:id="slur-L5F2-L8F2" staff="1" color="limegreen" startid="#note-L5F2" endid="#note-L8F2" /> <slur xml:id="slur-L5F1-L8F1" staff="2" color="crimson" startid="#note-L5F1" endid="#note-L8F1" /> </measure> <measure xml:id="measure-L9" n="2"> <staff xml:id="staff-L9F2N1" n="1"> <layer xml:id="layer-L9F2N1" n="1"> <beam xml:id="beam-L11F2-L14F2"> <note xml:id="note-L11F2" dur="8" oct="4" pname="g" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L12F2" dur="8" oct="4" pname="f" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L13F2" dur="8" oct="4" pname="a" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L14F2" dur="8" oct="5" pname="c" color="limegreen" stem.dir="up" accid.ges="n" /> </beam> </layer> </staff> <staff xml:id="staff-L9F1N1" n="2"> <layer xml:id="layer-L9F1N1" n="1"> <beam xml:id="beam-L11F1-L14F1" beam.with="above"> <note xml:id="note-L11F1" dur="8" staff="1" oct="4" pname="c" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L12F1" dur="8" staff="1" oct="4" pname="e" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L13F1" dur="8" staff="1" oct="4" pname="d" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L14F1" dur="8" staff="1" oct="4" pname="c" color="crimson" stem.dir="down" accid.ges="n" /> </beam> </layer> </staff> <slur xml:id="slur-L11F2-L14F2" staff="1" color="limegreen" startid="#note-L11F2" endid="#note-L14F2" /> <dir xml:id="dir-L10F1" place="below" staff="2" tstamp="1.000000"> <rend xml:id="rend-0000002081682876" color="dodgerblue" fontstyle="normal">automatic</rend> </dir> <slur xml:id="slur-L11F1-L14F1" staff="1" color="crimson" startid="#note-L11F1" endid="#note-L14F1" /> </measure> <measure xml:id="measure-L15"> <staff xml:id="staff-L15F2N1" n="1"> <layer xml:id="layer-L15F2N1" n="1"> <beam xml:id="beam-L17F2-L20F2"> <note xml:id="note-L17F2" dur="8" oct="4" pname="g" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L18F2" dur="8" oct="4" pname="f" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L19F2" dur="8" oct="4" pname="a" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L20F2" dur="8" oct="5" pname="c" color="limegreen" stem.dir="up" accid.ges="n" /> </beam> </layer> </staff> <staff xml:id="staff-L15F1N1" n="2"> <layer xml:id="layer-L15F1N1" n="1"> <beam xml:id="beam-L17F1-L20F1" beam.with="above"> <note xml:id="note-L17F1" dur="8" staff="1" oct="4" pname="c" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L18F1" dur="8" staff="1" oct="4" pname="e" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L19F1" dur="8" staff="1" oct="4" pname="d" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L20F1" dur="8" staff="1" oct="4" pname="c" color="crimson" stem.dir="down" accid.ges="n" /> </beam> </layer> </staff> <slur xml:id="slur-L17F2-L20F2" staff="2" color="limegreen" startid="#note-L17F2" endid="#note-L20F2" curvedir="above" /> <dir xml:id="dir-L16F1" place="below" staff="2" tstamp="1.000000"> <rend xml:id="rend-0000001761266588" color="dodgerblue" fontstyle="normal">expected</rend> </dir> <slur xml:id="slur-L17F1-L20F1" staff="1" color="crimson" startid="#note-L17F1" endid="#note-L20F1" curvedir="below" /> </measure> </section> </score> </mdiv> </body> </music> </mei> ``` </details>
1.0
cross-staff notes + layers + articulations/slurs/ties - When notes are placed cross-staff, then are now working well to simulate virtual layers on the away staff. However, it would be useful if items such as articulations, slurs and ties operate in the virtual layer in a similar manner. Currently these items in the virtual layer are not aware of their virtual layer. Example for articulations: <img width="416" alt="Screen Shot 2020-12-20 at 8 42 45 PM" src="https://user-images.githubusercontent.com/3487289/102740402-90035600-4304-11eb-8dcd-451b61bbdf30.png"> Meause 1 renders as expected, with both staves containing a single staff. Measure 2 notes basically render as expected, but there is a problem that the beam remains on the bottom staff, due to the articulations which are to be automatically placed. (I could add a separate issue for that if you want :-) Measure 3 is correctly rendered after all articulations are given explicit placements. Ideally the data for measure 2 would be rendered the same as measure 3. <details> <summary> Click to see MEI data for the above example </summary> ```xml <?xml version="1.0" encoding="UTF-8"?> <?xml-model href="https://music-encoding.org/schema/4.0.0/mei-all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?> <?xml-model href="https://music-encoding.org/schema/4.0.0/mei-all.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?> <mei xmlns="http://www.music-encoding.org/ns/mei" meiversion="4.0.0"> <meiHead> <fileDesc> <titleStmt> <title /> </titleStmt> <pubStmt /> </fileDesc> <encodingDesc> <appInfo> <application isodate="2020-12-20T20:42:47" version="3.1.0-dev-1629129"> <name>Verovio</name> <p>Transcoded from Humdrum</p> </application> </appInfo> </encodingDesc> <workList> <work> <title /> </work> </workList> </meiHead> <music> <body> <mdiv xml:id="mdiv-0000001934478180"> <score xml:id="score-0000000528583923"> <scoreDef xml:id="scoredef-0000000451334578"> <staffGrp xml:id="staffgrp-0000001773634979" symbol="brace" bar.thru="true"> <staffDef xml:id="staffdef-0000001716949875" n="1" lines="5"> <clef xml:id="clef-L2F2" shape="G" line="2" /> </staffDef> <staffDef xml:id="staffdef-0000001413695928" n="2" lines="5"> <clef xml:id="clef-L2F1" shape="F" line="4" /> </staffDef> </staffGrp> </scoreDef> <section xml:id="section-L1F1"> <measure xml:id="measure-L1" n="1"> <staff xml:id="staff-0000000723711666" n="1"> <layer xml:id="layer-L1F2N1" n="1"> <beam xml:id="beam-L4F2-L7F2"> <note xml:id="note-L4F2" dur="8" oct="4" pname="g" accid.ges="n"> <artic xml:id="artic-L4F2" artic="stacc" /> </note> <note xml:id="note-L5F2" dur="8" oct="4" pname="f" accid.ges="n"> <artic xml:id="artic-L5F2" artic="stacc" /> </note> <note xml:id="note-L6F2" dur="8" oct="4" pname="a" accid.ges="n"> <artic xml:id="artic-L6F2" artic="stacc" /> </note> <note xml:id="note-L7F2" dur="8" oct="5" pname="c" accid.ges="n"> <artic xml:id="artic-L7F2" artic="stacc" /> </note> </beam> </layer> </staff> <staff xml:id="staff-0000000972500718" n="2"> <layer xml:id="layer-L1F1N1" n="1"> <beam xml:id="beam-L4F1-L7F1"> <note xml:id="note-L4F1" dur="8" oct="4" pname="c" accid.ges="n"> <artic xml:id="artic-L4F1" artic="stacc" /> </note> <note xml:id="note-L5F1" dur="8" oct="4" pname="e" accid.ges="n"> <artic xml:id="artic-L5F1" artic="stacc" /> </note> <note xml:id="note-L6F1" dur="8" oct="4" pname="d" accid.ges="n"> <artic xml:id="artic-L6F1" artic="stacc" /> </note> <note xml:id="note-L7F1" dur="8" oct="4" pname="c" accid.ges="n"> <artic xml:id="artic-L7F1" artic="stacc" /> </note> </beam> </layer> </staff> </measure> <measure xml:id="measure-L8" n="2"> <staff xml:id="staff-L8F2N1" n="1"> <layer xml:id="layer-L8F2N1" n="1"> <beam xml:id="beam-L10F2-L13F2"> <note xml:id="note-L10F2" dur="8" oct="4" pname="g" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L10F2" artic="stacc" /> </note> <note xml:id="note-L11F2" dur="8" oct="4" pname="f" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L11F2" artic="stacc" /> </note> <note xml:id="note-L12F2" dur="8" oct="4" pname="a" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L12F2" artic="stacc" /> </note> <note xml:id="note-L13F2" dur="8" oct="5" pname="c" accid.ges="n"> <artic xml:id="artic-L13F2" artic="stacc" /> </note> </beam> </layer> </staff> <staff xml:id="staff-L8F1N1" n="2"> <layer xml:id="layer-L8F1N1" n="1"> <beam xml:id="beam-L10F1-L13F1"> <note xml:id="note-L10F1" dur="8" staff="1" oct="4" pname="c" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L10F1" artic="stacc" /> </note> <note xml:id="note-L11F1" dur="8" staff="1" oct="4" pname="e" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L11F1" artic="stacc" /> </note> <note xml:id="note-L12F1" dur="8" staff="1" oct="4" pname="d" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L12F1" artic="stacc" /> </note> <note xml:id="note-L13F1" dur="8" oct="4" pname="c" accid.ges="n"> <artic xml:id="artic-L13F1" artic="stacc" place="above" /> </note> </beam> </layer> </staff> <dir xml:id="dir-L9F1" place="below" staff="2" tstamp="1.000000"> <rend xml:id="rend-0000000780681150" color="dodgerblue" fontstyle="normal">automatic</rend> </dir> </measure> <measure xml:id="measure-L14"> <staff xml:id="staff-L14F2N1" n="1"> <layer xml:id="layer-L14F2N1" n="1"> <beam xml:id="beam-L16F2-L19F2"> <note xml:id="note-L16F2" dur="8" oct="4" pname="g" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L16F2" artic="stacc" place="above" /> </note> <note xml:id="note-L17F2" dur="8" oct="4" pname="f" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L17F2" artic="stacc" place="above" /> </note> <note xml:id="note-L18F2" dur="8" oct="4" pname="a" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L18F2" artic="stacc" place="above" /> </note> <note xml:id="note-L19F2" dur="8" oct="5" pname="c" stem.dir="up" accid.ges="n"> <artic xml:id="artic-L19F2" artic="stacc" place="above" /> </note> </beam> </layer> </staff> <staff xml:id="staff-L14F1N1" n="2"> <layer xml:id="layer-L14F1N1" n="1"> <beam xml:id="beam-L16F1-L19F1" beam.with="above"> <note xml:id="note-L16F1" dur="8" staff="1" oct="4" pname="c" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L16F1" artic="stacc" place="below" /> </note> <note xml:id="note-L17F1" dur="8" staff="1" oct="4" pname="e" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L17F1" artic="stacc" place="below" /> </note> <note xml:id="note-L18F1" dur="8" staff="1" oct="4" pname="d" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L18F1" artic="stacc" place="below" /> </note> <note xml:id="note-L19F1" dur="8" staff="1" oct="4" pname="c" stem.dir="down" accid.ges="n"> <artic xml:id="artic-L19F1" artic="stacc" place="below" /> </note> </beam> </layer> </staff> <dir xml:id="dir-L15F1" place="below" staff="2" tstamp="1.000000"> <rend xml:id="rend-0000001304519702" color="dodgerblue" fontstyle="normal">expected</rend> </dir> </measure> </section> </score> </mdiv> </body> </music> </mei> ``` </details> --------------------- Here is an example of slurs on notes in virtual layers: <img width="393" alt="Screen Shot 2020-12-20 at 9 00 59 PM" src="https://user-images.githubusercontent.com/3487289/102741166-79f69500-4306-11eb-9d35-945b77a9859c.png"> In measure 2 when the slur placements are automatic, the placement of the slurs is confused. The `layer@n="1"` slur is placed as if there were no virtual second layer, and the slur in the virtual second layer attempts to move above the notes in this layer. When explicit placements are given, the slurs are rendered as expected. <details> <summary> Click to see MEI data for the above example </summary> ```xml <?xml version="1.0" encoding="UTF-8"?> <?xml-model href="https://music-encoding.org/schema/4.0.0/mei-all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?> <?xml-model href="https://music-encoding.org/schema/4.0.0/mei-all.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?> <mei xmlns="http://www.music-encoding.org/ns/mei" meiversion="4.0.0"> <meiHead> <fileDesc> <titleStmt> <title /> </titleStmt> <pubStmt /> </fileDesc> <encodingDesc> <appInfo> <application isodate="2020-12-20T20:56:29" version="3.1.0-dev-1629129"> <name>Verovio</name> <p>Transcoded from Humdrum</p> </application> </appInfo> </encodingDesc> <workList> <work> <title xml:id="title-L22" analog="humdrum:Xfi" type="translated">shed -e 's/\'//g'</title> </work> </workList> </meiHead> <music> <body> <mdiv xml:id="mdiv-0000000297103815"> <score xml:id="score-0000000409232238"> <scoreDef xml:id="scoredef-0000000205186188"> <staffGrp xml:id="staffgrp-0000001953297879" symbol="brace" bar.thru="true"> <staffDef xml:id="staffdef-0000000105764479" n="1" lines="5"> <clef xml:id="clef-L2F2" shape="G" line="2" /> </staffDef> <staffDef xml:id="staffdef-0000000843029324" n="2" lines="5"> <clef xml:id="clef-L2F1" shape="F" line="4" /> </staffDef> </staffGrp> </scoreDef> <section xml:id="section-L1F1"> <measure xml:id="measure-L1" n="1"> <staff xml:id="staff-0000000785403651" n="1"> <layer xml:id="layer-L1F2N1" n="1"> <beam xml:id="beam-L5F2-L8F2"> <note xml:id="note-L5F2" dur="8" oct="4" pname="g" color="limegreen" accid.ges="n" /> <note xml:id="note-L6F2" dur="8" oct="4" pname="f" color="limegreen" accid.ges="n" /> <note xml:id="note-L7F2" dur="8" oct="4" pname="a" color="limegreen" accid.ges="n" /> <note xml:id="note-L8F2" dur="8" oct="5" pname="c" color="limegreen" accid.ges="n" /> </beam> </layer> </staff> <staff xml:id="staff-0000001974019626" n="2"> <layer xml:id="layer-L1F1N1" n="1"> <beam xml:id="beam-L5F1-L8F1"> <note xml:id="note-L5F1" dur="8" oct="4" pname="c" color="crimson" accid.ges="n" /> <note xml:id="note-L6F1" dur="8" oct="4" pname="e" color="crimson" accid.ges="n" /> <note xml:id="note-L7F1" dur="8" oct="4" pname="d" color="crimson" accid.ges="n" /> <note xml:id="note-L8F1" dur="8" oct="4" pname="c" color="crimson" accid.ges="n" /> </beam> </layer> </staff> <slur xml:id="slur-L5F2-L8F2" staff="1" color="limegreen" startid="#note-L5F2" endid="#note-L8F2" /> <slur xml:id="slur-L5F1-L8F1" staff="2" color="crimson" startid="#note-L5F1" endid="#note-L8F1" /> </measure> <measure xml:id="measure-L9" n="2"> <staff xml:id="staff-L9F2N1" n="1"> <layer xml:id="layer-L9F2N1" n="1"> <beam xml:id="beam-L11F2-L14F2"> <note xml:id="note-L11F2" dur="8" oct="4" pname="g" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L12F2" dur="8" oct="4" pname="f" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L13F2" dur="8" oct="4" pname="a" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L14F2" dur="8" oct="5" pname="c" color="limegreen" stem.dir="up" accid.ges="n" /> </beam> </layer> </staff> <staff xml:id="staff-L9F1N1" n="2"> <layer xml:id="layer-L9F1N1" n="1"> <beam xml:id="beam-L11F1-L14F1" beam.with="above"> <note xml:id="note-L11F1" dur="8" staff="1" oct="4" pname="c" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L12F1" dur="8" staff="1" oct="4" pname="e" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L13F1" dur="8" staff="1" oct="4" pname="d" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L14F1" dur="8" staff="1" oct="4" pname="c" color="crimson" stem.dir="down" accid.ges="n" /> </beam> </layer> </staff> <slur xml:id="slur-L11F2-L14F2" staff="1" color="limegreen" startid="#note-L11F2" endid="#note-L14F2" /> <dir xml:id="dir-L10F1" place="below" staff="2" tstamp="1.000000"> <rend xml:id="rend-0000002081682876" color="dodgerblue" fontstyle="normal">automatic</rend> </dir> <slur xml:id="slur-L11F1-L14F1" staff="1" color="crimson" startid="#note-L11F1" endid="#note-L14F1" /> </measure> <measure xml:id="measure-L15"> <staff xml:id="staff-L15F2N1" n="1"> <layer xml:id="layer-L15F2N1" n="1"> <beam xml:id="beam-L17F2-L20F2"> <note xml:id="note-L17F2" dur="8" oct="4" pname="g" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L18F2" dur="8" oct="4" pname="f" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L19F2" dur="8" oct="4" pname="a" color="limegreen" stem.dir="up" accid.ges="n" /> <note xml:id="note-L20F2" dur="8" oct="5" pname="c" color="limegreen" stem.dir="up" accid.ges="n" /> </beam> </layer> </staff> <staff xml:id="staff-L15F1N1" n="2"> <layer xml:id="layer-L15F1N1" n="1"> <beam xml:id="beam-L17F1-L20F1" beam.with="above"> <note xml:id="note-L17F1" dur="8" staff="1" oct="4" pname="c" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L18F1" dur="8" staff="1" oct="4" pname="e" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L19F1" dur="8" staff="1" oct="4" pname="d" color="crimson" stem.dir="down" accid.ges="n" /> <note xml:id="note-L20F1" dur="8" staff="1" oct="4" pname="c" color="crimson" stem.dir="down" accid.ges="n" /> </beam> </layer> </staff> <slur xml:id="slur-L17F2-L20F2" staff="2" color="limegreen" startid="#note-L17F2" endid="#note-L20F2" curvedir="above" /> <dir xml:id="dir-L16F1" place="below" staff="2" tstamp="1.000000"> <rend xml:id="rend-0000001761266588" color="dodgerblue" fontstyle="normal">expected</rend> </dir> <slur xml:id="slur-L17F1-L20F1" staff="1" color="crimson" startid="#note-L17F1" endid="#note-L20F1" curvedir="below" /> </measure> </section> </score> </mdiv> </body> </music> </mei> ``` </details>
priority
cross staff notes layers articulations slurs ties when notes are placed cross staff then are now working well to simulate virtual layers on the away staff however it would be useful if items such as articulations slurs and ties operate in the virtual layer in a similar manner currently these items in the virtual layer are not aware of their virtual layer example for articulations img width alt screen shot at pm src meause renders as expected with both staves containing a single staff measure notes basically render as expected but there is a problem that the beam remains on the bottom staff due to the articulations which are to be automatically placed i could add a separate issue for that if you want measure is correctly rendered after all articulations are given explicit placements ideally the data for measure would be rendered the same as measure click to see mei data for the above example xml xml model href type application xml schematypens xml model href type application xml schematypens verovio transcoded from humdrum automatic expected here is an example of slurs on notes in virtual layers img width alt screen shot at pm src in measure when the slur placements are automatic the placement of the slurs is confused the layer n slur is placed as if there were no virtual second layer and the slur in the virtual second layer attempts to move above the notes in this layer when explicit placements are given the slurs are rendered as expected click to see mei data for the above example xml xml model href type application xml schematypens xml model href type application xml schematypens verovio transcoded from humdrum shed e s g automatic expected
1
399,265
11,745,661,675
IssuesEvent
2020-03-12 10:13:29
bschiffthaler/seidr
https://api.github.com/repos/bschiffthaler/seidr
opened
Seidr ROC prints incorrect number of steps
bug low-priority
The "logic" in seidr roc that decides whether to print a step or not is flawed, so running e.g.: ``` seidr roc -p 1000 ``` results in more than 1000 output points. While this has no direct consequence for the ROC curve or the AUC/AUPR calculations, it needs to be fixed.
1.0
Seidr ROC prints incorrect number of steps - The "logic" in seidr roc that decides whether to print a step or not is flawed, so running e.g.: ``` seidr roc -p 1000 ``` results in more than 1000 output points. While this has no direct consequence for the ROC curve or the AUC/AUPR calculations, it needs to be fixed.
priority
seidr roc prints incorrect number of steps the logic in seidr roc that decides whether to print a step or not is flawed so running e g seidr roc p results in more than output points while this has no direct consequence for the roc curve or the auc aupr calculations it needs to be fixed
1
342,662
10,320,206,577
IssuesEvent
2019-08-30 19:48:11
Niall7459/KiteBoard-Documentation
https://api.github.com/repos/Niall7459/KiteBoard-Documentation
closed
Alignment issues with placeholders
Priority: Low Type: Bug
Alignment tags do not work correctly on mvdw placeholders Reported placeholder: ``` <right width=32>%mvdw_armor_helmetremainingdurability%</right>```
1.0
Alignment issues with placeholders - Alignment tags do not work correctly on mvdw placeholders Reported placeholder: ``` <right width=32>%mvdw_armor_helmetremainingdurability%</right>```
priority
alignment issues with placeholders alignment tags do not work correctly on mvdw placeholders reported placeholder mvdw armor helmetremainingdurability
1
562,603
16,664,543,781
IssuesEvent
2021-06-06 23:23:06
drashland/deno-drash-middleware
https://api.github.com/repos/drashland/deno-drash-middleware
opened
Add a GraphQL Middleware
Priority: Low Type: Enhancement
## Summary What: Add a middleware that can add as a graphql server, to intercept requests to make queries from, and serve a graphql playground Why: Graphql is very popular nowadays, having it as a middleware for drash would be a great tool for users, should they wish to use graphql, they can just pipe this middleware into their drash app, and away they go :) ## Acceptance Criteria Below is a list of tasks that must be completed before this issue can be closed. - [ ] Write documentation - [ ] Write unit tests - [ ] Write integration tests ## Example Pseudo Code (for implementation) ```typescript // Add example pseudo code for implementation ```
1.0
Add a GraphQL Middleware - ## Summary What: Add a middleware that can add as a graphql server, to intercept requests to make queries from, and serve a graphql playground Why: Graphql is very popular nowadays, having it as a middleware for drash would be a great tool for users, should they wish to use graphql, they can just pipe this middleware into their drash app, and away they go :) ## Acceptance Criteria Below is a list of tasks that must be completed before this issue can be closed. - [ ] Write documentation - [ ] Write unit tests - [ ] Write integration tests ## Example Pseudo Code (for implementation) ```typescript // Add example pseudo code for implementation ```
priority
add a graphql middleware summary what add a middleware that can add as a graphql server to intercept requests to make queries from and serve a graphql playground why graphql is very popular nowadays having it as a middleware for drash would be a great tool for users should they wish to use graphql they can just pipe this middleware into their drash app and away they go acceptance criteria below is a list of tasks that must be completed before this issue can be closed write documentation write unit tests write integration tests example pseudo code for implementation typescript add example pseudo code for implementation
1
600,152
18,290,324,337
IssuesEvent
2021-10-05 14:38:12
Wikidata/soweego
https://api.github.com/repos/Wikidata/soweego
closed
Replace Travis with pre-commit
extra discussion low priority
> you may look into [pre-commit](https://pre-commit.com/) to automatically run type checking, linting, formatting, etc. on commit Very interesting suggestion! We currently have a similar mechanism in place on _Travis CI_, see [this dotfile](https://github.com/Wikidata/soweego/blob/9ed8b4e28fd2ea4150b37cbb49b44ce8bfb2c381/.travis.yml). However, it's a bit hacky and doesn't run _mypy_ type hints check. From a first glimpse, it looks like _pre-commit_ is a much better solution: - it can cater for CI , see https://pre-commit.com/#usage-in-continuous-integration; - no hack seems required to autofix PRs, see https://pre-commit.com/#pre-commitci-example; - it's claimed to be faster than Travis, see https://pre-commit.com/#pre-commitci-example. _Originally posted by @marfox in https://github.com/Wikidata/soweego/issues/428#issuecomment-911864333_
1.0
Replace Travis with pre-commit - > you may look into [pre-commit](https://pre-commit.com/) to automatically run type checking, linting, formatting, etc. on commit Very interesting suggestion! We currently have a similar mechanism in place on _Travis CI_, see [this dotfile](https://github.com/Wikidata/soweego/blob/9ed8b4e28fd2ea4150b37cbb49b44ce8bfb2c381/.travis.yml). However, it's a bit hacky and doesn't run _mypy_ type hints check. From a first glimpse, it looks like _pre-commit_ is a much better solution: - it can cater for CI , see https://pre-commit.com/#usage-in-continuous-integration; - no hack seems required to autofix PRs, see https://pre-commit.com/#pre-commitci-example; - it's claimed to be faster than Travis, see https://pre-commit.com/#pre-commitci-example. _Originally posted by @marfox in https://github.com/Wikidata/soweego/issues/428#issuecomment-911864333_
priority
replace travis with pre commit you may look into to automatically run type checking linting formatting etc on commit very interesting suggestion we currently have a similar mechanism in place on travis ci see however it s a bit hacky and doesn t run mypy type hints check from a first glimpse it looks like pre commit is a much better solution it can cater for ci see no hack seems required to autofix prs see it s claimed to be faster than travis see originally posted by marfox in
1
560,435
16,596,425,409
IssuesEvent
2021-06-01 13:59:22
opentargets/platform
https://api.github.com/repos/opentargets/platform
closed
UniProt data does not seem to be pulled into gene-data correctly
Kind: Bug Kind: Data Priority: Low Topic: UniProt
@emepyc commented on [Tue May 09 2017](https://github.com/opentargets/data_pipeline/issues/120) @deniseOme commented on [Mon May 08 2017](https://github.com/opentargets/webapp/issues/125) On https://www.targetvalidation.org/target/ENSG00000175164, there is no info re. Subunit: Subcellular location: UniProt Keywords: However subcellular location and keywords seem to be available in UniProt: http://www.uniprot.org/uniprot/P16442#subcellular_location Same behaviour in beta: https://beta.opentargets.io/target/ENSG00000175164 There is a converse issue in that some index entries ([O76039 on Target CDKL5](https://alpha.targetvalidation.org/target/ENSG00000008086)) have subcellular locations which are not presented on the [Uniprot web interface](https://www.uniprot.org/uniprot/O76039#subcellular_location). --- @emepyc commented on [Tue May 09 2017](https://github.com/opentargets/webapp/issues/125#issuecomment-300246463) Probably a data issue: we may not be in sync with latest version of uniprot? @ckongEbi can you please take a look? It is probably fine to close this issue if that is the case --- @ckongEbi commented on [Tue May 09 2017](https://github.com/opentargets/webapp/issues/125#issuecomment-300294432) we can see this information in **17.04_uniprot-data/uniprot-gene/P16442** ![screen shot 2017-05-09 at 21 32 51](https://cloud.githubusercontent.com/assets/6169985/25871493/94349c14-34ff-11e7-9b23-9b1f62dfdec2.png) But those section are empty in 17.04_gene-data/genedata/ENSG00000175164 ![screen shot 2017-05-09 at 21 33 56](https://cloud.githubusercontent.com/assets/6169985/25871516/ae9bd752-34ff-11e7-9dcb-c063ada683e0.png)
1.0
UniProt data does not seem to be pulled into gene-data correctly - @emepyc commented on [Tue May 09 2017](https://github.com/opentargets/data_pipeline/issues/120) @deniseOme commented on [Mon May 08 2017](https://github.com/opentargets/webapp/issues/125) On https://www.targetvalidation.org/target/ENSG00000175164, there is no info re. Subunit: Subcellular location: UniProt Keywords: However subcellular location and keywords seem to be available in UniProt: http://www.uniprot.org/uniprot/P16442#subcellular_location Same behaviour in beta: https://beta.opentargets.io/target/ENSG00000175164 There is a converse issue in that some index entries ([O76039 on Target CDKL5](https://alpha.targetvalidation.org/target/ENSG00000008086)) have subcellular locations which are not presented on the [Uniprot web interface](https://www.uniprot.org/uniprot/O76039#subcellular_location). --- @emepyc commented on [Tue May 09 2017](https://github.com/opentargets/webapp/issues/125#issuecomment-300246463) Probably a data issue: we may not be in sync with latest version of uniprot? @ckongEbi can you please take a look? It is probably fine to close this issue if that is the case --- @ckongEbi commented on [Tue May 09 2017](https://github.com/opentargets/webapp/issues/125#issuecomment-300294432) we can see this information in **17.04_uniprot-data/uniprot-gene/P16442** ![screen shot 2017-05-09 at 21 32 51](https://cloud.githubusercontent.com/assets/6169985/25871493/94349c14-34ff-11e7-9b23-9b1f62dfdec2.png) But those section are empty in 17.04_gene-data/genedata/ENSG00000175164 ![screen shot 2017-05-09 at 21 33 56](https://cloud.githubusercontent.com/assets/6169985/25871516/ae9bd752-34ff-11e7-9dcb-c063ada683e0.png)
priority
uniprot data does not seem to be pulled into gene data correctly emepyc commented on deniseome commented on on there is no info re subunit subcellular location uniprot keywords however subcellular location and keywords seem to be available in uniprot same behaviour in beta there is a converse issue in that some index entries have subcellular locations which are not presented on the emepyc commented on probably a data issue we may not be in sync with latest version of uniprot ckongebi can you please take a look it is probably fine to close this issue if that is the case ckongebi commented on we can see this information in uniprot data uniprot gene but those section are empty in gene data genedata
1
771,721
27,090,518,599
IssuesEvent
2023-02-14 20:37:50
bigbluebutton/bigbluebutton
https://api.github.com/repos/bigbluebutton/bigbluebutton
closed
In whiteboard enable undo to undo a clear
status: accepted type: enhancement priority: low component: presentation
Originally reported on Google Code with ID 1443 ``` What steps will reproduce the problem? 1. Draw some shapes 2. Click erase all button 3. Click undo What is the expected output? What do you see instead? Expect that undo would undo the erase all. See https://groups.google.com/group/bigbluebutton-dev/browse_thread/thread/ba4e48dcdec19bd6# ``` Reported by `ffdixon` on 2013-03-16 23:39:45
1.0
In whiteboard enable undo to undo a clear - Originally reported on Google Code with ID 1443 ``` What steps will reproduce the problem? 1. Draw some shapes 2. Click erase all button 3. Click undo What is the expected output? What do you see instead? Expect that undo would undo the erase all. See https://groups.google.com/group/bigbluebutton-dev/browse_thread/thread/ba4e48dcdec19bd6# ``` Reported by `ffdixon` on 2013-03-16 23:39:45
priority
in whiteboard enable undo to undo a clear originally reported on google code with id what steps will reproduce the problem draw some shapes click erase all button click undo what is the expected output what do you see instead expect that undo would undo the erase all see reported by ffdixon on
1
143,201
5,511,710,744
IssuesEvent
2017-03-17 06:27:16
SpamExperts/plesk-extension
https://api.github.com/repos/SpamExperts/plesk-extension
opened
Wrong debug log when license is valid
bug priority-low
It seems that a wrong debug log is added in the `panel.log` when the Plesk license is valid and not added when the license is expired. ``` if (date('Ymd') < $licenseMeta['lim_date']) { pm_Log::debug("Do not use Plesk license data is the license seems to be expired"); } ```
1.0
Wrong debug log when license is valid - It seems that a wrong debug log is added in the `panel.log` when the Plesk license is valid and not added when the license is expired. ``` if (date('Ymd') < $licenseMeta['lim_date']) { pm_Log::debug("Do not use Plesk license data is the license seems to be expired"); } ```
priority
wrong debug log when license is valid it seems that a wrong debug log is added in the panel log when the plesk license is valid and not added when the license is expired if date ymd licensemeta pm log debug do not use plesk license data is the license seems to be expired
1
624,160
19,688,284,569
IssuesEvent
2022-01-12 02:02:18
danbooru/danbooru
https://api.github.com/repos/danbooru/danbooru
closed
Include epilepsy_warning tag in default blacklist
Low Priority Alteration
From the [Danbooru forum](https://danbooru.donmai.us/forum_topics/15345): > chinatsu said: > I suggest hiding by default posts tagged with epilepsy warning as a service to those who may be affected. > BrokenEagle98 said: > That'd be difficult without specifically coding just for that tag. As an alternative, the default user blacklist can be updated to include epilepsy warning. > kikimaru said: > +1 to this. In addition to the above, maybe also run a script that will modify any user's blacklist that is using the current default blacklist, to using the new default blacklist.
1.0
Include epilepsy_warning tag in default blacklist - From the [Danbooru forum](https://danbooru.donmai.us/forum_topics/15345): > chinatsu said: > I suggest hiding by default posts tagged with epilepsy warning as a service to those who may be affected. > BrokenEagle98 said: > That'd be difficult without specifically coding just for that tag. As an alternative, the default user blacklist can be updated to include epilepsy warning. > kikimaru said: > +1 to this. In addition to the above, maybe also run a script that will modify any user's blacklist that is using the current default blacklist, to using the new default blacklist.
priority
include epilepsy warning tag in default blacklist from the chinatsu said i suggest hiding by default posts tagged with epilepsy warning as a service to those who may be affected said that d be difficult without specifically coding just for that tag as an alternative the default user blacklist can be updated to include epilepsy warning kikimaru said to this in addition to the above maybe also run a script that will modify any user s blacklist that is using the current default blacklist to using the new default blacklist
1