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 855 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 13 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 240k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
799,717 | 28,312,569,996 | IssuesEvent | 2023-04-10 16:42:32 | PrefectHQ/prefect | https://api.github.com/repos/PrefectHQ/prefect | closed | Parameters erroneously considered optional | bug ui priority:high team:orchestration | ### First check
- [X] I added a descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I refreshed the page and this issue still occurred.
- [X] I checked if this issue was specific to the browser I was using by testing with a different browser.
### Bug summary
Pydantic class with only optional parameters is considered optional, even though it is not optional.
When deploying a flow that takes a pydantic-class with only optional/default parameters, the UI erroneously passes no parameters at all. This causes an error when the flow is run.
This is problematic especially with flags: I can not use a flow that only has a flag with default-value.
Might be related to https://github.com/PrefectHQ/prefect/issues/9018 - There however, the entire flow-parameter was optional, so I am not sure if it's related (sorry, if it is a duplicate!)
### Reproduction
```python from prefect import flow, get_run_logger
from pydantic import Field, BaseModel
class SingleParameter(BaseModel):
flag: bool = Field(
default=False,
)
test: int = 1
@flow(name="Flow")
def some_flow(params: SingleParameter):
get_run_logger().info(params)
if __name__ == "__main__":
params = SingleParameter()
some_flow(params=params)
params = SingleParameter(flag=True)
some_flow(params=params)
```
Deployed using:
```
prefect deployment build file.py:some_flow -n some_flow
prefect deployment apply some_flow-deployment.yaml
```
Screenshot of the Run-Configuration using Run -> Quick run:

Screenshot of Params of Flow Run:

### Error

### Browers
- [ ] Chrome
- [ ] Firefox
- [ ] Safari
- [ ] Edge
### Prefect version
```Text
Version: 2.8.6
API version: 0.8.4
Python version: 3.10.6
Git commit: 061d877b
Built: Thu, Mar 16, 2023 2:58 PM
OS/Arch: linux/x86_64
Profile: default
Server type: cloud
```
### Additional context
_No response_ | 1.0 | Parameters erroneously considered optional - ### First check
- [X] I added a descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I refreshed the page and this issue still occurred.
- [X] I checked if this issue was specific to the browser I was using by testing with a different browser.
### Bug summary
Pydantic class with only optional parameters is considered optional, even though it is not optional.
When deploying a flow that takes a pydantic-class with only optional/default parameters, the UI erroneously passes no parameters at all. This causes an error when the flow is run.
This is problematic especially with flags: I can not use a flow that only has a flag with default-value.
Might be related to https://github.com/PrefectHQ/prefect/issues/9018 - There however, the entire flow-parameter was optional, so I am not sure if it's related (sorry, if it is a duplicate!)
### Reproduction
```python from prefect import flow, get_run_logger
from pydantic import Field, BaseModel
class SingleParameter(BaseModel):
flag: bool = Field(
default=False,
)
test: int = 1
@flow(name="Flow")
def some_flow(params: SingleParameter):
get_run_logger().info(params)
if __name__ == "__main__":
params = SingleParameter()
some_flow(params=params)
params = SingleParameter(flag=True)
some_flow(params=params)
```
Deployed using:
```
prefect deployment build file.py:some_flow -n some_flow
prefect deployment apply some_flow-deployment.yaml
```
Screenshot of the Run-Configuration using Run -> Quick run:

Screenshot of Params of Flow Run:

### Error

### Browers
- [ ] Chrome
- [ ] Firefox
- [ ] Safari
- [ ] Edge
### Prefect version
```Text
Version: 2.8.6
API version: 0.8.4
Python version: 3.10.6
Git commit: 061d877b
Built: Thu, Mar 16, 2023 2:58 PM
OS/Arch: linux/x86_64
Profile: default
Server type: cloud
```
### Additional context
_No response_ | priority | parameters erroneously considered optional first check i added a descriptive title to this issue i used the github search to find a similar issue and didn t find it i refreshed the page and this issue still occurred i checked if this issue was specific to the browser i was using by testing with a different browser bug summary pydantic class with only optional parameters is considered optional even though it is not optional when deploying a flow that takes a pydantic class with only optional default parameters the ui erroneously passes no parameters at all this causes an error when the flow is run this is problematic especially with flags i can not use a flow that only has a flag with default value might be related to there however the entire flow parameter was optional so i am not sure if it s related sorry if it is a duplicate reproduction python from prefect import flow get run logger from pydantic import field basemodel class singleparameter basemodel flag bool field default false test int flow name flow def some flow params singleparameter get run logger info params if name main params singleparameter some flow params params params singleparameter flag true some flow params params deployed using prefect deployment build file py some flow n some flow prefect deployment apply some flow deployment yaml screenshot of the run configuration using run quick run screenshot of params of flow run error browers chrome firefox safari edge prefect version text version api version python version git commit built thu mar pm os arch linux profile default server type cloud additional context no response | 1 |
518,981 | 15,038,320,034 | IssuesEvent | 2021-02-02 17:18:36 | dsccommunity/DscResource.DocGenerator | https://api.github.com/repos/dsccommunity/DscResource.DocGenerator | closed | Generating conceptual help broke for MOF-based resource in v0.7.3 | bug high priority in progress | In a recent PR the parameter `File` was added to the `Get-ChildItem` call. But having `File` on this call returns 0 (zero) files.
https://github.com/dsccommunity/DscResource.DocGenerator/blob/6bba769749081da5eb404811d1a10cc4ec129d00/source/Public/New-DscResourcePowerShellHelp.ps1#L127-L128
We should remove `File` and make a regression test so this is added again. | 1.0 | Generating conceptual help broke for MOF-based resource in v0.7.3 - In a recent PR the parameter `File` was added to the `Get-ChildItem` call. But having `File` on this call returns 0 (zero) files.
https://github.com/dsccommunity/DscResource.DocGenerator/blob/6bba769749081da5eb404811d1a10cc4ec129d00/source/Public/New-DscResourcePowerShellHelp.ps1#L127-L128
We should remove `File` and make a regression test so this is added again. | priority | generating conceptual help broke for mof based resource in in a recent pr the parameter file was added to the get childitem call but having file on this call returns zero files we should remove file and make a regression test so this is added again | 1 |
347,926 | 10,436,613,914 | IssuesEvent | 2019-09-17 19:58:42 | Buyen/iwvg-ecosystem-ying-bao | https://api.github.com/repos/Buyen/iwvg-ecosystem-ying-bao | opened | Heroku | Points ๏ผ1 Priority ๏ผhigh Type ๏ผstructure | Desplegar en **Heroku**. Incluir **Badge** en README con **link** a la pรกgina de Swagger-ui.html. | 1.0 | Heroku - Desplegar en **Heroku**. Incluir **Badge** en README con **link** a la pรกgina de Swagger-ui.html. | priority | heroku desplegar en heroku incluir badge en readme con link a la pรกgina de swagger ui html | 1 |
83,303 | 3,633,454,707 | IssuesEvent | 2016-02-11 14:41:09 | aseprite/aseprite | https://api.github.com/repos/aseprite/aseprite | closed | Bug when moving selection with shift+arrow | bug high priority | When moving a selection with the shift + arrow keys to move it one grid length at a time, the axes are partially switched. If you set a rectangular grid size and start moving something around, you'll see what I mean. Shift+Left moves the selection as it should, but Shift+Right moves the selection in the right direction, but the vertical distance of the grid rather than the horizontal. The same is true for Shift+Up and Shift+Down. | 1.0 | Bug when moving selection with shift+arrow - When moving a selection with the shift + arrow keys to move it one grid length at a time, the axes are partially switched. If you set a rectangular grid size and start moving something around, you'll see what I mean. Shift+Left moves the selection as it should, but Shift+Right moves the selection in the right direction, but the vertical distance of the grid rather than the horizontal. The same is true for Shift+Up and Shift+Down. | priority | bug when moving selection with shift arrow when moving a selection with the shift arrow keys to move it one grid length at a time the axes are partially switched if you set a rectangular grid size and start moving something around you ll see what i mean shift left moves the selection as it should but shift right moves the selection in the right direction but the vertical distance of the grid rather than the horizontal the same is true for shift up and shift down | 1 |
666,811 | 22,388,411,838 | IssuesEvent | 2022-06-17 04:00:52 | kubesphere/ks-devops | https://api.github.com/repos/kubesphere/ks-devops | closed | CD page sync status Out_of_sync filtering exception | kind/bug priority/high kind/need-to-verify | <!--
You don't need to remove this comment section, it's invisible on the issues page.
## General remarks
* Attention, please fill out this issues form using English only!
* ๆณจๆ๏ผGitHub Issue ไป
ๆฏๆ่ฑๆ๏ผไธญๆ Issue ่ฏทๅจ [่ฎบๅ](https://kubesphere.com.cn/forum/) ๆไบคใ
* This form is to report bugs. For general usage questions you can join our Slack channel
[KubeSphere-users](https://join.slack.com/t/kubesphere/shared_invite/enQtNTE3MDIxNzUxNzQ0LTZkNTdkYWNiYTVkMTM5ZThhODY1MjAyZmVlYWEwZmQ3ODQ1NmM1MGVkNWEzZTRhNzk0MzM5MmY4NDc3ZWVhMjE)
-->
**Describe the Bug**
Currently I have only one unsynced task and when I filter with condition it doesn't show.
<img width="1065" alt="image" src="https://user-images.githubusercontent.com/19492214/173318066-592cf6a9-6a60-4c3f-961f-ff7ad62e044f.png">
<img width="1061" alt="image" src="https://user-images.githubusercontent.com/19492214/173318132-606bd000-6fea-4a74-8e61-228204797396.png">
**Versions Used**
KubeSphere: v3.3.0-rc.2
**Environment**
How many nodes and their hardware configuration:
For example: CentOS 7.5 / 3 masters: 8cpu/8g; 3 nodes: 8cpu/16g
(and other info are welcomed to help us debugging)
**How To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
| 1.0 | CD page sync status Out_of_sync filtering exception - <!--
You don't need to remove this comment section, it's invisible on the issues page.
## General remarks
* Attention, please fill out this issues form using English only!
* ๆณจๆ๏ผGitHub Issue ไป
ๆฏๆ่ฑๆ๏ผไธญๆ Issue ่ฏทๅจ [่ฎบๅ](https://kubesphere.com.cn/forum/) ๆไบคใ
* This form is to report bugs. For general usage questions you can join our Slack channel
[KubeSphere-users](https://join.slack.com/t/kubesphere/shared_invite/enQtNTE3MDIxNzUxNzQ0LTZkNTdkYWNiYTVkMTM5ZThhODY1MjAyZmVlYWEwZmQ3ODQ1NmM1MGVkNWEzZTRhNzk0MzM5MmY4NDc3ZWVhMjE)
-->
**Describe the Bug**
Currently I have only one unsynced task and when I filter with condition it doesn't show.
<img width="1065" alt="image" src="https://user-images.githubusercontent.com/19492214/173318066-592cf6a9-6a60-4c3f-961f-ff7ad62e044f.png">
<img width="1061" alt="image" src="https://user-images.githubusercontent.com/19492214/173318132-606bd000-6fea-4a74-8e61-228204797396.png">
**Versions Used**
KubeSphere: v3.3.0-rc.2
**Environment**
How many nodes and their hardware configuration:
For example: CentOS 7.5 / 3 masters: 8cpu/8g; 3 nodes: 8cpu/16g
(and other info are welcomed to help us debugging)
**How To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
| priority | cd page sync status out of sync filtering exception you don t need to remove this comment section it s invisible on the issues page general remarks attention please fill out this issues form using english only ๆณจๆ๏ผgithub issue ไป
ๆฏๆ่ฑๆ๏ผไธญๆ issue ่ฏทๅจ ๆไบคใ this form is to report bugs for general usage questions you can join our slack channel describe the bug currently i have only one unsynced task and when i filter with condition it doesn t show img width alt image src img width alt image src versions used kubesphere rc environment how many nodes and their hardware configuration for example centos masters nodes and other info are welcomed to help us debugging how to reproduce steps to reproduce the behavior go to click on scroll down to see error expected behavior a clear and concise description of what you expected to happen | 1 |
406,269 | 11,889,360,865 | IssuesEvent | 2020-03-28 13:30:37 | vitreo12/omni | https://api.github.com/repos/vitreo12/omni | closed | outs are not correctly checked as ins in perform | high priority | If having `outs 2`, and accessing like `out3`, no error is thrown, while it should be! | 1.0 | outs are not correctly checked as ins in perform - If having `outs 2`, and accessing like `out3`, no error is thrown, while it should be! | priority | outs are not correctly checked as ins in perform if having outs and accessing like no error is thrown while it should be | 1 |
110,651 | 4,436,127,804 | IssuesEvent | 2016-08-18 11:11:32 | RestComm/mediaserver | https://api.github.com/repos/RestComm/mediaserver | closed | Circular dependency breaks dependency injection | bug High-Priority MGCP2 | Guice is reporting a circular dependency.
After testing, I realized the problematic chain is:
CommandProvider > EndpointManager > EndpointProvider > MgcpMessageSubject > CommandProvider
To break the circular dependency, the TransactionalMgcpMessageMediator should stop depending on MgcpCommandProvider. Instead, the MgcpResponse received by the mediator should already contain an MgcpCommand to be executed, thus breaking the circular chain. | 1.0 | Circular dependency breaks dependency injection - Guice is reporting a circular dependency.
After testing, I realized the problematic chain is:
CommandProvider > EndpointManager > EndpointProvider > MgcpMessageSubject > CommandProvider
To break the circular dependency, the TransactionalMgcpMessageMediator should stop depending on MgcpCommandProvider. Instead, the MgcpResponse received by the mediator should already contain an MgcpCommand to be executed, thus breaking the circular chain. | priority | circular dependency breaks dependency injection guice is reporting a circular dependency after testing i realized the problematic chain is commandprovider endpointmanager endpointprovider mgcpmessagesubject commandprovider to break the circular dependency the transactionalmgcpmessagemediator should stop depending on mgcpcommandprovider instead the mgcpresponse received by the mediator should already contain an mgcpcommand to be executed thus breaking the circular chain | 1 |
275,935 | 8,582,334,191 | IssuesEvent | 2018-11-13 16:43:30 | lbryio/spee.ch | https://api.github.com/repos/lbryio/spee.ch | opened | abandon claim fails | priority: high type: bug | When trying to abandon: https://spee.ch/@NorVegan:3/THEUNMASKING-Part5-TheSexualAssaults-Thumbnail, it gets stuck on "Your claim is being abandond". the abandon call returns:
```{"success":false,"message":"That channel does not exist"}```
abandon params: ```{"claimId":"4b13b27a62e4b416161fa4cd4607120598d2fc8d"}```
| 1.0 | abandon claim fails - When trying to abandon: https://spee.ch/@NorVegan:3/THEUNMASKING-Part5-TheSexualAssaults-Thumbnail, it gets stuck on "Your claim is being abandond". the abandon call returns:
```{"success":false,"message":"That channel does not exist"}```
abandon params: ```{"claimId":"4b13b27a62e4b416161fa4cd4607120598d2fc8d"}```
| priority | abandon claim fails when trying to abandon it gets stuck on your claim is being abandond the abandon call returns success false message that channel does not exist abandon params claimid | 1 |
190,891 | 6,823,439,369 | IssuesEvent | 2017-11-07 23:58:11 | shavitush/bhoptimer | https://api.github.com/repos/shavitush/bhoptimer | closed | Error in logs - Blaming: shavit-wr.smx | bug high priority | Hello,
I have this error logs on my server
`L 08/27/2017 - 16:27:14: [SM] Exception reported: Invalid index 0 (count: 0)
L 08/27/2017 - 16:27:14: [SM] Blaming: shavit-wr.smx
L 08/27/2017 - 16:27:14: [SM] Call stack trace:
L 08/27/2017 - 16:27:14: [SM] [0] ArrayList.Get
L 08/27/2017 - 16:27:14: [SM] [1] Line 1642, shavit-wr.sp::GetRankForTime
L 08/27/2017 - 16:27:14: [SM] [2] Line 449, shavit-wr.sp::Native_GetRankForTime
L 08/27/2017 - 16:27:14: [SM] [4] Shavit_GetRankForTime
L 08/27/2017 - 16:27:14: [SM] [5] Line 476, shavit-hud.sp::UpdateHUD
L 08/27/2017 - 16:27:14: [SM] [6] Line 388, shavit-hud.sp::TriggerHUDUpdate
L 08/27/2017 - 16:27:14: [SM] [7] Line 380, shavit-hud.sp::UpdateHUD_Timer`
SM 1.8.0.6024 | 1.0 | Error in logs - Blaming: shavit-wr.smx - Hello,
I have this error logs on my server
`L 08/27/2017 - 16:27:14: [SM] Exception reported: Invalid index 0 (count: 0)
L 08/27/2017 - 16:27:14: [SM] Blaming: shavit-wr.smx
L 08/27/2017 - 16:27:14: [SM] Call stack trace:
L 08/27/2017 - 16:27:14: [SM] [0] ArrayList.Get
L 08/27/2017 - 16:27:14: [SM] [1] Line 1642, shavit-wr.sp::GetRankForTime
L 08/27/2017 - 16:27:14: [SM] [2] Line 449, shavit-wr.sp::Native_GetRankForTime
L 08/27/2017 - 16:27:14: [SM] [4] Shavit_GetRankForTime
L 08/27/2017 - 16:27:14: [SM] [5] Line 476, shavit-hud.sp::UpdateHUD
L 08/27/2017 - 16:27:14: [SM] [6] Line 388, shavit-hud.sp::TriggerHUDUpdate
L 08/27/2017 - 16:27:14: [SM] [7] Line 380, shavit-hud.sp::UpdateHUD_Timer`
SM 1.8.0.6024 | priority | error in logs blaming shavit wr smx hello i have this error logs on my server l exception reported invalid index count l blaming shavit wr smx l call stack trace l arraylist get l line shavit wr sp getrankfortime l line shavit wr sp native getrankfortime l shavit getrankfortime l line shavit hud sp updatehud l line shavit hud sp triggerhudupdate l line shavit hud sp updatehud timer sm | 1 |
593,302 | 17,954,781,633 | IssuesEvent | 2021-09-13 05:47:04 | merico-dev/lake | https://api.github.com/repos/merico-dev/lake | closed | Add a metric "Requirement Granularity" | feature priority: high v2 | ## Description
Task: Add a metric "Requirement Granularity" (Phase 2 Metric)
Theoretically, the smaller the granularity of requirements the better, as smaller requirements are easier to understand, estimate and design. Although too small a granularity of requirements may lead to rework due to incomplete consideration.
This metric can be seen as an important indicator of important metrics such as "requirement lead time" and "delivered requirement count".
Definition of this metric: The workload of the requirement
## Describe the solution you'd like
- [x] get the story point or estimated time of Jira issue
- [x] allow users to configure the way(story point/estimated time/...) to measures workload.
## Describe alternatives you've considered
If users use "estimated time" and Jira API gives us data like '2d', '1w', we should also get the conversion rules (1 week = 5 or 6 days, 1 day = 6 or 8 hours) to calculate the actual estimated time in minute.
| 1.0 | Add a metric "Requirement Granularity" - ## Description
Task: Add a metric "Requirement Granularity" (Phase 2 Metric)
Theoretically, the smaller the granularity of requirements the better, as smaller requirements are easier to understand, estimate and design. Although too small a granularity of requirements may lead to rework due to incomplete consideration.
This metric can be seen as an important indicator of important metrics such as "requirement lead time" and "delivered requirement count".
Definition of this metric: The workload of the requirement
## Describe the solution you'd like
- [x] get the story point or estimated time of Jira issue
- [x] allow users to configure the way(story point/estimated time/...) to measures workload.
## Describe alternatives you've considered
If users use "estimated time" and Jira API gives us data like '2d', '1w', we should also get the conversion rules (1 week = 5 or 6 days, 1 day = 6 or 8 hours) to calculate the actual estimated time in minute.
| priority | add a metric requirement granularity description task add a metric requirement granularity phase metric theoretically the smaller the granularity of requirements the better as smaller requirements are easier to understand estimate and design although too small a granularity of requirements may lead to rework due to incomplete consideration this metric can be seen as an important indicator of important metrics such as requirement lead time and delivered requirement count definition of this metric the workload of the requirement describe the solution you d like get the story point or estimated time of jira issue allow users to configure the way story point estimated time to measures workload describe alternatives you ve considered if users use estimated time and jira api gives us data like we should also get the conversion rules week or days day or hours to calculate the actual estimated time in minute | 1 |
319,906 | 9,762,044,221 | IssuesEvent | 2019-06-05 10:15:28 | oVirt/ovirt-web-ui | https://api.github.com/repos/oVirt/ovirt-web-ui | closed | attempting to open a console on a VM with a broken/stopped/non-responsive guest agent doesn't work | Flag: Doesn't need UI review Flag: Needs QE Priority: High Scope: 5 Severity: High Type: Bug | When I run a VM configured with a guest agent and it isn't accessible yet, the SSO logon rest call fails and no console is opened.
This VM is running but something is wrong with the guest agent (the Disk utilization card is also empty):

I first saw the problem when I started this VM and tried to open the console before the VM was "Running".
VM Portal version number: master + #956 (but it looks more like an SSO/guest agent issue that the VNC console)
oVirt version number: 4.3.1.2-0.0.master.20190220155021.git90ab3d9.el7
Browser and version: Chrome 72.0.3626.96 or FF 65
Steps to Reproduce (the first time I had the issue):
1. Have a VM with an enabled guest agent (qemu or ovirt)
2. While the VM is running make sure the console can be opened
3. Stop the VM
4. Start the VM and attempt to open the console before it is Up / Running
5. No console opens and the debug console shows a 400 error on the logon rest call
6. At some point in the future, after the VM is Up the console will start working (sometime connecting to the console via webadmin will kick it hard enough to start working)
Actual results: The console doesn't open and no user error is shown.
Expected results: The console opens so the BIOS and boot screens can be seen.
Additional info: The Utilization / Disks chart also misbehaves. My VM is CentOS 7 and is current qemu-guest-agent:

| 1.0 | attempting to open a console on a VM with a broken/stopped/non-responsive guest agent doesn't work - When I run a VM configured with a guest agent and it isn't accessible yet, the SSO logon rest call fails and no console is opened.
This VM is running but something is wrong with the guest agent (the Disk utilization card is also empty):

I first saw the problem when I started this VM and tried to open the console before the VM was "Running".
VM Portal version number: master + #956 (but it looks more like an SSO/guest agent issue that the VNC console)
oVirt version number: 4.3.1.2-0.0.master.20190220155021.git90ab3d9.el7
Browser and version: Chrome 72.0.3626.96 or FF 65
Steps to Reproduce (the first time I had the issue):
1. Have a VM with an enabled guest agent (qemu or ovirt)
2. While the VM is running make sure the console can be opened
3. Stop the VM
4. Start the VM and attempt to open the console before it is Up / Running
5. No console opens and the debug console shows a 400 error on the logon rest call
6. At some point in the future, after the VM is Up the console will start working (sometime connecting to the console via webadmin will kick it hard enough to start working)
Actual results: The console doesn't open and no user error is shown.
Expected results: The console opens so the BIOS and boot screens can be seen.
Additional info: The Utilization / Disks chart also misbehaves. My VM is CentOS 7 and is current qemu-guest-agent:

| priority | attempting to open a console on a vm with a broken stopped non responsive guest agent doesn t work when i run a vm configured with a guest agent and it isn t accessible yet the sso logon rest call fails and no console is opened this vm is running but something is wrong with the guest agent the disk utilization card is also empty i first saw the problem when i started this vm and tried to open the console before the vm was running vm portal version number master but it looks more like an sso guest agent issue that the vnc console ovirt version number master browser and version chrome or ff steps to reproduce the first time i had the issue have a vm with an enabled guest agent qemu or ovirt while the vm is running make sure the console can be opened stop the vm start the vm and attempt to open the console before it is up running no console opens and the debug console shows a error on the logon rest call at some point in the future after the vm is up the console will start working sometime connecting to the console via webadmin will kick it hard enough to start working actual results the console doesn t open and no user error is shown expected results the console opens so the bios and boot screens can be seen additional info the utilization disks chart also misbehaves my vm is centos and is current qemu guest agent | 1 |
387,154 | 11,457,127,092 | IssuesEvent | 2020-02-06 22:50:59 | phetsims/sherpa | https://api.github.com/repos/phetsims/sherpa | reopened | revise how third-party-licenses.md is generated | priority:2-high | This was encountered on 7/13/16 while publishing Function Builder 1.0.0, and discussed a bit on Skype.
The current version of the report is viewable at:
https://github.com/phetsims/sherpa/blob/master/third-party-licenses.md
According to [Sim Deployment Guidelines](https://github.com/phetsims/phet-info/blob/master/deployment-info/sim_deployment.md), this file is supposed to be updated every time that a sim is publicly deployed:
> (10) The 3rd party contributions page must be updated. Directions for how to do this are in reportThirdParty.js. Brace yourself-- this will take >30 minutes since you will need to build all of the simulations in order to access their 3rd party encumbrances. After running this, the updated third-party-licenses.md file should be checked in to GitHub, which will make it publicly available to people who click on "3rd party contributions" from the sim. If this process is too cumbersome, in the future we can discuss ways to just generate a report for the new sim and integrate it into the existing report.
The instructions in [reportThirdParty.js](https://github.com/phetsims/chipper/blob/master/js/grunt/reportThirdParty.js) look complicated.
So we have a complicated, onerous process for generating this report. And as of 7/13/16, this hasn't been done for 3.5 months.
First, we should verify that the current content of the report is what is really desired. The report currently shows 3rd-party dependencies for master of all runnable, not the 3rd-party dependencies for published versions of sims. So it includes sims that haven't yet been publish, and runnables that will never be published (e.g. demos for joist, sun, etc.) Assuming that the current report is as desired...
Suggestion for simplifying how the report is created and maintained:
(1) Remove version numbers from the "This report is for the following simulations" section, and simply indicate that it reflects master of the listed runnables, as of a specified date.
(2) Populate the "Third-party Code" and "Third-party Code License Summary" sections directly from sherpa/lib/license.json. There is no harm in including a 3rd-party library that is unused, and it's certainly not worth having to build all sims to include only libraries that are actually used.
(3) Populate the "Third-party Media" and "Third-party Media License Summary" sections by parsing the license.json files for all runnables. This does not require building the sims.
(4) Do this as a weekly task, immediately after running test-server. Running test-server will identify unused media files.
| 1.0 | revise how third-party-licenses.md is generated - This was encountered on 7/13/16 while publishing Function Builder 1.0.0, and discussed a bit on Skype.
The current version of the report is viewable at:
https://github.com/phetsims/sherpa/blob/master/third-party-licenses.md
According to [Sim Deployment Guidelines](https://github.com/phetsims/phet-info/blob/master/deployment-info/sim_deployment.md), this file is supposed to be updated every time that a sim is publicly deployed:
> (10) The 3rd party contributions page must be updated. Directions for how to do this are in reportThirdParty.js. Brace yourself-- this will take >30 minutes since you will need to build all of the simulations in order to access their 3rd party encumbrances. After running this, the updated third-party-licenses.md file should be checked in to GitHub, which will make it publicly available to people who click on "3rd party contributions" from the sim. If this process is too cumbersome, in the future we can discuss ways to just generate a report for the new sim and integrate it into the existing report.
The instructions in [reportThirdParty.js](https://github.com/phetsims/chipper/blob/master/js/grunt/reportThirdParty.js) look complicated.
So we have a complicated, onerous process for generating this report. And as of 7/13/16, this hasn't been done for 3.5 months.
First, we should verify that the current content of the report is what is really desired. The report currently shows 3rd-party dependencies for master of all runnable, not the 3rd-party dependencies for published versions of sims. So it includes sims that haven't yet been publish, and runnables that will never be published (e.g. demos for joist, sun, etc.) Assuming that the current report is as desired...
Suggestion for simplifying how the report is created and maintained:
(1) Remove version numbers from the "This report is for the following simulations" section, and simply indicate that it reflects master of the listed runnables, as of a specified date.
(2) Populate the "Third-party Code" and "Third-party Code License Summary" sections directly from sherpa/lib/license.json. There is no harm in including a 3rd-party library that is unused, and it's certainly not worth having to build all sims to include only libraries that are actually used.
(3) Populate the "Third-party Media" and "Third-party Media License Summary" sections by parsing the license.json files for all runnables. This does not require building the sims.
(4) Do this as a weekly task, immediately after running test-server. Running test-server will identify unused media files.
| priority | revise how third party licenses md is generated this was encountered on while publishing function builder and discussed a bit on skype the current version of the report is viewable at according to this file is supposed to be updated every time that a sim is publicly deployed the party contributions page must be updated directions for how to do this are in reportthirdparty js brace yourself this will take minutes since you will need to build all of the simulations in order to access their party encumbrances after running this the updated third party licenses md file should be checked in to github which will make it publicly available to people who click on party contributions from the sim if this process is too cumbersome in the future we can discuss ways to just generate a report for the new sim and integrate it into the existing report the instructions in look complicated so we have a complicated onerous process for generating this report and as of this hasn t been done for months first we should verify that the current content of the report is what is really desired the report currently shows party dependencies for master of all runnable not the party dependencies for published versions of sims so it includes sims that haven t yet been publish and runnables that will never be published e g demos for joist sun etc assuming that the current report is as desired suggestion for simplifying how the report is created and maintained remove version numbers from the this report is for the following simulations section and simply indicate that it reflects master of the listed runnables as of a specified date populate the third party code and third party code license summary sections directly from sherpa lib license json there is no harm in including a party library that is unused and it s certainly not worth having to build all sims to include only libraries that are actually used populate the third party media and third party media license summary sections by parsing the license json files for all runnables this does not require building the sims do this as a weekly task immediately after running test server running test server will identify unused media files | 1 |
207,093 | 7,124,567,723 | IssuesEvent | 2018-01-19 19:23:16 | sul-dlss/preservation_catalog | https://api.github.com/repos/sul-dlss/preservation_catalog | closed | SPRINT 10 DEMO 18-01-19 | help wanted high priority needs review | ### (M2C) Moab to Catalog Existence Check
- [ ] implement remaining requirements
- [x] write error messages to dor workflows (so they show up in Argo)
- [ ] reduce duplicitous logging (preferably one log message per druid, or per type of check per druid, e.g. moab validation and then version update)
- [x] cope correctly with any status starting state (e.g. invalid moab, unexpected version on disk ...)
- [ ] deploy to and run on **_PROD_**
- [ ] may require re-seeding the production db first
- [ ] run against all storage roots except first one (old format Moabs)
- [ ] performance data captured
- [ ] satisfied with performance
- [ ] satisfied with M2C code
- [ ] perf data in wiki
### Document Workflow Usage
- [x] how to create the workflow (definition) object in argo/fedora/dor
- [ ] how to write to workflows and their automagic dor indexing
- [ ] ReST endpoint direct calls
- [ ] dor-workflow-services gem
- [ ] dor-services gem
- [ ] wfs_rails for dev and test environments
### (C2M) Catalog to Moab Existence Check
- [ ] determine requirements
- [ ] make tickets for discrete work
- [ ] do the work ...
### Documentation to Update / Show:
- [ ] update Steps to Prod checklist https://docs.google.com/document/d/1oi9KmIKY0t6zVE7ACiIyOB4V-vQqTExGneFdFsth3Vs
- [ ] update Seed PC to Prod checklist https://docs.google.com/document/d/1lZNmsAqVddUkjxpNlVo-2WE2IrMuUNs0rXPR_jsdE_g
- [ ] update M2C to Prod checklist https://docs.google.com/document/d/137htAn4gK-v26jh7CILmWz2d-2ekPwvRD8WToafb-Yo
- [ ] new benchmarking data https://github.com/sul-dlss/preservation_core_catalog/wiki/Stats
- [ ] update API/MVP diagram https://docs.google.com/drawings/d/1MYKaYwq7h2Zw4gBTnI-q0GOWfTx_rGvXS08JiQ1nCu8/edit
## Stretch Goals:
### Prod Problem cleanup: Wasapi-Downloader logs/retries
- [ ] output obscuring results (#86 - proxy)
### ReST hookups
- [ ] (PC) (MV) Moab Validation w D2D
- [ ] (PC) create_with_validation
- [ ] (PC) check_existence
- [ ] (PC) update_version_with_validation
- [ ] (PC) create
- [ ] (PC) update_version
- [ ] (PC) confirm_version
### (TCR) Trusted Checksum Repository
- [ ] db schema
- [ ] create logic
- [ ] read logic | 1.0 | SPRINT 10 DEMO 18-01-19 - ### (M2C) Moab to Catalog Existence Check
- [ ] implement remaining requirements
- [x] write error messages to dor workflows (so they show up in Argo)
- [ ] reduce duplicitous logging (preferably one log message per druid, or per type of check per druid, e.g. moab validation and then version update)
- [x] cope correctly with any status starting state (e.g. invalid moab, unexpected version on disk ...)
- [ ] deploy to and run on **_PROD_**
- [ ] may require re-seeding the production db first
- [ ] run against all storage roots except first one (old format Moabs)
- [ ] performance data captured
- [ ] satisfied with performance
- [ ] satisfied with M2C code
- [ ] perf data in wiki
### Document Workflow Usage
- [x] how to create the workflow (definition) object in argo/fedora/dor
- [ ] how to write to workflows and their automagic dor indexing
- [ ] ReST endpoint direct calls
- [ ] dor-workflow-services gem
- [ ] dor-services gem
- [ ] wfs_rails for dev and test environments
### (C2M) Catalog to Moab Existence Check
- [ ] determine requirements
- [ ] make tickets for discrete work
- [ ] do the work ...
### Documentation to Update / Show:
- [ ] update Steps to Prod checklist https://docs.google.com/document/d/1oi9KmIKY0t6zVE7ACiIyOB4V-vQqTExGneFdFsth3Vs
- [ ] update Seed PC to Prod checklist https://docs.google.com/document/d/1lZNmsAqVddUkjxpNlVo-2WE2IrMuUNs0rXPR_jsdE_g
- [ ] update M2C to Prod checklist https://docs.google.com/document/d/137htAn4gK-v26jh7CILmWz2d-2ekPwvRD8WToafb-Yo
- [ ] new benchmarking data https://github.com/sul-dlss/preservation_core_catalog/wiki/Stats
- [ ] update API/MVP diagram https://docs.google.com/drawings/d/1MYKaYwq7h2Zw4gBTnI-q0GOWfTx_rGvXS08JiQ1nCu8/edit
## Stretch Goals:
### Prod Problem cleanup: Wasapi-Downloader logs/retries
- [ ] output obscuring results (#86 - proxy)
### ReST hookups
- [ ] (PC) (MV) Moab Validation w D2D
- [ ] (PC) create_with_validation
- [ ] (PC) check_existence
- [ ] (PC) update_version_with_validation
- [ ] (PC) create
- [ ] (PC) update_version
- [ ] (PC) confirm_version
### (TCR) Trusted Checksum Repository
- [ ] db schema
- [ ] create logic
- [ ] read logic | priority | sprint demo moab to catalog existence check implement remaining requirements write error messages to dor workflows so they show up in argo reduce duplicitous logging preferably one log message per druid or per type of check per druid e g moab validation and then version update cope correctly with any status starting state e g invalid moab unexpected version on disk deploy to and run on prod may require re seeding the production db first run against all storage roots except first one old format moabs performance data captured satisfied with performance satisfied with code perf data in wiki document workflow usage how to create the workflow definition object in argo fedora dor how to write to workflows and their automagic dor indexing rest endpoint direct calls dor workflow services gem dor services gem wfs rails for dev and test environments catalog to moab existence check determine requirements make tickets for discrete work do the work documentation to update show update steps to prod checklist update seed pc to prod checklist update to prod checklist new benchmarking data update api mvp diagram stretch goals prod problem cleanup wasapi downloader logs retries output obscuring results proxy rest hookups pc mv moab validation w pc create with validation pc check existence pc update version with validation pc create pc update version pc confirm version tcr trusted checksum repository db schema create logic read logic | 1 |
509,551 | 14,739,691,871 | IssuesEvent | 2021-01-07 07:44:01 | equinor/design-system | https://api.github.com/repos/equinor/design-system | closed | Publish storefront updates | High Priority dev storefront | After #632.
- [x] Publish 'Typography'
- [ ] Publish 'Grid alignment'
- [ ] Publish 'Spacings'
- [ ] Publish 'Placement and order'
- [ ] Publish 'Changelog'
- [ ] Publish documentation for 'variants' (related to #953)
- [ ] Publish 'Select' | 1.0 | Publish storefront updates - After #632.
- [x] Publish 'Typography'
- [ ] Publish 'Grid alignment'
- [ ] Publish 'Spacings'
- [ ] Publish 'Placement and order'
- [ ] Publish 'Changelog'
- [ ] Publish documentation for 'variants' (related to #953)
- [ ] Publish 'Select' | priority | publish storefront updates after publish typography publish grid alignment publish spacings publish placement and order publish changelog publish documentation for variants related to publish select | 1 |
239,791 | 7,800,024,430 | IssuesEvent | 2018-06-09 03:37:48 | tine20/Tine-2.0-Open-Source-Groupware-and-CRM | https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM | closed | 0006804:
test Calendar_Controller_EventTests::testAttendeeGroupMembersRecurringAddUser fails sometimes | Bug Calendar Mantis high priority | **Reported by pschuele on 24 Jul 2012 08:23**
**Version:** Milan (2012.03.5)
test Calendar_Controller_EventTests::testAttendeeGroupMembersRecurringAddUser fails sometimes
- maybe it fails at a certain time of day?
**Additional information:** 1) Calendar_Controller_EventTests::testAttendeeGroupMembersRecurringAddUser
[exec] recur event must be splitted
[exec] Failed asserting that <integer:3> matches expected <integer:2>.
| 1.0 | 0006804:
test Calendar_Controller_EventTests::testAttendeeGroupMembersRecurringAddUser fails sometimes - **Reported by pschuele on 24 Jul 2012 08:23**
**Version:** Milan (2012.03.5)
test Calendar_Controller_EventTests::testAttendeeGroupMembersRecurringAddUser fails sometimes
- maybe it fails at a certain time of day?
**Additional information:** 1) Calendar_Controller_EventTests::testAttendeeGroupMembersRecurringAddUser
[exec] recur event must be splitted
[exec] Failed asserting that <integer:3> matches expected <integer:2>.
| priority | test calendar controller eventtests testattendeegroupmembersrecurringadduser fails sometimes reported by pschuele on jul version milan test calendar controller eventtests testattendeegroupmembersrecurringadduser fails sometimes maybe it fails at a certain time of day additional information calendar controller eventtests testattendeegroupmembersrecurringadduser recur event must be splitted failed asserting that lt integer gt matches expected lt integer gt | 1 |
319,557 | 9,746,298,771 | IssuesEvent | 2019-06-03 11:54:07 | chrisly-bear/PEBRApp | https://api.github.com/repos/chrisly-bear/PEBRApp | opened | Support Option Done Functionality | high priority | In the patient screen, the user should be able to mark as done any of the support options that the patient chose during the preference assessment. When they do this the date of when it was marked as done should become visible and the support option should be greyed out or stroked through.

| 1.0 | Support Option Done Functionality - In the patient screen, the user should be able to mark as done any of the support options that the patient chose during the preference assessment. When they do this the date of when it was marked as done should become visible and the support option should be greyed out or stroked through.

| priority | support option done functionality in the patient screen the user should be able to mark as done any of the support options that the patient chose during the preference assessment when they do this the date of when it was marked as done should become visible and the support option should be greyed out or stroked through | 1 |
358,875 | 10,651,232,186 | IssuesEvent | 2019-10-17 09:56:05 | Steemhunt/reviewhunt-web | https://api.github.com/repos/Steemhunt/reviewhunt-web | closed | Refetch the data on moderation page | enhancement high-priority | 
When I change the tab or filters, let's re-fetch the data from the server.
Now I have to refresh and change the filter again to get the data changed recently. | 1.0 | Refetch the data on moderation page - 
When I change the tab or filters, let's re-fetch the data from the server.
Now I have to refresh and change the filter again to get the data changed recently. | priority | refetch the data on moderation page when i change the tab or filters let s re fetch the data from the server now i have to refresh and change the filter again to get the data changed recently | 1 |
379,920 | 11,244,251,052 | IssuesEvent | 2020-01-10 06:29:50 | unitystation/unitystation | https://api.github.com/repos/unitystation/unitystation | closed | Current Server NREs | Bug Headless Only High Priority | ## List of all the current NREs in the server logs:
```
NullReferenceException: Object reference not set to an instance of an object
at PlayerHealth.OnDeathActions () [0x00138] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LivingHealthBehaviour.Death () [0x0001b] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LivingHealthBehaviour.CheckHealthAndUpdateConsciousState () [0x00093] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LivingHealthBehaviour.UpdateMe () [0x000f1] in <2f68e24305684a9e9d7a6555b68ee069>:0
at (wrapper delegate-invoke) <Module>.invoke_void()
at UpdateManager.Update () [0x0001b] in <2f68e24305684a9e9d7a6555b68ee069>:0
```
```
NullReferenceException: Object reference not set to an instance of an object
at PlayerNetworkActions.CmdAdminMakeHotspot (UnityEngine.GameObject onObject) [0x00000] in <2f68e24305684a9e9d7a6555b68ee069>:0
at PlayerNetworkActions.InvokeCmdCmdAdminMakeHotspot (Mirror.NetworkBehaviour obj, Mirror.NetworkReader reader) [0x00022] in <2f68e24305684a9e9d7a6555b68ee069>:0
at Mirror.NetworkBehaviour.InvokeHandlerDelegate (System.Int32 cmdHash, Mirror.MirrorInvokeType invokeType, Mirror.NetworkReader reader) [0x00019] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkIdentity.HandleRemoteCall (System.Int32 componentIndex, System.Int32 functionHash, Mirror.MirrorInvokeType invokeType, Mirror.NetworkReader reader) [0x00069] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkIdentity.HandleCommand (System.Int32 componentIndex, System.Int32 cmdHash, Mirror.NetworkReader reader) [0x00000] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkServer.OnCommandMessage (Mirror.NetworkConnection conn, Mirror.CommandMessage msg) [0x000cf] in <075bc4397cb44e469fab9d2ea481aca0>:0
at (wrapper delegate-invoke) System.Action`2[Mirror.NetworkConnection,Mirror.CommandMessage].invoke_void_T1_T2(Mirror.NetworkConnection,Mirror.CommandMessage)
at Mirror.MessagePacker+<>c__DisplayClass5_0`1[T].<MessageHandler>b__0 (Mirror.NetworkMessage networkMessage) [0x00057] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkConnection.InvokeHandler (System.Int32 msgType, Mirror.NetworkReader reader) [0x00032] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkConnection.TransportReceive (System.ArraySegment`1[T] buffer) [0x00075] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkServer.OnDataReceived (System.Int32 connectionId, System.ArraySegment`1[T] data) [0x0000f] in <075bc4397cb44e469fab9d2ea481aca0>:0
at (wrapper delegate-invoke) UnityEngine.Events.UnityAction`2[System.Int32,System.ArraySegment`1[System.Byte]].invoke_void_T0_T1(int,System.ArraySegment`1<byte>)
at UnityEngine.Events.InvokableCall`2[T1,T2].Invoke (T1 args0, T2 args1) [0x00011] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at UnityEngine.Events.UnityEvent`2[T0,T1].Invoke (T0 arg0, T1 arg1) [0x00023] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at Mirror.TelepathyTransport.ProcessServerMessage () [0x00054] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.TelepathyTransport.LateUpdate () [0x00018] in <075bc4397cb44e469fab9d2ea481aca0>:0
```
```
NullReferenceException
at (wrapper managed-to-native) UnityEngine.Component.get_gameObject(UnityEngine.Component)
at UnityEngine.Component.GetComponentInChildren (System.Type t, System.Boolean includeInactive) [0x00001] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at UnityEngine.Component.GetComponentInChildren[T] () [0x00001] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at LightSource.OnIntensityChange () [0x00000] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LightSource.set_Intensity (System.Single value) [0x00022] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LightSource.PowerLightIntensityUpdate (System.Single Voltage) [0x00009] in <2f68e24305684a9e9d7a6555b68ee069>:0
at APC.HandleDevices () [0x0006b] in <2f68e24305684a9e9d7a6555b68ee069>:0
at APC.PowerNetworkUpdate () [0x0015f] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalNodeControl.PowerNetworkUpdate () [0x0001a] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.PowerNetworkUpdate () [0x0006b] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.DoTick () [0x0003e] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.DoUpdate () [0x000a1] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalManager.Update () [0x00014] in <2f68e24305684a9e9d7a6555b68ee069>:0
```
```
NullReferenceException: Object reference not set to an instance of an object
at PlayerMove.ServerUpdateIsSwappable () [0x00014] in <2f68e24305684a9e9d7a6555b68ee069>:0
at PlayerMove.CmdSetHelpIntent (System.Boolean helpIntent) [0x00007] in <2f68e24305684a9e9d7a6555b68ee069>:0
at PlayerMove.InvokeCmdCmdSetHelpIntent (Mirror.NetworkBehaviour obj, Mirror.NetworkReader reader) [0x00022] in <2f68e24305684a9e9d7a6555b68ee069>:0
at Mirror.NetworkBehaviour.InvokeHandlerDelegate (System.Int32 cmdHash, Mirror.MirrorInvokeType invokeType, Mirror.NetworkReader reader) [0x00019] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkIdentity.HandleRemoteCall (System.Int32 componentIndex, System.Int32 functionHash, Mirror.MirrorInvokeType invokeType, Mirror.NetworkReader reader) [0x00069] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkIdentity.HandleCommand (System.Int32 componentIndex, System.Int32 cmdHash, Mirror.NetworkReader reader) [0x00000] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkServer.OnCommandMessage (Mirror.NetworkConnection conn, Mirror.CommandMessage msg) [0x000cf] in <075bc4397cb44e469fab9d2ea481aca0>:0
at (wrapper delegate-invoke) System.Action`2[Mirror.NetworkConnection,Mirror.CommandMessage].invoke_void_T1_T2(Mirror.NetworkConnection,Mirror.CommandMessage)
at Mirror.MessagePacker+<>c__DisplayClass5_0`1[T].<MessageHandler>b__0 (Mirror.NetworkMessage networkMessage) [0x00057] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkConnection.InvokeHandler (System.Int32 msgType, Mirror.NetworkReader reader) [0x00032] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkConnection.TransportReceive (System.ArraySegment`1[T] buffer) [0x00075] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkServer.OnDataReceived (System.Int32 connectionId, System.ArraySegment`1[T] data) [0x0000f] in <075bc4397cb44e469fab9d2ea481aca0>:0
at (wrapper delegate-invoke) UnityEngine.Events.UnityAction`2[System.Int32,System.ArraySegment`1[System.Byte]].invoke_void_T0_T1(int,System.ArraySegment`1<byte>)
at UnityEngine.Events.InvokableCall`2[T1,T2].Invoke (T1 args0, T2 args1) [0x00011] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at UnityEngine.Events.UnityEvent`2[T0,T1].Invoke (T0 arg0, T1 arg1) [0x00023] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at Mirror.TelepathyTransport.ProcessServerMessage () [0x00054] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.TelepathyTransport.LateUpdate () [0x00018] in <075bc4397cb44e469fab9d2ea481aca0>:0
```
```
NullReferenceException
at (wrapper managed-to-native) UnityEngine.Renderer.set_enabled(UnityEngine.Renderer,bool)
at DepartmentBattery.UpdateBattery (BatteryStateSprite State) [0x00077] in <2f68e24305684a9e9d7a6555b68ee069>:0
at DepartmentBattery.set_NetworkCurrentState (BatteryStateSprite value) [0x0002e] in <2f68e24305684a9e9d7a6555b68ee069>:0
at DepartmentBattery.UpdateBattery (BatteryStateSprite State) [0x00000] in <2f68e24305684a9e9d7a6555b68ee069>:0
at DepartmentBattery.PowerNetworkUpdate () [0x0005a] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalNodeControl.PowerNetworkUpdate () [0x0001a] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.PowerNetworkUpdate () [0x0006b] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.DoTick () [0x0003e] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.DoUpdate () [0x000a1] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalManager.Update () [0x00014] in <2f68e24305684a9e9d7a6555b68ee069>:0
```
| 1.0 | Current Server NREs - ## List of all the current NREs in the server logs:
```
NullReferenceException: Object reference not set to an instance of an object
at PlayerHealth.OnDeathActions () [0x00138] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LivingHealthBehaviour.Death () [0x0001b] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LivingHealthBehaviour.CheckHealthAndUpdateConsciousState () [0x00093] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LivingHealthBehaviour.UpdateMe () [0x000f1] in <2f68e24305684a9e9d7a6555b68ee069>:0
at (wrapper delegate-invoke) <Module>.invoke_void()
at UpdateManager.Update () [0x0001b] in <2f68e24305684a9e9d7a6555b68ee069>:0
```
```
NullReferenceException: Object reference not set to an instance of an object
at PlayerNetworkActions.CmdAdminMakeHotspot (UnityEngine.GameObject onObject) [0x00000] in <2f68e24305684a9e9d7a6555b68ee069>:0
at PlayerNetworkActions.InvokeCmdCmdAdminMakeHotspot (Mirror.NetworkBehaviour obj, Mirror.NetworkReader reader) [0x00022] in <2f68e24305684a9e9d7a6555b68ee069>:0
at Mirror.NetworkBehaviour.InvokeHandlerDelegate (System.Int32 cmdHash, Mirror.MirrorInvokeType invokeType, Mirror.NetworkReader reader) [0x00019] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkIdentity.HandleRemoteCall (System.Int32 componentIndex, System.Int32 functionHash, Mirror.MirrorInvokeType invokeType, Mirror.NetworkReader reader) [0x00069] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkIdentity.HandleCommand (System.Int32 componentIndex, System.Int32 cmdHash, Mirror.NetworkReader reader) [0x00000] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkServer.OnCommandMessage (Mirror.NetworkConnection conn, Mirror.CommandMessage msg) [0x000cf] in <075bc4397cb44e469fab9d2ea481aca0>:0
at (wrapper delegate-invoke) System.Action`2[Mirror.NetworkConnection,Mirror.CommandMessage].invoke_void_T1_T2(Mirror.NetworkConnection,Mirror.CommandMessage)
at Mirror.MessagePacker+<>c__DisplayClass5_0`1[T].<MessageHandler>b__0 (Mirror.NetworkMessage networkMessage) [0x00057] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkConnection.InvokeHandler (System.Int32 msgType, Mirror.NetworkReader reader) [0x00032] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkConnection.TransportReceive (System.ArraySegment`1[T] buffer) [0x00075] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkServer.OnDataReceived (System.Int32 connectionId, System.ArraySegment`1[T] data) [0x0000f] in <075bc4397cb44e469fab9d2ea481aca0>:0
at (wrapper delegate-invoke) UnityEngine.Events.UnityAction`2[System.Int32,System.ArraySegment`1[System.Byte]].invoke_void_T0_T1(int,System.ArraySegment`1<byte>)
at UnityEngine.Events.InvokableCall`2[T1,T2].Invoke (T1 args0, T2 args1) [0x00011] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at UnityEngine.Events.UnityEvent`2[T0,T1].Invoke (T0 arg0, T1 arg1) [0x00023] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at Mirror.TelepathyTransport.ProcessServerMessage () [0x00054] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.TelepathyTransport.LateUpdate () [0x00018] in <075bc4397cb44e469fab9d2ea481aca0>:0
```
```
NullReferenceException
at (wrapper managed-to-native) UnityEngine.Component.get_gameObject(UnityEngine.Component)
at UnityEngine.Component.GetComponentInChildren (System.Type t, System.Boolean includeInactive) [0x00001] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at UnityEngine.Component.GetComponentInChildren[T] () [0x00001] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at LightSource.OnIntensityChange () [0x00000] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LightSource.set_Intensity (System.Single value) [0x00022] in <2f68e24305684a9e9d7a6555b68ee069>:0
at LightSource.PowerLightIntensityUpdate (System.Single Voltage) [0x00009] in <2f68e24305684a9e9d7a6555b68ee069>:0
at APC.HandleDevices () [0x0006b] in <2f68e24305684a9e9d7a6555b68ee069>:0
at APC.PowerNetworkUpdate () [0x0015f] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalNodeControl.PowerNetworkUpdate () [0x0001a] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.PowerNetworkUpdate () [0x0006b] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.DoTick () [0x0003e] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.DoUpdate () [0x000a1] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalManager.Update () [0x00014] in <2f68e24305684a9e9d7a6555b68ee069>:0
```
```
NullReferenceException: Object reference not set to an instance of an object
at PlayerMove.ServerUpdateIsSwappable () [0x00014] in <2f68e24305684a9e9d7a6555b68ee069>:0
at PlayerMove.CmdSetHelpIntent (System.Boolean helpIntent) [0x00007] in <2f68e24305684a9e9d7a6555b68ee069>:0
at PlayerMove.InvokeCmdCmdSetHelpIntent (Mirror.NetworkBehaviour obj, Mirror.NetworkReader reader) [0x00022] in <2f68e24305684a9e9d7a6555b68ee069>:0
at Mirror.NetworkBehaviour.InvokeHandlerDelegate (System.Int32 cmdHash, Mirror.MirrorInvokeType invokeType, Mirror.NetworkReader reader) [0x00019] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkIdentity.HandleRemoteCall (System.Int32 componentIndex, System.Int32 functionHash, Mirror.MirrorInvokeType invokeType, Mirror.NetworkReader reader) [0x00069] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkIdentity.HandleCommand (System.Int32 componentIndex, System.Int32 cmdHash, Mirror.NetworkReader reader) [0x00000] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkServer.OnCommandMessage (Mirror.NetworkConnection conn, Mirror.CommandMessage msg) [0x000cf] in <075bc4397cb44e469fab9d2ea481aca0>:0
at (wrapper delegate-invoke) System.Action`2[Mirror.NetworkConnection,Mirror.CommandMessage].invoke_void_T1_T2(Mirror.NetworkConnection,Mirror.CommandMessage)
at Mirror.MessagePacker+<>c__DisplayClass5_0`1[T].<MessageHandler>b__0 (Mirror.NetworkMessage networkMessage) [0x00057] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkConnection.InvokeHandler (System.Int32 msgType, Mirror.NetworkReader reader) [0x00032] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkConnection.TransportReceive (System.ArraySegment`1[T] buffer) [0x00075] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.NetworkServer.OnDataReceived (System.Int32 connectionId, System.ArraySegment`1[T] data) [0x0000f] in <075bc4397cb44e469fab9d2ea481aca0>:0
at (wrapper delegate-invoke) UnityEngine.Events.UnityAction`2[System.Int32,System.ArraySegment`1[System.Byte]].invoke_void_T0_T1(int,System.ArraySegment`1<byte>)
at UnityEngine.Events.InvokableCall`2[T1,T2].Invoke (T1 args0, T2 args1) [0x00011] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at UnityEngine.Events.UnityEvent`2[T0,T1].Invoke (T0 arg0, T1 arg1) [0x00023] in <1580092fcc9a4cc19685cc4eaf066b05>:0
at Mirror.TelepathyTransport.ProcessServerMessage () [0x00054] in <075bc4397cb44e469fab9d2ea481aca0>:0
at Mirror.TelepathyTransport.LateUpdate () [0x00018] in <075bc4397cb44e469fab9d2ea481aca0>:0
```
```
NullReferenceException
at (wrapper managed-to-native) UnityEngine.Renderer.set_enabled(UnityEngine.Renderer,bool)
at DepartmentBattery.UpdateBattery (BatteryStateSprite State) [0x00077] in <2f68e24305684a9e9d7a6555b68ee069>:0
at DepartmentBattery.set_NetworkCurrentState (BatteryStateSprite value) [0x0002e] in <2f68e24305684a9e9d7a6555b68ee069>:0
at DepartmentBattery.UpdateBattery (BatteryStateSprite State) [0x00000] in <2f68e24305684a9e9d7a6555b68ee069>:0
at DepartmentBattery.PowerNetworkUpdate () [0x0005a] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalNodeControl.PowerNetworkUpdate () [0x0001a] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.PowerNetworkUpdate () [0x0006b] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.DoTick () [0x0003e] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalSynchronisation.DoUpdate () [0x000a1] in <2f68e24305684a9e9d7a6555b68ee069>:0
at ElectricalManager.Update () [0x00014] in <2f68e24305684a9e9d7a6555b68ee069>:0
```
| priority | current server nres list of all the current nres in the server logs nullreferenceexception object reference not set to an instance of an object at playerhealth ondeathactions in at livinghealthbehaviour death in at livinghealthbehaviour checkhealthandupdateconsciousstate in at livinghealthbehaviour updateme in at wrapper delegate invoke invoke void at updatemanager update in nullreferenceexception object reference not set to an instance of an object at playernetworkactions cmdadminmakehotspot unityengine gameobject onobject in at playernetworkactions invokecmdcmdadminmakehotspot mirror networkbehaviour obj mirror networkreader reader in at mirror networkbehaviour invokehandlerdelegate system cmdhash mirror mirrorinvoketype invoketype mirror networkreader reader in at mirror networkidentity handleremotecall system componentindex system functionhash mirror mirrorinvoketype invoketype mirror networkreader reader in at mirror networkidentity handlecommand system componentindex system cmdhash mirror networkreader reader in at mirror networkserver oncommandmessage mirror networkconnection conn mirror commandmessage msg in at wrapper delegate invoke system action invoke void mirror networkconnection mirror commandmessage at mirror messagepacker c b mirror networkmessage networkmessage in at mirror networkconnection invokehandler system msgtype mirror networkreader reader in at mirror networkconnection transportreceive system arraysegment buffer in at mirror networkserver ondatareceived system connectionid system arraysegment data in at wrapper delegate invoke unityengine events unityaction invoke void int system arraysegment at unityengine events invokablecall invoke in at unityengine events unityevent invoke in at mirror telepathytransport processservermessage in at mirror telepathytransport lateupdate in nullreferenceexception at wrapper managed to native unityengine component get gameobject unityengine component at unityengine component getcomponentinchildren system type t system boolean includeinactive in at unityengine component getcomponentinchildren in at lightsource onintensitychange in at lightsource set intensity system single value in at lightsource powerlightintensityupdate system single voltage in at apc handledevices in at apc powernetworkupdate in at electricalnodecontrol powernetworkupdate in at electricalsynchronisation powernetworkupdate in at electricalsynchronisation dotick in at electricalsynchronisation doupdate in at electricalmanager update in nullreferenceexception object reference not set to an instance of an object at playermove serverupdateisswappable in at playermove cmdsethelpintent system boolean helpintent in at playermove invokecmdcmdsethelpintent mirror networkbehaviour obj mirror networkreader reader in at mirror networkbehaviour invokehandlerdelegate system cmdhash mirror mirrorinvoketype invoketype mirror networkreader reader in at mirror networkidentity handleremotecall system componentindex system functionhash mirror mirrorinvoketype invoketype mirror networkreader reader in at mirror networkidentity handlecommand system componentindex system cmdhash mirror networkreader reader in at mirror networkserver oncommandmessage mirror networkconnection conn mirror commandmessage msg in at wrapper delegate invoke system action invoke void mirror networkconnection mirror commandmessage at mirror messagepacker c b mirror networkmessage networkmessage in at mirror networkconnection invokehandler system msgtype mirror networkreader reader in at mirror networkconnection transportreceive system arraysegment buffer in at mirror networkserver ondatareceived system connectionid system arraysegment data in at wrapper delegate invoke unityengine events unityaction invoke void int system arraysegment at unityengine events invokablecall invoke in at unityengine events unityevent invoke in at mirror telepathytransport processservermessage in at mirror telepathytransport lateupdate in nullreferenceexception at wrapper managed to native unityengine renderer set enabled unityengine renderer bool at departmentbattery updatebattery batterystatesprite state in at departmentbattery set networkcurrentstate batterystatesprite value in at departmentbattery updatebattery batterystatesprite state in at departmentbattery powernetworkupdate in at electricalnodecontrol powernetworkupdate in at electricalsynchronisation powernetworkupdate in at electricalsynchronisation dotick in at electricalsynchronisation doupdate in at electricalmanager update in | 1 |
792,672 | 27,970,541,706 | IssuesEvent | 2023-03-25 01:28:45 | iina/iina | https://api.github.com/repos/iina/iina | reopened | Playback History window: no confirmation when Backspace key used | bug progress: pr ready priority: high | **System and IINA version:**
- macOS 13.1
- IINA 1.3.1 Build 133
**Expected behavior:**
Because right-click on an entry in this window puts up a confirmation dialog before deleting, one would expect the same if using the Backspace key.
**Actual behavior:**
No confirmation. Item(s) immediately deleted.
Also, using `Ctrl`+`Backspace`, or `Shift`+`Backspace`, `Option`+`Backspace` (i.e. any modifier other than `Command`) also deletes the entry, when they probably shouldn't. Also one would expect the `Delete` key to work also, but it does not.
**How often does this happen?**
Always | 1.0 | Playback History window: no confirmation when Backspace key used - **System and IINA version:**
- macOS 13.1
- IINA 1.3.1 Build 133
**Expected behavior:**
Because right-click on an entry in this window puts up a confirmation dialog before deleting, one would expect the same if using the Backspace key.
**Actual behavior:**
No confirmation. Item(s) immediately deleted.
Also, using `Ctrl`+`Backspace`, or `Shift`+`Backspace`, `Option`+`Backspace` (i.e. any modifier other than `Command`) also deletes the entry, when they probably shouldn't. Also one would expect the `Delete` key to work also, but it does not.
**How often does this happen?**
Always | priority | playback history window no confirmation when backspace key used system and iina version macos iina build expected behavior because right click on an entry in this window puts up a confirmation dialog before deleting one would expect the same if using the backspace key actual behavior no confirmation item s immediately deleted also using ctrl backspace or shift backspace option backspace i e any modifier other than command also deletes the entry when they probably shouldn t also one would expect the delete key to work also but it does not how often does this happen always | 1 |
433,304 | 12,505,547,199 | IssuesEvent | 2020-06-02 10:56:11 | input-output-hk/ouroboros-network | https://api.github.com/repos/input-output-hk/ouroboros-network | closed | Include genesis hash in hash chain | consensus priority high shelley mainnet transition | The prev-hash of the first block should be
```
hash( hash(final_byron_header) <> hash(shelley_genesis) )
```
| 1.0 | Include genesis hash in hash chain - The prev-hash of the first block should be
```
hash( hash(final_byron_header) <> hash(shelley_genesis) )
```
| priority | include genesis hash in hash chain the prev hash of the first block should be hash hash final byron header hash shelley genesis | 1 |
323,865 | 9,879,640,170 | IssuesEvent | 2019-06-24 10:30:46 | geosolutions-it/sciadro-backend | https://api.github.com/repos/geosolutions-it/sciadro-backend | closed | Improve responses when creating new resources | Backend Priority: High SCIADRO | - [ ] if an error occurs on the backend please provide the related status code i.e. 404 500 etc | 1.0 | Improve responses when creating new resources - - [ ] if an error occurs on the backend please provide the related status code i.e. 404 500 etc | priority | improve responses when creating new resources if an error occurs on the backend please provide the related status code i e etc | 1 |
641,748 | 20,833,647,667 | IssuesEvent | 2022-03-19 21:19:22 | peering-manager/peering-manager | https://api.github.com/repos/peering-manager/peering-manager | closed | do not perform same-subnet-check when adding multihop (or iBGP) peering sessions | type: bug priority: high status: accepted | ### Peering Manager version
v1.6.0
### Python version
3.9
### Steps to Reproduce
1. Add a new direct BGP session
2. Put local and remote IPv4 addresses as different /32
3. Set multihop > 1
### Expected Behavior
As per discussion on #358, multihop > 1 should ignore same subnet check.
### Observed Behavior
Cannot create peering because same subnet check is applied. | 1.0 | do not perform same-subnet-check when adding multihop (or iBGP) peering sessions - ### Peering Manager version
v1.6.0
### Python version
3.9
### Steps to Reproduce
1. Add a new direct BGP session
2. Put local and remote IPv4 addresses as different /32
3. Set multihop > 1
### Expected Behavior
As per discussion on #358, multihop > 1 should ignore same subnet check.
### Observed Behavior
Cannot create peering because same subnet check is applied. | priority | do not perform same subnet check when adding multihop or ibgp peering sessions peering manager version python version steps to reproduce add a new direct bgp session put local and remote addresses as different set multihop expected behavior as per discussion on multihop should ignore same subnet check observed behavior cannot create peering because same subnet check is applied | 1 |
755,825 | 26,441,656,236 | IssuesEvent | 2023-01-16 01:17:44 | SuddenDevelopment/StopMotion | https://api.github.com/repos/SuddenDevelopment/StopMotion | opened | Selected Keyframes after creation | Priority High | I am undecided about this behavior. There are a few directions we can go here. It would be good to talk to you about it hear your thoughts.
I kinda like how it is at the moment. That said something doesn't sit right with me so I am rubber-ducking it
I
| 1.0 | Selected Keyframes after creation - I am undecided about this behavior. There are a few directions we can go here. It would be good to talk to you about it hear your thoughts.
I kinda like how it is at the moment. That said something doesn't sit right with me so I am rubber-ducking it
I
| priority | selected keyframes after creation i am undecided about this behavior there are a few directions we can go here it would be good to talk to you about it hear your thoughts i kinda like how it is at the moment that said something doesn t sit right with me so i am rubber ducking it i | 1 |
545,072 | 15,935,468,268 | IssuesEvent | 2021-04-14 09:53:52 | TestMonkeys/jEntityTest | https://api.github.com/repos/TestMonkeys/jEntityTest | closed | Yaml model definition | enhancement priority::high | As marking the pojo with annotation is not always desired/possible, the comparison model should be configurable as a yaml file.
the model output should be an exact match as to the current implementation. | 1.0 | Yaml model definition - As marking the pojo with annotation is not always desired/possible, the comparison model should be configurable as a yaml file.
the model output should be an exact match as to the current implementation. | priority | yaml model definition as marking the pojo with annotation is not always desired possible the comparison model should be configurable as a yaml file the model output should be an exact match as to the current implementation | 1 |
721,966 | 24,845,188,489 | IssuesEvent | 2022-10-26 15:22:11 | huridocs/uwazi | https://api.github.com/repos/huridocs/uwazi | closed | Request for appropriate error message when a user tries to save geolocation data with only latitude information | Bug :lady_beetle: Priority: High Sprint-Ready Frontend :sunglasses: Backend ๐พ | **Describe the bug**
At present, Uwazi allows users to create an entity with a geolocation field by adding just one of the two coordinates in the field. After saving, when one views the entity, it does not render any geolocation, as expected. However, there is no notification from Uwazi mandating the user fill both the latitude and longitudes before/to be able to save the entity.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to โCreate entityโ in a template with geolocation property
2. Add information in the latitude field only
3. Save the entity
4. Click view to open the recently created entity
**Expected behavior**
Uwazi ensures users add both the Latitude and Longitude fields to be able to save the entity.Both latitude and longitude fields are visible at 100% zoom level of the browser.
**Screenshots**
https://user-images.githubusercontent.com/88421793/191933038-122c106b-e24e-4d93-ab25-af346320cff0.mov
**Device (please select all that apply)**
- [x] Desktop
- [x] Mobile
**Browser**
Chrome | 1.0 | Request for appropriate error message when a user tries to save geolocation data with only latitude information - **Describe the bug**
At present, Uwazi allows users to create an entity with a geolocation field by adding just one of the two coordinates in the field. After saving, when one views the entity, it does not render any geolocation, as expected. However, there is no notification from Uwazi mandating the user fill both the latitude and longitudes before/to be able to save the entity.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to โCreate entityโ in a template with geolocation property
2. Add information in the latitude field only
3. Save the entity
4. Click view to open the recently created entity
**Expected behavior**
Uwazi ensures users add both the Latitude and Longitude fields to be able to save the entity.Both latitude and longitude fields are visible at 100% zoom level of the browser.
**Screenshots**
https://user-images.githubusercontent.com/88421793/191933038-122c106b-e24e-4d93-ab25-af346320cff0.mov
**Device (please select all that apply)**
- [x] Desktop
- [x] Mobile
**Browser**
Chrome | priority | request for appropriate error message when a user tries to save geolocation data with only latitude information describe the bug at present uwazi allows users to create an entity with a geolocation field by adding just one of the two coordinates in the field after saving when one views the entity it does not render any geolocation as expected however there is no notification from uwazi mandating the user fill both the latitude and longitudes before to be able to save the entity to reproduce steps to reproduce the behavior go to โcreate entityโ in a template with geolocation property add information in the latitude field only save the entity click view to open the recently created entity expected behavior uwazi ensures users add both the latitude and longitude fields to be able to save the entity both latitude and longitude fields are visible at zoom level of the browser screenshots device please select all that apply desktop mobile browser chrome | 1 |
164,969 | 6,259,569,073 | IssuesEvent | 2017-07-14 18:22:44 | ePADD/epadd | https://api.github.com/repos/ePADD/epadd | opened | Extra Field "Attachment Entity" appear in Advanced Search | Bug High priority | Version 4.0
Need to remove "Attachment Entity" in Advanced Search | 1.0 | Extra Field "Attachment Entity" appear in Advanced Search - Version 4.0
Need to remove "Attachment Entity" in Advanced Search | priority | extra field attachment entity appear in advanced search version need to remove attachment entity in advanced search | 1 |
313,511 | 9,562,547,175 | IssuesEvent | 2019-05-04 10:07:12 | DrylandEcology/rSFSW2 | https://api.github.com/repos/DrylandEcology/rSFSW2 | closed | default Experimental Design file has wrong values | bug high priority in progress | When the 'SWRuns_InputData_ExperimentalDesign_v09.csv' file is generated with the function 'setup_rSFSW2_project_infrastructure' incorrect values are set.
Specifically, the PotentialNaturalVegetation_CompositionTrees_Fraction and PotentialNaturalVegetation_CompositionBareGround_Fraction fields are set to 1 and have values within them, where these fields should be set to 0.
Please see the documentation for the 'setup_rSFSW2_project_infrastructure' function, which will direct you to: \file{data-raw/prepare_default_project_infrastructure.R}
| 1.0 | default Experimental Design file has wrong values - When the 'SWRuns_InputData_ExperimentalDesign_v09.csv' file is generated with the function 'setup_rSFSW2_project_infrastructure' incorrect values are set.
Specifically, the PotentialNaturalVegetation_CompositionTrees_Fraction and PotentialNaturalVegetation_CompositionBareGround_Fraction fields are set to 1 and have values within them, where these fields should be set to 0.
Please see the documentation for the 'setup_rSFSW2_project_infrastructure' function, which will direct you to: \file{data-raw/prepare_default_project_infrastructure.R}
| priority | default experimental design file has wrong values when the swruns inputdata experimentaldesign csv file is generated with the function setup project infrastructure incorrect values are set specifically the potentialnaturalvegetation compositiontrees fraction and potentialnaturalvegetation compositionbareground fraction fields are set to and have values within them where these fields should be set to please see the documentation for the setup project infrastructure function which will direct you to file data raw prepare default project infrastructure r | 1 |
264,402 | 8,309,545,422 | IssuesEvent | 2018-09-24 07:12:57 | CanonicalLtd/desktop-design | https://api.github.com/repos/CanonicalLtd/desktop-design | closed | [gnome-software] Report/flag apps and entire publishers | Priority: High | We should design UI for reporting/flagging a snap, and similarly (once [publisher pages](https://github.com/CanonicalLtd/desktop-design/issues/114) are implemented) reporting/flagging an entire publisher.
The UI should guard against people flagging snaps merely because they are buggy or disliked. This probably involves requiring users to specify the particular reason for flagging: copyright/trademark violation, libel, obscene language, violating developer guidelines, etc.
Probably gnome-software and the Web directory should have roughly the same UI.
[Discussed during the gnome-software design sprint.]
Deliverable:
A bug report with issue background and attached relevant proposals from Gnome sprint.
Discuss the proposal with Robert Ansell first | 1.0 | [gnome-software] Report/flag apps and entire publishers - We should design UI for reporting/flagging a snap, and similarly (once [publisher pages](https://github.com/CanonicalLtd/desktop-design/issues/114) are implemented) reporting/flagging an entire publisher.
The UI should guard against people flagging snaps merely because they are buggy or disliked. This probably involves requiring users to specify the particular reason for flagging: copyright/trademark violation, libel, obscene language, violating developer guidelines, etc.
Probably gnome-software and the Web directory should have roughly the same UI.
[Discussed during the gnome-software design sprint.]
Deliverable:
A bug report with issue background and attached relevant proposals from Gnome sprint.
Discuss the proposal with Robert Ansell first | priority | report flag apps and entire publishers we should design ui for reporting flagging a snap and similarly once are implemented reporting flagging an entire publisher the ui should guard against people flagging snaps merely because they are buggy or disliked this probably involves requiring users to specify the particular reason for flagging copyright trademark violation libel obscene language violating developer guidelines etc probably gnome software and the web directory should have roughly the same ui deliverable a bug report with issue background and attached relevant proposals from gnome sprint discuss the proposal with robert ansell first | 1 |
712,996 | 24,514,375,945 | IssuesEvent | 2022-10-11 02:39:38 | EtalumaSupport/LumaViewPro | https://api.github.com/repos/EtalumaSupport/LumaViewPro | closed | Protocol - Cannot pause nor stop a running protocol | bug High Priority | There is no way to stop a running protocol. I was trying to create a new one, it began running, and there was no way to stop it.
We should consider an eStop button on the main GUI and stop/pause controls in the XY stage control.
[LVP_log 1659569455590.txt](https://github.com/EtalumaSupport/LumaViewPro/files/9255735/LVP_log.1659569455590.txt)
| 1.0 | Protocol - Cannot pause nor stop a running protocol - There is no way to stop a running protocol. I was trying to create a new one, it began running, and there was no way to stop it.
We should consider an eStop button on the main GUI and stop/pause controls in the XY stage control.
[LVP_log 1659569455590.txt](https://github.com/EtalumaSupport/LumaViewPro/files/9255735/LVP_log.1659569455590.txt)
| priority | protocol cannot pause nor stop a running protocol there is no way to stop a running protocol i was trying to create a new one it began running and there was no way to stop it we should consider an estop button on the main gui and stop pause controls in the xy stage control | 1 |
455,109 | 13,111,841,174 | IssuesEvent | 2020-08-05 00:16:01 | department-of-veterans-affairs/caseflow | https://api.github.com/repos/department-of-veterans-affairs/caseflow | opened | Schedule enhancements for FY21 | Allow single-day dockets without room assignment | Epic Priority: High Product: caseflow-hearings Stakeholder: BVA Team: Tango ๐ | ## Description
Expand hearing room and day capacity for FY21 schedules to be built, and expanded upon as needs arise. The Board would like to allow single-day dockets without room assignments in order to build:
- AMA-only dockets (thus also filling existing dockets with legacy) in order for AVLJs and others to
- One-off dockets for extra capacity to alleviate COVID-19 strain
The Board would like to expand standard scheduling capacity by:
- Adding 5 more hearing rooms
- Making the time slots consistent by standardizing to 12 across ROs
- Expanding Central Office to have 5 business days instead of 4
Investigate what work needs to be done to remove or introduce new requirements, and work towards these goals.
## Acceptance criteria
- [x] Investigate constraints surrounding building single-day dockets #14614
- [x] Investigate adding room and day capacity for FY21 schedule #14769
- [ ] Add 5 hearing rooms to schedule
- [ ] Make the time slots consistent / standardize to 12 across ROs
- [ ] Make Central Office slots 10 across the board
- [ ] Allow individual days with hearing room โnoneโ to schedule Veterans
## Background/context/resources
## Related work
#13975 | 1.0 | Schedule enhancements for FY21 | Allow single-day dockets without room assignment - ## Description
Expand hearing room and day capacity for FY21 schedules to be built, and expanded upon as needs arise. The Board would like to allow single-day dockets without room assignments in order to build:
- AMA-only dockets (thus also filling existing dockets with legacy) in order for AVLJs and others to
- One-off dockets for extra capacity to alleviate COVID-19 strain
The Board would like to expand standard scheduling capacity by:
- Adding 5 more hearing rooms
- Making the time slots consistent by standardizing to 12 across ROs
- Expanding Central Office to have 5 business days instead of 4
Investigate what work needs to be done to remove or introduce new requirements, and work towards these goals.
## Acceptance criteria
- [x] Investigate constraints surrounding building single-day dockets #14614
- [x] Investigate adding room and day capacity for FY21 schedule #14769
- [ ] Add 5 hearing rooms to schedule
- [ ] Make the time slots consistent / standardize to 12 across ROs
- [ ] Make Central Office slots 10 across the board
- [ ] Allow individual days with hearing room โnoneโ to schedule Veterans
## Background/context/resources
## Related work
#13975 | priority | schedule enhancements for allow single day dockets without room assignment description expand hearing room and day capacity for schedules to be built and expanded upon as needs arise the board would like to allow single day dockets without room assignments in order to build ama only dockets thus also filling existing dockets with legacy in order for avljs and others to one off dockets for extra capacity to alleviate covid strain the board would like to expand standard scheduling capacity by adding more hearing rooms making the time slots consistent by standardizing to across ros expanding central office to have business days instead of investigate what work needs to be done to remove or introduce new requirements and work towards these goals acceptance criteria investigate constraints surrounding building single day dockets investigate adding room and day capacity for schedule add hearing rooms to schedule make the time slots consistent standardize to across ros make central office slots across the board allow individual days with hearing room โnoneโ to schedule veterans background context resources related work | 1 |
367,277 | 10,851,461,773 | IssuesEvent | 2019-11-13 10:48:47 | WoWManiaUK/Blackwing-Lair | https://api.github.com/repos/WoWManiaUK/Blackwing-Lair | closed | [Spell] Soulburn consumes charge after spell hits, not after spell cast. | Class Fixed in Dev Priority-High | **What is happening:**
Casting soulburn when a projectile that can be affected soulburn can result in soulburn being consumed by the said spell.
Mainly annoying when casting soulfire then using soulburn to throw another soulfire instantly. Instead of the new soulfire being an instant, the first soulfire that was in the air consumes the charge.
**What should happen:**
Soulburn should affect the next spell cast, not the next spell to hit.
**How to replicate:**
Cast soulfire, then cast soulburn while the soulfire projectile is still in the air.
| 1.0 | [Spell] Soulburn consumes charge after spell hits, not after spell cast. - **What is happening:**
Casting soulburn when a projectile that can be affected soulburn can result in soulburn being consumed by the said spell.
Mainly annoying when casting soulfire then using soulburn to throw another soulfire instantly. Instead of the new soulfire being an instant, the first soulfire that was in the air consumes the charge.
**What should happen:**
Soulburn should affect the next spell cast, not the next spell to hit.
**How to replicate:**
Cast soulfire, then cast soulburn while the soulfire projectile is still in the air.
| priority | soulburn consumes charge after spell hits not after spell cast what is happening casting soulburn when a projectile that can be affected soulburn can result in soulburn being consumed by the said spell mainly annoying when casting soulfire then using soulburn to throw another soulfire instantly instead of the new soulfire being an instant the first soulfire that was in the air consumes the charge what should happen soulburn should affect the next spell cast not the next spell to hit how to replicate cast soulfire then cast soulburn while the soulfire projectile is still in the air | 1 |
444,541 | 12,814,185,954 | IssuesEvent | 2020-07-04 17:14:00 | ahmedkaludi/pwa-for-wp | https://api.github.com/repos/ahmedkaludi/pwa-for-wp | closed | iOS splash screen issue | High Priority bug | Need to resolve iOS splash screen solution with multiple iOS devices.
https://5cb6d3a94c1b367b05843b5f--crossyroad.netlify.app/ | 1.0 | iOS splash screen issue - Need to resolve iOS splash screen solution with multiple iOS devices.
https://5cb6d3a94c1b367b05843b5f--crossyroad.netlify.app/ | priority | ios splash screen issue need to resolve ios splash screen solution with multiple ios devices | 1 |
421,709 | 12,260,475,176 | IssuesEvent | 2020-05-06 18:21:59 | X-Plane/XPlane2Blender | https://api.github.com/repos/X-Plane/XPlane2Blender | closed | 280: Some lights (like _do_rgb_to_dxyz_w_calc lights) will have bad Automatic Light usability | Bug WYSIWYG Lights priority high | These lights all use their RGB to replace the DXYZ. This means that WIDTH (which comes from Cone Size!) will be determining the direction of these lights!
For these lights it would be best to make WIDTH=1 or -1 depending and aim them just with the rotation of the Blender light.
```
airplane_generic_size>-->---0>--0>--WIDTH>--INDEX...
airplane_generic_flash>->---0>--0>--WIDTH>--INDEX...
airplane_beacon_size>--->---0>--0>--WIDTH>--INDEX...
airplane_nav_tail_size>->---0>--0>--WIDTH>--1>--SIZE...
airplane_nav_left_size>->---WIDTH>--0>--0>--1>--SIZE...
airplane_nav_right_size>>---WIDTH>--0>--0>--1>--SIZE...
``` | 1.0 | 280: Some lights (like _do_rgb_to_dxyz_w_calc lights) will have bad Automatic Light usability - These lights all use their RGB to replace the DXYZ. This means that WIDTH (which comes from Cone Size!) will be determining the direction of these lights!
For these lights it would be best to make WIDTH=1 or -1 depending and aim them just with the rotation of the Blender light.
```
airplane_generic_size>-->---0>--0>--WIDTH>--INDEX...
airplane_generic_flash>->---0>--0>--WIDTH>--INDEX...
airplane_beacon_size>--->---0>--0>--WIDTH>--INDEX...
airplane_nav_tail_size>->---0>--0>--WIDTH>--1>--SIZE...
airplane_nav_left_size>->---WIDTH>--0>--0>--1>--SIZE...
airplane_nav_right_size>>---WIDTH>--0>--0>--1>--SIZE...
``` | priority | some lights like do rgb to dxyz w calc lights will have bad automatic light usability these lights all use their rgb to replace the dxyz this means that width which comes from cone size will be determining the direction of these lights for these lights it would be best to make width or depending and aim them just with the rotation of the blender light airplane generic size width index airplane generic flash width index airplane beacon size width index airplane nav tail size width size airplane nav left size width size airplane nav right size width size | 1 |
784,525 | 27,574,379,665 | IssuesEvent | 2023-03-08 11:51:20 | AY2223S2-CS2103-F11-4/tp | https://api.github.com/repos/AY2223S2-CS2103-F11-4/tp | opened | Edit the GUI to display selected user's contact | priority.High type.Task severity.High | * User can click on the selected contact to view more | 1.0 | Edit the GUI to display selected user's contact - * User can click on the selected contact to view more | priority | edit the gui to display selected user s contact user can click on the selected contact to view more | 1 |
397,189 | 11,725,029,624 | IssuesEvent | 2020-03-10 12:09:56 | wso2/devstudio-tooling-ei | https://api.github.com/repos/wso2/devstudio-tooling-ei | opened | [Windows]Cannot edit already created Data Source through the Design View | DSS Priority/High Severity/Major | **Steps to reproduce:**
1. Create a Data source with the following information.
````
<config id="101" enableOData="false">
<property name="driverClassName">com.mysql.jdbc.Driver</property>
<property name="url">jdbc:mysql://10.100.5.136:3306/Employees
</property>
<property name="username">root</property>
<property name="password">root</property>
</config>
````
2. Now in the design view, click on edit button.
Expected: It should be able to go to the edit view.
Actual: It does not come the pop up.
| 1.0 | [Windows]Cannot edit already created Data Source through the Design View - **Steps to reproduce:**
1. Create a Data source with the following information.
````
<config id="101" enableOData="false">
<property name="driverClassName">com.mysql.jdbc.Driver</property>
<property name="url">jdbc:mysql://10.100.5.136:3306/Employees
</property>
<property name="username">root</property>
<property name="password">root</property>
</config>
````
2. Now in the design view, click on edit button.
Expected: It should be able to go to the edit view.
Actual: It does not come the pop up.
| priority | cannot edit already created data source through the design view steps to reproduce create a data source with the following information com mysql jdbc driver jdbc mysql employees root root now in the design view click on edit button expected it should be able to go to the edit view actual it does not come the pop up | 1 |
365,162 | 10,778,712,456 | IssuesEvent | 2019-11-04 08:53:35 | metwork-framework/mfext | https://api.github.com/repos/metwork-framework/mfext | closed | mfserv_wrapper should load ~mfserv/.bashrc and not /opt/metwork-mfserv/share/profile? | Priority: High Status: Accepted Type: Enhancement | because `.metwork.custom_profile` is not loaded by `mfserv_wrapper` | 1.0 | mfserv_wrapper should load ~mfserv/.bashrc and not /opt/metwork-mfserv/share/profile? - because `.metwork.custom_profile` is not loaded by `mfserv_wrapper` | priority | mfserv wrapper should load mfserv bashrc and not opt metwork mfserv share profile because metwork custom profile is not loaded by mfserv wrapper | 1 |
642,075 | 20,866,405,579 | IssuesEvent | 2022-03-22 07:43:02 | quickwit-oss/tantivy | https://api.github.com/repos/quickwit-oss/tantivy | closed | Make it possible to index a field without fieldnorms | high priority quickwit | Right now indexed fields come with a fieldnorm. This fieldnorm is used for BM25 scoring.
Bm25 is not always relevant. This ticket is about adding an indexing option for which fieldnorm data is not retained. | 1.0 | Make it possible to index a field without fieldnorms - Right now indexed fields come with a fieldnorm. This fieldnorm is used for BM25 scoring.
Bm25 is not always relevant. This ticket is about adding an indexing option for which fieldnorm data is not retained. | priority | make it possible to index a field without fieldnorms right now indexed fields come with a fieldnorm this fieldnorm is used for scoring is not always relevant this ticket is about adding an indexing option for which fieldnorm data is not retained | 1 |
195,428 | 6,911,762,431 | IssuesEvent | 2017-11-28 09:35:05 | vmware/vic-product | https://api.github.com/repos/vmware/vic-product | opened | Update Registry replication cert docs | component/harbor kind/user-doc priority/high pub/cloudadmin | Per @reasonerjt via Slack, we need to update the registry replication topics:
----
The only change in Harbor that is visible to VIC is the replication rule:
https://github.com/vmware/harbor/blob/master/docs/user_guide.md#replicating-images
the โVerify remote certโ was moved from system level to target level.
--- | 1.0 | Update Registry replication cert docs - Per @reasonerjt via Slack, we need to update the registry replication topics:
----
The only change in Harbor that is visible to VIC is the replication rule:
https://github.com/vmware/harbor/blob/master/docs/user_guide.md#replicating-images
the โVerify remote certโ was moved from system level to target level.
--- | priority | update registry replication cert docs per reasonerjt via slack we need to update the registry replication topics the only change in harbor that is visible to vic is the replication rule the โverify remote certโ was moved from system level to target level | 1 |
387,126 | 11,456,604,172 | IssuesEvent | 2020-02-06 21:35:52 | ProjectSidewalk/SidewalkWebpage | https://api.github.com/repos/ProjectSidewalk/SidewalkWebpage | closed | Landing page text messed up | EasyFix! Landing Page Priority: High | Some text on the landing page got a little messed up. I changed it recently when internationalizing the landing page, and there seems to be an issue with it!

| 1.0 | Landing page text messed up - Some text on the landing page got a little messed up. I changed it recently when internationalizing the landing page, and there seems to be an issue with it!

| priority | landing page text messed up some text on the landing page got a little messed up i changed it recently when internationalizing the landing page and there seems to be an issue with it | 1 |
810,998 | 30,271,574,353 | IssuesEvent | 2023-07-07 15:45:29 | elastic/connectors-python | https://api.github.com/repos/elastic/connectors-python | opened | Add some site metadata to each object synced by Sharepoint Online connector | enhancement effort:low priority:high | Currently there seems to be no easy way to query objects only for specific site for Sharepoint Online connector.
We can add reference to parent site object into each synced object, the format of the parent site object could be:
```json
{
"id": "something.sharepoint.com,guid, guid",
"name": "my nice website"
}
``` | 1.0 | Add some site metadata to each object synced by Sharepoint Online connector - Currently there seems to be no easy way to query objects only for specific site for Sharepoint Online connector.
We can add reference to parent site object into each synced object, the format of the parent site object could be:
```json
{
"id": "something.sharepoint.com,guid, guid",
"name": "my nice website"
}
``` | priority | add some site metadata to each object synced by sharepoint online connector currently there seems to be no easy way to query objects only for specific site for sharepoint online connector we can add reference to parent site object into each synced object the format of the parent site object could be json id something sharepoint com guid guid name my nice website | 1 |
601,864 | 18,438,052,836 | IssuesEvent | 2021-10-14 14:56:33 | mdfbaam/ORNL-Slicer-2-Issue-Tracker | https://api.github.com/repos/mdfbaam/ORNL-Slicer-2-Issue-Tracker | closed | Request: Ability to Multi-select between Printer, Material, Profile when saving-as template | core-ui feature high-priority | ## Expected Behavior
The "Select" drop-down box should allow users to select more than just one setting type to save as template.
## Actual Behavior
Currently, to export both Material and Profile settings you must "select" one and then manually click every radio box in the window above for the other.
## Possible Solution
Radio Boxes in the drop-down menu for "Select".
## Steps to Reproduce the Problem
Self-Explanatory. Ideally, bullet or numbered list.
## Specifications
Platform, machine specs, anything else you think might be relevant.
| 1.0 | Request: Ability to Multi-select between Printer, Material, Profile when saving-as template - ## Expected Behavior
The "Select" drop-down box should allow users to select more than just one setting type to save as template.
## Actual Behavior
Currently, to export both Material and Profile settings you must "select" one and then manually click every radio box in the window above for the other.
## Possible Solution
Radio Boxes in the drop-down menu for "Select".
## Steps to Reproduce the Problem
Self-Explanatory. Ideally, bullet or numbered list.
## Specifications
Platform, machine specs, anything else you think might be relevant.
| priority | request ability to multi select between printer material profile when saving as template expected behavior the select drop down box should allow users to select more than just one setting type to save as template actual behavior currently to export both material and profile settings you must select one and then manually click every radio box in the window above for the other possible solution radio boxes in the drop down menu for select steps to reproduce the problem self explanatory ideally bullet or numbered list specifications platform machine specs anything else you think might be relevant | 1 |
46,625 | 2,963,575,153 | IssuesEvent | 2015-07-10 11:25:48 | pufexi/multiorder | https://api.github.com/repos/pufexi/multiorder | opened | Nevyzvednuto/vraceno - polozky na skladu | high priority | Mame problem, nyni kdyz se da stav Zasilky nevyzvednuto/vraceno, tak se jiz nepricte zbozi zpet na sklad.To same by to melo dat pokud se da Zasilka neodeslana, take pricist, to zkontroluj. NIcmene by to melo pricist pouze pokud, predchozi stav byl Zasilka odeslana/Zasilka dorucena. Tj. aby se nestalo, ze nekdo omylem preklikne ze Zasilka vracena na Zasilka nevyzvednuta a na sklad se to pricte 2x.
Kdyz uz se to resi, tak by se to melo udelat i na Osobni vyzvednuti, kde je Nepripraveno/Pripraveno, tj. porad mam na sklade, pri prepnuti na Vyzvednuto, odectu ze skladu a pri prepnuti z vyzvednuto na Pripraveno/Nepripraveno opet prictu. | 1.0 | Nevyzvednuto/vraceno - polozky na skladu - Mame problem, nyni kdyz se da stav Zasilky nevyzvednuto/vraceno, tak se jiz nepricte zbozi zpet na sklad.To same by to melo dat pokud se da Zasilka neodeslana, take pricist, to zkontroluj. NIcmene by to melo pricist pouze pokud, predchozi stav byl Zasilka odeslana/Zasilka dorucena. Tj. aby se nestalo, ze nekdo omylem preklikne ze Zasilka vracena na Zasilka nevyzvednuta a na sklad se to pricte 2x.
Kdyz uz se to resi, tak by se to melo udelat i na Osobni vyzvednuti, kde je Nepripraveno/Pripraveno, tj. porad mam na sklade, pri prepnuti na Vyzvednuto, odectu ze skladu a pri prepnuti z vyzvednuto na Pripraveno/Nepripraveno opet prictu. | priority | nevyzvednuto vraceno polozky na skladu mame problem nyni kdyz se da stav zasilky nevyzvednuto vraceno tak se jiz nepricte zbozi zpet na sklad to same by to melo dat pokud se da zasilka neodeslana take pricist to zkontroluj nicmene by to melo pricist pouze pokud predchozi stav byl zasilka odeslana zasilka dorucena tj aby se nestalo ze nekdo omylem preklikne ze zasilka vracena na zasilka nevyzvednuta a na sklad se to pricte kdyz uz se to resi tak by se to melo udelat i na osobni vyzvednuti kde je nepripraveno pripraveno tj porad mam na sklade pri prepnuti na vyzvednuto odectu ze skladu a pri prepnuti z vyzvednuto na pripraveno nepripraveno opet prictu | 1 |
712,397 | 24,494,054,983 | IssuesEvent | 2022-10-10 06:56:36 | AY2223S1-CS2103T-W09-4/tp | https://api.github.com/repos/AY2223S1-CS2103T-W09-4/tp | closed | As a user ready to start using the app, I can purge all current data | type.Story priority.High | ...so that i can get rid of experimental data made when exploring the app | 1.0 | As a user ready to start using the app, I can purge all current data - ...so that i can get rid of experimental data made when exploring the app | priority | as a user ready to start using the app i can purge all current data so that i can get rid of experimental data made when exploring the app | 1 |
92,097 | 3,866,941,458 | IssuesEvent | 2016-04-09 00:24:37 | Microsoft/TypeScript | https://api.github.com/repos/Microsoft/TypeScript | closed | Can't edit files in Visual Studio after installing 1.8.4 On Update 2 CTP | Bug High Priority | <!--
Thank you for contributing to TypeScript! Please review this checklist
before submitting your issue.
[ ] Many common issues and suggestions are addressed in the FAQ
https://github.com/Microsoft/TypeScript/wiki/FAQ
[ ] Search for duplicates before logging new issues
https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue
[ ] Questions are best asked and answered at Stack Overflow
http://stackoverflow.com/questions/tagged/typescript
For bug reports, please include the information below.
__________________________________________________________ -->
**TypeScript Version:**
1.8.4
**Visual Studio Version:**
Community 2015 CTP 14.0.25008.00
Everything was working fine using TypeScript 1.8.1 beta. After installing 1.8.4 last night, the editor no longer works. Typing does nothing. The onlys keys it responds to are enter, delete, backspace. The three drop-down lists at the top of the editor that let you jump to certain parts of your code are all blank.
I've tried all of the following with no luck.
- Repair/uninstall Visual Studio and TypeScript
- Disable extensions
- Uninstall ReSharper
- Clear MEF component cache
- Update [devenv.exe.config](https://social.msdn.microsoft.com/Forums/vstudio/en-US/e011bc08-8b1d-4a2a-99d6-a167da922145/visual-studio-2015-update-1-fails-to-update-devenvexeconfig-plus-fix?forum=vssetup)
I also can't seem to stop Visual Studio from updating to the CTP when I reinstall. I started getting a lot of JavaScript language service crashes after installing the CTP. Viewing a compiled TS file would cause JavaScript to stop working.
| 1.0 | Can't edit files in Visual Studio after installing 1.8.4 On Update 2 CTP - <!--
Thank you for contributing to TypeScript! Please review this checklist
before submitting your issue.
[ ] Many common issues and suggestions are addressed in the FAQ
https://github.com/Microsoft/TypeScript/wiki/FAQ
[ ] Search for duplicates before logging new issues
https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue
[ ] Questions are best asked and answered at Stack Overflow
http://stackoverflow.com/questions/tagged/typescript
For bug reports, please include the information below.
__________________________________________________________ -->
**TypeScript Version:**
1.8.4
**Visual Studio Version:**
Community 2015 CTP 14.0.25008.00
Everything was working fine using TypeScript 1.8.1 beta. After installing 1.8.4 last night, the editor no longer works. Typing does nothing. The onlys keys it responds to are enter, delete, backspace. The three drop-down lists at the top of the editor that let you jump to certain parts of your code are all blank.
I've tried all of the following with no luck.
- Repair/uninstall Visual Studio and TypeScript
- Disable extensions
- Uninstall ReSharper
- Clear MEF component cache
- Update [devenv.exe.config](https://social.msdn.microsoft.com/Forums/vstudio/en-US/e011bc08-8b1d-4a2a-99d6-a167da922145/visual-studio-2015-update-1-fails-to-update-devenvexeconfig-plus-fix?forum=vssetup)
I also can't seem to stop Visual Studio from updating to the CTP when I reinstall. I started getting a lot of JavaScript language service crashes after installing the CTP. Viewing a compiled TS file would cause JavaScript to stop working.
| priority | can t edit files in visual studio after installing on update ctp thank you for contributing to typescript please review this checklist before submitting your issue many common issues and suggestions are addressed in the faq search for duplicates before logging new issues questions are best asked and answered at stack overflow for bug reports please include the information below typescript version visual studio version community ctp everything was working fine using typescript beta after installing last night the editor no longer works typing does nothing the onlys keys it responds to are enter delete backspace the three drop down lists at the top of the editor that let you jump to certain parts of your code are all blank i ve tried all of the following with no luck repair uninstall visual studio and typescript disable extensions uninstall resharper clear mef component cache update i also can t seem to stop visual studio from updating to the ctp when i reinstall i started getting a lot of javascript language service crashes after installing the ctp viewing a compiled ts file would cause javascript to stop working | 1 |
481,014 | 13,879,434,622 | IssuesEvent | 2020-10-17 14:26:34 | AY2021S1-CS2103T-W16-4/tp | https://api.github.com/repos/AY2021S1-CS2103T-W16-4/tp | closed | Students of the same matriculation number should be considered duplicate | priority.High type.Story | As a tutor, I can only add different students so that the class does not contain duplicate students. | 1.0 | Students of the same matriculation number should be considered duplicate - As a tutor, I can only add different students so that the class does not contain duplicate students. | priority | students of the same matriculation number should be considered duplicate as a tutor i can only add different students so that the class does not contain duplicate students | 1 |
96,561 | 3,969,809,114 | IssuesEvent | 2016-05-04 02:10:57 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | opened | Drake System that is Compatible with ROS Joy is Needed | priority: high team: software core type: feature request | We need a Drake system that can take the steering / throttle commands from [ROS Joy](http://wiki.ros.org/joy) and pass them to the controllers in the car simulation. Once we have this, we can perform a close-loop integration with autonomous vehicle A.I. software. | 1.0 | Drake System that is Compatible with ROS Joy is Needed - We need a Drake system that can take the steering / throttle commands from [ROS Joy](http://wiki.ros.org/joy) and pass them to the controllers in the car simulation. Once we have this, we can perform a close-loop integration with autonomous vehicle A.I. software. | priority | drake system that is compatible with ros joy is needed we need a drake system that can take the steering throttle commands from and pass them to the controllers in the car simulation once we have this we can perform a close loop integration with autonomous vehicle a i software | 1 |
645,065 | 20,993,820,969 | IssuesEvent | 2022-03-29 11:49:34 | helgoboss/realearn | https://api.github.com/repos/helgoboss/realearn | opened | Allow instance-specific FX-to-preset links | enhancement high priority | Also add checkbox that switches between using instance-specific links exclusively and using them on top of the global links. | 1.0 | Allow instance-specific FX-to-preset links - Also add checkbox that switches between using instance-specific links exclusively and using them on top of the global links. | priority | allow instance specific fx to preset links also add checkbox that switches between using instance specific links exclusively and using them on top of the global links | 1 |
28,461 | 2,702,809,401 | IssuesEvent | 2015-04-06 12:46:44 | SiCKRAGETV/sickrage-issues | https://api.github.com/repos/SiCKRAGETV/sickrage-issues | closed | [APP SUBMITTED]: Error while searching EZTV, skipping: global name 'helpers' is not defined | 1: Bug / issue 2: High Priority 3: Confirmed 3: Fix 4: Need feedback | ### INFO
Python Version: **2.7.8 (default, Oct 20 2014, 15:05:29) [GCC 4.9.1]**
Operating System: **Linux-3.16.0-31-generic-i686-with-Ubuntu-14.10-utopic**
Locale: UTF-8
Branch: **develop**
Commit: SiCKRAGETV/SickRage@9bc4d430aa98d2f07b45171bba4b1d6671eb3576
Link to Log: https://gist.github.com/ad43303b35d55225da01
### ERROR
```
FINDPROPERS :: [EZTV] :: Error while searching EZTV, skipping: global name 'helpers' is not defined
```
---
_STAFF NOTIFIED_: @SiCKRAGETV/owners @SiCKRAGETV/moderators | 1.0 | [APP SUBMITTED]: Error while searching EZTV, skipping: global name 'helpers' is not defined - ### INFO
Python Version: **2.7.8 (default, Oct 20 2014, 15:05:29) [GCC 4.9.1]**
Operating System: **Linux-3.16.0-31-generic-i686-with-Ubuntu-14.10-utopic**
Locale: UTF-8
Branch: **develop**
Commit: SiCKRAGETV/SickRage@9bc4d430aa98d2f07b45171bba4b1d6671eb3576
Link to Log: https://gist.github.com/ad43303b35d55225da01
### ERROR
```
FINDPROPERS :: [EZTV] :: Error while searching EZTV, skipping: global name 'helpers' is not defined
```
---
_STAFF NOTIFIED_: @SiCKRAGETV/owners @SiCKRAGETV/moderators | priority | error while searching eztv skipping global name helpers is not defined info python version default oct operating system linux generic with ubuntu utopic locale utf branch develop commit sickragetv sickrage link to log error findpropers error while searching eztv skipping global name helpers is not defined staff notified sickragetv owners sickragetv moderators | 1 |
17,004 | 2,615,128,853 | IssuesEvent | 2015-03-01 05:58:18 | chrsmith/google-api-java-client | https://api.github.com/repos/chrsmith/google-api-java-client | closed | MediaHttpUploader.upload() requires a known InputStreamContent size | auto-migrated Component-Media Milestone-Version1.13.0 Priority-High Type-Enhancement | ```
Version of google-api-java-client (e.g. 1.5.0-beta)?
1.10.3-beta
Java environment (e.g. Java 6, Android 2.3, App Engine)?
Java 6
Describe the problem.
If you provide an InputStreamContent where you've not specified setLength(),
and thus it defaults to -1 (unknown length), you get a precondition failed:
java.lang.IllegalArgumentException
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:72)
at com.google.api.client.googleapis.media.MediaHttpUploader.getMediaContentLength(MediaHttpUploader.java:315)
at com.google.api.client.googleapis.media.MediaHttpUploader.executeUploadInitiation(MediaHttpUploader.java:333)
at com.google.api.client.googleapis.media.MediaHttpUploader.upload(MediaHttpUploader.java:252)
How would you expect it to be fixed?
1) MediaHttpUploader.getMediaContentLength() should remove the precondition.
2) MediaHttpUploader.executeUploadInitiation should
setUploadContentLength(null) (or if omitting that header doesn't work, there
should be an overload that allows a "X-Upload-Content-Length: *", which is how
you specify an unknown length to the upload service).
3) MediaHttpUploader.setContentAndHeadersOnCurrentRequest should specify the
Content-Range ending in * when getMediaContentLength() == -1. It also needs to
change its blockSize calculation in the case getMediaContentLength() == -1 to
try to read the whole block and if you reach the end of the stream,
setMediaContentLength() to be the appropriate value.
4) I'm not sure this is required, but you may end up having to additionally add
X-Upload-Content-Length: * in the setContentAndHeadersOnCurrentRequest until
such time as you resolve the end of the stream.
```
Original issue reported on code.google.com by `nherr...@google.com` on 16 Aug 2012 at 5:17 | 1.0 | MediaHttpUploader.upload() requires a known InputStreamContent size - ```
Version of google-api-java-client (e.g. 1.5.0-beta)?
1.10.3-beta
Java environment (e.g. Java 6, Android 2.3, App Engine)?
Java 6
Describe the problem.
If you provide an InputStreamContent where you've not specified setLength(),
and thus it defaults to -1 (unknown length), you get a precondition failed:
java.lang.IllegalArgumentException
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:72)
at com.google.api.client.googleapis.media.MediaHttpUploader.getMediaContentLength(MediaHttpUploader.java:315)
at com.google.api.client.googleapis.media.MediaHttpUploader.executeUploadInitiation(MediaHttpUploader.java:333)
at com.google.api.client.googleapis.media.MediaHttpUploader.upload(MediaHttpUploader.java:252)
How would you expect it to be fixed?
1) MediaHttpUploader.getMediaContentLength() should remove the precondition.
2) MediaHttpUploader.executeUploadInitiation should
setUploadContentLength(null) (or if omitting that header doesn't work, there
should be an overload that allows a "X-Upload-Content-Length: *", which is how
you specify an unknown length to the upload service).
3) MediaHttpUploader.setContentAndHeadersOnCurrentRequest should specify the
Content-Range ending in * when getMediaContentLength() == -1. It also needs to
change its blockSize calculation in the case getMediaContentLength() == -1 to
try to read the whole block and if you reach the end of the stream,
setMediaContentLength() to be the appropriate value.
4) I'm not sure this is required, but you may end up having to additionally add
X-Upload-Content-Length: * in the setContentAndHeadersOnCurrentRequest until
such time as you resolve the end of the stream.
```
Original issue reported on code.google.com by `nherr...@google.com` on 16 Aug 2012 at 5:17 | priority | mediahttpuploader upload requires a known inputstreamcontent size version of google api java client e g beta beta java environment e g java android app engine java describe the problem if you provide an inputstreamcontent where you ve not specified setlength and thus it defaults to unknown length you get a precondition failed java lang illegalargumentexception at com google common base preconditions checkargument preconditions java at com google api client googleapis media mediahttpuploader getmediacontentlength mediahttpuploader java at com google api client googleapis media mediahttpuploader executeuploadinitiation mediahttpuploader java at com google api client googleapis media mediahttpuploader upload mediahttpuploader java how would you expect it to be fixed mediahttpuploader getmediacontentlength should remove the precondition mediahttpuploader executeuploadinitiation should setuploadcontentlength null or if omitting that header doesn t work there should be an overload that allows a x upload content length which is how you specify an unknown length to the upload service mediahttpuploader setcontentandheadersoncurrentrequest should specify the content range ending in when getmediacontentlength it also needs to change its blocksize calculation in the case getmediacontentlength to try to read the whole block and if you reach the end of the stream setmediacontentlength to be the appropriate value i m not sure this is required but you may end up having to additionally add x upload content length in the setcontentandheadersoncurrentrequest until such time as you resolve the end of the stream original issue reported on code google com by nherr google com on aug at | 1 |
705,539 | 24,238,369,411 | IssuesEvent | 2022-09-27 03:02:26 | paperclip-ui/paperclip | https://api.github.com/repos/paperclip-ui/paperclip | closed | TD project file should contain environment | priority: medium impact: high | Environment should specify rules, like should it be possible for people to attach controllers? This should be specific to the target environment. | 1.0 | TD project file should contain environment - Environment should specify rules, like should it be possible for people to attach controllers? This should be specific to the target environment. | priority | td project file should contain environment environment should specify rules like should it be possible for people to attach controllers this should be specific to the target environment | 1 |
266,357 | 8,366,269,606 | IssuesEvent | 2018-10-04 08:38:07 | geosolutions-it/smb-app | https://api.github.com/repos/geosolutions-it/smb-app | opened | Prizes view | Priority High ready | The view should show the next prizes to be assigned, with image, title, (eventually) descprition and sponsor of the prize.
See the following spreadsheet for an overview of the currently available prizes: https://drive.google.com/file/d/0B1Wv7RxKtPunbkJVUkhFdUxYV0ZsRi1aVEtuR2dOcmxjQVVZ
In case the user has been assigned a prize it must be shown on the top, followed by a text that will explain how to contact SMB to obtain the prize.
See https://github.com/geosolutions-it/smb-portal/pull/151 for the prizes API. | 1.0 | Prizes view - The view should show the next prizes to be assigned, with image, title, (eventually) descprition and sponsor of the prize.
See the following spreadsheet for an overview of the currently available prizes: https://drive.google.com/file/d/0B1Wv7RxKtPunbkJVUkhFdUxYV0ZsRi1aVEtuR2dOcmxjQVVZ
In case the user has been assigned a prize it must be shown on the top, followed by a text that will explain how to contact SMB to obtain the prize.
See https://github.com/geosolutions-it/smb-portal/pull/151 for the prizes API. | priority | prizes view the view should show the next prizes to be assigned with image title eventually descprition and sponsor of the prize see the following spreadsheet for an overview of the currently available prizes in case the user has been assigned a prize it must be shown on the top followed by a text that will explain how to contact smb to obtain the prize see for the prizes api | 1 |
54,587 | 3,069,931,857 | IssuesEvent | 2015-08-18 23:20:45 | ForgeEssentials/ForgeEssentialsMain | https://api.github.com/repos/ForgeEssentials/ForgeEssentialsMain | closed | Paidcommand and Permissions | bug high-priority | Having an issue with paidcommand not activating /give unless the player has command.give=true.


| 1.0 | Paidcommand and Permissions - Having an issue with paidcommand not activating /give unless the player has command.give=true.


| priority | paidcommand and permissions having an issue with paidcommand not activating give unless the player has command give true | 1 |
288,562 | 8,848,665,026 | IssuesEvent | 2019-01-08 07:57:03 | UoMResearchIT/extant | https://api.github.com/repos/UoMResearchIT/extant | reopened | Administrator does not receive an email when a new account is requested | bug critical high priority | Administrator does not receive an email when a new account is requested. This might be a useful future enhancement. | 1.0 | Administrator does not receive an email when a new account is requested - Administrator does not receive an email when a new account is requested. This might be a useful future enhancement. | priority | administrator does not receive an email when a new account is requested administrator does not receive an email when a new account is requested this might be a useful future enhancement | 1 |
279,618 | 8,671,138,785 | IssuesEvent | 2018-11-29 18:19:22 | mit-cml/appinventor-sources | https://api.github.com/repos/mit-cml/appinventor-sources | closed | Port PermissionHandler from iOS to Android | affects: ucr enhancement issue: accepted priority: high | Starting with SDK 22 (Android 6.0 Marshmallow), dangerous permissions necessitate that an app prompt the user for permission if it hasn't been granted. We have implemented a workflow for iOS, which has a similar permission model, that should be ported to Android.
Blocks #1067 | 1.0 | Port PermissionHandler from iOS to Android - Starting with SDK 22 (Android 6.0 Marshmallow), dangerous permissions necessitate that an app prompt the user for permission if it hasn't been granted. We have implemented a workflow for iOS, which has a similar permission model, that should be ported to Android.
Blocks #1067 | priority | port permissionhandler from ios to android starting with sdk android marshmallow dangerous permissions necessitate that an app prompt the user for permission if it hasn t been granted we have implemented a workflow for ios which has a similar permission model that should be ported to android blocks | 1 |
593,568 | 18,011,495,291 | IssuesEvent | 2021-09-16 09:07:27 | Guake/guake | https://api.github.com/repos/Guake/guake | closed | "copy on selection" option even if the desktop doesn't do it | Type: Feature Request Priority: High | Terminator like "copy on selection" option http://guake.org/ticket/513
Reported by: abhishekisnot Owned by: somebody
Priority: major Milestone: 1.0.0
Component: guake Version: 1.0
Keywords: Cc: wojtekk@โฆ
Description
Terminator allows "copy on selection" which basically copies the selected text to primary clipboard. It will be nice to have feature in Guake.
| 1.0 | "copy on selection" option even if the desktop doesn't do it - Terminator like "copy on selection" option http://guake.org/ticket/513
Reported by: abhishekisnot Owned by: somebody
Priority: major Milestone: 1.0.0
Component: guake Version: 1.0
Keywords: Cc: wojtekk@โฆ
Description
Terminator allows "copy on selection" which basically copies the selected text to primary clipboard. It will be nice to have feature in Guake.
| priority | copy on selection option even if the desktop doesn t do it terminator like copy on selection option reported by abhishekisnot owned by somebody priority major milestone component guake version keywords cc wojtekk โฆ description terminator allows copy on selection which basically copies the selected text to primary clipboard it will be nice to have feature in guake | 1 |
220,777 | 7,370,773,558 | IssuesEvent | 2018-03-13 09:37:01 | wso2/devstudio-tooling-ei | https://api.github.com/repos/wso2/devstudio-tooling-ei | reopened | Configure release builder for Developer Studio | 6.2.0 Priority/Highest | **Description:**
Tasks to carryout for the release builder
1. Configure jar signing process with the weekly builder
2. Configure and test distribution installation with maven build
3. Test final pack signing
**Suggested Labels:**
<!-- Optional comma separated list of suggested labels. Non committers canโt assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees:**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers canโt assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
**Affected Product Version:**
**OS, DB, other environment details and versions:**
**Steps to reproduce:**
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. --> | 1.0 | Configure release builder for Developer Studio - **Description:**
Tasks to carryout for the release builder
1. Configure jar signing process with the weekly builder
2. Configure and test distribution installation with maven build
3. Test final pack signing
**Suggested Labels:**
<!-- Optional comma separated list of suggested labels. Non committers canโt assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees:**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers canโt assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
**Affected Product Version:**
**OS, DB, other environment details and versions:**
**Steps to reproduce:**
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. --> | priority | configure release builder for developer studio description tasks to carryout for the release builder configure jar signing process with the weekly builder configure and test distribution installation with maven build test final pack signing suggested labels suggested assignees affected product version os db other environment details and versions steps to reproduce related issues | 1 |
445,139 | 12,826,663,659 | IssuesEvent | 2020-07-06 16:58:17 | cthit/Gamma | https://api.github.com/repos/cthit/Gamma | closed | Adding a new user to a group and not selecting a post for that user, breaks gamma frontend | Priority: High Status: Accepted Type: Bug Where: Frontend | You should not be able of going to the final step in the wizard unless you have selected a post for each member. | 1.0 | Adding a new user to a group and not selecting a post for that user, breaks gamma frontend - You should not be able of going to the final step in the wizard unless you have selected a post for each member. | priority | adding a new user to a group and not selecting a post for that user breaks gamma frontend you should not be able of going to the final step in the wizard unless you have selected a post for each member | 1 |
361,522 | 10,709,833,242 | IssuesEvent | 2019-10-24 23:34:34 | ohdzdev/NutritionSystem | https://api.github.com/repos/ohdzdev/NutritionSystem | opened | Fix keepers access across the whole application. | Priority: HIGH bug | **Describe the bug**
Keepers don't work.
**To Reproduce**
Steps to reproduce the behavior:
Sign in as a keeper
**Expected behavior**
Keepers should work.
| 1.0 | Fix keepers access across the whole application. - **Describe the bug**
Keepers don't work.
**To Reproduce**
Steps to reproduce the behavior:
Sign in as a keeper
**Expected behavior**
Keepers should work.
| priority | fix keepers access across the whole application describe the bug keepers don t work to reproduce steps to reproduce the behavior sign in as a keeper expected behavior keepers should work | 1 |
747,851 | 26,101,104,470 | IssuesEvent | 2022-12-27 07:09:14 | bounswe/bounswe2022group6 | https://api.github.com/repos/bounswe/bounswe2022group6 | closed | Implementing profile view for all users in Frontend | Priority: High State: In Progress Type: Development Frontend | We need to be able to show other users' profiles in addition to user's own profile.
**Deadline:** 27.12.2022 | 1.0 | Implementing profile view for all users in Frontend - We need to be able to show other users' profiles in addition to user's own profile.
**Deadline:** 27.12.2022 | priority | implementing profile view for all users in frontend we need to be able to show other users profiles in addition to user s own profile deadline | 1 |
727,062 | 25,022,304,531 | IssuesEvent | 2022-11-04 02:48:30 | AY2223S1-CS2103T-F11-1/tp | https://api.github.com/repos/AY2223S1-CS2103T-F11-1/tp | closed | [PE-D][Tester D] Color themes do not work | priority.High type.FunctionalityBug | When I click to `light` mode from `dark` mode, it stays permanently at `light` mode even if I click the `dark` mode button. If I restart the application, it returns back to `dark` mode. If I click `dark` mode button while in `dark` mode, I get `light` mode. Maybe consider making the themes a command instead of a button :( Buttons can be hard to debug.
<!--session: 1666943802879-3e0abff5-1366-4d0d-a815-ab6878abb8db--><!--Version: Web v3.4.4-->
-------------
Labels: `severity.Medium` `type.FunctionalityBug`
original: qiaoen17/ped#1 | 1.0 | [PE-D][Tester D] Color themes do not work - When I click to `light` mode from `dark` mode, it stays permanently at `light` mode even if I click the `dark` mode button. If I restart the application, it returns back to `dark` mode. If I click `dark` mode button while in `dark` mode, I get `light` mode. Maybe consider making the themes a command instead of a button :( Buttons can be hard to debug.
<!--session: 1666943802879-3e0abff5-1366-4d0d-a815-ab6878abb8db--><!--Version: Web v3.4.4-->
-------------
Labels: `severity.Medium` `type.FunctionalityBug`
original: qiaoen17/ped#1 | priority | color themes do not work when i click to light mode from dark mode it stays permanently at light mode even if i click the dark mode button if i restart the application it returns back to dark mode if i click dark mode button while in dark mode i get light mode maybe consider making the themes a command instead of a button buttons can be hard to debug labels severity medium type functionalitybug original ped | 1 |
543,414 | 15,881,351,130 | IssuesEvent | 2021-04-09 14:43:25 | NOAA-OWP/cahaba | https://api.github.com/repos/NOAA-OWP/cahaba | closed | [8pt] Push code that automatically generate HEC maps to GitHub | High Priority enhancement | At this time, I'd recommend this go into the `tools` directory. Let's chat more about everything you've developed to confirm the best home. | 1.0 | [8pt] Push code that automatically generate HEC maps to GitHub - At this time, I'd recommend this go into the `tools` directory. Let's chat more about everything you've developed to confirm the best home. | priority | push code that automatically generate hec maps to github at this time i d recommend this go into the tools directory let s chat more about everything you ve developed to confirm the best home | 1 |
651,174 | 21,468,184,253 | IssuesEvent | 2022-04-26 07:01:35 | kubesphere/console | https://api.github.com/repos/kubesphere/console | closed | The storage type of the storage volume created by the snapshot is displayed incorrectly | kind/bug kind/need-to-verify priority/high | **Describe the bug**
1ใThe storage volume vv of csi-qingcloud exists, and the provider is the snapshot type test of disk.csi.qingcloud.com
2ใCreate a snapshot test-vv, select the storage volume as vv, and the snapshot type as test
3ใCreate a storage volume volume using snapshot test-vv, the volume storage type shows an error




**Versions used(KubeSphere/Kubernetes)**
KubeSphere: v3.3.0-alpha.1
**Expected behavior**
Storage type should be csi-qingcloud
/kind bug
/priority high
/assign @weili520 | 1.0 | The storage type of the storage volume created by the snapshot is displayed incorrectly - **Describe the bug**
1ใThe storage volume vv of csi-qingcloud exists, and the provider is the snapshot type test of disk.csi.qingcloud.com
2ใCreate a snapshot test-vv, select the storage volume as vv, and the snapshot type as test
3ใCreate a storage volume volume using snapshot test-vv, the volume storage type shows an error




**Versions used(KubeSphere/Kubernetes)**
KubeSphere: v3.3.0-alpha.1
**Expected behavior**
Storage type should be csi-qingcloud
/kind bug
/priority high
/assign @weili520 | priority | the storage type of the storage volume created by the snapshot is displayed incorrectly describe the bug ใthe storage volume vv of csi qingcloud exists and the provider is the snapshot type test of disk csi qingcloud com ใcreate a snapshot test vv select the storage volume as vv and the snapshot type as test ใcreate a storage volume volume using snapshot test vv the volume storage type shows an error versions used kubesphere kubernetes kubesphere alpha expected behavior storage type should be csi qingcloud kind bug priority high assign | 1 |
613,910 | 19,101,482,890 | IssuesEvent | 2021-11-29 23:16:39 | Derec-Mods/derecearthmod | https://api.github.com/repos/Derec-Mods/derecearthmod | closed | Melon Golem bug. | bug planned priority: high | ๐ **Bug Report**
๐ Description
Melon golem is 100% hostile to any mob. They will attack and kill anything in sight.
๐ฅ How to reproduce?
Make a melon golem.
๐ข Which version of the mod are you using?
Minecraft Earth Mod 2.5.6.1
| 1.0 | Melon Golem bug. - ๐ **Bug Report**
๐ Description
Melon golem is 100% hostile to any mob. They will attack and kill anything in sight.
๐ฅ How to reproduce?
Make a melon golem.
๐ข Which version of the mod are you using?
Minecraft Earth Mod 2.5.6.1
| priority | melon golem bug ๐ bug report ๐ description melon golem is hostile to any mob they will attack and kill anything in sight ๐ฅ how to reproduce make a melon golem ๐ข which version of the mod are you using minecraft earth mod | 1 |
104,002 | 4,188,317,427 | IssuesEvent | 2016-06-23 20:20:43 | Stanford-Mobisocial-IoT-Lab/sempre | https://api.github.com/repos/Stanford-Mobisocial-IoT-Lab/sempre | closed | ThingpediaLexiconFn broke the parser | bug high-priority | Parser.parse: parse {
ERROR: Composition failed: rule = $Help -> $PHRASE (IdentityFn), children = [(derivation (formula (string help)) (type fb:type.text))]
java.lang.NullPointerException
at edu.stanford.nlp.io.IOUtils.readLines(IOUtils.java:494)
at edu.stanford.nlp.sempre.overnight.Aligner.read(Aligner.java:98)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.buildLexicalAlignmentMatrix(OvernightFeatureComputer.java:421)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.extractLexicalFeatures(OvernightFeatureComputer.java:333)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.extractLocal(OvernightFeatureComputer.java:83)
at edu.stanford.nlp.sempre.FeatureExtractor.extractLocal(FeatureExtractor.java:71)
at edu.stanford.nlp.sempre.ParserState.featurizeAndScoreDerivation(ParserState.java:77)
at edu.stanford.nlp.sempre.BeamParserState.applyRule(BeamParser.java:162)
at edu.stanford.nlp.sempre.BeamParserState.applyCatUnaryRules(BeamParser.java:209)
at edu.stanford.nlp.sempre.BeamParserState.build(BeamParser.java:141)
at edu.stanford.nlp.sempre.BeamParserState.infer(BeamParser.java:113)
at edu.stanford.nlp.sempre.Parser.parse(Parser.java:159)
at edu.stanford.nlp.sempre.Master.handleUtterance(Master.java:229)
at edu.stanford.nlp.sempre.Master.processQuery(Master.java:183)
at edu.stanford.nlp.sempre.Master.runInteractivePrompt(Master.java:148)
at edu.stanford.nlp.sempre.Main.run(Main.java:39)
at fig.exec.Execution.runWithObjArray(Execution.java:337)
at fig.exec.Execution.run(Execution.java:325)
at edu.stanford.nlp.sempre.Main.main(Main.java:51)
}
java.lang.RuntimeException: java.lang.NullPointerException
at edu.stanford.nlp.sempre.BeamParserState.applyRule(BeamParser.java:181)
at edu.stanford.nlp.sempre.BeamParserState.applyCatUnaryRules(BeamParser.java:209)
at edu.stanford.nlp.sempre.BeamParserState.build(BeamParser.java:141)
at edu.stanford.nlp.sempre.BeamParserState.infer(BeamParser.java:113)
at edu.stanford.nlp.sempre.Parser.parse(Parser.java:159)
at edu.stanford.nlp.sempre.Master.handleUtterance(Master.java:229)
at edu.stanford.nlp.sempre.Master.processQuery(Master.java:183)
at edu.stanford.nlp.sempre.Master.runInteractivePrompt(Master.java:148)
at edu.stanford.nlp.sempre.Main.run(Main.java:39)
at fig.exec.Execution.runWithObjArray(Execution.java:337)
at fig.exec.Execution.run(Execution.java:325)
at edu.stanford.nlp.sempre.Main.main(Main.java:51)
Caused by: java.lang.NullPointerException
at edu.stanford.nlp.io.IOUtils.readLines(IOUtils.java:494)
at edu.stanford.nlp.sempre.overnight.Aligner.read(Aligner.java:98)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.buildLexicalAlignmentMatrix(OvernightFeatureComputer.java:421)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.extractLexicalFeatures(OvernightFeatureComputer.java:333)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.extractLocal(OvernightFeatureComputer.java:83)
at edu.stanford.nlp.sempre.FeatureExtractor.extractLocal(FeatureExtractor.java:71)
at edu.stanford.nlp.sempre.ParserState.featurizeAndScoreDerivation(ParserState.java:77)
at edu.stanford.nlp.sempre.BeamParserState.applyRule(BeamParser.java:162)
... 11 more
The grammar used for the above was simple:
(rule $Help ($PHRASE) (IdentityFn) (anchored 1.0))
(rule $Command ($Help) (JoinFn betaReduce forward (arg0 (lambda value (call edu.stanford.nlp.sempre.thingtalk.ThingTalk.cmdForm (string help) (var value))))))
(rule $Special ($PHRASE) (SimpleLexiconFn (type tt:type.special)))
(rule $ROOT ($Command) (JoinFn betaReduce forward (arg0 (lambda cmd (call edu.stanford.nlp.sempre.thingtalk.ThingTalk.jsonOut (var cmd))))))
(rule $ROOT ($Special) (JoinFn betaReduce forward (arg0 (lambda spl (call edu.stanford.nlp.sempre.thingtalk.ThingTalk.special (var spl)))))) | 1.0 | ThingpediaLexiconFn broke the parser - Parser.parse: parse {
ERROR: Composition failed: rule = $Help -> $PHRASE (IdentityFn), children = [(derivation (formula (string help)) (type fb:type.text))]
java.lang.NullPointerException
at edu.stanford.nlp.io.IOUtils.readLines(IOUtils.java:494)
at edu.stanford.nlp.sempre.overnight.Aligner.read(Aligner.java:98)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.buildLexicalAlignmentMatrix(OvernightFeatureComputer.java:421)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.extractLexicalFeatures(OvernightFeatureComputer.java:333)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.extractLocal(OvernightFeatureComputer.java:83)
at edu.stanford.nlp.sempre.FeatureExtractor.extractLocal(FeatureExtractor.java:71)
at edu.stanford.nlp.sempre.ParserState.featurizeAndScoreDerivation(ParserState.java:77)
at edu.stanford.nlp.sempre.BeamParserState.applyRule(BeamParser.java:162)
at edu.stanford.nlp.sempre.BeamParserState.applyCatUnaryRules(BeamParser.java:209)
at edu.stanford.nlp.sempre.BeamParserState.build(BeamParser.java:141)
at edu.stanford.nlp.sempre.BeamParserState.infer(BeamParser.java:113)
at edu.stanford.nlp.sempre.Parser.parse(Parser.java:159)
at edu.stanford.nlp.sempre.Master.handleUtterance(Master.java:229)
at edu.stanford.nlp.sempre.Master.processQuery(Master.java:183)
at edu.stanford.nlp.sempre.Master.runInteractivePrompt(Master.java:148)
at edu.stanford.nlp.sempre.Main.run(Main.java:39)
at fig.exec.Execution.runWithObjArray(Execution.java:337)
at fig.exec.Execution.run(Execution.java:325)
at edu.stanford.nlp.sempre.Main.main(Main.java:51)
}
java.lang.RuntimeException: java.lang.NullPointerException
at edu.stanford.nlp.sempre.BeamParserState.applyRule(BeamParser.java:181)
at edu.stanford.nlp.sempre.BeamParserState.applyCatUnaryRules(BeamParser.java:209)
at edu.stanford.nlp.sempre.BeamParserState.build(BeamParser.java:141)
at edu.stanford.nlp.sempre.BeamParserState.infer(BeamParser.java:113)
at edu.stanford.nlp.sempre.Parser.parse(Parser.java:159)
at edu.stanford.nlp.sempre.Master.handleUtterance(Master.java:229)
at edu.stanford.nlp.sempre.Master.processQuery(Master.java:183)
at edu.stanford.nlp.sempre.Master.runInteractivePrompt(Master.java:148)
at edu.stanford.nlp.sempre.Main.run(Main.java:39)
at fig.exec.Execution.runWithObjArray(Execution.java:337)
at fig.exec.Execution.run(Execution.java:325)
at edu.stanford.nlp.sempre.Main.main(Main.java:51)
Caused by: java.lang.NullPointerException
at edu.stanford.nlp.io.IOUtils.readLines(IOUtils.java:494)
at edu.stanford.nlp.sempre.overnight.Aligner.read(Aligner.java:98)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.buildLexicalAlignmentMatrix(OvernightFeatureComputer.java:421)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.extractLexicalFeatures(OvernightFeatureComputer.java:333)
at edu.stanford.nlp.sempre.overnight.OvernightFeatureComputer.extractLocal(OvernightFeatureComputer.java:83)
at edu.stanford.nlp.sempre.FeatureExtractor.extractLocal(FeatureExtractor.java:71)
at edu.stanford.nlp.sempre.ParserState.featurizeAndScoreDerivation(ParserState.java:77)
at edu.stanford.nlp.sempre.BeamParserState.applyRule(BeamParser.java:162)
... 11 more
The grammar used for the above was simple:
(rule $Help ($PHRASE) (IdentityFn) (anchored 1.0))
(rule $Command ($Help) (JoinFn betaReduce forward (arg0 (lambda value (call edu.stanford.nlp.sempre.thingtalk.ThingTalk.cmdForm (string help) (var value))))))
(rule $Special ($PHRASE) (SimpleLexiconFn (type tt:type.special)))
(rule $ROOT ($Command) (JoinFn betaReduce forward (arg0 (lambda cmd (call edu.stanford.nlp.sempre.thingtalk.ThingTalk.jsonOut (var cmd))))))
(rule $ROOT ($Special) (JoinFn betaReduce forward (arg0 (lambda spl (call edu.stanford.nlp.sempre.thingtalk.ThingTalk.special (var spl)))))) | priority | thingpedialexiconfn broke the parser parser parse parse error composition failed rule help phrase identityfn children java lang nullpointerexception at edu stanford nlp io ioutils readlines ioutils java at edu stanford nlp sempre overnight aligner read aligner java at edu stanford nlp sempre overnight overnightfeaturecomputer buildlexicalalignmentmatrix overnightfeaturecomputer java at edu stanford nlp sempre overnight overnightfeaturecomputer extractlexicalfeatures overnightfeaturecomputer java at edu stanford nlp sempre overnight overnightfeaturecomputer extractlocal overnightfeaturecomputer java at edu stanford nlp sempre featureextractor extractlocal featureextractor java at edu stanford nlp sempre parserstate featurizeandscorederivation parserstate java at edu stanford nlp sempre beamparserstate applyrule beamparser java at edu stanford nlp sempre beamparserstate applycatunaryrules beamparser java at edu stanford nlp sempre beamparserstate build beamparser java at edu stanford nlp sempre beamparserstate infer beamparser java at edu stanford nlp sempre parser parse parser java at edu stanford nlp sempre master handleutterance master java at edu stanford nlp sempre master processquery master java at edu stanford nlp sempre master runinteractiveprompt master java at edu stanford nlp sempre main run main java at fig exec execution runwithobjarray execution java at fig exec execution run execution java at edu stanford nlp sempre main main main java java lang runtimeexception java lang nullpointerexception at edu stanford nlp sempre beamparserstate applyrule beamparser java at edu stanford nlp sempre beamparserstate applycatunaryrules beamparser java at edu stanford nlp sempre beamparserstate build beamparser java at edu stanford nlp sempre beamparserstate infer beamparser java at edu stanford nlp sempre parser parse parser java at edu stanford nlp sempre master handleutterance master java at edu stanford nlp sempre master processquery master java at edu stanford nlp sempre master runinteractiveprompt master java at edu stanford nlp sempre main run main java at fig exec execution runwithobjarray execution java at fig exec execution run execution java at edu stanford nlp sempre main main main java caused by java lang nullpointerexception at edu stanford nlp io ioutils readlines ioutils java at edu stanford nlp sempre overnight aligner read aligner java at edu stanford nlp sempre overnight overnightfeaturecomputer buildlexicalalignmentmatrix overnightfeaturecomputer java at edu stanford nlp sempre overnight overnightfeaturecomputer extractlexicalfeatures overnightfeaturecomputer java at edu stanford nlp sempre overnight overnightfeaturecomputer extractlocal overnightfeaturecomputer java at edu stanford nlp sempre featureextractor extractlocal featureextractor java at edu stanford nlp sempre parserstate featurizeandscorederivation parserstate java at edu stanford nlp sempre beamparserstate applyrule beamparser java more the grammar used for the above was simple rule help phrase identityfn anchored rule command help joinfn betareduce forward lambda value call edu stanford nlp sempre thingtalk thingtalk cmdform string help var value rule special phrase simplelexiconfn type tt type special rule root command joinfn betareduce forward lambda cmd call edu stanford nlp sempre thingtalk thingtalk jsonout var cmd rule root special joinfn betareduce forward lambda spl call edu stanford nlp sempre thingtalk thingtalk special var spl | 1 |
596,600 | 18,107,721,972 | IssuesEvent | 2021-09-22 21:14:29 | OneSignal/OneSignal-iOS-SDK | https://api.github.com/repos/OneSignal/OneSignal-iOS-SDK | closed | -[OSInAppMessage initWithCoder:]: unrecognized selector sent to instance 0x2830b92d0 | Bug: High Priority | sdk version: 3.7.0
Crashed when launching the app, -[OSInAppMessage initWithCoder:]: unrecognized selector issue
CoreFoundation ___exceptionPreprocess + 216
libobjc.A.dylib _objc_exception_throw + 56
CoreFoundation -[NSOrderedSet initWithSet:copyItems:]
CoreFoundation ____forwarding___ + 1440
CoreFoundation __CF_forwarding_prep_0 + 92
Foundation __decodeObjectBinary + 2284
Foundation -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 680
Foundation -[NSArray(NSArray) initWithCoder:] + 172
Foundation __decodeObjectBinary + 2284
Foundation __decodeObject + 176
CoreFoundation -[NSKeyedUnarchiver decodeObjectForKey:] + 172
Foundation +[NSKeyedUnarchiver unarchiveObjectWithData:] + 80
MyApp -[OneSignalUserDefaults getSavedCodeableDataForKey:defaultValue:] + 160
MyApp -[OSMessagingController init] + 188
MyApp +[OSMessagingController sharedInstance]_block_invoke + 60
libdispatch.dylib __dispatch_client_callout + 16
libdispatch.dylib __dispatch_once_callout + 28
MyApp +[OSMessagingController sharedInstance] + 112
MyApp -[OneSignalLifecycleObserver didBecomeActive] + 148
CoreFoundation ___CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 20
UIKitCore _UIApplicationMain + 164
MyApp main (main.m:14)
libdyld.dylib _start + 4 | 1.0 | -[OSInAppMessage initWithCoder:]: unrecognized selector sent to instance 0x2830b92d0 - sdk version: 3.7.0
Crashed when launching the app, -[OSInAppMessage initWithCoder:]: unrecognized selector issue
CoreFoundation ___exceptionPreprocess + 216
libobjc.A.dylib _objc_exception_throw + 56
CoreFoundation -[NSOrderedSet initWithSet:copyItems:]
CoreFoundation ____forwarding___ + 1440
CoreFoundation __CF_forwarding_prep_0 + 92
Foundation __decodeObjectBinary + 2284
Foundation -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 680
Foundation -[NSArray(NSArray) initWithCoder:] + 172
Foundation __decodeObjectBinary + 2284
Foundation __decodeObject + 176
CoreFoundation -[NSKeyedUnarchiver decodeObjectForKey:] + 172
Foundation +[NSKeyedUnarchiver unarchiveObjectWithData:] + 80
MyApp -[OneSignalUserDefaults getSavedCodeableDataForKey:defaultValue:] + 160
MyApp -[OSMessagingController init] + 188
MyApp +[OSMessagingController sharedInstance]_block_invoke + 60
libdispatch.dylib __dispatch_client_callout + 16
libdispatch.dylib __dispatch_once_callout + 28
MyApp +[OSMessagingController sharedInstance] + 112
MyApp -[OneSignalLifecycleObserver didBecomeActive] + 148
CoreFoundation ___CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 20
UIKitCore _UIApplicationMain + 164
MyApp main (main.m:14)
libdyld.dylib _start + 4 | priority | unrecognized selector sent to instance sdk version crashed when launching the app unrecognized selector issue corefoundation exceptionpreprocess libobjc a dylib objc exception throw corefoundation corefoundation forwarding corefoundation cf forwarding prep foundation decodeobjectbinary foundation foundation foundation decodeobjectbinary foundation decodeobject corefoundation foundation myapp myapp myapp block invoke libdispatch dylib dispatch client callout libdispatch dylib dispatch once callout myapp myapp corefoundation cfnotificationcenter is calling out to an observer uikitcore uiapplicationmain myapp main main m libdyld dylib start | 1 |
493,018 | 14,224,439,960 | IssuesEvent | 2020-11-17 19:40:34 | interferences-at/mpop | https://api.github.com/repos/interferences-at/mpop | closed | (kiosk) Switching to another page should stay in the same tab | QML bug difficulty: medium mpop_kiosk priority: high ready | (kiosk) Switching to another page should stay in the same tab
## Criteria
When I switch from question 1 to question 2:
- If I am in the "Answer" tab, it should stay in the "Answer" tab, once we are on the other question's page.
- If I am in the dataviz tab, it should go to the *home* of the dataviz tab, once I am in the other question's page. | 1.0 | (kiosk) Switching to another page should stay in the same tab - (kiosk) Switching to another page should stay in the same tab
## Criteria
When I switch from question 1 to question 2:
- If I am in the "Answer" tab, it should stay in the "Answer" tab, once we are on the other question's page.
- If I am in the dataviz tab, it should go to the *home* of the dataviz tab, once I am in the other question's page. | priority | kiosk switching to another page should stay in the same tab kiosk switching to another page should stay in the same tab criteria when i switch from question to question if i am in the answer tab it should stay in the answer tab once we are on the other question s page if i am in the dataviz tab it should go to the home of the dataviz tab once i am in the other question s page | 1 |
477,436 | 13,762,270,501 | IssuesEvent | 2020-10-07 08:54:50 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.mediafire.com - video or audio doesn't play | browser-firefox-mobile engine-gecko ml-needsdiagnosis-false ml-probability-high priority-important | <!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 6.0; Mobile; rv:68.0) Gecko/20100101 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/59480 -->
**URL**: https://www.mediafire.com/error.php?errno=378&quickkey=0yxotgvyc3ttb7z&origin=download
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android 6.0
**Tested Another Browser**: Yes Internet Explorer
**Problem type**: Video or audio doesn't play
**Description**: There is no audio
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/10/b48189bf-8b32-41c9-81c7-644b8a818f2a.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200501070101</li><li>channel: alpha</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/10/42bbd929-d0c9-4f09-a77c-df0334a356ba)
_From [webcompat.com](https://webcompat.com/) with โค๏ธ_ | 1.0 | www.mediafire.com - video or audio doesn't play - <!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 6.0; Mobile; rv:68.0) Gecko/20100101 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/59480 -->
**URL**: https://www.mediafire.com/error.php?errno=378&quickkey=0yxotgvyc3ttb7z&origin=download
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android 6.0
**Tested Another Browser**: Yes Internet Explorer
**Problem type**: Video or audio doesn't play
**Description**: There is no audio
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/10/b48189bf-8b32-41c9-81c7-644b8a818f2a.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200501070101</li><li>channel: alpha</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/10/42bbd929-d0c9-4f09-a77c-df0334a356ba)
_From [webcompat.com](https://webcompat.com/) with โค๏ธ_ | priority | video or audio doesn t play url browser version firefox mobile operating system android tested another browser yes internet explorer problem type video or audio doesn t play description there is no audio steps to reproduce view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel alpha hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with โค๏ธ | 1 |
650,601 | 21,410,385,702 | IssuesEvent | 2022-04-22 04:52:40 | wso2/product-is | https://api.github.com/repos/wso2/product-is | closed | [Config] J2 Templates are missing for LocalClaimInvalidationCache | task Priority/High Severity/Major config Complexity/Low | Configs mentioned [1] here for "LocalClaimInvalidationCache" is missing in the J2 templates of the identity.xml
After adding these configs [2] should be changed to TOML.
[1] https://docs.wso2.com/display/IS580/Adding+and+Configuring+a+Service+Provider
[2] https://is.docs.wso2.com/en/5.9.0/learn/configuring-claims-for-a-service-provider/ | 1.0 | [Config] J2 Templates are missing for LocalClaimInvalidationCache - Configs mentioned [1] here for "LocalClaimInvalidationCache" is missing in the J2 templates of the identity.xml
After adding these configs [2] should be changed to TOML.
[1] https://docs.wso2.com/display/IS580/Adding+and+Configuring+a+Service+Provider
[2] https://is.docs.wso2.com/en/5.9.0/learn/configuring-claims-for-a-service-provider/ | priority | templates are missing for localclaiminvalidationcache configs mentioned here for localclaiminvalidationcache is missing in the templates of the identity xml after adding these configs should be changed to toml | 1 |
342,910 | 10,323,344,619 | IssuesEvent | 2019-08-31 20:32:10 | CalNourish/ucbfpa-webapp | https://api.github.com/repos/CalNourish/ucbfpa-webapp | closed | Change setting hours to Sunday - Saturday (non-rotating) | high priority ๐ฅ | On the admin page, don't rotate hours. Always keep set to sunday - saturday | 1.0 | Change setting hours to Sunday - Saturday (non-rotating) - On the admin page, don't rotate hours. Always keep set to sunday - saturday | priority | change setting hours to sunday saturday non rotating on the admin page don t rotate hours always keep set to sunday saturday | 1 |
804,507 | 29,490,680,989 | IssuesEvent | 2023-06-02 13:15:02 | AI-Completer/AI-Completer | https://api.github.com/repos/AI-Completer/AI-Completer | closed | [New Feature]: Record all tasks when command is called | enhancement high priority | ### Before you submit this issue
- [X] Do you use the lastest stable version?
- [X] Have you check whether there is not same issue put forward before?
- [X] Do you check whether this problem is caused by this program itself, but not the plugins.
### What is needed
Record all tasks when any commands is called, when the session is called, cancel the tasks.
### Ideas
_No response_ | 1.0 | [New Feature]: Record all tasks when command is called - ### Before you submit this issue
- [X] Do you use the lastest stable version?
- [X] Have you check whether there is not same issue put forward before?
- [X] Do you check whether this problem is caused by this program itself, but not the plugins.
### What is needed
Record all tasks when any commands is called, when the session is called, cancel the tasks.
### Ideas
_No response_ | priority | record all tasks when command is called before you submit this issue do you use the lastest stable version have you check whether there is not same issue put forward before do you check whether this problem is caused by this program itself but not the plugins what is needed record all tasks when any commands is called when the session is called cancel the tasks ideas no response | 1 |
166,049 | 6,290,251,113 | IssuesEvent | 2017-07-19 21:04:31 | Seaal/Pug | https://api.github.com/repos/Seaal/Pug | opened | Implement Picking Phase | priority: high | The most fundamental part of pugs is picking players, so this phase needs implementing. Although UX is very important for this project, UX will be covered later. | 1.0 | Implement Picking Phase - The most fundamental part of pugs is picking players, so this phase needs implementing. Although UX is very important for this project, UX will be covered later. | priority | implement picking phase the most fundamental part of pugs is picking players so this phase needs implementing although ux is very important for this project ux will be covered later | 1 |
19,618 | 2,622,156,126 | IssuesEvent | 2015-03-04 00:08:09 | byzhang/terrastore | https://api.github.com/repos/byzhang/terrastore | closed | Implement durable and reliable EventBus. | auto-migrated Milestone-0.6.0 Priority-High Project-Terrastore Type-Feature | ```
Implement an alternative EventBus with the following advanced features:
* Durability.
* Reliability.
* Guaranteed re-delivery in case of failures.
```
Original issue reported on code.google.com by `sergio.b...@gmail.com` on 13 Jul 2010 at 4:30 | 1.0 | Implement durable and reliable EventBus. - ```
Implement an alternative EventBus with the following advanced features:
* Durability.
* Reliability.
* Guaranteed re-delivery in case of failures.
```
Original issue reported on code.google.com by `sergio.b...@gmail.com` on 13 Jul 2010 at 4:30 | priority | implement durable and reliable eventbus implement an alternative eventbus with the following advanced features durability reliability guaranteed re delivery in case of failures original issue reported on code google com by sergio b gmail com on jul at | 1 |
556,881 | 16,493,814,312 | IssuesEvent | 2021-05-25 08:06:08 | oceanprotocol/docs | https://api.github.com/repos/oceanprotocol/docs | closed | Broken links in ocean.py sub-links to READMEs etc | Priority:high bug | **Describe the bug**
1. Go to the ocean.py API documentation https://docs.oceanprotocol.com/read-the-docs/ocean-py/
2. Then try clicking on one of the links, e.g. "Go to simple flow". See image below. It gives a "Page not found" error. The absolute url that it's trying to hit is: https://docs.oceanprotocol.com/read-the-docs/ocean-py/READMEs/datatokens-flow.md

| 1.0 | Broken links in ocean.py sub-links to READMEs etc - **Describe the bug**
1. Go to the ocean.py API documentation https://docs.oceanprotocol.com/read-the-docs/ocean-py/
2. Then try clicking on one of the links, e.g. "Go to simple flow". See image below. It gives a "Page not found" error. The absolute url that it's trying to hit is: https://docs.oceanprotocol.com/read-the-docs/ocean-py/READMEs/datatokens-flow.md

| priority | broken links in ocean py sub links to readmes etc describe the bug go to the ocean py api documentation then try clicking on one of the links e g go to simple flow see image below it gives a page not found error the absolute url that it s trying to hit is | 1 |
643,376 | 20,955,643,672 | IssuesEvent | 2022-03-27 03:53:53 | AY2122S2-CS2103T-W13-1/tp | https://api.github.com/repos/AY2122S2-CS2103T-W13-1/tp | closed | Add 'AutoSortDate' Feature when Clients Add Procedures | type.Enhancement priority.High | Currently, when Clients add Procedures, the Procedures will be added in and displayed sorted to the time they were added.
As a user, I want to see my procedures in a more comprehensive manner and not continuously scroll to find my next Procedure.
Hence, an AutoSortDate feature will be added that will auto sort the Procedures automatically by date due (descending) when it is added by the Client. | 1.0 | Add 'AutoSortDate' Feature when Clients Add Procedures - Currently, when Clients add Procedures, the Procedures will be added in and displayed sorted to the time they were added.
As a user, I want to see my procedures in a more comprehensive manner and not continuously scroll to find my next Procedure.
Hence, an AutoSortDate feature will be added that will auto sort the Procedures automatically by date due (descending) when it is added by the Client. | priority | add autosortdate feature when clients add procedures currently when clients add procedures the procedures will be added in and displayed sorted to the time they were added as a user i want to see my procedures in a more comprehensive manner and not continuously scroll to find my next procedure hence an autosortdate feature will be added that will auto sort the procedures automatically by date due descending when it is added by the client | 1 |
419,368 | 12,222,619,165 | IssuesEvent | 2020-05-02 14:02:54 | space-wizards/space-station-14 | https://api.github.com/repos/space-wizards/space-station-14 | closed | Gravity | Priority: 1-high Type: Discussion | This should be handled on a grid-per-grid basis. Grids can have a machine that generates gravity when powered up. Ideally, some grids (such as those of small shuttles) shouldn't require a gravity generator to have gravity.
Related #705 | 1.0 | Gravity - This should be handled on a grid-per-grid basis. Grids can have a machine that generates gravity when powered up. Ideally, some grids (such as those of small shuttles) shouldn't require a gravity generator to have gravity.
Related #705 | priority | gravity this should be handled on a grid per grid basis grids can have a machine that generates gravity when powered up ideally some grids such as those of small shuttles shouldn t require a gravity generator to have gravity related | 1 |
758,445 | 26,555,789,494 | IssuesEvent | 2023-01-20 11:54:18 | saudalnasser/starlux | https://api.github.com/repos/saudalnasser/starlux | opened | feat: event listeners | type: feature priority: high | ## Problem
need to create event listeners in an organized way and with minimal effort.
## Solution(s)
provide an easy way of:
- creating event listeners
- organizing event listeners | 1.0 | feat: event listeners - ## Problem
need to create event listeners in an organized way and with minimal effort.
## Solution(s)
provide an easy way of:
- creating event listeners
- organizing event listeners | priority | feat event listeners problem need to create event listeners in an organized way and with minimal effort solution s provide an easy way of creating event listeners organizing event listeners | 1 |
359,040 | 10,653,340,720 | IssuesEvent | 2019-10-17 14:15:55 | AY1920S1-CS2113T-F11-2/main | https://api.github.com/repos/AY1920S1-CS2113T-F11-2/main | closed | Feature: Borrow | priority.High type.Task | Possible Implementation:
A mix between Duke's 'checklist' feature and Dolla's income and expense. | 1.0 | Feature: Borrow - Possible Implementation:
A mix between Duke's 'checklist' feature and Dolla's income and expense. | priority | feature borrow possible implementation a mix between duke s checklist feature and dolla s income and expense | 1 |
765,849 | 26,863,719,089 | IssuesEvent | 2023-02-03 21:01:28 | scs-lab/ChronoLog | https://api.github.com/repos/scs-lab/ChronoLog | closed | Initial ChronoKeeper Management implementation in ChronoVisor | high priority | Implement initial ChronoKeeper Management module in ChronoVisor
the minimal implementation should support ChronoKeeper registration, clock exchange handshake and placeholders for tracking ChronoKeeper capacity and load statistics . | 1.0 | Initial ChronoKeeper Management implementation in ChronoVisor - Implement initial ChronoKeeper Management module in ChronoVisor
the minimal implementation should support ChronoKeeper registration, clock exchange handshake and placeholders for tracking ChronoKeeper capacity and load statistics . | priority | initial chronokeeper management implementation in chronovisor implement initial chronokeeper management module in chronovisor the minimal implementation should support chronokeeper registration clock exchange handshake and placeholders for tracking chronokeeper capacity and load statistics | 1 |
106,012 | 4,258,240,011 | IssuesEvent | 2016-07-11 05:12:43 | za419/Android-calculator | https://api.github.com/repos/za419/Android-calculator | closed | Complex branch: Results seem to 'accumulate' in memory | bug High Priority | That is to say, results seem to be done with old values every once in a while.
I will update this once I am able to isolate a sequence of commands that triggers this issue on a clean build. | 1.0 | Complex branch: Results seem to 'accumulate' in memory - That is to say, results seem to be done with old values every once in a while.
I will update this once I am able to isolate a sequence of commands that triggers this issue on a clean build. | priority | complex branch results seem to accumulate in memory that is to say results seem to be done with old values every once in a while i will update this once i am able to isolate a sequence of commands that triggers this issue on a clean build | 1 |
374,231 | 11,082,344,372 | IssuesEvent | 2019-12-13 11:53:19 | bbc/simorgh | https://api.github.com/repos/bbc/simorgh | closed | Analytics for client-side onward journeys | Refinement Needed analytics blocked high priority shared-components simorgh-core-stream | **Is your feature request related to a problem? Please describe.**
Reverb is the JS library we could use for sending analytics data to ATI for canonical pages.
Currently, it does not send requests to handle client-side links to other articles.
We should ensure that we send requests.
**Describe the solution you'd like**
We should note the work the Orbit team are making to Reverb: https://jira.dev.bbc.co.uk/browse/ORBITEN-821
As a result, we should detail on this issue what needs to be changed to our application to send analytics for client-side interactions to ATI.
**Describe alternatives you've considered**
N/A
**Testing notes**
[Tester to complete]
Dev insight: Unit tests to ensure we're sending the correct data. Manual tests for checking it's working end-to-end.
**Additional context**
Add any other context or screenshots about the feature request here.
- [x] Initially labelled with ["Refinement needed"](https://github.com/bbc/simorgh/labels/Refinement%20Needed)
| 1.0 | Analytics for client-side onward journeys - **Is your feature request related to a problem? Please describe.**
Reverb is the JS library we could use for sending analytics data to ATI for canonical pages.
Currently, it does not send requests to handle client-side links to other articles.
We should ensure that we send requests.
**Describe the solution you'd like**
We should note the work the Orbit team are making to Reverb: https://jira.dev.bbc.co.uk/browse/ORBITEN-821
As a result, we should detail on this issue what needs to be changed to our application to send analytics for client-side interactions to ATI.
**Describe alternatives you've considered**
N/A
**Testing notes**
[Tester to complete]
Dev insight: Unit tests to ensure we're sending the correct data. Manual tests for checking it's working end-to-end.
**Additional context**
Add any other context or screenshots about the feature request here.
- [x] Initially labelled with ["Refinement needed"](https://github.com/bbc/simorgh/labels/Refinement%20Needed)
| priority | analytics for client side onward journeys is your feature request related to a problem please describe reverb is the js library we could use for sending analytics data to ati for canonical pages currently it does not send requests to handle client side links to other articles we should ensure that we send requests describe the solution you d like we should note the work the orbit team are making to reverb as a result we should detail on this issue what needs to be changed to our application to send analytics for client side interactions to ati describe alternatives you ve considered n a testing notes dev insight unit tests to ensure we re sending the correct data manual tests for checking it s working end to end additional context add any other context or screenshots about the feature request here initially labelled with | 1 |
198,858 | 6,978,441,839 | IssuesEvent | 2017-12-12 17:31:37 | kcigeospatial/balt_co_ETL | https://api.github.com/repos/kcigeospatial/balt_co_ETL | closed | Stormwater - Redevelopment/Restoration - Update selection set to include Revitalization | high priority item | Per Rob Hirsch 20171212:
Stormwater features with a ConPurpose = Revitalization should be outputted to RestBMP, with a target Con Purpose = New Development ("NEWD").
**The existing selection set for the target RestBMP feature class is:**
Find where:
-SW_TRACKING.REPORTING_YEAR <= user selected reporting year, and
-SW_TRACKING.TRACKING_STATUS = Current, and
-SW_TRACKING.CON_PURPOSE = Restoration OR Redevelopment
**So the updated selection set for the target RestBMP feature class is:**
Find where:
-SW_TRACKING.REPORTING_YEAR <= user selected reporting year, and
-SW_TRACKING.TRACKING_STATUS = Current, and
-SW_TRACKING.CON_PURPOSE = Restoration OR Redevelopment OR Revitalization
Translate source.CON_PURPOSE of "Revitalization" ==> target.CON_PURPOSE = "NEWD" [New Development]
| 1.0 | Stormwater - Redevelopment/Restoration - Update selection set to include Revitalization - Per Rob Hirsch 20171212:
Stormwater features with a ConPurpose = Revitalization should be outputted to RestBMP, with a target Con Purpose = New Development ("NEWD").
**The existing selection set for the target RestBMP feature class is:**
Find where:
-SW_TRACKING.REPORTING_YEAR <= user selected reporting year, and
-SW_TRACKING.TRACKING_STATUS = Current, and
-SW_TRACKING.CON_PURPOSE = Restoration OR Redevelopment
**So the updated selection set for the target RestBMP feature class is:**
Find where:
-SW_TRACKING.REPORTING_YEAR <= user selected reporting year, and
-SW_TRACKING.TRACKING_STATUS = Current, and
-SW_TRACKING.CON_PURPOSE = Restoration OR Redevelopment OR Revitalization
Translate source.CON_PURPOSE of "Revitalization" ==> target.CON_PURPOSE = "NEWD" [New Development]
| priority | stormwater redevelopment restoration update selection set to include revitalization per rob hirsch stormwater features with a conpurpose revitalization should be outputted to restbmp with a target con purpose new development newd the existing selection set for the target restbmp feature class is find where sw tracking reporting year user selected reporting year and sw tracking tracking status current and sw tracking con purpose restoration or redevelopment so the updated selection set for the target restbmp feature class is find where sw tracking reporting year user selected reporting year and sw tracking tracking status current and sw tracking con purpose restoration or redevelopment or revitalization translate source con purpose of revitalization target con purpose newd | 1 |
238,598 | 7,781,182,936 | IssuesEvent | 2018-06-05 22:49:07 | FormidableLabs/spectacle | https://api.github.com/repos/FormidableLabs/spectacle | closed | Using insecure websockets prevents deployment with https. | Bug high priority | ## Expected Behavior
Building and deploying the build folder should result in a site that presents content without being blocked by modern browsers.
## Actual Behavior
Using the ws:// protocol instead of the wss://protocol makes it so the browser blocks the entire content of the page.
### Initial Page Load
<img width="980" alt="initial-page-load" src="https://user-images.githubusercontent.com/4078018/40977065-85a86a70-6895-11e8-8f4f-9e228613c93a.png">
### Before "Loading Unsafe Scripts"
<img width="980" alt="before-permitting-scripts" src="https://user-images.githubusercontent.com/4078018/40977076-8d7f7ba8-6895-11e8-9465-194e8416ac54.png">
### After "Loading Unsafe Scripts"
<img width="980" alt="after-permitting-scripts" src="https://user-images.githubusercontent.com/4078018/40977125-b7243660-6895-11e8-8a31-6c8f03c0b1e5.png">
## Steps to Reproduce the Problem
1. Install with the CRA workflow `create-react-app my-presentation --scripts-version spectacle-scripts`
1. Run `yarn build` or `npm run build`
1. Deploy the build folder using now or surge or GitHub pages i.e. `cd build && now --static`
1. Open the deployment in Chrome and view the blocked script indicator on the right hand side of the URL bar.
## Fixing the problem
I fixed the problem by digging through the node_modules folder and changing every instance of ws:// to wss:// and it worked perfectly. I'd be happy to make a PR if someone with more experience with sockets can chime in with any potential issues.
## Specifications
- Version: spectacle-scripts: "2.0.0"
- Platform: Firefox developer edition, Chrome 66
| 1.0 | Using insecure websockets prevents deployment with https. - ## Expected Behavior
Building and deploying the build folder should result in a site that presents content without being blocked by modern browsers.
## Actual Behavior
Using the ws:// protocol instead of the wss://protocol makes it so the browser blocks the entire content of the page.
### Initial Page Load
<img width="980" alt="initial-page-load" src="https://user-images.githubusercontent.com/4078018/40977065-85a86a70-6895-11e8-8f4f-9e228613c93a.png">
### Before "Loading Unsafe Scripts"
<img width="980" alt="before-permitting-scripts" src="https://user-images.githubusercontent.com/4078018/40977076-8d7f7ba8-6895-11e8-9465-194e8416ac54.png">
### After "Loading Unsafe Scripts"
<img width="980" alt="after-permitting-scripts" src="https://user-images.githubusercontent.com/4078018/40977125-b7243660-6895-11e8-8a31-6c8f03c0b1e5.png">
## Steps to Reproduce the Problem
1. Install with the CRA workflow `create-react-app my-presentation --scripts-version spectacle-scripts`
1. Run `yarn build` or `npm run build`
1. Deploy the build folder using now or surge or GitHub pages i.e. `cd build && now --static`
1. Open the deployment in Chrome and view the blocked script indicator on the right hand side of the URL bar.
## Fixing the problem
I fixed the problem by digging through the node_modules folder and changing every instance of ws:// to wss:// and it worked perfectly. I'd be happy to make a PR if someone with more experience with sockets can chime in with any potential issues.
## Specifications
- Version: spectacle-scripts: "2.0.0"
- Platform: Firefox developer edition, Chrome 66
| priority | using insecure websockets prevents deployment with https expected behavior building and deploying the build folder should result in a site that presents content without being blocked by modern browsers actual behavior using the ws protocol instead of the wss protocol makes it so the browser blocks the entire content of the page initial page load img width alt initial page load src before loading unsafe scripts img width alt before permitting scripts src after loading unsafe scripts img width alt after permitting scripts src steps to reproduce the problem install with the cra workflow create react app my presentation scripts version spectacle scripts run yarn build or npm run build deploy the build folder using now or surge or github pages i e cd build now static open the deployment in chrome and view the blocked script indicator on the right hand side of the url bar fixing the problem i fixed the problem by digging through the node modules folder and changing every instance of ws to wss and it worked perfectly i d be happy to make a pr if someone with more experience with sockets can chime in with any potential issues specifications version spectacle scripts platform firefox developer edition chrome | 1 |
411,357 | 12,017,339,982 | IssuesEvent | 2020-04-10 18:09:39 | UC-Davis-molecular-computing/scadnano | https://api.github.com/repos/UC-Davis-molecular-computing/scadnano | closed | Export SVG Main should export the SVG letters instead of PNG letters | bug enhancement high priority | Reproduce by zooming out so that png letters are used, then click export SVG main.
The expected behavior should be that the SVG letters are used instead. I think this can be quickly fixed by invalidating the PNG cache (i.e. setting it to null), but I feel like this is slightly wasteful because saving a png doesn't invalidate the png (the png is still correct), so I am hoping there is a way to replace the png with the svg during the save, and then switch back to the png after the save is done. (this saves time on large designs where it might take a while to load the png data uri). | 1.0 | Export SVG Main should export the SVG letters instead of PNG letters - Reproduce by zooming out so that png letters are used, then click export SVG main.
The expected behavior should be that the SVG letters are used instead. I think this can be quickly fixed by invalidating the PNG cache (i.e. setting it to null), but I feel like this is slightly wasteful because saving a png doesn't invalidate the png (the png is still correct), so I am hoping there is a way to replace the png with the svg during the save, and then switch back to the png after the save is done. (this saves time on large designs where it might take a while to load the png data uri). | priority | export svg main should export the svg letters instead of png letters reproduce by zooming out so that png letters are used then click export svg main the expected behavior should be that the svg letters are used instead i think this can be quickly fixed by invalidating the png cache i e setting it to null but i feel like this is slightly wasteful because saving a png doesn t invalidate the png the png is still correct so i am hoping there is a way to replace the png with the svg during the save and then switch back to the png after the save is done this saves time on large designs where it might take a while to load the png data uri | 1 |
349,245 | 10,466,376,537 | IssuesEvent | 2019-09-21 18:26:40 | PIQuIL/QuCumber | https://api.github.com/repos/PIQuIL/QuCumber | closed | Problem with EarlyStopping | Priority: High Size: Tiny bug | Hello ! i am trying to use qucumber.callbacks.EarlyStopping class, but I am having some troubles with it. Here is the part of my code where I call it:
```
callbacks = [
MetricEvaluator(
log_every,
{"Fidelity": ts.fidelity, "KL":ts.KL, "Coef":psi_coefficient},
target_psi=true_psi,
bases=bases,
verbose=True,
space=space,
),
EarlyStopping(
1, 0.01, 10, MetricEvaluator(1,{"KL":ts.KL}), "KL", "absolute")
]
```
But I am getting this error:
```
AttributeError Traceback (most recent call last)
<ipython-input-62-1830212e8c65> in <module>
71 ),
72 EarlyStopping(
---> 73 1, 0.01, 10, MetricEvaluator(1,{"KL":ts.KL}), "KL", "absolute")
74 ]
75
~\Anaconda3\envs\Andrius\lib\site-packages\qucumber\callbacks\early_stopping.py in __init__(self, period, tolerance, patience, evaluator_callback, quantity_name, criterion)
89 self.value_getter = self.evaluator_callback.get_value
90
---> 91 if criterion == self._convergence_criteria[2]:
92 raise TypeError(
93 "Can't use a variance based convergence criterion "
AttributeError: 'EarlyStopping' object has no attribute '_convergence_criteria'
```
Am I doing something the wrong way ? | 1.0 | Problem with EarlyStopping - Hello ! i am trying to use qucumber.callbacks.EarlyStopping class, but I am having some troubles with it. Here is the part of my code where I call it:
```
callbacks = [
MetricEvaluator(
log_every,
{"Fidelity": ts.fidelity, "KL":ts.KL, "Coef":psi_coefficient},
target_psi=true_psi,
bases=bases,
verbose=True,
space=space,
),
EarlyStopping(
1, 0.01, 10, MetricEvaluator(1,{"KL":ts.KL}), "KL", "absolute")
]
```
But I am getting this error:
```
AttributeError Traceback (most recent call last)
<ipython-input-62-1830212e8c65> in <module>
71 ),
72 EarlyStopping(
---> 73 1, 0.01, 10, MetricEvaluator(1,{"KL":ts.KL}), "KL", "absolute")
74 ]
75
~\Anaconda3\envs\Andrius\lib\site-packages\qucumber\callbacks\early_stopping.py in __init__(self, period, tolerance, patience, evaluator_callback, quantity_name, criterion)
89 self.value_getter = self.evaluator_callback.get_value
90
---> 91 if criterion == self._convergence_criteria[2]:
92 raise TypeError(
93 "Can't use a variance based convergence criterion "
AttributeError: 'EarlyStopping' object has no attribute '_convergence_criteria'
```
Am I doing something the wrong way ? | priority | problem with earlystopping hello i am trying to use qucumber callbacks earlystopping class but i am having some troubles with it here is the part of my code where i call it callbacks metricevaluator log every fidelity ts fidelity kl ts kl coef psi coefficient target psi true psi bases bases verbose true space space earlystopping metricevaluator kl ts kl kl absolute but i am getting this error attributeerror traceback most recent call last in earlystopping metricevaluator kl ts kl kl absolute envs andrius lib site packages qucumber callbacks early stopping py in init self period tolerance patience evaluator callback quantity name criterion self value getter self evaluator callback get value if criterion self convergence criteria raise typeerror can t use a variance based convergence criterion attributeerror earlystopping object has no attribute convergence criteria am i doing something the wrong way | 1 |
255,488 | 8,124,559,544 | IssuesEvent | 2018-08-16 17:57:35 | mark-cunningham/Impact | https://api.github.com/repos/mark-cunningham/Impact | closed | Evaluation Naming and Display | Priority: High enhancement | 1. On Stakeholder Surveys needs to differentiate between HGIOURS and HGIOS
2. Do away with the description
3. Add in the title on the Stakeholder Surveys page: date created, department (school), owner | 1.0 | Evaluation Naming and Display - 1. On Stakeholder Surveys needs to differentiate between HGIOURS and HGIOS
2. Do away with the description
3. Add in the title on the Stakeholder Surveys page: date created, department (school), owner | priority | evaluation naming and display on stakeholder surveys needs to differentiate between hgiours and hgios do away with the description add in the title on the stakeholder surveys page date created department school owner | 1 |
689,355 | 23,617,886,350 | IssuesEvent | 2022-08-24 17:32:20 | ploomber/soopervisor | https://api.github.com/repos/ploomber/soopervisor | opened | allowing users to change parameters when exporting soopervisor | enhancement med priority high effort | A user is currently editing the generated Argo YAML spec to switch pipeline parameters (i.e., adding `--env-param value`) because the only way to change parameters currently is by switching the `env.yaml` but this implies re-building the docker image.
I think we have to replicate this behavior and study what the best solution is. On the one hand, I think if the only changed file in the project is the `env.yaml`, then, re-building and uploading the docker image will be fast but is still adding some overhead.
Alternatively, we can incorporate the `--env parameter value` feature in the CLI so it behaves more like the Ploomber CLI:
```sh
soopervisor export name --env--param value
``` | 1.0 | allowing users to change parameters when exporting soopervisor - A user is currently editing the generated Argo YAML spec to switch pipeline parameters (i.e., adding `--env-param value`) because the only way to change parameters currently is by switching the `env.yaml` but this implies re-building the docker image.
I think we have to replicate this behavior and study what the best solution is. On the one hand, I think if the only changed file in the project is the `env.yaml`, then, re-building and uploading the docker image will be fast but is still adding some overhead.
Alternatively, we can incorporate the `--env parameter value` feature in the CLI so it behaves more like the Ploomber CLI:
```sh
soopervisor export name --env--param value
``` | priority | allowing users to change parameters when exporting soopervisor a user is currently editing the generated argo yaml spec to switch pipeline parameters i e adding env param value because the only way to change parameters currently is by switching the env yaml but this implies re building the docker image i think we have to replicate this behavior and study what the best solution is on the one hand i think if the only changed file in the project is the env yaml then re building and uploading the docker image will be fast but is still adding some overhead alternatively we can incorporate the env parameter value feature in the cli so it behaves more like the ploomber cli sh soopervisor export name env param value | 1 |
596,559 | 18,106,628,335 | IssuesEvent | 2021-09-22 19:51:39 | jonathonmellor/mimesis-stats | https://api.github.com/repos/jonathonmellor/mimesis-stats | closed | Python Versions | enhancement high priority |
- [x] Generalise setup.py so package can be built for different python versions.
- [x] Change CI to work across versions + platforms
- [x] Resolve dependency issues (change to minimum rather than exact) | 1.0 | Python Versions -
- [x] Generalise setup.py so package can be built for different python versions.
- [x] Change CI to work across versions + platforms
- [x] Resolve dependency issues (change to minimum rather than exact) | priority | python versions generalise setup py so package can be built for different python versions change ci to work across versions platforms resolve dependency issues change to minimum rather than exact | 1 |
341,949 | 10,310,010,146 | IssuesEvent | 2019-08-29 14:22:58 | organization/RapidPM | https://api.github.com/repos/organization/RapidPM | closed | "Expected TAG_Compound at the start of buffer" (EXCEPTION) in "vendor/pocketmine/nbt/src/BaseNbtSerializer" at line 56 | bug help wanted high priority | ```
[20:21:28.997] [Server thread/CRITICAL]: pocketmine\nbt\NbtDataException: "Expected TAG_Compound at the start of buffer" (EXCEPTION) in "vendor/pocketmine/nbt/src/BaseNbtSerializer" at line 56
[20:21:28.997] [Server thread/DEBUG]: #0 vendor/pocketmine/nbt/src/BaseNbtSerializer(77): pocketmine\nbt\BaseNbtSerializer->readRoot(integer 0)
[20:21:28.997] [Server thread/DEBUG]: #1 src/item/Item(698): pocketmine\nbt\BaseNbtSerializer->read(string[32] ......ench........id.....lvl....)
[20:21:28.997] [Server thread/DEBUG]: #2 src/inventory/CreativeInventory(47): pocketmine\item\Item::jsonDeserialize(array[2])
[20:21:28.998] [Server thread/DEBUG]: #3 src/Server(1166): pocketmine\inventory\CreativeInventory::init()
[20:21:28.998] [Server thread/DEBUG]: #4 src/PocketMine(268): pocketmine\Server->__construct(object BaseClassLoader, object pocketmine\utils\MainLogger, string[10] test_data/, string[18] test_data/plugins/)
[20:21:28.998] [Server thread/DEBUG]: #5 src/PocketMine(290): pocketmine\server()
[20:21:28.998] [Server thread/DEBUG]: #6 (1): require(string[98] phar:///home/travis/build/organization/RapidPM/PocketMine-MP/PocketMine-MP.phar/)
```
| 1.0 | "Expected TAG_Compound at the start of buffer" (EXCEPTION) in "vendor/pocketmine/nbt/src/BaseNbtSerializer" at line 56 - ```
[20:21:28.997] [Server thread/CRITICAL]: pocketmine\nbt\NbtDataException: "Expected TAG_Compound at the start of buffer" (EXCEPTION) in "vendor/pocketmine/nbt/src/BaseNbtSerializer" at line 56
[20:21:28.997] [Server thread/DEBUG]: #0 vendor/pocketmine/nbt/src/BaseNbtSerializer(77): pocketmine\nbt\BaseNbtSerializer->readRoot(integer 0)
[20:21:28.997] [Server thread/DEBUG]: #1 src/item/Item(698): pocketmine\nbt\BaseNbtSerializer->read(string[32] ......ench........id.....lvl....)
[20:21:28.997] [Server thread/DEBUG]: #2 src/inventory/CreativeInventory(47): pocketmine\item\Item::jsonDeserialize(array[2])
[20:21:28.998] [Server thread/DEBUG]: #3 src/Server(1166): pocketmine\inventory\CreativeInventory::init()
[20:21:28.998] [Server thread/DEBUG]: #4 src/PocketMine(268): pocketmine\Server->__construct(object BaseClassLoader, object pocketmine\utils\MainLogger, string[10] test_data/, string[18] test_data/plugins/)
[20:21:28.998] [Server thread/DEBUG]: #5 src/PocketMine(290): pocketmine\server()
[20:21:28.998] [Server thread/DEBUG]: #6 (1): require(string[98] phar:///home/travis/build/organization/RapidPM/PocketMine-MP/PocketMine-MP.phar/)
```
| priority | expected tag compound at the start of buffer exception in vendor pocketmine nbt src basenbtserializer at line pocketmine nbt nbtdataexception expected tag compound at the start of buffer exception in vendor pocketmine nbt src basenbtserializer at line vendor pocketmine nbt src basenbtserializer pocketmine nbt basenbtserializer readroot integer src item item pocketmine nbt basenbtserializer read string ench id lvl src inventory creativeinventory pocketmine item item jsondeserialize array src server pocketmine inventory creativeinventory init src pocketmine pocketmine server construct object baseclassloader object pocketmine utils mainlogger string test data string test data plugins src pocketmine pocketmine server require string phar home travis build organization rapidpm pocketmine mp pocketmine mp phar | 1 |
284,262 | 8,736,836,402 | IssuesEvent | 2018-12-11 20:42:59 | aowen87/TicketTester | https://api.github.com/repos/aowen87/TicketTester | closed | VisIt crashes reading a session file. | bug crash invalid likelihood medium priority reviewed severity high wrong results | Willy Moss has a session file that he created with VisIt 2.10.0 and when he tries to restore it, VisIt crashes. He is running client server from his Mac to surface and it does it right away, even before prompting for a password to login to surface. I took the session files and made the minimal changes necessary to use it and it worked for me, going from my Linux system to surface. We need to build a debug version for the Mac and run it on Willy's system to debug what is going on.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 2488
Status: Expired
Project: VisIt
Tracker: Bug
Priority: Urgent
Subject: VisIt crashes reading a session file.
Assigned to:
Category:
Target version:
Author: Eric Brugger
Start: 12/22/2015
Due date:
% Done: 0
Estimated time:
Created: 12/22/2015 02:19 pm
Updated: 03/29/2016 06:35 pm
Likelihood: 3 - Occasional
Severity: 4 - Crash / Wrong Results
Found in version: 2.10.0
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
Willy Moss has a session file that he created with VisIt 2.10.0 and when he tries to restore it, VisIt crashes. He is running client server from his Mac to surface and it does it right away, even before prompting for a password to login to surface. I took the session files and made the minimal changes necessary to use it and it worked for me, going from my Linux system to surface. We need to build a debug version for the Mac and run it on Willy's system to debug what is going on.
Comments:
| 1.0 | VisIt crashes reading a session file. - Willy Moss has a session file that he created with VisIt 2.10.0 and when he tries to restore it, VisIt crashes. He is running client server from his Mac to surface and it does it right away, even before prompting for a password to login to surface. I took the session files and made the minimal changes necessary to use it and it worked for me, going from my Linux system to surface. We need to build a debug version for the Mac and run it on Willy's system to debug what is going on.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 2488
Status: Expired
Project: VisIt
Tracker: Bug
Priority: Urgent
Subject: VisIt crashes reading a session file.
Assigned to:
Category:
Target version:
Author: Eric Brugger
Start: 12/22/2015
Due date:
% Done: 0
Estimated time:
Created: 12/22/2015 02:19 pm
Updated: 03/29/2016 06:35 pm
Likelihood: 3 - Occasional
Severity: 4 - Crash / Wrong Results
Found in version: 2.10.0
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
Willy Moss has a session file that he created with VisIt 2.10.0 and when he tries to restore it, VisIt crashes. He is running client server from his Mac to surface and it does it right away, even before prompting for a password to login to surface. I took the session files and made the minimal changes necessary to use it and it worked for me, going from my Linux system to surface. We need to build a debug version for the Mac and run it on Willy's system to debug what is going on.
Comments:
| priority | visit crashes reading a session file willy moss has a session file that he created with visit and when he tries to restore it visit crashes he is running client server from his mac to surface and it does it right away even before prompting for a password to login to surface i took the session files and made the minimal changes necessary to use it and it worked for me going from my linux system to surface we need to build a debug version for the mac and run it on willy s system to debug what is going on redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status expired project visit tracker bug priority urgent subject visit crashes reading a session file assigned to category target version author eric brugger start due date done estimated time created pm updated pm likelihood occasional severity crash wrong results found in version impact expected use os all support group any description willy moss has a session file that he created with visit and when he tries to restore it visit crashes he is running client server from his mac to surface and it does it right away even before prompting for a password to login to surface i took the session files and made the minimal changes necessary to use it and it worked for me going from my linux system to surface we need to build a debug version for the mac and run it on willy s system to debug what is going on comments | 1 |
97,085 | 3,984,967,720 | IssuesEvent | 2016-05-07 15:17:24 | phanngoc/benhvien | https://api.github.com/repos/phanngoc/benhvien | opened | [Client] Kiแปm tra cรกc validate cho cรกc trฦฐแปng trong phแบงn ฤฤng kรญ cho ฤรบng. Nแบฟu ฤรบng mแปi ฤc phรฉp ฤฤng kรญ | important Priority-High task | Vรฌ phแบงn ni lร chรญnh nรชn g nghฤฉ hแป bแบฏt bแบป, N coi lแบกi mแบฅy cรกi validate cho ฤรบng vแปi nhรก
CMND: lร chuแปi sแป
Email: hiแปn ฤรฃ cรณ hiแปn lรชn kรญ hiแปu sai, nhฦฐng vแบซn ฤฦฐแปฃc phรฉp ฤฤng kรญ
ฤแปa chแป: (Cรกi ni ko cแบงn :))
Sแป ฤiแปn thoแบกi: Chuแปi sแป
Cรกc bฦฐแปc tiแบฟp theo: Nแบฟu chแปn cรกc trฦฐแปng thรฌ mแปi ฤc phรฉp next sang trang tiแบฟp

| 1.0 | [Client] Kiแปm tra cรกc validate cho cรกc trฦฐแปng trong phแบงn ฤฤng kรญ cho ฤรบng. Nแบฟu ฤรบng mแปi ฤc phรฉp ฤฤng kรญ - Vรฌ phแบงn ni lร chรญnh nรชn g nghฤฉ hแป bแบฏt bแบป, N coi lแบกi mแบฅy cรกi validate cho ฤรบng vแปi nhรก
CMND: lร chuแปi sแป
Email: hiแปn ฤรฃ cรณ hiแปn lรชn kรญ hiแปu sai, nhฦฐng vแบซn ฤฦฐแปฃc phรฉp ฤฤng kรญ
ฤแปa chแป: (Cรกi ni ko cแบงn :))
Sแป ฤiแปn thoแบกi: Chuแปi sแป
Cรกc bฦฐแปc tiแบฟp theo: Nแบฟu chแปn cรกc trฦฐแปng thรฌ mแปi ฤc phรฉp next sang trang tiแบฟp

| priority | kiแปm tra cรกc validate cho cรกc trฦฐแปng trong phแบงn ฤฤng kรญ cho ฤรบng nแบฟu ฤรบng mแปi ฤc phรฉp ฤฤng kรญ vรฌ phแบงn ni lร chรญnh nรชn g nghฤฉ hแป bแบฏt bแบป n coi lแบกi mแบฅy cรกi validate cho ฤรบng vแปi nhรก cmnd lร chuแปi sแป email hiแปn ฤรฃ cรณ hiแปn lรชn kรญ hiแปu sai nhฦฐng vแบซn ฤฦฐแปฃc phรฉp ฤฤng kรญ ฤแปa chแป cรกi ni ko cแบงn sแป ฤiแปn thoแบกi chuแปi sแป cรกc bฦฐแปc tiแบฟp theo nแบฟu chแปn cรกc trฦฐแปng thรฌ mแปi ฤc phรฉp next sang trang tiแบฟp | 1 |
338,138 | 10,224,805,259 | IssuesEvent | 2019-08-16 13:42:41 | isawnyu/isaw.web | https://api.github.com/repos/isawnyu/isaw.web | closed | configure the site for split view caching | enhancement high priority | per @alecpm :
> That will be completely necessary once the site is available under SSL for both logged in and non-logged in users. Youโve been able to ignore that sort of cache pollution because logged in and non-logged in users historically used different urls, but that wonโt be the case anymore. | 1.0 | configure the site for split view caching - per @alecpm :
> That will be completely necessary once the site is available under SSL for both logged in and non-logged in users. Youโve been able to ignore that sort of cache pollution because logged in and non-logged in users historically used different urls, but that wonโt be the case anymore. | priority | configure the site for split view caching per alecpm that will be completely necessary once the site is available under ssl for both logged in and non logged in users youโve been able to ignore that sort of cache pollution because logged in and non logged in users historically used different urls but that wonโt be the case anymore | 1 |
243,190 | 7,854,011,019 | IssuesEvent | 2018-06-20 19:18:41 | GoogleCloudPlatform/google-cloud-eclipse | https://api.github.com/repos/GoogleCloudPlatform/google-cloud-eclipse | reopened | Run As App Engine should stop previously running local server | enhancement high priority | for quick edit/run cycles
(rather than requiring user to manually stop the previous local run)
Much like how deploy replaces existing server by default. | 1.0 | Run As App Engine should stop previously running local server - for quick edit/run cycles
(rather than requiring user to manually stop the previous local run)
Much like how deploy replaces existing server by default. | priority | run as app engine should stop previously running local server for quick edit run cycles rather than requiring user to manually stop the previous local run much like how deploy replaces existing server by default | 1 |
744,553 | 25,947,787,770 | IssuesEvent | 2022-12-17 06:38:39 | GrapheneOS/os-issue-tracker | https://api.github.com/repos/GrapheneOS/os-issue-tracker | closed | use GrapheneOS name for DNS check query when connectivity checks are set to GrapheneOS | enhancement priority-high | This should resolve `<random>-dnsotls-ds.dnscheck.grapheneos.org` with DoT instead of resolving `b37779d46-dnsotls-ds.metric.gstatic.com`. No connection is actually made to the resolve IP addresses from the query but rather this simply tests if the DNS resolver works to see if DNS-over-TLS is available. The main reason to change this is perception, especially since people get the incorrect idea that this is a connection made by the OS to that service when they check DNS query logs. It's the only non-GrapheneOS server in the default queries for Pixel 6 and Pixel 7 (Snapdragon Pixels download GPS almanacs from Qualcomm's choice of CDN when location is enabled and being used). | 1.0 | use GrapheneOS name for DNS check query when connectivity checks are set to GrapheneOS - This should resolve `<random>-dnsotls-ds.dnscheck.grapheneos.org` with DoT instead of resolving `b37779d46-dnsotls-ds.metric.gstatic.com`. No connection is actually made to the resolve IP addresses from the query but rather this simply tests if the DNS resolver works to see if DNS-over-TLS is available. The main reason to change this is perception, especially since people get the incorrect idea that this is a connection made by the OS to that service when they check DNS query logs. It's the only non-GrapheneOS server in the default queries for Pixel 6 and Pixel 7 (Snapdragon Pixels download GPS almanacs from Qualcomm's choice of CDN when location is enabled and being used). | priority | use grapheneos name for dns check query when connectivity checks are set to grapheneos this should resolve dnsotls ds dnscheck grapheneos org with dot instead of resolving dnsotls ds metric gstatic com no connection is actually made to the resolve ip addresses from the query but rather this simply tests if the dns resolver works to see if dns over tls is available the main reason to change this is perception especially since people get the incorrect idea that this is a connection made by the os to that service when they check dns query logs it s the only non grapheneos server in the default queries for pixel and pixel snapdragon pixels download gps almanacs from qualcomm s choice of cdn when location is enabled and being used | 1 |
361,004 | 10,700,498,420 | IssuesEvent | 2019-10-24 00:14:39 | HumanExposure/factotum | https://api.github.com/repos/HumanExposure/factotum | closed | original source chemical record ID | Priority :: High To point enhancement no-issue-activity | As a Factotum user
I need the ability to upload an original record ID for each chemical record within a data document
So that I am able to track each chemical record back to the original record in the raw data source
Definition of Done:
Ability to store and upload an original source record ID corresponding to each chemical record in a data document
1. Original source record ID column appears in extracted text upload csv template
2. Ability to upload original source record ID when uploading extracted text | 1.0 | original source chemical record ID - As a Factotum user
I need the ability to upload an original record ID for each chemical record within a data document
So that I am able to track each chemical record back to the original record in the raw data source
Definition of Done:
Ability to store and upload an original source record ID corresponding to each chemical record in a data document
1. Original source record ID column appears in extracted text upload csv template
2. Ability to upload original source record ID when uploading extracted text | priority | original source chemical record id as a factotum user i need the ability to upload an original record id for each chemical record within a data document so that i am able to track each chemical record back to the original record in the raw data source definition of done ability to store and upload an original source record id corresponding to each chemical record in a data document original source record id column appears in extracted text upload csv template ability to upload original source record id when uploading extracted text | 1 |
438,875 | 12,663,066,531 | IssuesEvent | 2020-06-18 00:05:56 | openmsupply/mobile | https://api.github.com/repos/openmsupply/mobile | closed | Add Burmese/Myanmar button strings | Burma/Myanmar Docs: needed Effort: small Feature Priority: high | ## Is your feature request related to a problem? Please describe.
Add Burmese/Myanmar translations for button strings.
## Describe the solution you'd like
See above.
## Implementation
Add Burmese/Myanmar translations to `buttonStrings` localisation.
## Describe alternatives you've considered
N/A.
## Additional context
See #2928 for main issue.
| 1.0 | Add Burmese/Myanmar button strings - ## Is your feature request related to a problem? Please describe.
Add Burmese/Myanmar translations for button strings.
## Describe the solution you'd like
See above.
## Implementation
Add Burmese/Myanmar translations to `buttonStrings` localisation.
## Describe alternatives you've considered
N/A.
## Additional context
See #2928 for main issue.
| priority | add burmese myanmar button strings is your feature request related to a problem please describe add burmese myanmar translations for button strings describe the solution you d like see above implementation add burmese myanmar translations to buttonstrings localisation describe alternatives you ve considered n a additional context see for main issue | 1 |
660,862 | 22,033,933,324 | IssuesEvent | 2022-05-28 09:04:51 | Accident-Prone/Visceral-Carnage_GAME | https://api.github.com/repos/Accident-Prone/Visceral-Carnage_GAME | closed | Level 1 - Players capable of teleporting from Basement to Ground level | bug Priority: High Status: Assigned | **Describe the bug**
If a player is on the basement level of the gang hide-out building, they are able to aim the teleportation target onto the floor of the above level (ground level), allowing them to jump levels.
**Version Found**
Visceral Carnage Playtest Release v0.1 Alpha
**To Reproduce**
Steps to reproduce the behavior:
1. Start game.
2. Travel to basement level (use stairs on right side of building to access basement VIP bar section).
3. Angle the control with the teleportation target upwards towards the ceiling until the movement curve ends with the circle target on the floor of the ground level above you.
4. Action movement.
5. Player is now on the Ground Level.
**Expected Behaviour**
When the player angles the controller above them towards the ceiling, the option to move/teleport to a location above them (i.e. ground floor) should not become available.
**Screenshots**
n/a
Teleportation shortcut observed during internal playtesting.
**Desktop (please complete the following information):**
OS: Unreal Engine version 4.27.2
**Additional context**
n/a | 1.0 | Level 1 - Players capable of teleporting from Basement to Ground level - **Describe the bug**
If a player is on the basement level of the gang hide-out building, they are able to aim the teleportation target onto the floor of the above level (ground level), allowing them to jump levels.
**Version Found**
Visceral Carnage Playtest Release v0.1 Alpha
**To Reproduce**
Steps to reproduce the behavior:
1. Start game.
2. Travel to basement level (use stairs on right side of building to access basement VIP bar section).
3. Angle the control with the teleportation target upwards towards the ceiling until the movement curve ends with the circle target on the floor of the ground level above you.
4. Action movement.
5. Player is now on the Ground Level.
**Expected Behaviour**
When the player angles the controller above them towards the ceiling, the option to move/teleport to a location above them (i.e. ground floor) should not become available.
**Screenshots**
n/a
Teleportation shortcut observed during internal playtesting.
**Desktop (please complete the following information):**
OS: Unreal Engine version 4.27.2
**Additional context**
n/a | priority | level players capable of teleporting from basement to ground level describe the bug if a player is on the basement level of the gang hide out building they are able to aim the teleportation target onto the floor of the above level ground level allowing them to jump levels version found visceral carnage playtest release alpha to reproduce steps to reproduce the behavior start game travel to basement level use stairs on right side of building to access basement vip bar section angle the control with the teleportation target upwards towards the ceiling until the movement curve ends with the circle target on the floor of the ground level above you action movement player is now on the ground level expected behaviour when the player angles the controller above them towards the ceiling the option to move teleport to a location above them i e ground floor should not become available screenshots n a teleportation shortcut observed during internal playtesting desktop please complete the following information os unreal engine version additional context n a | 1 |
825,799 | 31,472,480,169 | IssuesEvent | 2023-08-30 08:30:04 | bluesky/bluesky | https://api.github.com/repos/bluesky/bluesky | opened | Remove or Disable-by-Default Pre-Declare | high-priority maintenance task | Reports have come in from a number of sources of bugs rising as a result of pre-declare (https://github.com/bluesky/bluesky/pull/1542)
See also: https://github.com/bluesky/bluesky/issues/1594
I think the easiest solution for now is to disable it in the built-in plans but leave it in bluesky for those who want it. It may become the default behaviour in future when its issues are addressed. | 1.0 | Remove or Disable-by-Default Pre-Declare - Reports have come in from a number of sources of bugs rising as a result of pre-declare (https://github.com/bluesky/bluesky/pull/1542)
See also: https://github.com/bluesky/bluesky/issues/1594
I think the easiest solution for now is to disable it in the built-in plans but leave it in bluesky for those who want it. It may become the default behaviour in future when its issues are addressed. | priority | remove or disable by default pre declare reports have come in from a number of sources of bugs rising as a result of pre declare see also i think the easiest solution for now is to disable it in the built in plans but leave it in bluesky for those who want it it may become the default behaviour in future when its issues are addressed | 1 |
242,567 | 7,844,339,373 | IssuesEvent | 2018-06-19 09:20:38 | OpenNebula/one | https://api.github.com/repos/OpenNebula/one | opened | Oneflow not working after upgrading from 5.4.* to 5.5.80 | Category: Core & System Community Priority: High Status: Accepted Type: Bug | # Bug Report
## Version of OpenNebula
- [ ] 5.2.2
- [ ] 5.4.0
- [ ] 5.4.1
- [ ] 5.4.2
- [ ] 5.4.3
- [ ] 5.4.4
- [ ] 5.4.5
- [ ] 5.4.6
- [ ] 5.4.7
- [ ] 5.4.8
- [ ] 5.4.9
- [ ] 5.4.10
- [ ] 5.4.11
- [ ] Development build
## Component
- [ ] Authorization (LDAP, x509 certs...)
- [ ] Command Line Interface (CLI)
- [ ] Contextualization
- [ ] Documentation
- [ ] Federation and HA
- [ ] Host, Clusters and Monitorization
- [ ] KVM
- [ ] Networking
- [ ] Orchestration (OpenNebula Flow)
- [ ] Packages
- [ ] Scheduler
- [ ] Storage & Images
- [ ] Sunstone
- [ ] Upgrades
- [ ] User, Groups, VDCs and ACL
- [ ] vCenter
## Description
<!-- Brief description of your problem -->
### Expected Behavior
### Actual Behavior
## How to reproduce
<!-- Steps to reproduce the issue --> | 1.0 | Oneflow not working after upgrading from 5.4.* to 5.5.80 - # Bug Report
## Version of OpenNebula
- [ ] 5.2.2
- [ ] 5.4.0
- [ ] 5.4.1
- [ ] 5.4.2
- [ ] 5.4.3
- [ ] 5.4.4
- [ ] 5.4.5
- [ ] 5.4.6
- [ ] 5.4.7
- [ ] 5.4.8
- [ ] 5.4.9
- [ ] 5.4.10
- [ ] 5.4.11
- [ ] Development build
## Component
- [ ] Authorization (LDAP, x509 certs...)
- [ ] Command Line Interface (CLI)
- [ ] Contextualization
- [ ] Documentation
- [ ] Federation and HA
- [ ] Host, Clusters and Monitorization
- [ ] KVM
- [ ] Networking
- [ ] Orchestration (OpenNebula Flow)
- [ ] Packages
- [ ] Scheduler
- [ ] Storage & Images
- [ ] Sunstone
- [ ] Upgrades
- [ ] User, Groups, VDCs and ACL
- [ ] vCenter
## Description
<!-- Brief description of your problem -->
### Expected Behavior
### Actual Behavior
## How to reproduce
<!-- Steps to reproduce the issue --> | priority | oneflow not working after upgrading from to bug report version of opennebula development build component authorization ldap certs command line interface cli contextualization documentation federation and ha host clusters and monitorization kvm networking orchestration opennebula flow packages scheduler storage images sunstone upgrades user groups vdcs and acl vcenter description expected behavior actual behavior how to reproduce | 1 |
780,450 | 27,395,906,708 | IssuesEvent | 2023-02-28 19:41:21 | model-checking/kani | https://api.github.com/repos/model-checking/kani | closed | Name resolution falls into a cycle on local modules | [C] Bug T-High Priority [F] Crash T-User | <!--
If this is a security issue, please report it following the
[security reporting procedure](https://github.com/model-checking/kani/security/policy).
-->
<!--
Thank you for filing a bug report! ๐
Please provide a short summary of the issue, along with the information necessary to replicate.
-->
I tried this code: (it's a cargo project which is attached in [resolve-cycles.tar.gz](https://github.com/model-checking/kani/files/10689942/resolve-cycles.tar.gz) for your convenience)
*src/lib.rs*
```rust
pub mod module_a;
pub mod top_module;
```
*src/module_a.rs*
```rust
mod other_mod;
pub use other_mod::*;
```
*src/top_module.rs*
```rust
use crate::module_a::*;
pub fn hello() {
println!("hello");
}
#[cfg(kani)]
mod verification {
use super::*;
#[kani::proof]
#[kani::stub(
module_a::StructA::method_a,
top_module::verification::method_a
)]
fn infinite_harness() {
let data = StructA::method_a();
assert!(data.field_a);
}
fn method_a() -> StructA {
StructA { field_a: true }
}
}
```
*src/module_a/other_mod.rs*
```rust
use crate::module_a::*;
use crate::top_module::*;
pub (crate) struct StructA {
pub field_a: bool,
}
impl StructA {
#[cfg(any(test, kani))]
pub(crate) fn method_a() -> Self {
hello();
Self { field_a: false }
}
}
```
using the following command line invocation:
```
cargo kani --enable-unstable --enable-stubbing --harness verification::infinite_harness
```
with Kani version: 0.20.0 (development version - commit [a7adb0b](https://github.com/model-checking/kani/commit/a7adb0b583abb56c6f3e1255a8c2e2a043513bc3))
I expected to see this happen: Verification success, due to stubbing replacing `method_a` appropriately.
<!--
If Kani crashed, please include a backtrace in the code block by setting
`RUST_BACKTRACE=1` in your environment. E.g. `RUST_BACKTRACE=1 kani ...`
-->
Instead, this happened:
```
error: could not compile `resolve-cycles`; 2 warnings emitted
Caused by: Got an error from `cargo` (see below).
process didn't exit successfully: `/home/ubuntu/kani/target/kani/bin/kani-compiler --crate-name resolve_cycles --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --reachability=harnesses -C metadata=447f54d52aae14b3 -C extra-filename=-447f54d52aae14b3 --out-dir /home/ubuntu/resolve-cycles/target/kani/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -C incremental=/home/ubuntu/resolve-cycles/target/kani/x86_64-unknown-linux-gnu/debug/incremental -L dependency=/home/ubuntu/resolve-cycles/target/kani/x86_64-unknown-linux-gnu/debug/deps -L dependency=/home/ubuntu/resolve-cycles/target/kani/debug/deps -C overflow-checks=on -C panic=abort -C symbol-mangling-version=v0 -Z unstable-options -Z panic_abort_tests=yes -Z trim-diagnostic-paths=no -Z human_readable_cgu_names -Z always-encode-mir --cfg=kani -Z 'crate-attr=feature(register_tool)' -Z 'crate-attr=register_tool(kanitool)' --sysroot /home/ubuntu/kani/target/kani -L /home/ubuntu/kani/target/kani/lib --extern kani --extern 'noprelude:std=/home/ubuntu/kani/target/kani/lib/libstd.rlib' --kani-flags` (signal: 11, SIGSEGV: invalid memory reference)
error: Failed to execute cargo (exit status: 101). Found 0 compilation errors.
```
Running with `--debug` shows that the name resolution algorithm falls into a cycle, generating an endless debug trace.
```
โโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `top_module::verification`
โโโ
โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `top_module`
โ โโโ
โ โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `module_a`
โ โ โโโ
โ โ โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โ โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `module_a::other_mod`
โ โ โ โโโ
โ โ โ โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โ โ โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `module_a`
โ โ โ โ โโโ
โ โ โ โ โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โ โ โ โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `module_a::other_mod`
[...]
```
I suspect that the culprit is #2003, although I haven't really done a proper bisection.
| 1.0 | Name resolution falls into a cycle on local modules - <!--
If this is a security issue, please report it following the
[security reporting procedure](https://github.com/model-checking/kani/security/policy).
-->
<!--
Thank you for filing a bug report! ๐
Please provide a short summary of the issue, along with the information necessary to replicate.
-->
I tried this code: (it's a cargo project which is attached in [resolve-cycles.tar.gz](https://github.com/model-checking/kani/files/10689942/resolve-cycles.tar.gz) for your convenience)
*src/lib.rs*
```rust
pub mod module_a;
pub mod top_module;
```
*src/module_a.rs*
```rust
mod other_mod;
pub use other_mod::*;
```
*src/top_module.rs*
```rust
use crate::module_a::*;
pub fn hello() {
println!("hello");
}
#[cfg(kani)]
mod verification {
use super::*;
#[kani::proof]
#[kani::stub(
module_a::StructA::method_a,
top_module::verification::method_a
)]
fn infinite_harness() {
let data = StructA::method_a();
assert!(data.field_a);
}
fn method_a() -> StructA {
StructA { field_a: true }
}
}
```
*src/module_a/other_mod.rs*
```rust
use crate::module_a::*;
use crate::top_module::*;
pub (crate) struct StructA {
pub field_a: bool,
}
impl StructA {
#[cfg(any(test, kani))]
pub(crate) fn method_a() -> Self {
hello();
Self { field_a: false }
}
}
```
using the following command line invocation:
```
cargo kani --enable-unstable --enable-stubbing --harness verification::infinite_harness
```
with Kani version: 0.20.0 (development version - commit [a7adb0b](https://github.com/model-checking/kani/commit/a7adb0b583abb56c6f3e1255a8c2e2a043513bc3))
I expected to see this happen: Verification success, due to stubbing replacing `method_a` appropriately.
<!--
If Kani crashed, please include a backtrace in the code block by setting
`RUST_BACKTRACE=1` in your environment. E.g. `RUST_BACKTRACE=1 kani ...`
-->
Instead, this happened:
```
error: could not compile `resolve-cycles`; 2 warnings emitted
Caused by: Got an error from `cargo` (see below).
process didn't exit successfully: `/home/ubuntu/kani/target/kani/bin/kani-compiler --crate-name resolve_cycles --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --reachability=harnesses -C metadata=447f54d52aae14b3 -C extra-filename=-447f54d52aae14b3 --out-dir /home/ubuntu/resolve-cycles/target/kani/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -C incremental=/home/ubuntu/resolve-cycles/target/kani/x86_64-unknown-linux-gnu/debug/incremental -L dependency=/home/ubuntu/resolve-cycles/target/kani/x86_64-unknown-linux-gnu/debug/deps -L dependency=/home/ubuntu/resolve-cycles/target/kani/debug/deps -C overflow-checks=on -C panic=abort -C symbol-mangling-version=v0 -Z unstable-options -Z panic_abort_tests=yes -Z trim-diagnostic-paths=no -Z human_readable_cgu_names -Z always-encode-mir --cfg=kani -Z 'crate-attr=feature(register_tool)' -Z 'crate-attr=register_tool(kanitool)' --sysroot /home/ubuntu/kani/target/kani -L /home/ubuntu/kani/target/kani/lib --extern kani --extern 'noprelude:std=/home/ubuntu/kani/target/kani/lib/libstd.rlib' --kani-flags` (signal: 11, SIGSEGV: invalid memory reference)
error: Failed to execute cargo (exit status: 101). Found 0 compilation errors.
```
Running with `--debug` shows that the name resolution algorithm falls into a cycle, generating an endless debug trace.
```
โโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `top_module::verification`
โโโ
โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `top_module`
โ โโโ
โ โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `module_a`
โ โ โโโ
โ โ โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โ โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `module_a::other_mod`
โ โ โ โโโ
โ โ โ โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โ โ โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `module_a`
โ โ โ โ โโโ
โ โ โ โ โโโโโkani_compiler::kani_middle::resolve::glob_resolution
โ โ โ โ โ โโโโ0ms DEBUG kani_compiler::kani_middle::resolve Resolving `module_a::StructA::method_a` in local module `module_a::other_mod`
[...]
```
I suspect that the culprit is #2003, although I haven't really done a proper bisection.
| priority | name resolution falls into a cycle on local modules if this is a security issue please report it following the thank you for filing a bug report ๐ please provide a short summary of the issue along with the information necessary to replicate i tried this code it s a cargo project which is attached in for your convenience src lib rs rust pub mod module a pub mod top module src module a rs rust mod other mod pub use other mod src top module rs rust use crate module a pub fn hello println hello mod verification use super kani stub module a structa method a top module verification method a fn infinite harness let data structa method a assert data field a fn method a structa structa field a true src module a other mod rs rust use crate module a use crate top module pub crate struct structa pub field a bool impl structa pub crate fn method a self hello self field a false using the following command line invocation cargo kani enable unstable enable stubbing harness verification infinite harness with kani version development version commit i expected to see this happen verification success due to stubbing replacing method a appropriately if kani crashed please include a backtrace in the code block by setting rust backtrace in your environment e g rust backtrace kani instead this happened error could not compile resolve cycles warnings emitted caused by got an error from cargo see below process didn t exit successfully home ubuntu kani target kani bin kani compiler crate name resolve cycles edition src lib rs error format json json diagnostic rendered ansi artifacts future incompat crate type lib emit dep info metadata link c embed bitcode no c debuginfo reachability harnesses c metadata c extra filename out dir home ubuntu resolve cycles target kani unknown linux gnu debug deps target unknown linux gnu c incremental home ubuntu resolve cycles target kani unknown linux gnu debug incremental l dependency home ubuntu resolve cycles target kani unknown linux gnu debug deps l dependency home ubuntu resolve cycles target kani debug deps c overflow checks on c panic abort c symbol mangling version z unstable options z panic abort tests yes z trim diagnostic paths no z human readable cgu names z always encode mir cfg kani z crate attr feature register tool z crate attr register tool kanitool sysroot home ubuntu kani target kani l home ubuntu kani target kani lib extern kani extern noprelude std home ubuntu kani target kani lib libstd rlib kani flags signal sigsegv invalid memory reference error failed to execute cargo exit status found compilation errors running with debug shows that the name resolution algorithm falls into a cycle generating an endless debug trace โโโ debug kani compiler kani middle resolve resolving module a structa method a in local module top module verification โโโ โโโโโkani compiler kani middle resolve glob resolution โ โโโโ debug kani compiler kani middle resolve resolving module a structa method a in local module top module โ โโโ โ โโโโโkani compiler kani middle resolve glob resolution โ โ โโโโ debug kani compiler kani middle resolve resolving module a structa method a in local module module a โ โ โโโ โ โ โโโโโkani compiler kani middle resolve glob resolution โ โ โ โโโโ debug kani compiler kani middle resolve resolving module a structa method a in local module module a other mod โ โ โ โโโ โ โ โ โโโโโkani compiler kani middle resolve glob resolution โ โ โ โ โโโโ debug kani compiler kani middle resolve resolving module a structa method a in local module module a โ โ โ โ โโโ โ โ โ โ โโโโโkani compiler kani middle resolve glob resolution โ โ โ โ โ โโโโ debug kani compiler kani middle resolve resolving module a structa method a in local module module a other mod i suspect that the culprit is although i haven t really done a proper bisection | 1 |
169,138 | 6,395,568,513 | IssuesEvent | 2017-08-04 13:35:30 | yarnpkg/yarn | https://api.github.com/repos/yarnpkg/yarn | closed | install fails if directory has empty file with name "1" | bug-fetching bug-high-priority triaged |
**Do you want to request a *feature* or report a *bug*?**
bug
**What is the current behavior?**
Weird install failure
package.json
```
{
"name": "test",
"dependencies": {
"glob": "^7.1.1"
}
}
```
```bash
touch 1
```
```bash
yarn install
yarn install v0.28.1
warning package.json: No license field
warning test: No license field
[1/4] ๐ Resolving packages...
[2/4] ๐ Fetching packages...
error An unexpected error occurred: "ENOTDIR: not a directory, scandir '/Users/bestander/Library/Caches/Yarn/v1/npm-wrappy-0.0.0-a3898aef-4262-4dd5-afa7-204e8e8cb0b2-1500935336291'".
info If you think this is a bug, please open a bug report with the information provided in "/Users/bestander/work/temp/weird/yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
```
**Please mention your node.js, yarn and operating system version.**
Yarn 0.28.1, MacOSX | 1.0 | install fails if directory has empty file with name "1" -
**Do you want to request a *feature* or report a *bug*?**
bug
**What is the current behavior?**
Weird install failure
package.json
```
{
"name": "test",
"dependencies": {
"glob": "^7.1.1"
}
}
```
```bash
touch 1
```
```bash
yarn install
yarn install v0.28.1
warning package.json: No license field
warning test: No license field
[1/4] ๐ Resolving packages...
[2/4] ๐ Fetching packages...
error An unexpected error occurred: "ENOTDIR: not a directory, scandir '/Users/bestander/Library/Caches/Yarn/v1/npm-wrappy-0.0.0-a3898aef-4262-4dd5-afa7-204e8e8cb0b2-1500935336291'".
info If you think this is a bug, please open a bug report with the information provided in "/Users/bestander/work/temp/weird/yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
```
**Please mention your node.js, yarn and operating system version.**
Yarn 0.28.1, MacOSX | priority | install fails if directory has empty file with name do you want to request a feature or report a bug bug what is the current behavior weird install failure package json name test dependencies glob bash touch bash yarn install yarn install warning package json no license field warning test no license field ๐ resolving packages ๐ fetching packages error an unexpected error occurred enotdir not a directory scandir users bestander library caches yarn npm wrappy info if you think this is a bug please open a bug report with the information provided in users bestander work temp weird yarn error log info visit for documentation about this command please mention your node js yarn and operating system version yarn macosx | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.