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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
251,159 | 8,000,622,845 | IssuesEvent | 2018-07-22 18:06:29 | Mylogyc/ModNet | https://api.github.com/repos/Mylogyc/ModNet | closed | File transfer re-implementation | High Priority bug enhancement | ## Overview
The current implementation of both the `download` and `upload` commands get the raw data of the file being interacted with. This implementation is _unstable_ on bad network connections and could lead to corrupt files on both sides.
Although there is already a fixed 2GB (32-bit integers...) limit per file on upload and download, it would be better to implement a sort of data compression to reduce file size on transfer and decompress on receive.
## Affected releases:
- ModNetClient - b1.0.2
- ModNetHostClient - b1.0.2
| 1.0 | File transfer re-implementation - ## Overview
The current implementation of both the `download` and `upload` commands get the raw data of the file being interacted with. This implementation is _unstable_ on bad network connections and could lead to corrupt files on both sides.
Although there is already a fixed 2GB (32-bit integers...) limit per file on upload and download, it would be better to implement a sort of data compression to reduce file size on transfer and decompress on receive.
## Affected releases:
- ModNetClient - b1.0.2
- ModNetHostClient - b1.0.2
| priority | file transfer re implementation overview the current implementation of both the download and upload commands get the raw data of the file being interacted with this implementation is unstable on bad network connections and could lead to corrupt files on both sides although there is already a fixed bit integers limit per file on upload and download it would be better to implement a sort of data compression to reduce file size on transfer and decompress on receive affected releases modnetclient modnethostclient | 1 |
554,299 | 16,417,069,614 | IssuesEvent | 2021-05-19 08:07:33 | alphagov/govuk-frontend | https://api.github.com/repos/alphagov/govuk-frontend | closed | xlink:href="data:," attribute on crown image is triggering Content Security Policy error | header ⚠️ high priority 🐛 bug 🔍 investigation 🕔 days | ## Description of the issue
Previous releases of govuk-frontend included the crown logo using this HTML:
```
<image src="/assets/images/govuk-logotype-crown.png" xlink:href="" class="govuk-header__logotype-crown-fallback-image" width="36" height="32"></image>
```
A recent update (I'm not sure which, but I'm getting the issue in 3.11.0, having upgraded from 3.9.1) has inserted the content `data:,` in the `xlink:href` attribute:
```
<image src="/assets/images/govuk-logotype-crown.png" xlink:href="data:," display="none" class="govuk-header__logotype-crown-fallback-image" width="36" height="32"></image>
```
Our Content Security Policy for does not allow data: URL images, and it seems like this attribute is being interpreted (by Chrome and Safari at least) as an attempt to load a data: URL image.
I'm not sure if this is just the browsers being over-zealous, but I'm also not clear why the `xlink:href` attribute is needed.
**Edit:** I forgot I could just look at the source to see if there are comments about the `Xlink:href` attribute, and indeed there are: https://github.com/alphagov/govuk-frontend/blob/ffe72e5daba72901362c187934d1fae1d58f33e4/src/govuk/components/header/template.njk#L34
So I think it's there to prevent SVG-supporting versions of Internet Explorer from unnecessarily downloading the fallback PNG image?
## Steps to reproduce the issue
1. Create a site using govuk-frontend 3.11.0
2. Implement a Content Security Policy on the site that does not allow data: URL images (for example, `img-src 'self' www.google-analytics.com`)
3. Load the site in a browser that supports Content Security Policy
## Actual vs expected behaviour
Expected: no console errors.
Actual:
> Refused to load the image 'data:,' because it violates the following Content Security Policy directive: "img-src 'self' www.google-analytics.com".
## Environment (where applicable)
<!-- Details of your operating system, browser and the version of GOVUK Frontend you’re using may help us to reproduce your issue. -->
- Operating system: macOS Catalina 10.15.7
- Browser: Chrome
- Browser version: 90.0.4430.85 (Official Build) (x86_64)
- GOV.UK Frontend Version: 3.11.0
| 1.0 | xlink:href="data:," attribute on crown image is triggering Content Security Policy error - ## Description of the issue
Previous releases of govuk-frontend included the crown logo using this HTML:
```
<image src="/assets/images/govuk-logotype-crown.png" xlink:href="" class="govuk-header__logotype-crown-fallback-image" width="36" height="32"></image>
```
A recent update (I'm not sure which, but I'm getting the issue in 3.11.0, having upgraded from 3.9.1) has inserted the content `data:,` in the `xlink:href` attribute:
```
<image src="/assets/images/govuk-logotype-crown.png" xlink:href="data:," display="none" class="govuk-header__logotype-crown-fallback-image" width="36" height="32"></image>
```
Our Content Security Policy for does not allow data: URL images, and it seems like this attribute is being interpreted (by Chrome and Safari at least) as an attempt to load a data: URL image.
I'm not sure if this is just the browsers being over-zealous, but I'm also not clear why the `xlink:href` attribute is needed.
**Edit:** I forgot I could just look at the source to see if there are comments about the `Xlink:href` attribute, and indeed there are: https://github.com/alphagov/govuk-frontend/blob/ffe72e5daba72901362c187934d1fae1d58f33e4/src/govuk/components/header/template.njk#L34
So I think it's there to prevent SVG-supporting versions of Internet Explorer from unnecessarily downloading the fallback PNG image?
## Steps to reproduce the issue
1. Create a site using govuk-frontend 3.11.0
2. Implement a Content Security Policy on the site that does not allow data: URL images (for example, `img-src 'self' www.google-analytics.com`)
3. Load the site in a browser that supports Content Security Policy
## Actual vs expected behaviour
Expected: no console errors.
Actual:
> Refused to load the image 'data:,' because it violates the following Content Security Policy directive: "img-src 'self' www.google-analytics.com".
## Environment (where applicable)
<!-- Details of your operating system, browser and the version of GOVUK Frontend you’re using may help us to reproduce your issue. -->
- Operating system: macOS Catalina 10.15.7
- Browser: Chrome
- Browser version: 90.0.4430.85 (Official Build) (x86_64)
- GOV.UK Frontend Version: 3.11.0
| priority | xlink href data attribute on crown image is triggering content security policy error description of the issue previous releases of govuk frontend included the crown logo using this html a recent update i m not sure which but i m getting the issue in having upgraded from has inserted the content data in the xlink href attribute our content security policy for does not allow data url images and it seems like this attribute is being interpreted by chrome and safari at least as an attempt to load a data url image i m not sure if this is just the browsers being over zealous but i m also not clear why the xlink href attribute is needed edit i forgot i could just look at the source to see if there are comments about the xlink href attribute and indeed there are so i think it s there to prevent svg supporting versions of internet explorer from unnecessarily downloading the fallback png image steps to reproduce the issue create a site using govuk frontend implement a content security policy on the site that does not allow data url images for example img src self load the site in a browser that supports content security policy actual vs expected behaviour expected no console errors actual refused to load the image data because it violates the following content security policy directive img src self environment where applicable operating system macos catalina browser chrome browser version official build gov uk frontend version | 1 |
254,229 | 8,071,570,884 | IssuesEvent | 2018-08-06 13:35:42 | wso2/product-is | https://api.github.com/repos/wso2/product-is | closed | Document should mention how we can get JWT assertion to include | Affected/5.5.0-Alpha Priority/Highest Type/Docs | Document [1] should mention how we can get JWT assertion to include
[1] https://docs.wso2.com/display/IS550/Private+Key+JWT+Client+Authentication+for+OIDC
Both curl commands need <jwt_assertion> value to be passed. It is not mentioned how to retrieve them in the doc | 1.0 | Document should mention how we can get JWT assertion to include - Document [1] should mention how we can get JWT assertion to include
[1] https://docs.wso2.com/display/IS550/Private+Key+JWT+Client+Authentication+for+OIDC
Both curl commands need <jwt_assertion> value to be passed. It is not mentioned how to retrieve them in the doc | priority | document should mention how we can get jwt assertion to include document should mention how we can get jwt assertion to include both curl commands need value to be passed it is not mentioned how to retrieve them in the doc | 1 |
294,640 | 9,037,926,935 | IssuesEvent | 2019-02-09 15:31:29 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | opened | net/sockets: send/sendto broken | area: Networking bug priority: high | **Describe the bug**
The send/sendto functions used in a TCP connection always return an error.
This has been introduced by commit 083470a14a52234f494ad2a302497d309657ac79.
**To Reproduce**
Steps to reproduce the behavior:
1. Build `samples/net/sockets/dumb_http_server`
2. Try to download a file from the board using for example `wget` or `curl`
3. The download fails
**Expected behavior**
Download from the board is successful.
**Impact**
The IP stack is unusable.
**Screenshots or console output**
Logs from Zephyr:
```
[00:00:00.000,040] <inf> i2c_sam_twihs: Device I2C_0 initialized
[00:00:00.001,220] <inf> eth_sam: MAC: fc:c2:3d:12:e9:21
[00:00:00.001,312] <inf> eth_sam: Queue 0 activated
[00:00:00.001,315] <inf> eth_sam_phy: Soft Reset of ETH PHY
[00:00:00.140,015] <inf> eth_sam_phy: PHYID: 0x221561 at addr: 0
***** Booting Zephyr OS zephyr-v1.13.0-3876-g083470a14a *****
[00:00:02.820,016] <inf> eth_sam_phy: common abilities: speed 100 Mb, full duplex
[00:00:02.825,337] <inf> net_config: Initializing network
[00:00:02.825,360] <inf> net_config: IPv4 address: 192.0.2.1
Single-threaded dumb HTTP server waits for a connection on port 8080...
Connection #0 from 192.0.2.2
Error sending data to peer
Connection from closed
```
Logs from the host:
```
$ wget 192.0.2.1:8080
--2019-02-09 16:28:41-- http://192.0.2.1:8080/
Connecting to 192.0.2.1:8080... connected.
HTTP request sent, awaiting response... No data received.
Retrying.
--2019-02-09 16:28:42-- (try: 2) http://192.0.2.1:8080/
Connecting to 192.0.2.1:8080... connected.
HTTP request sent, awaiting response... No data received.
Retrying.
--2019-02-09 16:28:44-- (try: 3) http://192.0.2.1:8080/
Connecting to 192.0.2.1:8080... connected.
HTTP request sent, awaiting response... No data received.
Retrying.
```
**Environment (please complete the following information):**
- OS: Linux
- Toolchain: Debian toolchain
- Commit SHA: any commit more recent than 083470a14a52234f494ad2a302497d309657ac79 | 1.0 | net/sockets: send/sendto broken - **Describe the bug**
The send/sendto functions used in a TCP connection always return an error.
This has been introduced by commit 083470a14a52234f494ad2a302497d309657ac79.
**To Reproduce**
Steps to reproduce the behavior:
1. Build `samples/net/sockets/dumb_http_server`
2. Try to download a file from the board using for example `wget` or `curl`
3. The download fails
**Expected behavior**
Download from the board is successful.
**Impact**
The IP stack is unusable.
**Screenshots or console output**
Logs from Zephyr:
```
[00:00:00.000,040] <inf> i2c_sam_twihs: Device I2C_0 initialized
[00:00:00.001,220] <inf> eth_sam: MAC: fc:c2:3d:12:e9:21
[00:00:00.001,312] <inf> eth_sam: Queue 0 activated
[00:00:00.001,315] <inf> eth_sam_phy: Soft Reset of ETH PHY
[00:00:00.140,015] <inf> eth_sam_phy: PHYID: 0x221561 at addr: 0
***** Booting Zephyr OS zephyr-v1.13.0-3876-g083470a14a *****
[00:00:02.820,016] <inf> eth_sam_phy: common abilities: speed 100 Mb, full duplex
[00:00:02.825,337] <inf> net_config: Initializing network
[00:00:02.825,360] <inf> net_config: IPv4 address: 192.0.2.1
Single-threaded dumb HTTP server waits for a connection on port 8080...
Connection #0 from 192.0.2.2
Error sending data to peer
Connection from closed
```
Logs from the host:
```
$ wget 192.0.2.1:8080
--2019-02-09 16:28:41-- http://192.0.2.1:8080/
Connecting to 192.0.2.1:8080... connected.
HTTP request sent, awaiting response... No data received.
Retrying.
--2019-02-09 16:28:42-- (try: 2) http://192.0.2.1:8080/
Connecting to 192.0.2.1:8080... connected.
HTTP request sent, awaiting response... No data received.
Retrying.
--2019-02-09 16:28:44-- (try: 3) http://192.0.2.1:8080/
Connecting to 192.0.2.1:8080... connected.
HTTP request sent, awaiting response... No data received.
Retrying.
```
**Environment (please complete the following information):**
- OS: Linux
- Toolchain: Debian toolchain
- Commit SHA: any commit more recent than 083470a14a52234f494ad2a302497d309657ac79 | priority | net sockets send sendto broken describe the bug the send sendto functions used in a tcp connection always return an error this has been introduced by commit to reproduce steps to reproduce the behavior build samples net sockets dumb http server try to download a file from the board using for example wget or curl the download fails expected behavior download from the board is successful impact the ip stack is unusable screenshots or console output logs from zephyr sam twihs device initialized eth sam mac fc eth sam queue activated eth sam phy soft reset of eth phy eth sam phy phyid at addr booting zephyr os zephyr eth sam phy common abilities speed mb full duplex net config initializing network net config address single threaded dumb http server waits for a connection on port connection from error sending data to peer connection from closed logs from the host wget connecting to connected http request sent awaiting response no data received retrying try connecting to connected http request sent awaiting response no data received retrying try connecting to connected http request sent awaiting response no data received retrying environment please complete the following information os linux toolchain debian toolchain commit sha any commit more recent than | 1 |
23,726 | 2,660,721,239 | IssuesEvent | 2015-03-19 09:50:32 | cs2103jan2015-t09-4j/main | https://api.github.com/repos/cs2103jan2015-t09-4j/main | closed | User can block a time slot by not specifying unknown task information. | Intermediate priority.high | so that I can reserve the time slot for tasks that are unconfirmed
| 1.0 | User can block a time slot by not specifying unknown task information. - so that I can reserve the time slot for tasks that are unconfirmed
| priority | user can block a time slot by not specifying unknown task information so that i can reserve the time slot for tasks that are unconfirmed | 1 |
780,680 | 27,404,035,884 | IssuesEvent | 2023-03-01 04:33:05 | ballerina-platform/ballerina-lang | https://api.github.com/repos/ballerina-platform/ballerina-lang | closed | Type test expression on int subtypes gives a compilation error in some cases | Type/Bug Priority/High Team/CompilerFE Reason/EngineeringMistake Deferred | **Description:**
<!-- Give a brief description of the bug -->
Currently for K=8,16,32 and M=8,16,32
If `int:SignedK a = 1;` , checking `a is int:UnsignedM` or `a is byte` will give a compilation error if `M>=K`, otherwise no error
If `int:UnsignedK a = 1;` or `byte a = 1;` , checking `a is int:SignedM` will give a compilation error if `M<=K`, otherwise no error
**Steps to reproduce:**
```ballerina
public function main() {
int:Signed8 a = 1;
boolean ans = a is int:Unsigned8;
}
```
gives
```logtalk
Compiling source
temp.bal
ERROR [temp.bal:(5:20,5:38)] incompatible types: 'int:Signed8' will not be matched to 'int:Unsigned8'
error: compilation contains errors
```
**Affected Versions:**
Ballerina Swan Lake Beta 3
**OS, DB, other environment details and versions:**
**Related Issues (optional):**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
**Suggested Labels (optional):**
<!-- 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-->
Team/CompilerFE
**Suggested Assignees (optional):**
<!--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-->
| 1.0 | Type test expression on int subtypes gives a compilation error in some cases - **Description:**
<!-- Give a brief description of the bug -->
Currently for K=8,16,32 and M=8,16,32
If `int:SignedK a = 1;` , checking `a is int:UnsignedM` or `a is byte` will give a compilation error if `M>=K`, otherwise no error
If `int:UnsignedK a = 1;` or `byte a = 1;` , checking `a is int:SignedM` will give a compilation error if `M<=K`, otherwise no error
**Steps to reproduce:**
```ballerina
public function main() {
int:Signed8 a = 1;
boolean ans = a is int:Unsigned8;
}
```
gives
```logtalk
Compiling source
temp.bal
ERROR [temp.bal:(5:20,5:38)] incompatible types: 'int:Signed8' will not be matched to 'int:Unsigned8'
error: compilation contains errors
```
**Affected Versions:**
Ballerina Swan Lake Beta 3
**OS, DB, other environment details and versions:**
**Related Issues (optional):**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
**Suggested Labels (optional):**
<!-- 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-->
Team/CompilerFE
**Suggested Assignees (optional):**
<!--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-->
| priority | type test expression on int subtypes gives a compilation error in some cases description currently for k and m if int signedk a checking a is int unsignedm or a is byte will give a compilation error if m k otherwise no error if int unsignedk a or byte a checking a is int signedm will give a compilation error if m k otherwise no error steps to reproduce ballerina public function main int a boolean ans a is int gives logtalk compiling source temp bal error incompatible types int will not be matched to int error compilation contains errors affected versions ballerina swan lake beta os db other environment details and versions related issues optional suggested labels optional team compilerfe suggested assignees optional | 1 |
768,809 | 26,981,856,597 | IssuesEvent | 2023-02-09 13:40:12 | kubermatic/kubermatic | https://api.github.com/repos/kubermatic/kubermatic | opened | KubeVirt node eviction leaves VolumeAttachment stuck to removed node | kind/bug priority/high | ### What happened?
<!-- Try to provide as much information as possible.
If you're reporting a security issue, please check the guidelines for reporting security issues:
https://github.com/kubermatic/kubermatic/blob/main/CONTRIBUTING.md#reporting-a-security-vulnerability -->
While testing #11736, I created a PVC to make sure that evicting a `virt-launcher` pod would allow me to reschedule workloads with storage within the KubeVirt user cluster.
However, I noticed that a Pod trying to mount a volume that was attached to a node evicted on the KubeVirt infra side (the node-eviction-controller drains and deletes the VM and `Node` object) is stuck with:
```
Warning FailedAttachVolume 3m40s attachdetach-controller Multi-Attach error for volume "pvc-04bf24ee-a755-4bee-bbcb-559aca75d862" Volume is already exclusively attached to one node and can't be attached to another
```
I looked for `volumeattachment` resources and found this one:
```
NAME ATTACHER PV NODE ATTACHED AGE
csi-6b42e564b2e31809881c86d5385e7711d0c094bb60039095d14178daabc6ecc0 csi.kubevirt.io pvc-04bf24ee-a755-4bee-bbcb-559aca75d862 zhtjh9blrt-worker-w8z64w-5f679f4c95-68tvr true 10m
```
This references a node no longer existing. Looking at the volume attachment in detail, it has a deletion timestamp and this is the status of it:
```yaml
status:
attachError:
message: 'rpc error: code = Unknown desc = Operation cannot be fulfilled on
virtualmachineinstance.kubevirt.io "zhtjh9blrt-worker-w8z64w-5f679f4c95-68tvr":
Unable to add volume [pvc-04bf24ee-a755-4bee-bbcb-559aca75d862] because it
already exists'
time: "2023-02-09T13:17:19Z"
attached: true
detachError:
message: 'rpc error: code = NotFound desc = failed to find VM with domain.firmware.uuid
6d9a9661-0871-5893-9d13-60a352d74d6e'
time: "2023-02-09T13:27:11Z"
```
### Expected behavior
<!-- What did you expected to happen? -->
The volume can be re-mounted on another node since the initial pod and node both got terminated.
### How to reproduce the issue?
<!-- Please provide as much information as possible, so we can reproduce the issue on our own. -->
1. Create KubeVirt user cluster on QA.
2. Create PVC and Pod from manifests provided below ("Provide your KKP manifests").
3. Wait for PVC and Pod to be created, scheduled and started.
4. Use [kubectl-evict](https://github.com/ueokande/kubectl-evict) on the KubeVirt infra cluster, targeting the `virt-launcher` Pod that is hosting the Node that our `app` Pod got scheduled to.
5. Wait for the node to be drained and a new node joining the cluster.
6. Re-apply the Pod manifest, trying to mount the PVC that should be mountable since no other active Pod mounts it.
7. Observe Pod not starting.
### How is your environment configured?
- KKP version: v2.22.0-alpha.0
- Shared or separate master/seed clusters?: shared
### Provide your KKP manifest here (if applicable)
<!-- Providing an applicable manifest (KubermaticConfiguration, Seed, Cluster or other resources) will help us to reproduce the issue.
Please make sure to redact all secrets (e.g. passwords, URLs...)! -->
<details>
```yaml
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: pvc
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 4Gi
---
apiVersion: v1
kind: Pod
metadata:
name: app
spec:
containers:
- name: app
image: centos
command: ["/bin/sh"]
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
volumeMounts:
- name: persistent-storage
mountPath: /data
volumes:
- name: persistent-storage
persistentVolumeClaim:
claimName: pvc
```
</details>
### What cloud provider are you running on?
<!-- AWS, Azure, DigitalOcean, GCP, Hetzner Cloud, Nutanix, OpenStack, Equinix Metal (Packet), VMware vSphere, Other (e.g. baremetal or non-natively supported provider) -->
KubeVirt
### What operating system are you running in your user cluster?
<!-- Ubuntu 20.04, CentOS 7, Rocky Linux 8, Flatcar Linux, ... (optional, bug might not be related to user cluster) -->
Ubuntu 22.04
### Additional information
<!-- Additional information about the bug you're reporting (optional). -->
| 1.0 | KubeVirt node eviction leaves VolumeAttachment stuck to removed node - ### What happened?
<!-- Try to provide as much information as possible.
If you're reporting a security issue, please check the guidelines for reporting security issues:
https://github.com/kubermatic/kubermatic/blob/main/CONTRIBUTING.md#reporting-a-security-vulnerability -->
While testing #11736, I created a PVC to make sure that evicting a `virt-launcher` pod would allow me to reschedule workloads with storage within the KubeVirt user cluster.
However, I noticed that a Pod trying to mount a volume that was attached to a node evicted on the KubeVirt infra side (the node-eviction-controller drains and deletes the VM and `Node` object) is stuck with:
```
Warning FailedAttachVolume 3m40s attachdetach-controller Multi-Attach error for volume "pvc-04bf24ee-a755-4bee-bbcb-559aca75d862" Volume is already exclusively attached to one node and can't be attached to another
```
I looked for `volumeattachment` resources and found this one:
```
NAME ATTACHER PV NODE ATTACHED AGE
csi-6b42e564b2e31809881c86d5385e7711d0c094bb60039095d14178daabc6ecc0 csi.kubevirt.io pvc-04bf24ee-a755-4bee-bbcb-559aca75d862 zhtjh9blrt-worker-w8z64w-5f679f4c95-68tvr true 10m
```
This references a node no longer existing. Looking at the volume attachment in detail, it has a deletion timestamp and this is the status of it:
```yaml
status:
attachError:
message: 'rpc error: code = Unknown desc = Operation cannot be fulfilled on
virtualmachineinstance.kubevirt.io "zhtjh9blrt-worker-w8z64w-5f679f4c95-68tvr":
Unable to add volume [pvc-04bf24ee-a755-4bee-bbcb-559aca75d862] because it
already exists'
time: "2023-02-09T13:17:19Z"
attached: true
detachError:
message: 'rpc error: code = NotFound desc = failed to find VM with domain.firmware.uuid
6d9a9661-0871-5893-9d13-60a352d74d6e'
time: "2023-02-09T13:27:11Z"
```
### Expected behavior
<!-- What did you expected to happen? -->
The volume can be re-mounted on another node since the initial pod and node both got terminated.
### How to reproduce the issue?
<!-- Please provide as much information as possible, so we can reproduce the issue on our own. -->
1. Create KubeVirt user cluster on QA.
2. Create PVC and Pod from manifests provided below ("Provide your KKP manifests").
3. Wait for PVC and Pod to be created, scheduled and started.
4. Use [kubectl-evict](https://github.com/ueokande/kubectl-evict) on the KubeVirt infra cluster, targeting the `virt-launcher` Pod that is hosting the Node that our `app` Pod got scheduled to.
5. Wait for the node to be drained and a new node joining the cluster.
6. Re-apply the Pod manifest, trying to mount the PVC that should be mountable since no other active Pod mounts it.
7. Observe Pod not starting.
### How is your environment configured?
- KKP version: v2.22.0-alpha.0
- Shared or separate master/seed clusters?: shared
### Provide your KKP manifest here (if applicable)
<!-- Providing an applicable manifest (KubermaticConfiguration, Seed, Cluster or other resources) will help us to reproduce the issue.
Please make sure to redact all secrets (e.g. passwords, URLs...)! -->
<details>
```yaml
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: pvc
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 4Gi
---
apiVersion: v1
kind: Pod
metadata:
name: app
spec:
containers:
- name: app
image: centos
command: ["/bin/sh"]
args: ["-c", "while true; do echo $(date -u) >> /data/out.txt; sleep 5; done"]
volumeMounts:
- name: persistent-storage
mountPath: /data
volumes:
- name: persistent-storage
persistentVolumeClaim:
claimName: pvc
```
</details>
### What cloud provider are you running on?
<!-- AWS, Azure, DigitalOcean, GCP, Hetzner Cloud, Nutanix, OpenStack, Equinix Metal (Packet), VMware vSphere, Other (e.g. baremetal or non-natively supported provider) -->
KubeVirt
### What operating system are you running in your user cluster?
<!-- Ubuntu 20.04, CentOS 7, Rocky Linux 8, Flatcar Linux, ... (optional, bug might not be related to user cluster) -->
Ubuntu 22.04
### Additional information
<!-- Additional information about the bug you're reporting (optional). -->
| priority | kubevirt node eviction leaves volumeattachment stuck to removed node what happened try to provide as much information as possible if you re reporting a security issue please check the guidelines for reporting security issues while testing i created a pvc to make sure that evicting a virt launcher pod would allow me to reschedule workloads with storage within the kubevirt user cluster however i noticed that a pod trying to mount a volume that was attached to a node evicted on the kubevirt infra side the node eviction controller drains and deletes the vm and node object is stuck with warning failedattachvolume attachdetach controller multi attach error for volume pvc bbcb volume is already exclusively attached to one node and can t be attached to another i looked for volumeattachment resources and found this one name attacher pv node attached age csi csi kubevirt io pvc bbcb worker true this references a node no longer existing looking at the volume attachment in detail it has a deletion timestamp and this is the status of it yaml status attacherror message rpc error code unknown desc operation cannot be fulfilled on virtualmachineinstance kubevirt io worker unable to add volume because it already exists time attached true detacherror message rpc error code notfound desc failed to find vm with domain firmware uuid time expected behavior the volume can be re mounted on another node since the initial pod and node both got terminated how to reproduce the issue create kubevirt user cluster on qa create pvc and pod from manifests provided below provide your kkp manifests wait for pvc and pod to be created scheduled and started use on the kubevirt infra cluster targeting the virt launcher pod that is hosting the node that our app pod got scheduled to wait for the node to be drained and a new node joining the cluster re apply the pod manifest trying to mount the pvc that should be mountable since no other active pod mounts it observe pod not starting how is your environment configured kkp version alpha shared or separate master seed clusters shared provide your kkp manifest here if applicable providing an applicable manifest kubermaticconfiguration seed cluster or other resources will help us to reproduce the issue please make sure to redact all secrets e g passwords urls yaml apiversion kind persistentvolumeclaim metadata name pvc spec accessmodes readwriteonce resources requests storage apiversion kind pod metadata name app spec containers name app image centos command args volumemounts name persistent storage mountpath data volumes name persistent storage persistentvolumeclaim claimname pvc what cloud provider are you running on kubevirt what operating system are you running in your user cluster ubuntu additional information | 1 |
806,901 | 29,926,059,383 | IssuesEvent | 2023-06-22 05:40:03 | GSM-MSG/SMS-FrontEnd | https://api.github.com/repos/GSM-MSG/SMS-FrontEnd | closed | 모든 api 요청에 toast 적용하기 | 1️⃣ Priority: High ✨ Feature | ### Describe
모든 api요청에 에러 메시지를 추가하고 toast도 적용합니다
### Additional
_No response_ | 1.0 | 모든 api 요청에 toast 적용하기 - ### Describe
모든 api요청에 에러 메시지를 추가하고 toast도 적용합니다
### Additional
_No response_ | priority | 모든 api 요청에 toast 적용하기 describe 모든 api요청에 에러 메시지를 추가하고 toast도 적용합니다 additional no response | 1 |
75,438 | 3,462,442,815 | IssuesEvent | 2015-12-20 23:01:12 | VertNet/georefcalculator | https://api.github.com/repos/VertNet/georefcalculator | closed | Possible error in Promote | bug high priority | I do not know the science behind this but something is off
repro steps:
calc: error only
loc: dist at heading
coord source: gazetteer
coord system: DMS
Lat: 12o 11' 12" N
Long: 11o 12' 56" E
Click Calculate
Click Promote
Actual:
Lat: 12o 11' 12" N
Long: 11o 13' -4" E
Expected, Unknown to me
I find the -4 very suspicious as the allowed range is 0-60
Maybe it should be
Long: 11o 12' 56" E
as before
Continuing
Click Calculate
Actual
Error dialog "-4 is not in the allowed range of 0-60"
Expected
No error dialog
using a local version of the java App has my expected values for Long | 1.0 | Possible error in Promote - I do not know the science behind this but something is off
repro steps:
calc: error only
loc: dist at heading
coord source: gazetteer
coord system: DMS
Lat: 12o 11' 12" N
Long: 11o 12' 56" E
Click Calculate
Click Promote
Actual:
Lat: 12o 11' 12" N
Long: 11o 13' -4" E
Expected, Unknown to me
I find the -4 very suspicious as the allowed range is 0-60
Maybe it should be
Long: 11o 12' 56" E
as before
Continuing
Click Calculate
Actual
Error dialog "-4 is not in the allowed range of 0-60"
Expected
No error dialog
using a local version of the java App has my expected values for Long | priority | possible error in promote i do not know the science behind this but something is off repro steps calc error only loc dist at heading coord source gazetteer coord system dms lat n long e click calculate click promote actual lat n long e expected unknown to me i find the very suspicious as the allowed range is maybe it should be long e as before continuing click calculate actual error dialog is not in the allowed range of expected no error dialog using a local version of the java app has my expected values for long | 1 |
372,946 | 11,030,825,750 | IssuesEvent | 2019-12-06 16:28:43 | cuappdev/eatery-android | https://api.github.com/repos/cuappdev/eatery-android | closed | Make MapsActivity into fragment | Priority: High Type: Enhancement | Make MapsActivity into fragment so the bottom navigation bar and other components can be shared. | 1.0 | Make MapsActivity into fragment - Make MapsActivity into fragment so the bottom navigation bar and other components can be shared. | priority | make mapsactivity into fragment make mapsactivity into fragment so the bottom navigation bar and other components can be shared | 1 |
662,736 | 22,151,347,817 | IssuesEvent | 2022-06-03 17:09:54 | RAF-SI-2021/Banka-Back | https://api.github.com/repos/RAF-SI-2021/Banka-Back | closed | Dopuniti sistem za postavljanje porudžbina | priority/high area/backend | U entitet za ordere je potrebno dodati sledeće elemente:
* Porudžbina odobrena
* Porudžbinu odobrio
* Porudžbina završena
* Poslednja modifikacija
Ovim treba omogućiti odobrenje i odbijanje porudžbina od strane supervizora.
Što se tiće atributa poslednja modifikacija, probati to dohvatiti iz postgresql-a, trebalo bi da automatski generiše ovo. | 1.0 | Dopuniti sistem za postavljanje porudžbina - U entitet za ordere je potrebno dodati sledeće elemente:
* Porudžbina odobrena
* Porudžbinu odobrio
* Porudžbina završena
* Poslednja modifikacija
Ovim treba omogućiti odobrenje i odbijanje porudžbina od strane supervizora.
Što se tiće atributa poslednja modifikacija, probati to dohvatiti iz postgresql-a, trebalo bi da automatski generiše ovo. | priority | dopuniti sistem za postavljanje porudžbina u entitet za ordere je potrebno dodati sledeće elemente porudžbina odobrena porudžbinu odobrio porudžbina završena poslednja modifikacija ovim treba omogućiti odobrenje i odbijanje porudžbina od strane supervizora što se tiće atributa poslednja modifikacija probati to dohvatiti iz postgresql a trebalo bi da automatski generiše ovo | 1 |
273,980 | 8,555,739,155 | IssuesEvent | 2018-11-08 10:55:19 | gluster/glusterd2 | https://api.github.com/repos/gluster/glusterd2 | closed | heal info fails when one brick is killed in a volume | GCS/0.3 in progress priority: high | Heal Info fails when one of the bricks of a volume is not online.
### Observed behavior
strconv.ParseInt: parsing "-": invalid syntax
### Expected/desired behavior
Heal Info should successfully reflect heal related information for all online bricks and proper message like "Transport endpoint not connectd for the killed brick"
### Details on how to reproduce (minimal and precise)
- Create a replica volume
- Start the volume and check heal info on the volume
- Now kill one of the bricks of the volume
- Run heal info command again
### Information about the environment:
- Glusterd2 version used (e.g. v4.1.0 or master):
- Operating system used: any
- Glusterd2 compiled from sources, as a package (rpm/deb), or container: source
- Using External ETCD: (yes/no, if yes ETCD version): external
- If container, which container image:
- Using kubernetes, openshift, or direct install:
- If kubernetes/openshift, is gluster running inside kubernetes/openshift or outside:
### Other useful information
- glusterd2 config files from all nodes (default /etc/glusterd2/glusterd2.toml)
- glusterd2 log files from all nodes (default /var/log/glusterd2/glusterd2.log)
- ETCD configuration
- Contents of `uuid.toml` from all nodes (default /var/lib/glusterd2/uuid.toml)
- Output of `statedump` from any one of the node
### Useful commands
- To get glusterd2 version
```
glusterd2 --version
```
- To get ETCD version
```
etcd --version
```
- To get output of statedump
```
curl http://glusterd2-IP:glusterd2-Port/statedump
``` | 1.0 | heal info fails when one brick is killed in a volume - Heal Info fails when one of the bricks of a volume is not online.
### Observed behavior
strconv.ParseInt: parsing "-": invalid syntax
### Expected/desired behavior
Heal Info should successfully reflect heal related information for all online bricks and proper message like "Transport endpoint not connectd for the killed brick"
### Details on how to reproduce (minimal and precise)
- Create a replica volume
- Start the volume and check heal info on the volume
- Now kill one of the bricks of the volume
- Run heal info command again
### Information about the environment:
- Glusterd2 version used (e.g. v4.1.0 or master):
- Operating system used: any
- Glusterd2 compiled from sources, as a package (rpm/deb), or container: source
- Using External ETCD: (yes/no, if yes ETCD version): external
- If container, which container image:
- Using kubernetes, openshift, or direct install:
- If kubernetes/openshift, is gluster running inside kubernetes/openshift or outside:
### Other useful information
- glusterd2 config files from all nodes (default /etc/glusterd2/glusterd2.toml)
- glusterd2 log files from all nodes (default /var/log/glusterd2/glusterd2.log)
- ETCD configuration
- Contents of `uuid.toml` from all nodes (default /var/lib/glusterd2/uuid.toml)
- Output of `statedump` from any one of the node
### Useful commands
- To get glusterd2 version
```
glusterd2 --version
```
- To get ETCD version
```
etcd --version
```
- To get output of statedump
```
curl http://glusterd2-IP:glusterd2-Port/statedump
``` | priority | heal info fails when one brick is killed in a volume heal info fails when one of the bricks of a volume is not online observed behavior strconv parseint parsing invalid syntax expected desired behavior heal info should successfully reflect heal related information for all online bricks and proper message like transport endpoint not connectd for the killed brick details on how to reproduce minimal and precise create a replica volume start the volume and check heal info on the volume now kill one of the bricks of the volume run heal info command again information about the environment version used e g or master operating system used any compiled from sources as a package rpm deb or container source using external etcd yes no if yes etcd version external if container which container image using kubernetes openshift or direct install if kubernetes openshift is gluster running inside kubernetes openshift or outside other useful information config files from all nodes default etc toml log files from all nodes default var log log etcd configuration contents of uuid toml from all nodes default var lib uuid toml output of statedump from any one of the node useful commands to get version version to get etcd version etcd version to get output of statedump curl | 1 |
465,020 | 13,350,000,704 | IssuesEvent | 2020-08-30 05:05:43 | codeRIT/hackathon-manager | https://api.github.com/repos/codeRIT/hackathon-manager | closed | Migrate from SparkPost to SendGrid | 2.0 high priority | SparkPost is killing their free plan and replacing it with a "test" 500 emails/month (100/day max); the cheapest plan up from that is $20/month for 15,000 emails/month, which is already much more than the average hackathon needs.
Thankfully, Mailgun still offers a free 10,000 emails/month. We should switch to them as the de-facto email provider.
In the future we should probably support multiple native providers (SendGrid, AWS, Mandrill, etc) but I think this is fine for now | 1.0 | Migrate from SparkPost to SendGrid - SparkPost is killing their free plan and replacing it with a "test" 500 emails/month (100/day max); the cheapest plan up from that is $20/month for 15,000 emails/month, which is already much more than the average hackathon needs.
Thankfully, Mailgun still offers a free 10,000 emails/month. We should switch to them as the de-facto email provider.
In the future we should probably support multiple native providers (SendGrid, AWS, Mandrill, etc) but I think this is fine for now | priority | migrate from sparkpost to sendgrid sparkpost is killing their free plan and replacing it with a test emails month day max the cheapest plan up from that is month for emails month which is already much more than the average hackathon needs thankfully mailgun still offers a free emails month we should switch to them as the de facto email provider in the future we should probably support multiple native providers sendgrid aws mandrill etc but i think this is fine for now | 1 |
611,971 | 18,987,889,344 | IssuesEvent | 2021-11-22 00:49:36 | collinbarrett/FilterLists | https://api.github.com/repos/collinbarrett/FilterLists | closed | fix footer links in Chromium browsers | bug web high priority | The footer links in Chrome/Edge do not seem to be clickable. They are in Firefox. | 1.0 | fix footer links in Chromium browsers - The footer links in Chrome/Edge do not seem to be clickable. They are in Firefox. | priority | fix footer links in chromium browsers the footer links in chrome edge do not seem to be clickable they are in firefox | 1 |
342,741 | 10,321,141,690 | IssuesEvent | 2019-08-30 23:32:55 | octobercms/october | https://api.github.com/repos/octobercms/october | closed | php artisan down throws uncaught 503 and yields an error page | Priority: High Status: Accepted Type: Enhancement | ##### Expected behavior
`php artisan down` throws `exception HttpException(503)`.
October should catch that exception and activate *maintenance mode*.
##### Actual behavior
October does not catch the exception.
Instead, an error page is issued:
> We're sorry, but an unhandled error occurred. Please see the details below.
> .../vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php line 41
> Type: Undefined
> Exception: Symfony\Component\HttpKernel\Exception\HttpException
```
\*
\* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function handle($request, Closure $next)
{
if ($this->app->isDownForMaintenance()) {
throw new HttpException(503);
}
return $next($request);
}
```
##### Reproduce steps
1. Load the website in a browser
1. On the command line in the top directory of the website where the artisan script resides (eg /var/www/website/), issue `php artisan down` (response is `Application is now in maintenance mode.`)
1. Reload the website in the browser (error message is seen)
1. `php artisan up` successfully reverses the error and the website is back to normal
##### October build
415 (and previous)
| 1.0 | php artisan down throws uncaught 503 and yields an error page - ##### Expected behavior
`php artisan down` throws `exception HttpException(503)`.
October should catch that exception and activate *maintenance mode*.
##### Actual behavior
October does not catch the exception.
Instead, an error page is issued:
> We're sorry, but an unhandled error occurred. Please see the details below.
> .../vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php line 41
> Type: Undefined
> Exception: Symfony\Component\HttpKernel\Exception\HttpException
```
\*
\* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function handle($request, Closure $next)
{
if ($this->app->isDownForMaintenance()) {
throw new HttpException(503);
}
return $next($request);
}
```
##### Reproduce steps
1. Load the website in a browser
1. On the command line in the top directory of the website where the artisan script resides (eg /var/www/website/), issue `php artisan down` (response is `Application is now in maintenance mode.`)
1. Reload the website in the browser (error message is seen)
1. `php artisan up` successfully reverses the error and the website is back to normal
##### October build
415 (and previous)
| priority | php artisan down throws uncaught and yields an error page expected behavior php artisan down throws exception httpexception october should catch that exception and activate maintenance mode actual behavior october does not catch the exception instead an error page is issued we re sorry but an unhandled error occurred please see the details below vendor laravel framework src illuminate foundation http middleware checkformaintenancemode php line type undefined exception symfony component httpkernel exception httpexception throws symfony component httpkernel exception httpexception public function handle request closure next if this app isdownformaintenance throw new httpexception return next request reproduce steps load the website in a browser on the command line in the top directory of the website where the artisan script resides eg var www website issue php artisan down response is application is now in maintenance mode reload the website in the browser error message is seen php artisan up successfully reverses the error and the website is back to normal october build and previous | 1 |
773,459 | 27,158,601,159 | IssuesEvent | 2023-02-17 09:59:24 | workcraft/workcraft | https://api.github.com/repos/workcraft/workcraft | closed | Problem re-opening Refinement and Environment models in an editor window | bug priority:high tag:model:circuit status:confirmed tag:ui tag:model:stg | If a work file of _Refinement_ (for Circuit component or STG model) or _Environment_ (for Circuit model) is loaded, but its editor is closed, then trying to open it via _Property editor_ or popup menu does not have any effect (its editor does not re-open).
Note that an editor can still be open by double-clicking of the corresponding work file in the _Workspace_ panel.
| 1.0 | Problem re-opening Refinement and Environment models in an editor window - If a work file of _Refinement_ (for Circuit component or STG model) or _Environment_ (for Circuit model) is loaded, but its editor is closed, then trying to open it via _Property editor_ or popup menu does not have any effect (its editor does not re-open).
Note that an editor can still be open by double-clicking of the corresponding work file in the _Workspace_ panel.
| priority | problem re opening refinement and environment models in an editor window if a work file of refinement for circuit component or stg model or environment for circuit model is loaded but its editor is closed then trying to open it via property editor or popup menu does not have any effect its editor does not re open note that an editor can still be open by double clicking of the corresponding work file in the workspace panel | 1 |
642,617 | 20,908,425,126 | IssuesEvent | 2022-03-24 06:30:09 | AY2122S2-CS2103T-T13-3/tp | https://api.github.com/repos/AY2122S2-CS2103T-T13-3/tp | closed | Update MeetingEntry DateTime | type.Enhancement priority.High | Instead of String, the field should now store a `LocalDateTime`.
`MeetingEntry#getDateTime` should be updated to do the recurrence logic, original dateTime won't change
- `MeetingEntry#equals` and `MeetingEntry#toString` needs to use this getter as well | 1.0 | Update MeetingEntry DateTime - Instead of String, the field should now store a `LocalDateTime`.
`MeetingEntry#getDateTime` should be updated to do the recurrence logic, original dateTime won't change
- `MeetingEntry#equals` and `MeetingEntry#toString` needs to use this getter as well | priority | update meetingentry datetime instead of string the field should now store a localdatetime meetingentry getdatetime should be updated to do the recurrence logic original datetime won t change meetingentry equals and meetingentry tostring needs to use this getter as well | 1 |
119,066 | 4,760,413,806 | IssuesEvent | 2016-10-25 02:58:27 | cyberpwnn/GlacialRealms | https://api.github.com/repos/cyberpwnn/GlacialRealms | closed | Randomly going into /v | 1 Hour ETA bug general high priority | LOTS of the time players complain that i'm in /v when i'm not, i can tell since i don't have invis 2 effect on. Yet they still cant TAB my name, message me, see me etc. | 1.0 | Randomly going into /v - LOTS of the time players complain that i'm in /v when i'm not, i can tell since i don't have invis 2 effect on. Yet they still cant TAB my name, message me, see me etc. | priority | randomly going into v lots of the time players complain that i m in v when i m not i can tell since i don t have invis effect on yet they still cant tab my name message me see me etc | 1 |
511,519 | 14,862,193,651 | IssuesEvent | 2021-01-19 01:11:04 | nlpsandbox/nlpsandbox-schemas | https://api.github.com/repos/nlpsandbox/nlpsandbox-schemas | closed | Add dedicated schema for ID for the Data Node | Priority: High | - Create schema for object ID when relevant
- User this ID schema in
- object schema
- for the schema of path and query parameters | 1.0 | Add dedicated schema for ID for the Data Node - - Create schema for object ID when relevant
- User this ID schema in
- object schema
- for the schema of path and query parameters | priority | add dedicated schema for id for the data node create schema for object id when relevant user this id schema in object schema for the schema of path and query parameters | 1 |
83,536 | 3,637,007,240 | IssuesEvent | 2016-02-12 08:33:02 | ClinGen/clincoded | https://api.github.com/repos/ClinGen/clincoded | closed | Change background/text color or add boxing to differentiate non-selected PMIDs | priority: high R4 release ready | In a record the selected PMID (in the left hand scroll bar) and its associated abstract (in the central panel) have a white background. The non-selected PMIDs (in the left hand scroll bar) have a light gray background and so it appears that these have been highlighted.
It needs to be more obvious that the non-selected PMIDs have not been selected. Options discussed include:
- making the non-selected PMIDs a darker gray
- graying out the text
- boxing the selected PMID and associated abstract to more clearly differentiate it from the non-selected PMIDs | 1.0 | Change background/text color or add boxing to differentiate non-selected PMIDs - In a record the selected PMID (in the left hand scroll bar) and its associated abstract (in the central panel) have a white background. The non-selected PMIDs (in the left hand scroll bar) have a light gray background and so it appears that these have been highlighted.
It needs to be more obvious that the non-selected PMIDs have not been selected. Options discussed include:
- making the non-selected PMIDs a darker gray
- graying out the text
- boxing the selected PMID and associated abstract to more clearly differentiate it from the non-selected PMIDs | priority | change background text color or add boxing to differentiate non selected pmids in a record the selected pmid in the left hand scroll bar and its associated abstract in the central panel have a white background the non selected pmids in the left hand scroll bar have a light gray background and so it appears that these have been highlighted it needs to be more obvious that the non selected pmids have not been selected options discussed include making the non selected pmids a darker gray graying out the text boxing the selected pmid and associated abstract to more clearly differentiate it from the non selected pmids | 1 |
357,472 | 10,606,857,127 | IssuesEvent | 2019-10-11 01:13:20 | AY1920S1-CS2113T-T09-3/main | https://api.github.com/repos/AY1920S1-CS2113T-T09-3/main | closed | User Story 2: As a new user, I can start the game | priority.High | so that I can start learning concepts immediately | 1.0 | User Story 2: As a new user, I can start the game - so that I can start learning concepts immediately | priority | user story as a new user i can start the game so that i can start learning concepts immediately | 1 |
620,021 | 19,543,381,404 | IssuesEvent | 2022-01-01 11:08:13 | NottCurious/TMIndiaBot | https://api.github.com/repos/NottCurious/TMIndiaBot | closed | Reimplement Generic Cog - v2.0 | enhancement priority: high in progress cog | Reimplement the Following Commands
* Ping
* Version
* Source Code
* Server Invite
* Hall of Fame
* Next Project
* Invite Bot
* Testing Server
* Suggest
* Command List
* Reload All Cogs | 1.0 | Reimplement Generic Cog - v2.0 - Reimplement the Following Commands
* Ping
* Version
* Source Code
* Server Invite
* Hall of Fame
* Next Project
* Invite Bot
* Testing Server
* Suggest
* Command List
* Reload All Cogs | priority | reimplement generic cog reimplement the following commands ping version source code server invite hall of fame next project invite bot testing server suggest command list reload all cogs | 1 |
684,125 | 23,407,800,212 | IssuesEvent | 2022-08-12 14:26:27 | TheYellowArchitect/doubledamnation | https://api.github.com/repos/TheYellowArchitect/doubledamnation | opened | Physics Engine linked to Framerate | player movement high priority | The cardinal sin of gamedev.
I even knew about how bad it is to link framerate with physics, when I was writing the velocity system, yet I kept going because:
"Smash Bros runs at consistent 60 FPS, and surely Double Damnation can also run at consistent 60 FPS even in a shitty laptop"
The above was true at the time (2018), but I was so naive back then, thinking I had the feature-scale all figured out, when [when I was still a newbie in programming](https://theyellowarchitect.com/blog/the-art-of-game-development-the-modern-polymath#title) (less than a year of programming!)
Every `.velocity` calculation ofc uses ` * Time.unscaledDeltaTime`
So, where is the problem?
In my physics. Unity has no default acceleration values (it has velocity and force, but no acceleration), so I made my own, in order to recreate the [DI (Directional Influence) feature from Smash Bros](https://www.ssbwiki.com/File:DI-Melee.gif).
A blessing in disguise, as I implemented it for damage, but expanding it, I made Double Damnation have the unique and freeflow movement it is known for, today.
BUT. The acceleration increases per frame (this is why in speedruns, the lower framerate makes you faster, as less friction happens)
So, to solve this, I could go on acceleration (in-code, it is `influenceX`), and do * `Time.unscaledDeltaTime`
And indeed, it should become "framerate independent"
But since `Time.unscaledDeltaTime` is 0.0016 in 60 FPS, obviously the acceleration drops heavily, and the end result is not the same.
Hence, I must add a constant/hardcoded variable that when multiplied by 0.0016, returns the exact same values as current.
**Why don't I do that?**
Because it would take 1~3 days of playtesting, to get the exact value, and ensure the movement system will be the EXACT SAME as previous versions on 60 FPS (no movement regression, rip speedruns)
Its a boring process - I will do it eventually - but until then, I have my eyes on more important things. | 1.0 | Physics Engine linked to Framerate - The cardinal sin of gamedev.
I even knew about how bad it is to link framerate with physics, when I was writing the velocity system, yet I kept going because:
"Smash Bros runs at consistent 60 FPS, and surely Double Damnation can also run at consistent 60 FPS even in a shitty laptop"
The above was true at the time (2018), but I was so naive back then, thinking I had the feature-scale all figured out, when [when I was still a newbie in programming](https://theyellowarchitect.com/blog/the-art-of-game-development-the-modern-polymath#title) (less than a year of programming!)
Every `.velocity` calculation ofc uses ` * Time.unscaledDeltaTime`
So, where is the problem?
In my physics. Unity has no default acceleration values (it has velocity and force, but no acceleration), so I made my own, in order to recreate the [DI (Directional Influence) feature from Smash Bros](https://www.ssbwiki.com/File:DI-Melee.gif).
A blessing in disguise, as I implemented it for damage, but expanding it, I made Double Damnation have the unique and freeflow movement it is known for, today.
BUT. The acceleration increases per frame (this is why in speedruns, the lower framerate makes you faster, as less friction happens)
So, to solve this, I could go on acceleration (in-code, it is `influenceX`), and do * `Time.unscaledDeltaTime`
And indeed, it should become "framerate independent"
But since `Time.unscaledDeltaTime` is 0.0016 in 60 FPS, obviously the acceleration drops heavily, and the end result is not the same.
Hence, I must add a constant/hardcoded variable that when multiplied by 0.0016, returns the exact same values as current.
**Why don't I do that?**
Because it would take 1~3 days of playtesting, to get the exact value, and ensure the movement system will be the EXACT SAME as previous versions on 60 FPS (no movement regression, rip speedruns)
Its a boring process - I will do it eventually - but until then, I have my eyes on more important things. | priority | physics engine linked to framerate the cardinal sin of gamedev i even knew about how bad it is to link framerate with physics when i was writing the velocity system yet i kept going because smash bros runs at consistent fps and surely double damnation can also run at consistent fps even in a shitty laptop the above was true at the time but i was so naive back then thinking i had the feature scale all figured out when less than a year of programming every velocity calculation ofc uses time unscaleddeltatime so where is the problem in my physics unity has no default acceleration values it has velocity and force but no acceleration so i made my own in order to recreate the a blessing in disguise as i implemented it for damage but expanding it i made double damnation have the unique and freeflow movement it is known for today but the acceleration increases per frame this is why in speedruns the lower framerate makes you faster as less friction happens so to solve this i could go on acceleration in code it is influencex and do time unscaleddeltatime and indeed it should become framerate independent but since time unscaleddeltatime is in fps obviously the acceleration drops heavily and the end result is not the same hence i must add a constant hardcoded variable that when multiplied by returns the exact same values as current why don t i do that because it would take days of playtesting to get the exact value and ensure the movement system will be the exact same as previous versions on fps no movement regression rip speedruns its a boring process i will do it eventually but until then i have my eyes on more important things | 1 |
484,151 | 13,935,091,788 | IssuesEvent | 2020-10-22 10:59:26 | neubot/dash | https://api.github.com/repos/neubot/dash | closed | privacy: adapt M-Lab privacy policy | bug priority/high | My starting point would probably be to modify Neubot's privacy policy and update it such that it references me rather than @nexacenter. Asking would be smart in this case. | 1.0 | privacy: adapt M-Lab privacy policy - My starting point would probably be to modify Neubot's privacy policy and update it such that it references me rather than @nexacenter. Asking would be smart in this case. | priority | privacy adapt m lab privacy policy my starting point would probably be to modify neubot s privacy policy and update it such that it references me rather than nexacenter asking would be smart in this case | 1 |
637,164 | 20,622,465,240 | IssuesEvent | 2022-03-07 18:49:01 | bottlerocket-os/bottlerocket-test-system | https://api.github.com/repos/bottlerocket-os/bottlerocket-test-system | closed | avoid api throttling | in-review in-progress resource-agent priority/high | If we have a lot of eks clusters, with ec2 providers and a lot of tests, we can end up getting throttled in the AWS APIs (this could become a problem with other APIs lilke VMWare or Tinkerbell as well).
We need to figure something out for backing off when we get throttled and some strategy for spacing out the requests.
Edit:
- We've seen throttling for EKS describe-cluster, which we are able to avoid by adding sleeps to our script loops.
- We have seen SSM API throttling during upgrade/downgrade testing even with sleeps in our loops. And this will affect VMWare and ECS as well. | 1.0 | avoid api throttling - If we have a lot of eks clusters, with ec2 providers and a lot of tests, we can end up getting throttled in the AWS APIs (this could become a problem with other APIs lilke VMWare or Tinkerbell as well).
We need to figure something out for backing off when we get throttled and some strategy for spacing out the requests.
Edit:
- We've seen throttling for EKS describe-cluster, which we are able to avoid by adding sleeps to our script loops.
- We have seen SSM API throttling during upgrade/downgrade testing even with sleeps in our loops. And this will affect VMWare and ECS as well. | priority | avoid api throttling if we have a lot of eks clusters with providers and a lot of tests we can end up getting throttled in the aws apis this could become a problem with other apis lilke vmware or tinkerbell as well we need to figure something out for backing off when we get throttled and some strategy for spacing out the requests edit we ve seen throttling for eks describe cluster which we are able to avoid by adding sleeps to our script loops we have seen ssm api throttling during upgrade downgrade testing even with sleeps in our loops and this will affect vmware and ecs as well | 1 |
228,102 | 7,545,855,976 | IssuesEvent | 2018-04-17 23:32:30 | ampproject/amphtml | https://api.github.com/repos/ampproject/amphtml | opened | Expose element dirty method | Category: Runtime P1: High Priority | Certain events require DOM manipulations in the same process tick to work (eg, https://github.com/ampproject/amphtml/pull/14676).
So, we can't wait for a vsync mutate phase. But, if we mutate immediately, the cache will still provide invalid values until it's busted in the next mutate.
So, I need to add a method to dirty the cache immediately for these special cases. | 1.0 | Expose element dirty method - Certain events require DOM manipulations in the same process tick to work (eg, https://github.com/ampproject/amphtml/pull/14676).
So, we can't wait for a vsync mutate phase. But, if we mutate immediately, the cache will still provide invalid values until it's busted in the next mutate.
So, I need to add a method to dirty the cache immediately for these special cases. | priority | expose element dirty method certain events require dom manipulations in the same process tick to work eg so we can t wait for a vsync mutate phase but if we mutate immediately the cache will still provide invalid values until it s busted in the next mutate so i need to add a method to dirty the cache immediately for these special cases | 1 |
113,216 | 4,544,493,663 | IssuesEvent | 2016-09-10 18:33:09 | bloomberg/bqplot | https://api.github.com/repos/bloomberg/bqplot | closed | Clearing `x`, `y` for marks does not reset the domain of the scale | bug High Priority | ```python
import bqplot.pyplot as plt
plt.figure()
l1 = plt.plot([0, 1])
l2 = plt.plot([10, 10])
plt.show()
l2.y = []
``` | 1.0 | Clearing `x`, `y` for marks does not reset the domain of the scale - ```python
import bqplot.pyplot as plt
plt.figure()
l1 = plt.plot([0, 1])
l2 = plt.plot([10, 10])
plt.show()
l2.y = []
``` | priority | clearing x y for marks does not reset the domain of the scale python import bqplot pyplot as plt plt figure plt plot plt plot plt show y | 1 |
779,349 | 27,349,642,042 | IssuesEvent | 2023-02-27 08:38:00 | inlang/inlang | https://api.github.com/repos/inlang/inlang | closed | ci/cd tests are running for over 15 min | type: bug priority: high | ## Problem
https://github.com/inlang/inlang/actions/runs/4276274134/jobs/7444247148
### Expected behavior
Tests should complete in a few seconds
| 1.0 | ci/cd tests are running for over 15 min - ## Problem
https://github.com/inlang/inlang/actions/runs/4276274134/jobs/7444247148
### Expected behavior
Tests should complete in a few seconds
| priority | ci cd tests are running for over min problem expected behavior tests should complete in a few seconds | 1 |
114,161 | 4,614,911,562 | IssuesEvent | 2016-09-25 20:49:16 | adobe/brackets | https://api.github.com/repos/adobe/brackets | closed | Fix Code Folding tests | high priority | There are a few failing tests now in the latest master:
> can be enabled by setting `makeSelectionsFoldable' to true
``` javascript
Error: Expected [ 0, 10, 16, 20, 24, 26, 29 ] to contain 2.
at new jasmine.ExpectationResult (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:114:32)
at null.toContain (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1235:29)
at null.<anonymous> (file:///C:/Program%20Files%20(x86)/Brackets/dev/src/extensions/default/CodeFolding/unittests.js:430:47)
at jasmine.Block.execute (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1064:17)
at jasmine.Queue.next_ (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2096:31)
at onComplete (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2092:18)
at jasmine.WaitsForBlock.execute (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2576:5)
at file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2590:12
```
> shows fold ranges for only the most recent selection
``` js
Error: Expected [ 0, 10, 16, 20, 24, 26, 29 ] to contain 5.
at new jasmine.ExpectationResult (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:114:32)
at null.toContain (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1235:29)
at null.<anonymous> (file:///C:/Program%20Files%20(x86)/Brackets/dev/src/extensions/default/CodeFolding/unittests.js:459:47)
at jasmine.Block.execute (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1064:17)
at jasmine.Queue.next_ (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2096:31)
at file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2086:18
```
> can be enabled by setting `makeSelectionsFoldable' to true
``` javascript
Error: Expected [ 0, 1, 4, 6, 7, 11, 12, 13, 17, 18, 23, 26 ] to contain 3.
at new jasmine.ExpectationResult (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:114:32)
at null.toContain (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1235:29)
at null.<anonymous> (file:///C:/Program%20Files%20(x86)/Brackets/dev/src/extensions/default/CodeFolding/unittests.js:430:47)
at jasmine.Block.execute (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1064:17)
at jasmine.Queue.next_ (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2096:31)
at file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2086:18
```
cc @thehogfather | 1.0 | Fix Code Folding tests - There are a few failing tests now in the latest master:
> can be enabled by setting `makeSelectionsFoldable' to true
``` javascript
Error: Expected [ 0, 10, 16, 20, 24, 26, 29 ] to contain 2.
at new jasmine.ExpectationResult (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:114:32)
at null.toContain (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1235:29)
at null.<anonymous> (file:///C:/Program%20Files%20(x86)/Brackets/dev/src/extensions/default/CodeFolding/unittests.js:430:47)
at jasmine.Block.execute (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1064:17)
at jasmine.Queue.next_ (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2096:31)
at onComplete (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2092:18)
at jasmine.WaitsForBlock.execute (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2576:5)
at file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2590:12
```
> shows fold ranges for only the most recent selection
``` js
Error: Expected [ 0, 10, 16, 20, 24, 26, 29 ] to contain 5.
at new jasmine.ExpectationResult (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:114:32)
at null.toContain (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1235:29)
at null.<anonymous> (file:///C:/Program%20Files%20(x86)/Brackets/dev/src/extensions/default/CodeFolding/unittests.js:459:47)
at jasmine.Block.execute (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1064:17)
at jasmine.Queue.next_ (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2096:31)
at file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2086:18
```
> can be enabled by setting `makeSelectionsFoldable' to true
``` javascript
Error: Expected [ 0, 1, 4, 6, 7, 11, 12, 13, 17, 18, 23, 26 ] to contain 3.
at new jasmine.ExpectationResult (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:114:32)
at null.toContain (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1235:29)
at null.<anonymous> (file:///C:/Program%20Files%20(x86)/Brackets/dev/src/extensions/default/CodeFolding/unittests.js:430:47)
at jasmine.Block.execute (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:1064:17)
at jasmine.Queue.next_ (file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2096:31)
at file:///C:/Program%20Files%20(x86)/Brackets/dev/test/thirdparty/jasmine-core/jasmine.js:2086:18
```
cc @thehogfather | priority | fix code folding tests there are a few failing tests now in the latest master can be enabled by setting makeselectionsfoldable to true javascript error expected to contain at new jasmine expectationresult file c program brackets dev test thirdparty jasmine core jasmine js at null tocontain file c program brackets dev test thirdparty jasmine core jasmine js at null file c program brackets dev src extensions default codefolding unittests js at jasmine block execute file c program brackets dev test thirdparty jasmine core jasmine js at jasmine queue next file c program brackets dev test thirdparty jasmine core jasmine js at oncomplete file c program brackets dev test thirdparty jasmine core jasmine js at jasmine waitsforblock execute file c program brackets dev test thirdparty jasmine core jasmine js at file c program brackets dev test thirdparty jasmine core jasmine js shows fold ranges for only the most recent selection js error expected to contain at new jasmine expectationresult file c program brackets dev test thirdparty jasmine core jasmine js at null tocontain file c program brackets dev test thirdparty jasmine core jasmine js at null file c program brackets dev src extensions default codefolding unittests js at jasmine block execute file c program brackets dev test thirdparty jasmine core jasmine js at jasmine queue next file c program brackets dev test thirdparty jasmine core jasmine js at file c program brackets dev test thirdparty jasmine core jasmine js can be enabled by setting makeselectionsfoldable to true javascript error expected to contain at new jasmine expectationresult file c program brackets dev test thirdparty jasmine core jasmine js at null tocontain file c program brackets dev test thirdparty jasmine core jasmine js at null file c program brackets dev src extensions default codefolding unittests js at jasmine block execute file c program brackets dev test thirdparty jasmine core jasmine js at jasmine queue next file c program brackets dev test thirdparty jasmine core jasmine js at file c program brackets dev test thirdparty jasmine core jasmine js cc thehogfather | 1 |
765,556 | 26,851,470,704 | IssuesEvent | 2023-02-03 11:22:39 | bryntum/support | https://api.github.com/repos/bryntum/support | closed | AjaxHelper.fetch should support using body parameters for non-GET requests. | feature request resolved high-priority | `AjaxHelper.fetch` should support using body for query parameters for POST requests.
For `application/x-www-form-urlencoded` content-type queryParams could go to the request body like this:
```
param1=qwe¶m2=foo&q=...
```
Requested in this ticket: https://github.com/bryntum/support/issues/541 | 1.0 | AjaxHelper.fetch should support using body parameters for non-GET requests. - `AjaxHelper.fetch` should support using body for query parameters for POST requests.
For `application/x-www-form-urlencoded` content-type queryParams could go to the request body like this:
```
param1=qwe¶m2=foo&q=...
```
Requested in this ticket: https://github.com/bryntum/support/issues/541 | priority | ajaxhelper fetch should support using body parameters for non get requests ajaxhelper fetch should support using body for query parameters for post requests for application x www form urlencoded content type queryparams could go to the request body like this qwe foo q requested in this ticket | 1 |
99,978 | 4,075,147,148 | IssuesEvent | 2016-05-29 00:18:05 | NetSys/quilt | https://api.github.com/repos/NetSys/quilt | opened | Much better error message for missing diskSize | high priority | Currently we print the following if you don't provide a disk size
```
WARNING [May 28 16:56:39.064] Unable to boot machines on Amazon. error=InvalidParameterValue: Value () for parameter groupId is invalid. The value cannot be empty
status code: 400, request id: ```
This is *impossible* to debug. Need something much better. While we're at it, we should make sure we have good error messages for all the required machine attributes. | 1.0 | Much better error message for missing diskSize - Currently we print the following if you don't provide a disk size
```
WARNING [May 28 16:56:39.064] Unable to boot machines on Amazon. error=InvalidParameterValue: Value () for parameter groupId is invalid. The value cannot be empty
status code: 400, request id: ```
This is *impossible* to debug. Need something much better. While we're at it, we should make sure we have good error messages for all the required machine attributes. | priority | much better error message for missing disksize currently we print the following if you don t provide a disk size warning unable to boot machines on amazon error invalidparametervalue value for parameter groupid is invalid the value cannot be empty status code request id this is impossible to debug need something much better while we re at it we should make sure we have good error messages for all the required machine attributes | 1 |
42,067 | 2,869,095,922 | IssuesEvent | 2015-06-05 23:18:08 | dart-lang/test | https://api.github.com/repos/dart-lang/test | closed | expectAsync can cause tests to exit silently | bug Fixed Priority-High | <a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)**
_Originally opened as dart-lang/sdk#7528_
----
The following test file exits silently:
void main() {
test('foo', () {
expectAsync0(() {});
});
test('bar', () {
expect(false, isTrue);
});
}
This is really bad, as it hides actual test failures and is extremely difficult to debug.
| 1.0 | expectAsync can cause tests to exit silently - <a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)**
_Originally opened as dart-lang/sdk#7528_
----
The following test file exits silently:
void main() {
test('foo', () {
expectAsync0(() {});
});
test('bar', () {
expect(false, isTrue);
});
}
This is really bad, as it hides actual test failures and is extremely difficult to debug.
| priority | expectasync can cause tests to exit silently issue by originally opened as dart lang sdk the following test file exits silently nbsp nbsp nbsp nbsp void main nbsp nbsp nbsp nbsp nbsp nbsp test foo nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp test bar nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp expect false istrue nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp this is really bad as it hides actual test failures and is extremely difficult to debug | 1 |
277,523 | 8,629,270,141 | IssuesEvent | 2018-11-21 20:07:50 | wearerequired/traduttore | https://api.github.com/repos/wearerequired/traduttore | closed | Genereate a new ZIP file instead of reading and updating existing ZIP files | [Priority] High [Type] Bug | **Issue Overview**
Currently existing ZIP files are updated which means due to the bug in #130 we know have 4 files in the ZIP:
```
<textdomain>-<locale>.mo
<textdomain>-<locale>.po
<textdomain>.mo
<textdomain>.po
```
**Expected behavior**
A new ZIP is built in a temporary directory which then is moved to the public directory to replace the existing ZIP file. | 1.0 | Genereate a new ZIP file instead of reading and updating existing ZIP files - **Issue Overview**
Currently existing ZIP files are updated which means due to the bug in #130 we know have 4 files in the ZIP:
```
<textdomain>-<locale>.mo
<textdomain>-<locale>.po
<textdomain>.mo
<textdomain>.po
```
**Expected behavior**
A new ZIP is built in a temporary directory which then is moved to the public directory to replace the existing ZIP file. | priority | genereate a new zip file instead of reading and updating existing zip files issue overview currently existing zip files are updated which means due to the bug in we know have files in the zip mo po mo po expected behavior a new zip is built in a temporary directory which then is moved to the public directory to replace the existing zip file | 1 |
531,931 | 15,527,596,991 | IssuesEvent | 2021-03-13 06:51:09 | kothariji/SyntaxMeets | https://api.github.com/repos/kothariji/SyntaxMeets | closed | CORS issue while handling backend requests. | GSSOC21 Level2 Priority: High bug help wanted | **Describe the bug**
CORS get blocked bcz Socket didn't configured by all origins
**Expected result**
It should handle backend req.
**Are you willing to contribute to this issue?** [Yes]
| 1.0 | CORS issue while handling backend requests. - **Describe the bug**
CORS get blocked bcz Socket didn't configured by all origins
**Expected result**
It should handle backend req.
**Are you willing to contribute to this issue?** [Yes]
| priority | cors issue while handling backend requests describe the bug cors get blocked bcz socket didn t configured by all origins expected result it should handle backend req are you willing to contribute to this issue | 1 |
334,803 | 10,145,712,030 | IssuesEvent | 2019-08-05 05:46:32 | nhn/tui.time-picker | https://api.github.com/repos/nhn/tui.time-picker | closed | The content of the container element is removed | Priority: High Type: Bug | <!--
Thank you for your contribution.
When it comes to write an issue, please, use the template below.
To use the template is mandatory for submit new issue and we won't reply the issue that without the template.
And you can write template's contents in Korean also.
-->
<!-- TEMPLATE -->
## Version
<!-- Write the version of component you are currently using. -->
update a patch version
## Development Environment
<!-- Write the browser type, OS and so on. -->
## Current Behavior
<!-- Write a description of the current operation. You can add example code, 'CodePen' or 'jsfiddle' links. -->
The content of the container element is removed when creating a time-picker instance.
## Expected Behavior
<!-- Write a description of the future action. -->
A time-picker instance is attached to the last child of the container element. | 1.0 | The content of the container element is removed - <!--
Thank you for your contribution.
When it comes to write an issue, please, use the template below.
To use the template is mandatory for submit new issue and we won't reply the issue that without the template.
And you can write template's contents in Korean also.
-->
<!-- TEMPLATE -->
## Version
<!-- Write the version of component you are currently using. -->
update a patch version
## Development Environment
<!-- Write the browser type, OS and so on. -->
## Current Behavior
<!-- Write a description of the current operation. You can add example code, 'CodePen' or 'jsfiddle' links. -->
The content of the container element is removed when creating a time-picker instance.
## Expected Behavior
<!-- Write a description of the future action. -->
A time-picker instance is attached to the last child of the container element. | priority | the content of the container element is removed thank you for your contribution when it comes to write an issue please use the template below to use the template is mandatory for submit new issue and we won t reply the issue that without the template and you can write template s contents in korean also version update a patch version development environment current behavior the content of the container element is removed when creating a time picker instance expected behavior a time picker instance is attached to the last child of the container element | 1 |
779,828 | 27,367,956,943 | IssuesEvent | 2023-02-27 20:47:00 | openmsupply/open-msupply | https://api.github.com/repos/openmsupply/open-msupply | closed | Add "Programs" store to Programs for components to access | programs Priority: High | This will make it much easier for JSONForms components to access data about the current patient | 1.0 | Add "Programs" store to Programs for components to access - This will make it much easier for JSONForms components to access data about the current patient | priority | add programs store to programs for components to access this will make it much easier for jsonforms components to access data about the current patient | 1 |
300,620 | 9,211,571,355 | IssuesEvent | 2019-03-09 16:30:13 | qgisissuebot/QGIS | https://api.github.com/repos/qgisissuebot/QGIS | closed | Crash on closing the application. | Bug Priority: high | ---
Author Name: **Andreas Paul** (Andreas Paul)
Original Redmine Issue: 20501, https://issues.qgis.org/issues/20501
Original Date: 2018-11-15T09:15:32.963Z
Affected QGIS version: 3.4.0
---
## User Feedback
Crash on closing the application. Used print layout during the session.
## Report Details
*Crash ID*: a3eb9e008e3031d98e71767c90264528b8c82c02
*Stack Trace*
```
proj_lpz_dist :
proj_lpz_dist :
QgsCoordinateTransform::transformPolygon :
QgsCoordinateTransform::transformPolygon :
QgsCoordinateTransform::~QgsCoordinateTransform :
QgsFirstRunDialog::trUtf8 :
QObjectPrivate::deleteChildren :
QWidget::~QWidget :
CPLStringList::operator char const * __ptr64 const * __ptr64 :
main :
BaseThreadInitThunk :
RtlUserThreadStart :
```
*QGIS Info*
QGIS Version: 3.4.0-Madeira
QGIS code revision: 4a4b62ed19
Compiled against Qt: 5.11.2
Running against Qt: 5.11.2
Compiled against GDAL: 2.3.2
Running against GDAL: 2.3.2
*System Info*
CPU Type: x86_64
Kernel Type: winnt
Kernel Version: 10.0.17134
| 1.0 | Crash on closing the application. - ---
Author Name: **Andreas Paul** (Andreas Paul)
Original Redmine Issue: 20501, https://issues.qgis.org/issues/20501
Original Date: 2018-11-15T09:15:32.963Z
Affected QGIS version: 3.4.0
---
## User Feedback
Crash on closing the application. Used print layout during the session.
## Report Details
*Crash ID*: a3eb9e008e3031d98e71767c90264528b8c82c02
*Stack Trace*
```
proj_lpz_dist :
proj_lpz_dist :
QgsCoordinateTransform::transformPolygon :
QgsCoordinateTransform::transformPolygon :
QgsCoordinateTransform::~QgsCoordinateTransform :
QgsFirstRunDialog::trUtf8 :
QObjectPrivate::deleteChildren :
QWidget::~QWidget :
CPLStringList::operator char const * __ptr64 const * __ptr64 :
main :
BaseThreadInitThunk :
RtlUserThreadStart :
```
*QGIS Info*
QGIS Version: 3.4.0-Madeira
QGIS code revision: 4a4b62ed19
Compiled against Qt: 5.11.2
Running against Qt: 5.11.2
Compiled against GDAL: 2.3.2
Running against GDAL: 2.3.2
*System Info*
CPU Type: x86_64
Kernel Type: winnt
Kernel Version: 10.0.17134
| priority | crash on closing the application author name andreas paul andreas paul original redmine issue original date affected qgis version user feedback crash on closing the application used print layout during the session report details crash id stack trace proj lpz dist proj lpz dist qgscoordinatetransform transformpolygon qgscoordinatetransform transformpolygon qgscoordinatetransform qgscoordinatetransform qgsfirstrundialog qobjectprivate deletechildren qwidget qwidget cplstringlist operator char const const main basethreadinitthunk rtluserthreadstart qgis info qgis version madeira qgis code revision compiled against qt running against qt compiled against gdal running against gdal system info cpu type kernel type winnt kernel version | 1 |
657,843 | 21,869,670,129 | IssuesEvent | 2022-05-19 03:15:24 | pixley/TimelineBuilder | https://api.github.com/repos/pixley/TimelineBuilder | opened | Event Search | type: feature status: to do priority: high | The user should be able to, from the main window, search for an event by name, description, or any other field that may be appropriate and be presented with a list of results. From those results, the user should be able to have their timeline view pan to a selected event. | 1.0 | Event Search - The user should be able to, from the main window, search for an event by name, description, or any other field that may be appropriate and be presented with a list of results. From those results, the user should be able to have their timeline view pan to a selected event. | priority | event search the user should be able to from the main window search for an event by name description or any other field that may be appropriate and be presented with a list of results from those results the user should be able to have their timeline view pan to a selected event | 1 |
818,924 | 30,711,518,780 | IssuesEvent | 2023-07-27 10:06:42 | fkie-cad/dewolf | https://api.github.com/repos/fkie-cad/dewolf | closed | [Pattern independent restructuring] TypeError: '<' not supported between instances of 'int' and 'str' | bug priority-high | ### What happened?
```python3
Error in bin/vds.exe in 0x14002ae90
[pipeline.py:107 run()] ERROR - Failed to decompile ?QueryMaxReclaimableBytes@CVdsVolume@@UEAAJPEA_K@Z, error during stage pattern-independent-restructuring: '<' not supported between instances of 'int' and 'str'
Traceback (most recent call last):
File "/home/neoquix/Git-Repos/DeWolf/decompile.py", line 76, in <module>
main(Decompiler)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/util/commandline.py", line 80, in main
task = decompiler.decompile(function_name, options)
File "/home/neoquix/Git-Repos/DeWolf/decompile.py", line 51, in decompile
pipeline.run(task)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/pipeline.py", line 109, in run
raise e
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/pipeline.py", line 102, in run
instance.run(task)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring.py", line 45, in run
self.restructure_cfg()
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring.py", line 81, in restructure_cfg
AcyclicRegionRestructurer(self.t_cfg, self.asforest).restructure()
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/acyclic_restructuring.py", line 44, in restructure
self._construct_ast_for_region(restructurable_region, node)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/acyclic_restructuring.py", line 69, in _construct_ast_for_region
restructured_region_root = self._construct_refined_ast(seq_node)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/acyclic_restructuring.py", line 94, in _construct_refined_ast
ConditionAwareRefinement.refine(self.asforest)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement.py", line 40, in refine
stage(asforest)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 45, in construct
initial_switch_constructor._try_to_construct_initial_switch_node_for(seq_node)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 68, in _try_to_construct_initial_switch_node_for
self._add_constants_to_cases(switch_node, case_dependency)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 172, in _add_constants_to_cases
self._get_linear_order_for(cross_nodes, linear_ordering_starting_at, linear_order_dependency_graph)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 374, in _get_linear_order_for
first_node, last_node = self._order_parallel_cases(case_nodes_to_order, linear_ordering_starting_at)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 402, in _order_parallel_cases
sorted_case_nodes = sorted(case_nodes, key=lambda case_node: case_node.constant.value)
TypeError: '<' not supported between instances of 'int' and 'str'
```
### How to reproduce?
Decompile [vds](https://github.com/fkie-cad/dewolf/files/11168825/vds.tar.gz) at 0x14002ae90.
### Affected Binary Ninja Version(s)
3.3.3996 | 1.0 | [Pattern independent restructuring] TypeError: '<' not supported between instances of 'int' and 'str' - ### What happened?
```python3
Error in bin/vds.exe in 0x14002ae90
[pipeline.py:107 run()] ERROR - Failed to decompile ?QueryMaxReclaimableBytes@CVdsVolume@@UEAAJPEA_K@Z, error during stage pattern-independent-restructuring: '<' not supported between instances of 'int' and 'str'
Traceback (most recent call last):
File "/home/neoquix/Git-Repos/DeWolf/decompile.py", line 76, in <module>
main(Decompiler)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/util/commandline.py", line 80, in main
task = decompiler.decompile(function_name, options)
File "/home/neoquix/Git-Repos/DeWolf/decompile.py", line 51, in decompile
pipeline.run(task)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/pipeline.py", line 109, in run
raise e
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/pipeline.py", line 102, in run
instance.run(task)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring.py", line 45, in run
self.restructure_cfg()
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring.py", line 81, in restructure_cfg
AcyclicRegionRestructurer(self.t_cfg, self.asforest).restructure()
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/acyclic_restructuring.py", line 44, in restructure
self._construct_ast_for_region(restructurable_region, node)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/acyclic_restructuring.py", line 69, in _construct_ast_for_region
restructured_region_root = self._construct_refined_ast(seq_node)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/acyclic_restructuring.py", line 94, in _construct_refined_ast
ConditionAwareRefinement.refine(self.asforest)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement.py", line 40, in refine
stage(asforest)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 45, in construct
initial_switch_constructor._try_to_construct_initial_switch_node_for(seq_node)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 68, in _try_to_construct_initial_switch_node_for
self._add_constants_to_cases(switch_node, case_dependency)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 172, in _add_constants_to_cases
self._get_linear_order_for(cross_nodes, linear_ordering_starting_at, linear_order_dependency_graph)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 374, in _get_linear_order_for
first_node, last_node = self._order_parallel_cases(case_nodes_to_order, linear_ordering_starting_at)
File "/home/neoquix/Git-Repos/DeWolf/decompiler/pipeline/controlflowanalysis/restructuring_commons/condition_aware_refinement_commons/initial_switch_node_constructer.py", line 402, in _order_parallel_cases
sorted_case_nodes = sorted(case_nodes, key=lambda case_node: case_node.constant.value)
TypeError: '<' not supported between instances of 'int' and 'str'
```
### How to reproduce?
Decompile [vds](https://github.com/fkie-cad/dewolf/files/11168825/vds.tar.gz) at 0x14002ae90.
### Affected Binary Ninja Version(s)
3.3.3996 | priority | typeerror not supported between instances of int and str what happened error in bin vds exe in error failed to decompile querymaxreclaimablebytes cvdsvolume ueaajpea k z error during stage pattern independent restructuring not supported between instances of int and str traceback most recent call last file home neoquix git repos dewolf decompile py line in main decompiler file home neoquix git repos dewolf decompiler util commandline py line in main task decompiler decompile function name options file home neoquix git repos dewolf decompile py line in decompile pipeline run task file home neoquix git repos dewolf decompiler pipeline pipeline py line in run raise e file home neoquix git repos dewolf decompiler pipeline pipeline py line in run instance run task file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring py line in run self restructure cfg file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring py line in restructure cfg acyclicregionrestructurer self t cfg self asforest restructure file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring commons acyclic restructuring py line in restructure self construct ast for region restructurable region node file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring commons acyclic restructuring py line in construct ast for region restructured region root self construct refined ast seq node file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring commons acyclic restructuring py line in construct refined ast conditionawarerefinement refine self asforest file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring commons condition aware refinement py line in refine stage asforest file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring commons condition aware refinement commons initial switch node constructer py line in construct initial switch constructor try to construct initial switch node for seq node file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring commons condition aware refinement commons initial switch node constructer py line in try to construct initial switch node for self add constants to cases switch node case dependency file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring commons condition aware refinement commons initial switch node constructer py line in add constants to cases self get linear order for cross nodes linear ordering starting at linear order dependency graph file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring commons condition aware refinement commons initial switch node constructer py line in get linear order for first node last node self order parallel cases case nodes to order linear ordering starting at file home neoquix git repos dewolf decompiler pipeline controlflowanalysis restructuring commons condition aware refinement commons initial switch node constructer py line in order parallel cases sorted case nodes sorted case nodes key lambda case node case node constant value typeerror not supported between instances of int and str how to reproduce decompile at affected binary ninja version s | 1 |
593,505 | 18,009,656,882 | IssuesEvent | 2021-09-16 07:01:30 | edwisely-ai/Relationship-Management | https://api.github.com/repos/edwisely-ai/Relationship-Management | closed | UHV UNit 2 Questions upload | Priority High Criticality High | 1. Global Indexing
2. Curriculum Mapping
3. Topic Tag, Questions Upload | 1.0 | UHV UNit 2 Questions upload - 1. Global Indexing
2. Curriculum Mapping
3. Topic Tag, Questions Upload | priority | uhv unit questions upload global indexing curriculum mapping topic tag questions upload | 1 |
44,664 | 2,910,418,019 | IssuesEvent | 2015-06-21 18:46:43 | krishnaglick/MEEQS_Sane | https://api.github.com/repos/krishnaglick/MEEQS_Sane | closed | Need to load user stories into git's wiki | dev ops high priority | Need to take the google doc w/ the user stories and translate them into something usable by the wiki. Also need to sort/flesh them out a bit more. | 1.0 | Need to load user stories into git's wiki - Need to take the google doc w/ the user stories and translate them into something usable by the wiki. Also need to sort/flesh them out a bit more. | priority | need to load user stories into git s wiki need to take the google doc w the user stories and translate them into something usable by the wiki also need to sort flesh them out a bit more | 1 |
593,234 | 17,952,732,275 | IssuesEvent | 2021-09-13 00:58:32 | KinsonDigital/Velaptor | https://api.github.com/repos/KinsonDigital/Velaptor | closed | 🚧Project Item - Setup badges for README for preview and production releases | high priority | ### Title Updated
- [X] I have updated the title by replacing the '\<title\>' section.
### ---
Description
Add the badges below to the **_README.md_** file to show the status of various things.
Refer to CASL project for reference on setup
- QA Release Badge
- Preview Release Badge
- Production Release Badge
- Code Coverage Badge
- Contributor Covenant Badge
- Nuget Badge
### Acceptance Criteria
**This issue is finished when:**
- [x] QA Release badge works correctly
- [x] Preview Release badge works correctly
- [x] Production Release badge works correctly
- [x] Code Coverage badge works correctly
- [x] Contributor Covenant badge works correctly
- [x] Nuget badge works correctly
### ToDo Items
- [x] Priority label added to issue (prio-low, prio-medium, or prio-high)
- [x] Issue linked to the proper project
- [x] Issue linked to proper milestone
### Issue Dependencies
- #35
### Related Work
_No response_ | 1.0 | 🚧Project Item - Setup badges for README for preview and production releases - ### Title Updated
- [X] I have updated the title by replacing the '\<title\>' section.
### ---
Description
Add the badges below to the **_README.md_** file to show the status of various things.
Refer to CASL project for reference on setup
- QA Release Badge
- Preview Release Badge
- Production Release Badge
- Code Coverage Badge
- Contributor Covenant Badge
- Nuget Badge
### Acceptance Criteria
**This issue is finished when:**
- [x] QA Release badge works correctly
- [x] Preview Release badge works correctly
- [x] Production Release badge works correctly
- [x] Code Coverage badge works correctly
- [x] Contributor Covenant badge works correctly
- [x] Nuget badge works correctly
### ToDo Items
- [x] Priority label added to issue (prio-low, prio-medium, or prio-high)
- [x] Issue linked to the proper project
- [x] Issue linked to proper milestone
### Issue Dependencies
- #35
### Related Work
_No response_ | priority | 🚧project item setup badges for readme for preview and production releases title updated i have updated the title by replacing the section description add the badges below to the readme md file to show the status of various things refer to casl project for reference on setup qa release badge preview release badge production release badge code coverage badge contributor covenant badge nuget badge acceptance criteria this issue is finished when qa release badge works correctly preview release badge works correctly production release badge works correctly code coverage badge works correctly contributor covenant badge works correctly nuget badge works correctly todo items priority label added to issue prio low prio medium or prio high issue linked to the proper project issue linked to proper milestone issue dependencies related work no response | 1 |
229,738 | 7,588,501,953 | IssuesEvent | 2018-04-26 02:00:50 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | closed | Add test for "Find test resources in runfiles" | priority: high team: software core type: feature request | I need to write a regression test for #8255; the plan is to wait until #7774 is merged before doing that. | 1.0 | Add test for "Find test resources in runfiles" - I need to write a regression test for #8255; the plan is to wait until #7774 is merged before doing that. | priority | add test for find test resources in runfiles i need to write a regression test for the plan is to wait until is merged before doing that | 1 |
695,456 | 23,858,649,699 | IssuesEvent | 2022-09-07 03:59:16 | Greenstand/treetracker-web-map-client | https://api.github.com/repos/Greenstand/treetracker-web-map-client | closed | Add Jest test (unit test) to CI | high-priority Github-Action devops | We need to add the jest test as another part of the unit test to the CI checking, it should be run every time a new PR is raised.
So we can protect some code: model, utiles, basically, they are code not concerning to the UI.
`npm run test` | 1.0 | Add Jest test (unit test) to CI - We need to add the jest test as another part of the unit test to the CI checking, it should be run every time a new PR is raised.
So we can protect some code: model, utiles, basically, they are code not concerning to the UI.
`npm run test` | priority | add jest test unit test to ci we need to add the jest test as another part of the unit test to the ci checking it should be run every time a new pr is raised so we can protect some code model utiles basically they are code not concerning to the ui npm run test | 1 |
159,854 | 6,062,835,505 | IssuesEvent | 2017-06-14 10:24:20 | liam2/larray | https://api.github.com/repos/liam2/larray | closed | rename create_sequential() to sequence() | easy enhancement priority: high syntax work in progress | something like `create_seq()` or `sequence()` or even `seq()` | 1.0 | rename create_sequential() to sequence() - something like `create_seq()` or `sequence()` or even `seq()` | priority | rename create sequential to sequence something like create seq or sequence or even seq | 1 |
79,683 | 3,541,368,453 | IssuesEvent | 2016-01-19 00:29:43 | cwrc/HuViz | https://api.github.com/repos/cwrc/HuViz | opened | Replace Nooron Logo with CWRC Logo in browser tab label | Interface Priority - high | Replace Nooron Logo with CWRC Logo in browser tab label for public test site (http://huviz.dev.nooron.com/).
@ilovan is going to provide a link to the logo file.
**If could have done before demo tomorrow that would be great. | 1.0 | Replace Nooron Logo with CWRC Logo in browser tab label - Replace Nooron Logo with CWRC Logo in browser tab label for public test site (http://huviz.dev.nooron.com/).
@ilovan is going to provide a link to the logo file.
**If could have done before demo tomorrow that would be great. | priority | replace nooron logo with cwrc logo in browser tab label replace nooron logo with cwrc logo in browser tab label for public test site ilovan is going to provide a link to the logo file if could have done before demo tomorrow that would be great | 1 |
481,691 | 13,890,168,682 | IssuesEvent | 2020-10-19 08:55:26 | aau-giraf/api_client | https://api.github.com/repos/aau-giraf/api_client | closed | Refactor the code so we don't use the Observable class | priority: high refactor | **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
In the api_client, we are using the Observable class from the rxdart library but it is not a part of the newest version.
The task is to refractor the code and upgrade the dependencies in order to block further use of deprecated classes.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
A solution is described at the following link:
https://pub.dev/packages/rxdart#-changelog-tab-
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
Change the code manually?
**Additional context**
Add any other context or screenshots about the feature request here.
<img width="553" alt="Skærmbillede 2020-05-06 kl 08 42 43" src="https://user-images.githubusercontent.com/13853315/81144981-927f8e00-8f75-11ea-898f-1d65c82c9874.png">
The same problem exists in the weekplanner repo:
https://github.com/aau-giraf/weekplanner/issues/499 | 1.0 | Refactor the code so we don't use the Observable class - **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
In the api_client, we are using the Observable class from the rxdart library but it is not a part of the newest version.
The task is to refractor the code and upgrade the dependencies in order to block further use of deprecated classes.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
A solution is described at the following link:
https://pub.dev/packages/rxdart#-changelog-tab-
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
Change the code manually?
**Additional context**
Add any other context or screenshots about the feature request here.
<img width="553" alt="Skærmbillede 2020-05-06 kl 08 42 43" src="https://user-images.githubusercontent.com/13853315/81144981-927f8e00-8f75-11ea-898f-1d65c82c9874.png">
The same problem exists in the weekplanner repo:
https://github.com/aau-giraf/weekplanner/issues/499 | priority | refactor the code so we don t use the observable class is your feature request related to a problem please describe a clear and concise description of what the problem is ex i m always frustrated when in the api client we are using the observable class from the rxdart library but it is not a part of the newest version the task is to refractor the code and upgrade the dependencies in order to block further use of deprecated classes describe the solution you d like a clear and concise description of what you want to happen a solution is described at the following link describe alternatives you ve considered a clear and concise description of any alternative solutions or features you ve considered change the code manually additional context add any other context or screenshots about the feature request here img width alt skærmbillede kl src the same problem exists in the weekplanner repo | 1 |
477,070 | 13,755,001,046 | IssuesEvent | 2020-10-06 17:47:04 | AY2021S1-CS2113T-T12-4/tp | https://api.github.com/repos/AY2021S1-CS2113T-T12-4/tp | closed | Modify Main function | priority.High type.Task | Modify the main function to allow it to interface with all the other components to form a cohesive program | 1.0 | Modify Main function - Modify the main function to allow it to interface with all the other components to form a cohesive program | priority | modify main function modify the main function to allow it to interface with all the other components to form a cohesive program | 1 |
79,936 | 3,548,867,773 | IssuesEvent | 2016-01-20 15:59:49 | learnweb/moodle-mod_ratingallocate | https://api.github.com/repos/learnweb/moodle-mod_ratingallocate | closed | Automated adjustment of visible strategy settings. | Effort: Medium Priority: High | The UI is very confusing concerning the rating strategies. Whenever a strategy is chosen, it would be wiser to hide the options for the not-chosen strategies - instead of disabling their forms.
It would also make the whole layout shorter and more clear.
Currently the code uses the 'disabledIf'-function from moodle, when the strategy options are loaded (mod_form.php line 141). Sadly I couldn't find anything like 'hiddenIf'. | 1.0 | Automated adjustment of visible strategy settings. - The UI is very confusing concerning the rating strategies. Whenever a strategy is chosen, it would be wiser to hide the options for the not-chosen strategies - instead of disabling their forms.
It would also make the whole layout shorter and more clear.
Currently the code uses the 'disabledIf'-function from moodle, when the strategy options are loaded (mod_form.php line 141). Sadly I couldn't find anything like 'hiddenIf'. | priority | automated adjustment of visible strategy settings the ui is very confusing concerning the rating strategies whenever a strategy is chosen it would be wiser to hide the options for the not chosen strategies instead of disabling their forms it would also make the whole layout shorter and more clear currently the code uses the disabledif function from moodle when the strategy options are loaded mod form php line sadly i couldn t find anything like hiddenif | 1 |
537,619 | 15,731,896,166 | IssuesEvent | 2021-03-29 17:37:58 | AY2021S2-CS2113-T10-1/tp | https://api.github.com/repos/AY2021S2-CS2113-T10-1/tp | closed | As a user, I can view the history of food items that I have bought in the past, | priority.High type.Story | ...so that I can better track my food habits. | 1.0 | As a user, I can view the history of food items that I have bought in the past, - ...so that I can better track my food habits. | priority | as a user i can view the history of food items that i have bought in the past so that i can better track my food habits | 1 |
62,847 | 3,193,554,865 | IssuesEvent | 2015-09-30 06:29:52 | fusioninventory/fusioninventory-for-glpi | https://api.github.com/repos/fusioninventory/fusioninventory-for-glpi | closed | Computer may never be created on entity -1 | Component: For junior contributor Component: Found in version Priority: High Status: Closed Tracker: Bug | ---
Author Name: **David Durieux** (@ddurieux)
Original Redmine Issue: 1222, http://forge.fusioninventory.org/issues/1222
Original Date: 2011-10-06
Original Assignee: David Durieux
---
it's entity rule give entity to -1 when not find it.
| 1.0 | Computer may never be created on entity -1 - ---
Author Name: **David Durieux** (@ddurieux)
Original Redmine Issue: 1222, http://forge.fusioninventory.org/issues/1222
Original Date: 2011-10-06
Original Assignee: David Durieux
---
it's entity rule give entity to -1 when not find it.
| priority | computer may never be created on entity author name david durieux ddurieux original redmine issue original date original assignee david durieux it s entity rule give entity to when not find it | 1 |
512,312 | 14,893,807,643 | IssuesEvent | 2021-01-21 06:17:07 | Sage-Bionetworks/schematic | https://api.github.com/repos/Sage-Bionetworks/schematic | closed | Disconnect from the server during Synapse submission | bug high priority | **Describe the bug**
The metadata file has passed the validation but it showed an error message "Disconnect to the server" when trying to submit to Synapse
**To Reproduce**
Steps to reproduce the behavior:
1. Go to [HIV Data Curator App](https://www.synapse.org/#!Wiki:syn21823262/ENTITY)
2. Pick the 20201218_Pikachu folder in step 1
3. Go to Submit & Validate Metadata tab (please ask Xindi for the metadata file)
4. Upload, validate, and submit the file - see the error
**Expected behavior**
The metadata should assign annotations to the files
**Screenshots**

**Desktop (if applicable, please complete the following information):**
- OS: iOS
- Browser: Chrome
**Additional context**
Here is part of the log from the Shiny server
```
Warning: Error in py_call_impl: ParserError: Error tokenizing data. C error: Expected 25 fields in line 32, saw 26
Detailed traceback:
File "/home/xguo/backend/schematic/schematic/synapse/store.py", line 405, in associateMetadataWithFiles
manifest = pd.read_csv(metadataManifestPath)
File "/home/xguo/anaconda3/envs/data_curator_env/lib/python3.7/site-packages/pandas/io/parsers.py", line 676, in parser_f
return _read(filepath_or_buffer, kwds)
File "/home/xguo/anaconda3/envs/data_curator_env/lib/python3.7/site-packages/pandas/io/parsers.py", line 454, in _read
data = parser.read(nrows)
File "/home/xguo/anaconda3/envs/data_curator_env/lib/python3.7/site-packages/pandas/io/parsers.py", line 1133, in read
ret = self._engine.read(nrows)
File "/home/xguo/anaconda3/envs/data_curator_env/lib/python3.7/site-packages/pandas/io/parsers.py", line 2037, in read
data = self._reader.read(nrows)
File "pandas/_libs/parsers.pyx", line 860, in pandas._libs.parsers.TextReader.read
[... truncated]
76: <Anonymous>
Execution halted
```
| 1.0 | Disconnect from the server during Synapse submission - **Describe the bug**
The metadata file has passed the validation but it showed an error message "Disconnect to the server" when trying to submit to Synapse
**To Reproduce**
Steps to reproduce the behavior:
1. Go to [HIV Data Curator App](https://www.synapse.org/#!Wiki:syn21823262/ENTITY)
2. Pick the 20201218_Pikachu folder in step 1
3. Go to Submit & Validate Metadata tab (please ask Xindi for the metadata file)
4. Upload, validate, and submit the file - see the error
**Expected behavior**
The metadata should assign annotations to the files
**Screenshots**

**Desktop (if applicable, please complete the following information):**
- OS: iOS
- Browser: Chrome
**Additional context**
Here is part of the log from the Shiny server
```
Warning: Error in py_call_impl: ParserError: Error tokenizing data. C error: Expected 25 fields in line 32, saw 26
Detailed traceback:
File "/home/xguo/backend/schematic/schematic/synapse/store.py", line 405, in associateMetadataWithFiles
manifest = pd.read_csv(metadataManifestPath)
File "/home/xguo/anaconda3/envs/data_curator_env/lib/python3.7/site-packages/pandas/io/parsers.py", line 676, in parser_f
return _read(filepath_or_buffer, kwds)
File "/home/xguo/anaconda3/envs/data_curator_env/lib/python3.7/site-packages/pandas/io/parsers.py", line 454, in _read
data = parser.read(nrows)
File "/home/xguo/anaconda3/envs/data_curator_env/lib/python3.7/site-packages/pandas/io/parsers.py", line 1133, in read
ret = self._engine.read(nrows)
File "/home/xguo/anaconda3/envs/data_curator_env/lib/python3.7/site-packages/pandas/io/parsers.py", line 2037, in read
data = self._reader.read(nrows)
File "pandas/_libs/parsers.pyx", line 860, in pandas._libs.parsers.TextReader.read
[... truncated]
76: <Anonymous>
Execution halted
```
| priority | disconnect from the server during synapse submission describe the bug the metadata file has passed the validation but it showed an error message disconnect to the server when trying to submit to synapse to reproduce steps to reproduce the behavior go to pick the pikachu folder in step go to submit validate metadata tab please ask xindi for the metadata file upload validate and submit the file see the error expected behavior the metadata should assign annotations to the files screenshots desktop if applicable please complete the following information os ios browser chrome additional context here is part of the log from the shiny server warning error in py call impl parsererror error tokenizing data c error expected fields in line saw detailed traceback file home xguo backend schematic schematic synapse store py line in associatemetadatawithfiles manifest pd read csv metadatamanifestpath file home xguo envs data curator env lib site packages pandas io parsers py line in parser f return read filepath or buffer kwds file home xguo envs data curator env lib site packages pandas io parsers py line in read data parser read nrows file home xguo envs data curator env lib site packages pandas io parsers py line in read ret self engine read nrows file home xguo envs data curator env lib site packages pandas io parsers py line in read data self reader read nrows file pandas libs parsers pyx line in pandas libs parsers textreader read execution halted | 1 |
712,239 | 24,487,913,149 | IssuesEvent | 2022-10-09 17:36:47 | CS3219-AY2223S1/cs3219-project-ay2223s1-g33 | https://api.github.com/repos/CS3219-AY2223S1/cs3219-project-ay2223s1-g33 | closed | [Collaboration Service] Code Snapshotting | Module/Back-End Status/High-Priority Type/Feature | # Description
Implement a mechanism which takes a snapshot of the code and language used by the user and stores it in the database.
# Parent Task
- #141 | 1.0 | [Collaboration Service] Code Snapshotting - # Description
Implement a mechanism which takes a snapshot of the code and language used by the user and stores it in the database.
# Parent Task
- #141 | priority | code snapshotting description implement a mechanism which takes a snapshot of the code and language used by the user and stores it in the database parent task | 1 |
556,343 | 16,482,291,717 | IssuesEvent | 2021-05-24 13:22:29 | wazuh/wazuh-docker | https://api.github.com/repos/wazuh/wazuh-docker | closed | [wazuh-docker] Update v4.1.5 with Opendistro 1.13.2 | priority/high type/maintenance | # Goal
According to our latest packages release, which only contains new Opendistro packages, we need to update the repository for using those images. After that, Docker Hub must be updated.
# Tasks
- [x] Modify the repository to bump to 1.13.2 Opendistro version. Take into account the `kibana.yml` [modifications needed](https://github.com/wazuh/wazuh-documentation/blob/4.1/resources/open-distro/kibana/7.x/kibana_all_in_one.yml).
- [x] Re-do v4.1.5 tag.
- [x] Make sure that new images are newly built or trigger the build in Docker Hub. Only ODFE is needed.
- [x] Merge into `stable` branch
- [x] Update `master`, `5.0-dev` and `4.2` with 1.13.2 | 1.0 | [wazuh-docker] Update v4.1.5 with Opendistro 1.13.2 - # Goal
According to our latest packages release, which only contains new Opendistro packages, we need to update the repository for using those images. After that, Docker Hub must be updated.
# Tasks
- [x] Modify the repository to bump to 1.13.2 Opendistro version. Take into account the `kibana.yml` [modifications needed](https://github.com/wazuh/wazuh-documentation/blob/4.1/resources/open-distro/kibana/7.x/kibana_all_in_one.yml).
- [x] Re-do v4.1.5 tag.
- [x] Make sure that new images are newly built or trigger the build in Docker Hub. Only ODFE is needed.
- [x] Merge into `stable` branch
- [x] Update `master`, `5.0-dev` and `4.2` with 1.13.2 | priority | update with opendistro goal according to our latest packages release which only contains new opendistro packages we need to update the repository for using those images after that docker hub must be updated tasks modify the repository to bump to opendistro version take into account the kibana yml re do tag make sure that new images are newly built or trigger the build in docker hub only odfe is needed merge into stable branch update master dev and with | 1 |
304,211 | 9,322,532,357 | IssuesEvent | 2019-03-27 08:27:52 | CS2103-AY1819S2-W15-1/main | https://api.github.com/repos/CS2103-AY1819S2-W15-1/main | closed | As a user I want to see apparels being categorised in their respective type | priority.High type.Story | Locate the clothing item easily | 1.0 | As a user I want to see apparels being categorised in their respective type - Locate the clothing item easily | priority | as a user i want to see apparels being categorised in their respective type locate the clothing item easily | 1 |
237,649 | 7,762,717,260 | IssuesEvent | 2018-06-01 14:22:28 | GoogleCloudPlatform/google-cloud-eclipse | https://api.github.com/repos/GoogleCloudPlatform/google-cloud-eclipse | closed | Builds failing due to Eclipse repo changes? | high priority | I think we encounter this kind of build failures from time to time when there are changes to the Eclipse repos. If I remember correctly, we need to rebuild the target platform by updating the `.tpd` files.
```
29084 [ERROR] Failed to resolve target definition /home/travis/build/GoogleCloudPlatform/google-cloud-eclipse/eclipse/neon/gcp-eclipse-neon.target: Could not find "org.hamcrest.core/1.3.0.v201303031735" in the repositories of the current location -> [Help 1]
29084 [ERROR]
29085 [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
29085 [ERROR] Re-run Maven using the -X switch to enable full debug logging.
29085 [ERROR]
29085 [ERROR] For more information about the errors and possible solutions, please read the following articles:
29085 [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MavenExecutionException
```
By the way, why `eclipse/neon/.project` missing? I think it got lost accidentally. | 1.0 | Builds failing due to Eclipse repo changes? - I think we encounter this kind of build failures from time to time when there are changes to the Eclipse repos. If I remember correctly, we need to rebuild the target platform by updating the `.tpd` files.
```
29084 [ERROR] Failed to resolve target definition /home/travis/build/GoogleCloudPlatform/google-cloud-eclipse/eclipse/neon/gcp-eclipse-neon.target: Could not find "org.hamcrest.core/1.3.0.v201303031735" in the repositories of the current location -> [Help 1]
29084 [ERROR]
29085 [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
29085 [ERROR] Re-run Maven using the -X switch to enable full debug logging.
29085 [ERROR]
29085 [ERROR] For more information about the errors and possible solutions, please read the following articles:
29085 [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MavenExecutionException
```
By the way, why `eclipse/neon/.project` missing? I think it got lost accidentally. | priority | builds failing due to eclipse repo changes i think we encounter this kind of build failures from time to time when there are changes to the eclipse repos if i remember correctly we need to rebuild the target platform by updating the tpd files failed to resolve target definition home travis build googlecloudplatform google cloud eclipse eclipse neon gcp eclipse neon target could not find org hamcrest core in the repositories of the current location to see the full stack trace of the errors re run maven with the e switch re run maven using the x switch to enable full debug logging for more information about the errors and possible solutions please read the following articles by the way why eclipse neon project missing i think it got lost accidentally | 1 |
242,476 | 7,842,799,680 | IssuesEvent | 2018-06-19 01:47:53 | 11ty/eleventy | https://api.github.com/repos/11ty/eleventy | closed | Collection sorting issues | bug high-priority | This has been hard to debug, but it seems whenever I hit a certain amount of pages using eleventy, my homepage/archives collection breaks down.
```js
eleventyConfig.addCollection('all', collection => {
return collection
.getFilteredByGlob('**/+(bookmarks|posts|screencasts)/**/!(index)*.md')
.reverse()
})
```
This has been working, but anytime I try and add a new page or post, this collection gets ignored and only screencasts are output.
Repo: https://github.com/alexcarpenter/alexcarpenter.github.io | 1.0 | Collection sorting issues - This has been hard to debug, but it seems whenever I hit a certain amount of pages using eleventy, my homepage/archives collection breaks down.
```js
eleventyConfig.addCollection('all', collection => {
return collection
.getFilteredByGlob('**/+(bookmarks|posts|screencasts)/**/!(index)*.md')
.reverse()
})
```
This has been working, but anytime I try and add a new page or post, this collection gets ignored and only screencasts are output.
Repo: https://github.com/alexcarpenter/alexcarpenter.github.io | priority | collection sorting issues this has been hard to debug but it seems whenever i hit a certain amount of pages using eleventy my homepage archives collection breaks down js eleventyconfig addcollection all collection return collection getfilteredbyglob bookmarks posts screencasts index md reverse this has been working but anytime i try and add a new page or post this collection gets ignored and only screencasts are output repo | 1 |
110,996 | 4,446,329,702 | IssuesEvent | 2016-08-20 16:13:11 | jahirfiquitiva/IconShowcase | https://api.github.com/repos/jahirfiquitiva/IconShowcase | opened | Fix AltWallpaperViewerActivity FAB and Snackbars margin in tablets | bug enhancement help wanted high priority | The FAB and snackbars go behind the navigation bar. The current implemented code to add margin to them doesn't seem to work in tablets
Tested on a Nexus 7 2013 in emulator.
Result:


| 1.0 | Fix AltWallpaperViewerActivity FAB and Snackbars margin in tablets - The FAB and snackbars go behind the navigation bar. The current implemented code to add margin to them doesn't seem to work in tablets
Tested on a Nexus 7 2013 in emulator.
Result:


| priority | fix altwallpapervieweractivity fab and snackbars margin in tablets the fab and snackbars go behind the navigation bar the current implemented code to add margin to them doesn t seem to work in tablets tested on a nexus in emulator result | 1 |
182,119 | 6,667,321,336 | IssuesEvent | 2017-10-03 12:06:42 | geosolutions-it/unesco-ihp | https://api.github.com/repos/geosolutions-it/unesco-ihp | reopened | For a person to register, she has to accept the ToU, otherwise, she cannot register to WINS. | enhancement Priority: High unesco-ihp | This is something we already discussed together, but we realized it was missing in the table.
What we want is to force users to accept the ToU, otherwise, they should not be able to register. What we have in mind is to add a tick box and a sentence at the end of the "Register" form, before the "Sign up" button. The sentence would say 'I agree to the IHP-WINS Terms of Use" , where 'Terms of Use' would link to http://ihp-wins-dev.geo-solutions.it/uploaded/terms-of-use/ToU_IHP-WINS_30august17.pdf .
Would-be users should not be able to sign up if the box is not ticked. If it is not ticked and registrating person tries to sign up, a red message under the ToU field should appear, stating "You may not register unless you agree to our Terms of Use". | 1.0 | For a person to register, she has to accept the ToU, otherwise, she cannot register to WINS. - This is something we already discussed together, but we realized it was missing in the table.
What we want is to force users to accept the ToU, otherwise, they should not be able to register. What we have in mind is to add a tick box and a sentence at the end of the "Register" form, before the "Sign up" button. The sentence would say 'I agree to the IHP-WINS Terms of Use" , where 'Terms of Use' would link to http://ihp-wins-dev.geo-solutions.it/uploaded/terms-of-use/ToU_IHP-WINS_30august17.pdf .
Would-be users should not be able to sign up if the box is not ticked. If it is not ticked and registrating person tries to sign up, a red message under the ToU field should appear, stating "You may not register unless you agree to our Terms of Use". | priority | for a person to register she has to accept the tou otherwise she cannot register to wins this is something we already discussed together but we realized it was missing in the table what we want is to force users to accept the tou otherwise they should not be able to register what we have in mind is to add a tick box and a sentence at the end of the register form before the sign up button the sentence would say i agree to the ihp wins terms of use where terms of use would link to would be users should not be able to sign up if the box is not ticked if it is not ticked and registrating person tries to sign up a red message under the tou field should appear stating you may not register unless you agree to our terms of use | 1 |
239,405 | 7,794,607,106 | IssuesEvent | 2018-06-08 03:43:53 | minio/minio | https://api.github.com/repos/minio/minio | closed | Unable to click into folder in browser UX in the latest release | priority: high regression | Install Minio latest release or source. Start the server. Open browser. Create a bucket and put some prefix/objects in it.
Double-clicking on the folder does not take you inside the folder.
## Expected Behavior
Double-clicking on the folder should take you inside the folder in the minio browser.
## Current Behavior
Nothing happens on double clicking.
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
## Steps to Reproduce (for bugs)
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1.
2.
3.
4.
## Context
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
## Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Version used (`minio version`): RELEASE.2018-06-07T19-10-07Z
* Environment name and version (e.g. nginx 1.9.1):
* Server type and version:
* Operating System and version (`uname -a`):
* Link to your project:
| 1.0 | Unable to click into folder in browser UX in the latest release - Install Minio latest release or source. Start the server. Open browser. Create a bucket and put some prefix/objects in it.
Double-clicking on the folder does not take you inside the folder.
## Expected Behavior
Double-clicking on the folder should take you inside the folder in the minio browser.
## Current Behavior
Nothing happens on double clicking.
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
## Steps to Reproduce (for bugs)
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1.
2.
3.
4.
## Context
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
## Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Version used (`minio version`): RELEASE.2018-06-07T19-10-07Z
* Environment name and version (e.g. nginx 1.9.1):
* Server type and version:
* Operating System and version (`uname -a`):
* Link to your project:
| priority | unable to click into folder in browser ux in the latest release install minio latest release or source start the server open browser create a bucket and put some prefix objects in it double clicking on the folder does not take you inside the folder expected behavior double clicking on the folder should take you inside the folder in the minio browser current behavior nothing happens on double clicking possible solution steps to reproduce for bugs context your environment version used minio version release environment name and version e g nginx server type and version operating system and version uname a link to your project | 1 |
120,316 | 4,787,881,056 | IssuesEvent | 2016-10-30 08:14:36 | CS2103AUG2016-W15-C4/main | https://api.github.com/repos/CS2103AUG2016-W15-C4/main | closed | Update feedback message for expired task date | priority.high type.task | Currently, the feedback message for expired task date is message name constraints.
It should be "Task Date cannot be in the past!". | 1.0 | Update feedback message for expired task date - Currently, the feedback message for expired task date is message name constraints.
It should be "Task Date cannot be in the past!". | priority | update feedback message for expired task date currently the feedback message for expired task date is message name constraints it should be task date cannot be in the past | 1 |
198,799 | 6,977,805,114 | IssuesEvent | 2017-12-12 15:41:06 | kcigeospatial/balt_co_ETL | https://api.github.com/repos/kcigeospatial/balt_co_ETL | opened | 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.
**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 = "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.
**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 = "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 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 new development | 1 |
43,849 | 2,893,430,832 | IssuesEvent | 2015-06-15 17:57:07 | SoylentNews/rehash | https://api.github.com/repos/SoylentNews/rehash | closed | Subscriptions are not working. | Bug: Critical Priority: High | New PayPal subscriptions are not working. Here is the error from apache logs for the latest error:
`<html>`
`<head><title>An Error Occurred</title></head>`
`<body>`
`<h1>An Error Occurred</h1>`
`<p>500 Can't connect to www.paypal.com:443 (certificate verify failed)</p>`
`</body>`
`</html>`
`[Sun Jun 14 14:56:35 2015] [error] Can't use string ("-1") as a HASH ref while "strict refs" in use at /srv/soylentnews.org/rehash/site/soylent-mainpage/htdocs/subscribe.pl line 229.\n`
Looks like PayPal may have changed something on their end. Or do we need to tell our code to ignore cert errors.
| 1.0 | Subscriptions are not working. - New PayPal subscriptions are not working. Here is the error from apache logs for the latest error:
`<html>`
`<head><title>An Error Occurred</title></head>`
`<body>`
`<h1>An Error Occurred</h1>`
`<p>500 Can't connect to www.paypal.com:443 (certificate verify failed)</p>`
`</body>`
`</html>`
`[Sun Jun 14 14:56:35 2015] [error] Can't use string ("-1") as a HASH ref while "strict refs" in use at /srv/soylentnews.org/rehash/site/soylent-mainpage/htdocs/subscribe.pl line 229.\n`
Looks like PayPal may have changed something on their end. Or do we need to tell our code to ignore cert errors.
| priority | subscriptions are not working new paypal subscriptions are not working here is the error from apache logs for the latest error an error occurred an error occurred can t connect to certificate verify failed can t use string as a hash ref while strict refs in use at srv soylentnews org rehash site soylent mainpage htdocs subscribe pl line n looks like paypal may have changed something on their end or do we need to tell our code to ignore cert errors | 1 |
575,836 | 17,063,839,841 | IssuesEvent | 2021-07-07 03:19:57 | notawakestudio/NUSConnect | https://api.github.com/repos/notawakestudio/NUSConnect | closed | WK 8 SPRINT | priority.High | Docs
- [x] #181 system testing (JX)
Milestone 2
- [x] review team 1 (YL)
- [x] review team 2 (JX)
- [x] review team 3 (JX)
Quiz
- [x] #191
- [x] updating quiz UI (JX)
Module
- [x] Link backend to ensure announcement working (YL)
- [x] #209
- [x] #210
- [x] List of modules (YL)
Gamification
- [x] #193
- [x] #194
- [ ] #197
Bug
- [x] Fix link from module and quiz (JX)
- [ ] #196
| 1.0 | WK 8 SPRINT - Docs
- [x] #181 system testing (JX)
Milestone 2
- [x] review team 1 (YL)
- [x] review team 2 (JX)
- [x] review team 3 (JX)
Quiz
- [x] #191
- [x] updating quiz UI (JX)
Module
- [x] Link backend to ensure announcement working (YL)
- [x] #209
- [x] #210
- [x] List of modules (YL)
Gamification
- [x] #193
- [x] #194
- [ ] #197
Bug
- [x] Fix link from module and quiz (JX)
- [ ] #196
| priority | wk sprint docs system testing jx milestone review team yl review team jx review team jx quiz updating quiz ui jx module link backend to ensure announcement working yl list of modules yl gamification bug fix link from module and quiz jx | 1 |
564,147 | 16,719,034,091 | IssuesEvent | 2021-06-10 03:44:24 | ArctosDB/arctos | https://api.github.com/repos/ArctosDB/arctos | closed | Better Project metadata for querying and curation | Blocked Display/Interface Enhancement Function-PublicationOrProject Priority-High | Right now we have no way of knowing who created or last edited a Project, which is important for a variety of reasons. One is end of year reporting on collection activity.
I would even like to have some indicator of the primary collection a Project is associated with (e.g., MVZ Birds, MSB Mamm, etc) This could be included in the title of course as a best practice (e.g., we start project titles with "MVZ Archives:" ) but that is cumbersome, denormalizing and frustrating.
We should discuss if we need other curatorial controls on who can edit as well such as toggles like on locality (accepted, verified)
Once decisions are made on how, this would allow searches on Projects to be narrowed or filterd on collections which would facilitate queries.
Related to #2567
| 1.0 | Better Project metadata for querying and curation - Right now we have no way of knowing who created or last edited a Project, which is important for a variety of reasons. One is end of year reporting on collection activity.
I would even like to have some indicator of the primary collection a Project is associated with (e.g., MVZ Birds, MSB Mamm, etc) This could be included in the title of course as a best practice (e.g., we start project titles with "MVZ Archives:" ) but that is cumbersome, denormalizing and frustrating.
We should discuss if we need other curatorial controls on who can edit as well such as toggles like on locality (accepted, verified)
Once decisions are made on how, this would allow searches on Projects to be narrowed or filterd on collections which would facilitate queries.
Related to #2567
| priority | better project metadata for querying and curation right now we have no way of knowing who created or last edited a project which is important for a variety of reasons one is end of year reporting on collection activity i would even like to have some indicator of the primary collection a project is associated with e g mvz birds msb mamm etc this could be included in the title of course as a best practice e g we start project titles with mvz archives but that is cumbersome denormalizing and frustrating we should discuss if we need other curatorial controls on who can edit as well such as toggles like on locality accepted verified once decisions are made on how this would allow searches on projects to be narrowed or filterd on collections which would facilitate queries related to | 1 |
226,208 | 7,510,859,153 | IssuesEvent | 2018-04-11 03:09:15 | elm-street-technology/elevate-ui | https://api.github.com/repos/elm-street-technology/elevate-ui | opened | Select– clear selection | bug priority: high | Currently, there's no way to clear the value out of a Select input.
My immediate thought is to introduce an `X` icon/button next to the down caret that clears the value when clicked.
Open to other solutions if anyone has suggestions/recommendations. | 1.0 | Select– clear selection - Currently, there's no way to clear the value out of a Select input.
My immediate thought is to introduce an `X` icon/button next to the down caret that clears the value when clicked.
Open to other solutions if anyone has suggestions/recommendations. | priority | select– clear selection currently there s no way to clear the value out of a select input my immediate thought is to introduce an x icon button next to the down caret that clears the value when clicked open to other solutions if anyone has suggestions recommendations | 1 |
745,665 | 25,994,089,373 | IssuesEvent | 2022-12-20 10:06:59 | LiskHQ/lisk-desktop | https://api.github.com/repos/LiskHQ/lisk-desktop | closed | Adopt Transaction push update and invalid query cache | priority: high domain: transaction | ### Description
On broadcasting a transaction, it's going to the transaction pool and submitting the transaction to network. Wallet will receive the transaction by subscription to the web socket channel. At the moment, several of the cache needs to be updated or invalidated
### Acceptance Criteria
- Subscribe to transaction channel 'new.transactions', 'delete.transactions'
- Update Transaction history (follow the logic to show new event button on query table)
- Invalidate auth cache
- Add notification for when current account receives tokens. It should look like ```new Notification(i18n.t('{{amount}} {{token}} Received', { amount, token }), {
body: i18n.t('Your account just received {{amount}} {{token}} {{message}}', { amount, token, message }),
});```
### Additional Information
- After broadcast, keep transaction details in React Context
- In web socket push data, we need to merge the transaction cache with the new transaction found
- Remove the transaction details in React Context
| 1.0 | Adopt Transaction push update and invalid query cache - ### Description
On broadcasting a transaction, it's going to the transaction pool and submitting the transaction to network. Wallet will receive the transaction by subscription to the web socket channel. At the moment, several of the cache needs to be updated or invalidated
### Acceptance Criteria
- Subscribe to transaction channel 'new.transactions', 'delete.transactions'
- Update Transaction history (follow the logic to show new event button on query table)
- Invalidate auth cache
- Add notification for when current account receives tokens. It should look like ```new Notification(i18n.t('{{amount}} {{token}} Received', { amount, token }), {
body: i18n.t('Your account just received {{amount}} {{token}} {{message}}', { amount, token, message }),
});```
### Additional Information
- After broadcast, keep transaction details in React Context
- In web socket push data, we need to merge the transaction cache with the new transaction found
- Remove the transaction details in React Context
| priority | adopt transaction push update and invalid query cache description on broadcasting a transaction it s going to the transaction pool and submitting the transaction to network wallet will receive the transaction by subscription to the web socket channel at the moment several of the cache needs to be updated or invalidated acceptance criteria subscribe to transaction channel new transactions delete transactions update transaction history follow the logic to show new event button on query table invalidate auth cache add notification for when current account receives tokens it should look like new notification t amount token received amount token body t your account just received amount token message amount token message additional information after broadcast keep transaction details in react context in web socket push data we need to merge the transaction cache with the new transaction found remove the transaction details in react context | 1 |
699,361 | 24,014,176,923 | IssuesEvent | 2022-09-14 21:59:36 | status-im/status-desktop | https://api.github.com/repos/status-im/status-desktop | opened | black/blank channels appear after moving an existing channel to a new category | bug Communities priority 1: high E:Bugfixes E:Communities | # Bug Report
## Steps to reproduce
1. create a channel
2. create a community and select the channell
result: OTHER users will see blank channels until they restart the app
 | 1.0 | black/blank channels appear after moving an existing channel to a new category - # Bug Report
## Steps to reproduce
1. create a channel
2. create a community and select the channell
result: OTHER users will see blank channels until they restart the app
 | priority | black blank channels appear after moving an existing channel to a new category bug report steps to reproduce create a channel create a community and select the channell result other users will see blank channels until they restart the app | 1 |
419,439 | 12,223,658,097 | IssuesEvent | 2020-05-02 18:36:16 | match4everyone/match4healthcare | https://api.github.com/repos/match4everyone/match4healthcare | closed | Replace Legal Questions Page | high-priority question texte | https://app.slack.com/client/T0100P155FD/C010K4T5YGZ/thread/C010K4T5YGZ-1587019470.015000
Im Dashboard der Studierenden ist noch der Link zu der “Legal Questions” Seite. Diese Informationen wollten wir lieber ersetzen. Am besten hiermit, weil dies die Arbeitsrechtlichen Regelungen gut darstellt: https://www.marburger-bund.de/mitarbeit-studierenden-pandemie
| 1.0 | Replace Legal Questions Page - https://app.slack.com/client/T0100P155FD/C010K4T5YGZ/thread/C010K4T5YGZ-1587019470.015000
Im Dashboard der Studierenden ist noch der Link zu der “Legal Questions” Seite. Diese Informationen wollten wir lieber ersetzen. Am besten hiermit, weil dies die Arbeitsrechtlichen Regelungen gut darstellt: https://www.marburger-bund.de/mitarbeit-studierenden-pandemie
| priority | replace legal questions page im dashboard der studierenden ist noch der link zu der “legal questions” seite diese informationen wollten wir lieber ersetzen am besten hiermit weil dies die arbeitsrechtlichen regelungen gut darstellt | 1 |
765,106 | 26,833,326,824 | IssuesEvent | 2023-02-02 17:29:47 | KinsonDigital/Velaptor | https://api.github.com/repos/KinsonDigital/Velaptor | closed | 🚧Setup Codecov to collect code coverage data | workflow high priority preview on hold | ### I have done the items below . . .
- [X] I have updated the title by replacing the '**_<title_**>' section.
### Description
Currently, the Velaptor library is not publishing code coverage results to [Codecov](https://app.codecov.io)
This is a shame. Let's fix this!!!
Set up **_Codecov_** to collect coverage data from the project and verify that the code coverage GitHub secret is correct.
### Acceptance Criteria
**This issue is finished when:**
- [x] Code coverage collection with [Codecov](https://app.codecov.io) setup
### ToDo Items
- [x] Draft pull request created and linked to this issue
- [X] Priority label added to issue (**_low priority_**, **_medium priority_**, or **_high priority_**)
- [X] Issue linked to the proper project
- [x] Issue linked to proper milestone
### Issue Dependencies
_No response_
### Related Work
_No response_
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct | 1.0 | 🚧Setup Codecov to collect code coverage data - ### I have done the items below . . .
- [X] I have updated the title by replacing the '**_<title_**>' section.
### Description
Currently, the Velaptor library is not publishing code coverage results to [Codecov](https://app.codecov.io)
This is a shame. Let's fix this!!!
Set up **_Codecov_** to collect coverage data from the project and verify that the code coverage GitHub secret is correct.
### Acceptance Criteria
**This issue is finished when:**
- [x] Code coverage collection with [Codecov](https://app.codecov.io) setup
### ToDo Items
- [x] Draft pull request created and linked to this issue
- [X] Priority label added to issue (**_low priority_**, **_medium priority_**, or **_high priority_**)
- [X] Issue linked to the proper project
- [x] Issue linked to proper milestone
### Issue Dependencies
_No response_
### Related Work
_No response_
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct | priority | 🚧setup codecov to collect code coverage data i have done the items below i have updated the title by replacing the section description currently the velaptor library is not publishing code coverage results to this is a shame let s fix this set up codecov to collect coverage data from the project and verify that the code coverage github secret is correct acceptance criteria this issue is finished when code coverage collection with setup todo items draft pull request created and linked to this issue priority label added to issue low priority medium priority or high priority issue linked to the proper project issue linked to proper milestone issue dependencies no response related work no response code of conduct i agree to follow this project s code of conduct | 1 |
403,927 | 11,849,139,908 | IssuesEvent | 2020-03-24 14:49:20 | hotosm/tasking-manager | https://api.github.com/repos/hotosm/tasking-manager | opened | Rename “select another task” to “stop validating” on validation | Component: Frontend Difficulty: Easy Priority: High Status: Needs implementation Type: Enhancement | Feedback from the validators:
> I have to quit but cannot find that option during validation . Only Validate and mark as finished or More mapping is needed. | 1.0 | Rename “select another task” to “stop validating” on validation - Feedback from the validators:
> I have to quit but cannot find that option during validation . Only Validate and mark as finished or More mapping is needed. | priority | rename “select another task” to “stop validating” on validation feedback from the validators i have to quit but cannot find that option during validation only validate and mark as finished or more mapping is needed | 1 |
4,778 | 2,563,840,734 | IssuesEvent | 2015-02-06 15:54:58 | IQSS/dataverse.org | https://api.github.com/repos/IQSS/dataverse.org | closed | Fix URL to Abacus Dataverse repository on homepage | Component: Content Priority: High Type: Bug | The URL is pointing to the general library website but should point directly to their Dataverse instance:
http://dvn.library.ubc.ca/dvn/
As seen here: https://docs.google.com/document/d/1w6S5svVauDALRiz8WCH1mmFxIMCJxzG1-1cttdY7mOo/edit?usp=sharing | 1.0 | Fix URL to Abacus Dataverse repository on homepage - The URL is pointing to the general library website but should point directly to their Dataverse instance:
http://dvn.library.ubc.ca/dvn/
As seen here: https://docs.google.com/document/d/1w6S5svVauDALRiz8WCH1mmFxIMCJxzG1-1cttdY7mOo/edit?usp=sharing | priority | fix url to abacus dataverse repository on homepage the url is pointing to the general library website but should point directly to their dataverse instance as seen here | 1 |
555,105 | 16,447,611,346 | IssuesEvent | 2021-05-20 21:47:52 | coding-to-music/coding-to-music.github.io | https://api.github.com/repos/coding-to-music/coding-to-music.github.io | opened | Have image preview able to be generated with content over an image | HelpTheUser HighPriority SEO | Similar to the image preview that occurred with generating a vscode issue when sharing to social media it generated an image
Especially for submitted content

| 1.0 | Have image preview able to be generated with content over an image - Similar to the image preview that occurred with generating a vscode issue when sharing to social media it generated an image
Especially for submitted content

| priority | have image preview able to be generated with content over an image similar to the image preview that occurred with generating a vscode issue when sharing to social media it generated an image especially for submitted content | 1 |
483,058 | 13,917,981,965 | IssuesEvent | 2020-10-21 06:58:59 | AY2021S1-CS2113T-W13-2/tp | https://api.github.com/repos/AY2021S1-CS2113T-W13-2/tp | closed | Add calorie intake goal | priority.High type.Story | > As a student I can view my remaining calories intake for the day so that I can plan what I should eat for the rest of the day.
Add a calorie intake goal so that the remaining calories intake can be viewed. | 1.0 | Add calorie intake goal - > As a student I can view my remaining calories intake for the day so that I can plan what I should eat for the rest of the day.
Add a calorie intake goal so that the remaining calories intake can be viewed. | priority | add calorie intake goal as a student i can view my remaining calories intake for the day so that i can plan what i should eat for the rest of the day add a calorie intake goal so that the remaining calories intake can be viewed | 1 |
600,668 | 18,349,949,539 | IssuesEvent | 2021-10-08 11:15:02 | wazuh/wazuh-splunk | https://api.github.com/repos/wazuh/wazuh-splunk | closed | Research Wazuh RBAC implementation | enhancement priority/high | |Wazuh| Splunk |
| --- | --- |
| 4.2.x| 8.1.x |
We need to investigate about implement Wazuh RBAC in the Splunk app.
We should determine:
- [x] Strategy to configure `run_as`.
- [x] Strategy to map Splunk users with Wazuh users
> Search for the Splunk API to get the logged user, and the list of users from the front side and the backside.
- [x] Services (resolvers) to implement permissions to the resources.
> We should use the same function as the Wazuh API to check the permissions.
> We should use a centralized dictionary for the relation between the sections and permission that they need
- [x] Management (users, policies, role mapping, etc). | 1.0 | Research Wazuh RBAC implementation - |Wazuh| Splunk |
| --- | --- |
| 4.2.x| 8.1.x |
We need to investigate about implement Wazuh RBAC in the Splunk app.
We should determine:
- [x] Strategy to configure `run_as`.
- [x] Strategy to map Splunk users with Wazuh users
> Search for the Splunk API to get the logged user, and the list of users from the front side and the backside.
- [x] Services (resolvers) to implement permissions to the resources.
> We should use the same function as the Wazuh API to check the permissions.
> We should use a centralized dictionary for the relation between the sections and permission that they need
- [x] Management (users, policies, role mapping, etc). | priority | research wazuh rbac implementation wazuh splunk x x we need to investigate about implement wazuh rbac in the splunk app we should determine strategy to configure run as strategy to map splunk users with wazuh users search for the splunk api to get the logged user and the list of users from the front side and the backside services resolvers to implement permissions to the resources we should use the same function as the wazuh api to check the permissions we should use a centralized dictionary for the relation between the sections and permission that they need management users policies role mapping etc | 1 |
691,275 | 23,690,770,599 | IssuesEvent | 2022-08-29 10:34:13 | bryntum/support | https://api.github.com/repos/bryntum/support | closed | Dependencies not rendered after expanding parent nodes in a tree resource data set | bug resolved high-priority forum | [Forum post](https://www.bryntum.com/forum/viewtopic.php?f=44&t=22156&p=109582#p109582)
Using the data provided by the user as an example, and using the configuration shared in the zip file (based on inline-data demo, can copy/paste the code to app.js).
- If you use the non-tree resources data (**resources**) the dependencies are rendered correctly;
- But if you use the tree resources data (**treeResources**) the events and other parts are rendered correctly, but not the dependencies;
The dependencies store is correctly set in both cases.
[example.zip](https://github.com/bryntum/support/files/9427463/example.zip) | 1.0 | Dependencies not rendered after expanding parent nodes in a tree resource data set - [Forum post](https://www.bryntum.com/forum/viewtopic.php?f=44&t=22156&p=109582#p109582)
Using the data provided by the user as an example, and using the configuration shared in the zip file (based on inline-data demo, can copy/paste the code to app.js).
- If you use the non-tree resources data (**resources**) the dependencies are rendered correctly;
- But if you use the tree resources data (**treeResources**) the events and other parts are rendered correctly, but not the dependencies;
The dependencies store is correctly set in both cases.
[example.zip](https://github.com/bryntum/support/files/9427463/example.zip) | priority | dependencies not rendered after expanding parent nodes in a tree resource data set using the data provided by the user as an example and using the configuration shared in the zip file based on inline data demo can copy paste the code to app js if you use the non tree resources data resources the dependencies are rendered correctly but if you use the tree resources data treeresources the events and other parts are rendered correctly but not the dependencies the dependencies store is correctly set in both cases | 1 |
375,008 | 11,098,618,555 | IssuesEvent | 2019-12-16 15:31:05 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [studio-ui] Upgrade dependencies | priority: high task | - serialize-javascript
- lodash
- set-value
- mixin-deep
- eslint-utils
- lodash.template
- fstream | 1.0 | [studio-ui] Upgrade dependencies - - serialize-javascript
- lodash
- set-value
- mixin-deep
- eslint-utils
- lodash.template
- fstream | priority | upgrade dependencies serialize javascript lodash set value mixin deep eslint utils lodash template fstream | 1 |
97,345 | 3,989,080,601 | IssuesEvent | 2016-05-09 12:44:54 | Flexget/Flexget | https://api.github.com/repos/Flexget/Flexget | closed | imdb_list fails consistently | Bug Duplicate High priority | flexget.log:
```
2016-05-01 23:21 CRITICAL plugin MYTASKNAME Login to imdb failed. Check your credentials.
2016-05-01 23:21 WARNING task MYTASKNAME Aborting task (plugin: list_reject)
```
crashlog:
```
2016-04-30 18:50 CRITICAL task MYTASKNAME BUG: Unhandled error in plugin list_reject: 404 Client Error: Not Found for url: http://www.imdb.com/list/export?list_id=ratings&author_id=ur1250180
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/flexget/task.py", line 438, in __run_plugin
return method(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/flexget/event.py", line 22, in __call__
return self.func(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/filter/list_reject.py", line 33, in on_task_filter
if entry in thelist:
File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/list/imdb_list.py", line 148, in __contains__
return any(e['imdb_id'] == entry['imdb_id'] for e in self.items)
File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/list/imdb_list.py", line 103, in items
(self.list_id, self.user_id))
File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line 480, in get
return self.request('GET', url, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/flexget/utils/requests.py", line 239, in request
result.raise_for_status()
File "/usr/local/lib/python2.7/dist-packages/requests/models.py", line 840, in raise_for_status
raise HTTPError(http_error_msg, response=self)
HTTPError: 404 Client Error: Not Found for url: http://www.imdb.com/list/export?list_id=ratings&author_id=ur1250180
```
Yet the link works perfectly when opened from a different IP. So this is an issue with IMDB throttling incoming connections.
Is there a sane way to limit the frequency which Flexget uses to fetch stuff from IMDB? | 1.0 | imdb_list fails consistently - flexget.log:
```
2016-05-01 23:21 CRITICAL plugin MYTASKNAME Login to imdb failed. Check your credentials.
2016-05-01 23:21 WARNING task MYTASKNAME Aborting task (plugin: list_reject)
```
crashlog:
```
2016-04-30 18:50 CRITICAL task MYTASKNAME BUG: Unhandled error in plugin list_reject: 404 Client Error: Not Found for url: http://www.imdb.com/list/export?list_id=ratings&author_id=ur1250180
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/flexget/task.py", line 438, in __run_plugin
return method(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/flexget/event.py", line 22, in __call__
return self.func(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/filter/list_reject.py", line 33, in on_task_filter
if entry in thelist:
File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/list/imdb_list.py", line 148, in __contains__
return any(e['imdb_id'] == entry['imdb_id'] for e in self.items)
File "/usr/local/lib/python2.7/dist-packages/flexget/plugins/list/imdb_list.py", line 103, in items
(self.list_id, self.user_id))
File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line 480, in get
return self.request('GET', url, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/flexget/utils/requests.py", line 239, in request
result.raise_for_status()
File "/usr/local/lib/python2.7/dist-packages/requests/models.py", line 840, in raise_for_status
raise HTTPError(http_error_msg, response=self)
HTTPError: 404 Client Error: Not Found for url: http://www.imdb.com/list/export?list_id=ratings&author_id=ur1250180
```
Yet the link works perfectly when opened from a different IP. So this is an issue with IMDB throttling incoming connections.
Is there a sane way to limit the frequency which Flexget uses to fetch stuff from IMDB? | priority | imdb list fails consistently flexget log critical plugin mytaskname login to imdb failed check your credentials warning task mytaskname aborting task plugin list reject crashlog critical task mytaskname bug unhandled error in plugin list reject client error not found for url traceback most recent call last file usr local lib dist packages flexget task py line in run plugin return method args kwargs file usr local lib dist packages flexget event py line in call return self func args kwargs file usr local lib dist packages flexget plugins filter list reject py line in on task filter if entry in thelist file usr local lib dist packages flexget plugins list imdb list py line in contains return any e entry for e in self items file usr local lib dist packages flexget plugins list imdb list py line in items self list id self user id file usr local lib dist packages requests sessions py line in get return self request get url kwargs file usr local lib dist packages flexget utils requests py line in request result raise for status file usr local lib dist packages requests models py line in raise for status raise httperror http error msg response self httperror client error not found for url yet the link works perfectly when opened from a different ip so this is an issue with imdb throttling incoming connections is there a sane way to limit the frequency which flexget uses to fetch stuff from imdb | 1 |
579,087 | 17,172,300,364 | IssuesEvent | 2021-07-15 06:58:47 | apache/echarts | https://api.github.com/repos/apache/echarts | closed | report a problem, that is the tooltip of type map. | bug difficulty: easy en priority: high | ### Version
5.0.2
### Steps to reproduce
```ts
option.tooltip = {
trigger: 'item',
confine: true,
formatter: function () {
const item = mapData[param.dataIndex];
// TODO echarts 5 bug 会显示上次 tip
// 没有数据则不展示 tooltip
if (!item) return null;
}
```
Tooltip will show last content. I hope is not displayed. tips: 4.9.0 is ok.

### What is expected?
return null will not display last tooltip
### What is actually happening?
return null will display last tooltip
<!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
<!-- This issue is in English. DO NOT REMOVE --> | 1.0 | report a problem, that is the tooltip of type map. - ### Version
5.0.2
### Steps to reproduce
```ts
option.tooltip = {
trigger: 'item',
confine: true,
formatter: function () {
const item = mapData[param.dataIndex];
// TODO echarts 5 bug 会显示上次 tip
// 没有数据则不展示 tooltip
if (!item) return null;
}
```
Tooltip will show last content. I hope is not displayed. tips: 4.9.0 is ok.

### What is expected?
return null will not display last tooltip
### What is actually happening?
return null will display last tooltip
<!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
<!-- This issue is in English. DO NOT REMOVE --> | priority | report a problem that is the tooltip of type map version steps to reproduce ts option tooltip trigger item confine true formatter function const item mapdata todo echarts bug 会显示上次 tip 没有数据则不展示 tooltip if item return null tooltip will show last content i hope is not displayed tips is ok what is expected return null will not display last tooltip what is actually happening return null will display last tooltip | 1 |
721,473 | 24,827,670,271 | IssuesEvent | 2022-10-25 22:28:48 | az-digital/az_quickstart | https://api.github.com/repos/az-digital/az_quickstart | opened | Add Landing Page content type to Quickstart | enhancement high priority 2.6.x only | ## Motivation
Multiple clients have requested a "landing page" feature in Quickstart which would remove some page elements to help focus the visitor on a single call-to-action.
## Proposed Resolution
### Describe the solution you'd like
Essentially, the Landing Page content type should copy the style of the landing pages on the Eller site (see Additional context section below). The current requirements are briefly stated as:
- Full width
- No top nav menu, search, or header region
- Keep footer the same
One possible solution is using CSS in the content type module to hide the unwanted elements.
Any solution should include documentation of the content type on quickstart.arizona.edu.
### Describe alternatives you've considered
Other alternatives could be explored in the process of completing this issue. Suggestions are welcome!
### Roles and Permissions considerations
A clear and concise description of how each of the following roles would be impacted by this change:
- Anonymous user: no impact
- Authenticated user: no impact
- Content editor: add permissions to create/edit/delete own/revert/clone Landing Page nodes
- Content administrator: all above permissions, plus add permission to delete any Landing Page nodes
- Administrator: all above permissions
## Additional context
Example landing pages on the Eller site:
- https://eller.arizona.edu/landing/nau
- https://eller.arizona.edu/landing/dedication
| 1.0 | Add Landing Page content type to Quickstart - ## Motivation
Multiple clients have requested a "landing page" feature in Quickstart which would remove some page elements to help focus the visitor on a single call-to-action.
## Proposed Resolution
### Describe the solution you'd like
Essentially, the Landing Page content type should copy the style of the landing pages on the Eller site (see Additional context section below). The current requirements are briefly stated as:
- Full width
- No top nav menu, search, or header region
- Keep footer the same
One possible solution is using CSS in the content type module to hide the unwanted elements.
Any solution should include documentation of the content type on quickstart.arizona.edu.
### Describe alternatives you've considered
Other alternatives could be explored in the process of completing this issue. Suggestions are welcome!
### Roles and Permissions considerations
A clear and concise description of how each of the following roles would be impacted by this change:
- Anonymous user: no impact
- Authenticated user: no impact
- Content editor: add permissions to create/edit/delete own/revert/clone Landing Page nodes
- Content administrator: all above permissions, plus add permission to delete any Landing Page nodes
- Administrator: all above permissions
## Additional context
Example landing pages on the Eller site:
- https://eller.arizona.edu/landing/nau
- https://eller.arizona.edu/landing/dedication
| priority | add landing page content type to quickstart motivation multiple clients have requested a landing page feature in quickstart which would remove some page elements to help focus the visitor on a single call to action proposed resolution describe the solution you d like essentially the landing page content type should copy the style of the landing pages on the eller site see additional context section below the current requirements are briefly stated as full width no top nav menu search or header region keep footer the same one possible solution is using css in the content type module to hide the unwanted elements any solution should include documentation of the content type on quickstart arizona edu describe alternatives you ve considered other alternatives could be explored in the process of completing this issue suggestions are welcome roles and permissions considerations a clear and concise description of how each of the following roles would be impacted by this change anonymous user no impact authenticated user no impact content editor add permissions to create edit delete own revert clone landing page nodes content administrator all above permissions plus add permission to delete any landing page nodes administrator all above permissions additional context example landing pages on the eller site | 1 |
719,376 | 24,757,782,283 | IssuesEvent | 2022-10-21 19:37:08 | xsuite/xsuite | https://api.github.com/repos/xsuite/xsuite | closed | Custom capacity not taken into account in xpart.build_particles | bug High priority | ```python
import json
import numpy as np
import xpart as xp
import xtrack as xt
num_particles = 10000
nemitt_x = 2.5e-6
nemitt_y = 3e-6
filename = ('lhc_no_bb_line_and_particle.json') # from the xtrack test data directory
with open(filename, 'r') as fid:
input_data = json.load(fid)
tracker = xt.Tracker(line=xt.Line.from_dict(input_data['line']))
particle_sample = xp.Particles.from_dict(input_data['particle'])
x_in_sigmas, px_in_sigmas = xp.generate_2D_gaussian(num_particles)
pencil_cut_sigmas = 6.
pencil_dr_sigmas = 0.7
y_in_sigmas, py_in_sigmas, r_points, theta_points = xp.generate_2D_pencil(
num_particles=num_particles,
pos_cut_sigmas=pencil_cut_sigmas,
dr_sigmas=pencil_dr_sigmas,
side='+-')
zeta, delta = xp.generate_longitudinal_coordinates(
num_particles=num_particles, distribution='gaussian',
sigma_z=10e-2, particle_ref=particle_sample, tracker=tracker)
particles = xp.build_particles(
_capacity=num_particles*2,
tracker=tracker,
particle_ref=particle_sample,
zeta=zeta, delta=delta,
x_norm=x_in_sigmas, px_norm=px_in_sigmas,
y_norm=y_in_sigmas, py_norm=py_in_sigmas,
nemitt_x=nemitt_x, nemitt_y=nemitt_y)
``` | 1.0 | Custom capacity not taken into account in xpart.build_particles - ```python
import json
import numpy as np
import xpart as xp
import xtrack as xt
num_particles = 10000
nemitt_x = 2.5e-6
nemitt_y = 3e-6
filename = ('lhc_no_bb_line_and_particle.json') # from the xtrack test data directory
with open(filename, 'r') as fid:
input_data = json.load(fid)
tracker = xt.Tracker(line=xt.Line.from_dict(input_data['line']))
particle_sample = xp.Particles.from_dict(input_data['particle'])
x_in_sigmas, px_in_sigmas = xp.generate_2D_gaussian(num_particles)
pencil_cut_sigmas = 6.
pencil_dr_sigmas = 0.7
y_in_sigmas, py_in_sigmas, r_points, theta_points = xp.generate_2D_pencil(
num_particles=num_particles,
pos_cut_sigmas=pencil_cut_sigmas,
dr_sigmas=pencil_dr_sigmas,
side='+-')
zeta, delta = xp.generate_longitudinal_coordinates(
num_particles=num_particles, distribution='gaussian',
sigma_z=10e-2, particle_ref=particle_sample, tracker=tracker)
particles = xp.build_particles(
_capacity=num_particles*2,
tracker=tracker,
particle_ref=particle_sample,
zeta=zeta, delta=delta,
x_norm=x_in_sigmas, px_norm=px_in_sigmas,
y_norm=y_in_sigmas, py_norm=py_in_sigmas,
nemitt_x=nemitt_x, nemitt_y=nemitt_y)
``` | priority | custom capacity not taken into account in xpart build particles python import json import numpy as np import xpart as xp import xtrack as xt num particles nemitt x nemitt y filename lhc no bb line and particle json from the xtrack test data directory with open filename r as fid input data json load fid tracker xt tracker line xt line from dict input data particle sample xp particles from dict input data x in sigmas px in sigmas xp generate gaussian num particles pencil cut sigmas pencil dr sigmas y in sigmas py in sigmas r points theta points xp generate pencil num particles num particles pos cut sigmas pencil cut sigmas dr sigmas pencil dr sigmas side zeta delta xp generate longitudinal coordinates num particles num particles distribution gaussian sigma z particle ref particle sample tracker tracker particles xp build particles capacity num particles tracker tracker particle ref particle sample zeta zeta delta delta x norm x in sigmas px norm px in sigmas y norm y in sigmas py norm py in sigmas nemitt x nemitt x nemitt y nemitt y | 1 |
411,477 | 12,025,502,075 | IssuesEvent | 2020-04-12 09:34:18 | BrightID/BrightID | https://api.github.com/repos/BrightID/BrightID | opened | UI Flow to help a user get sponsored (120-200 Subs) | effort: 5 high priority | A user won't be able to use any of their apps in the apps tab if they're not sponsored. We need to show them when they're not sponsored and show them (sort to top, visual indicator) which apps have sponsorships available.
Related to #375 and #281 | 1.0 | UI Flow to help a user get sponsored (120-200 Subs) - A user won't be able to use any of their apps in the apps tab if they're not sponsored. We need to show them when they're not sponsored and show them (sort to top, visual indicator) which apps have sponsorships available.
Related to #375 and #281 | priority | ui flow to help a user get sponsored subs a user won t be able to use any of their apps in the apps tab if they re not sponsored we need to show them when they re not sponsored and show them sort to top visual indicator which apps have sponsorships available related to and | 1 |
146,606 | 5,624,830,091 | IssuesEvent | 2017-04-04 17:57:17 | livro-aberto/BookCloud | https://api.github.com/repos/livro-aberto/BookCloud | closed | telas de edição e html retornam ao início quando salva a edição | high priority | Isso acontece com os demais usuários, mas não comigo. | 1.0 | telas de edição e html retornam ao início quando salva a edição - Isso acontece com os demais usuários, mas não comigo. | priority | telas de edição e html retornam ao início quando salva a edição isso acontece com os demais usuários mas não comigo | 1 |
59,508 | 3,113,945,280 | IssuesEvent | 2015-09-03 04:17:39 | AutomationSolutionz/Framework_0.1 | https://api.github.com/repos/AutomationSolutionz/Framework_0.1 | closed | Once a test case is ran and all the status has been changed it should lock up. Same applies to the session status. | Minar Priority 2 (High) Shetu | Minar please work with shetu to find out when we consider a test case to be completed. and same with sessions.
key point:
in-progress, submitted are not considered as execution to be completed. | 1.0 | Once a test case is ran and all the status has been changed it should lock up. Same applies to the session status. - Minar please work with shetu to find out when we consider a test case to be completed. and same with sessions.
key point:
in-progress, submitted are not considered as execution to be completed. | priority | once a test case is ran and all the status has been changed it should lock up same applies to the session status minar please work with shetu to find out when we consider a test case to be completed and same with sessions key point in progress submitted are not considered as execution to be completed | 1 |
476,842 | 13,751,099,017 | IssuesEvent | 2020-10-06 12:57:09 | AY2021S1-CS2113T-F14-2/tp | https://api.github.com/repos/AY2021S1-CS2113T-F14-2/tp | closed | Add Handler for Incorrect Command | priority.High type.Task | It is to handle all incorrect command types and throw exceptions correspondingly. | 1.0 | Add Handler for Incorrect Command - It is to handle all incorrect command types and throw exceptions correspondingly. | priority | add handler for incorrect command it is to handle all incorrect command types and throw exceptions correspondingly | 1 |
25,150 | 2,676,858,777 | IssuesEvent | 2015-03-25 19:59:21 | betheluniversity/cascade | https://api.github.com/repos/betheluniversity/cascade | opened | Alert Notification for Cascade | high priority | We had class for a construction alert in Silva -- <p class="alert-message"><strong></strong>Alert: The east gate is closed due to construction. Please use the main entrance.</p> (https://editor.its.bethel.edu/silva/www/about/maps-directions/construction-alert/edit/tab_edit)
Can we do something like that for Cascade? https://cms.bethel.edu/entity/edit.act?id=ba13b80c8c586513100ee2a718241435&type=page | 1.0 | Alert Notification for Cascade - We had class for a construction alert in Silva -- <p class="alert-message"><strong></strong>Alert: The east gate is closed due to construction. Please use the main entrance.</p> (https://editor.its.bethel.edu/silva/www/about/maps-directions/construction-alert/edit/tab_edit)
Can we do something like that for Cascade? https://cms.bethel.edu/entity/edit.act?id=ba13b80c8c586513100ee2a718241435&type=page | priority | alert notification for cascade we had class for a construction alert in silva alert the east gate is closed due to construction please use the main entrance can we do something like that for cascade | 1 |
86,109 | 3,702,706,111 | IssuesEvent | 2016-02-29 17:45:07 | crosswire/xiphos | https://api.github.com/repos/crosswire/xiphos | closed | Paragraphs sometimes are not separated | auto-migrated bug Current-devel high priority sourceforge | Mostly this seems to work, but sometimes paragraphs are rendered without separating space between them such that it looks like two paragraphs are one.
I have seen this both in a commentary as well as in genbook.
Reported by: tuma3
Original Ticket: [gnomesword/bugs/531](https://sourceforge.net/p/gnomesword/bugs/531) | 1.0 | Paragraphs sometimes are not separated - Mostly this seems to work, but sometimes paragraphs are rendered without separating space between them such that it looks like two paragraphs are one.
I have seen this both in a commentary as well as in genbook.
Reported by: tuma3
Original Ticket: [gnomesword/bugs/531](https://sourceforge.net/p/gnomesword/bugs/531) | priority | paragraphs sometimes are not separated mostly this seems to work but sometimes paragraphs are rendered without separating space between them such that it looks like two paragraphs are one i have seen this both in a commentary as well as in genbook reported by original ticket | 1 |
360,108 | 10,684,219,117 | IssuesEvent | 2019-10-22 09:59:11 | AY1920S1-CS2103-F10-3/main | https://api.github.com/repos/AY1920S1-CS2103-F10-3/main | closed | As a CS2103/T student, I want to group multiple questions under the same tag / category | priority.High type.Story | So that I can sort the questions easily and save time searching for them | 1.0 | As a CS2103/T student, I want to group multiple questions under the same tag / category - So that I can sort the questions easily and save time searching for them | priority | as a t student i want to group multiple questions under the same tag category so that i can sort the questions easily and save time searching for them | 1 |
468,701 | 13,488,815,146 | IssuesEvent | 2020-09-11 13:03:54 | OpenSRP/opensrp-client-reveal | https://api.github.com/repos/OpenSRP/opensrp-client-reveal | closed | RVl-1142- Case-triggered plan does not include the 'Detect Case' task on Android | Priority: High Reveal-DSME | - [ ] Case-triggered plans need to have a task to identify the Index Case, and there should be a 'Detect Case' button available on the list view of the Android UI. | 1.0 | RVl-1142- Case-triggered plan does not include the 'Detect Case' task on Android - - [ ] Case-triggered plans need to have a task to identify the Index Case, and there should be a 'Detect Case' button available on the list view of the Android UI. | priority | rvl case triggered plan does not include the detect case task on android case triggered plans need to have a task to identify the index case and there should be a detect case button available on the list view of the android ui | 1 |
213,112 | 7,246,070,315 | IssuesEvent | 2018-02-14 20:17:41 | ArctosDB/arctos | https://api.github.com/repos/ArctosDB/arctos | opened | Add DOI creation tool to Download Specimen Results | Function-SearchOrDownload Priority-High | Dealing with Attribution issues - we need people who are using our data to be able to cite data downloads easily, with one click. Rather than go through Archive Search, I would like to have a means to instantly create a DOI for a downloaded data set from the Download screen, and provide that to the researcher in the download. Is this possible? Using GBIF as a model? | 1.0 | Add DOI creation tool to Download Specimen Results - Dealing with Attribution issues - we need people who are using our data to be able to cite data downloads easily, with one click. Rather than go through Archive Search, I would like to have a means to instantly create a DOI for a downloaded data set from the Download screen, and provide that to the researcher in the download. Is this possible? Using GBIF as a model? | priority | add doi creation tool to download specimen results dealing with attribution issues we need people who are using our data to be able to cite data downloads easily with one click rather than go through archive search i would like to have a means to instantly create a doi for a downloaded data set from the download screen and provide that to the researcher in the download is this possible using gbif as a model | 1 |
112,593 | 4,534,735,493 | IssuesEvent | 2016-09-08 15:22:03 | ceylon/ceylon-ide-eclipse | https://api.github.com/repos/ceylon/ceylon-ide-eclipse | closed | NPE using stale "Ceylon Type Hierarchy" | bug on master high priority | I've repeated this process twice:
1) Use F4 to populate the Ceylon Type Hierarchy
2) Edit one of the classes
3) Save
4) Click on another class in the hierarchy. An error dialog appears reporting a NPE.
At this point, NPEs happen when clicking on *most* of the nodes (clicking on Anything, Object, and Basic do not result in exceptions.)
Actually, make that three times. The last repro involved only whitespace changes.
````
!ENTRY org.eclipse.jface 4 2 2016-01-21 20:48:01.468
!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jface".
!STACK 0
java.lang.NullPointerException
at com.redhat.ceylon.ide.common.model.ProjectSourceFile.getResourceProject(ProjectSourceFile.ceylon:66)
at com.redhat.ceylon.eclipse.util.ModelProxy.<init>(ModelProxy.java:72)
at com.redhat.ceylon.eclipse.code.outline.HierarchyView$11.selectionChanged(HierarchyView.java:710)
at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:163)
at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:50)
at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:173)
at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:160)
at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:2197)
at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:1228)
at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:1257)
at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:242)
at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:236)
at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:408)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4230)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1491)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1514)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1499)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1299)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4072)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3698)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:1127)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1018)
at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:156)
at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:654)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:598)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:139)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:669)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:608)
at org.eclipse.equinox.launcher.Main.run(Main.java:1515)
``` | 1.0 | NPE using stale "Ceylon Type Hierarchy" - I've repeated this process twice:
1) Use F4 to populate the Ceylon Type Hierarchy
2) Edit one of the classes
3) Save
4) Click on another class in the hierarchy. An error dialog appears reporting a NPE.
At this point, NPEs happen when clicking on *most* of the nodes (clicking on Anything, Object, and Basic do not result in exceptions.)
Actually, make that three times. The last repro involved only whitespace changes.
````
!ENTRY org.eclipse.jface 4 2 2016-01-21 20:48:01.468
!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jface".
!STACK 0
java.lang.NullPointerException
at com.redhat.ceylon.ide.common.model.ProjectSourceFile.getResourceProject(ProjectSourceFile.ceylon:66)
at com.redhat.ceylon.eclipse.util.ModelProxy.<init>(ModelProxy.java:72)
at com.redhat.ceylon.eclipse.code.outline.HierarchyView$11.selectionChanged(HierarchyView.java:710)
at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:163)
at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:50)
at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:173)
at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:160)
at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:2197)
at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:1228)
at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:1257)
at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:242)
at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:236)
at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:408)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4230)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1491)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1514)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1499)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1299)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4072)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3698)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:1127)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1018)
at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:156)
at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:654)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:598)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:139)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:669)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:608)
at org.eclipse.equinox.launcher.Main.run(Main.java:1515)
``` | priority | npe using stale ceylon type hierarchy i ve repeated this process twice use to populate the ceylon type hierarchy edit one of the classes save click on another class in the hierarchy an error dialog appears reporting a npe at this point npes happen when clicking on most of the nodes clicking on anything object and basic do not result in exceptions actually make that three times the last repro involved only whitespace changes entry org eclipse jface message problems occurred when invoking code from plug in org eclipse jface stack java lang nullpointerexception at com redhat ceylon ide common model projectsourcefile getresourceproject projectsourcefile ceylon at com redhat ceylon eclipse util modelproxy modelproxy java at com redhat ceylon eclipse code outline hierarchyview selectionchanged hierarchyview java at org eclipse jface viewers viewer run viewer java at org eclipse core runtime saferunner run saferunner java at org eclipse ui internal jfaceutil run jfaceutil java at org eclipse jface util saferunnable run saferunnable java at org eclipse jface viewers viewer fireselectionchanged viewer java at org eclipse jface viewers structuredviewer updateselection structuredviewer java at org eclipse jface viewers structuredviewer handleselect structuredviewer java at org eclipse jface viewers structuredviewer widgetselected structuredviewer java at org eclipse jface util openstrategy fireselectionevent openstrategy java at org eclipse jface util openstrategy access openstrategy java at org eclipse jface util openstrategy handleevent openstrategy java at org eclipse swt widgets eventtable sendevent eventtable java at org eclipse swt widgets display sendevent display java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets widget notifylisteners widget java at org eclipse swt widgets display rundeferredevents display java at org eclipse swt widgets display readanddispatch display java at org eclipse ui internal workbench swt partrenderingengine run partrenderingengine java at org eclipse core databinding observable realm runwithdefault realm java at org eclipse ui internal workbench swt partrenderingengine run partrenderingengine java at org eclipse ui internal workbench createandrunui java at org eclipse ui internal workbench run workbench java at org eclipse core databinding observable realm runwithdefault realm java at org eclipse ui internal workbench createandrunworkbench workbench java at org eclipse ui platformui createandrunworkbench platformui java at org eclipse ui internal ide application ideapplication start ideapplication java at org eclipse equinox internal app eclipseapphandle run eclipseapphandle java at org eclipse core runtime internal adaptor eclipseapplauncher runapplication eclipseapplauncher java at org eclipse core runtime internal adaptor eclipseapplauncher start eclipseapplauncher java at org eclipse core runtime adaptor eclipsestarter run eclipsestarter java at org eclipse core runtime adaptor eclipsestarter run eclipsestarter java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org eclipse equinox launcher main invokeframework main java at org eclipse equinox launcher main basicrun main java at org eclipse equinox launcher main run main java | 1 |
734,720 | 25,360,301,836 | IssuesEvent | 2022-11-20 20:22:35 | open-genes/open-genes-frontend | https://api.github.com/repos/open-genes/open-genes-frontend | closed | Update GH action and dependencies since Node.js 12 actions are deprecated | bug priority: high | Build fails with an error "Node.js 12 actions are deprecated" | 1.0 | Update GH action and dependencies since Node.js 12 actions are deprecated - Build fails with an error "Node.js 12 actions are deprecated" | priority | update gh action and dependencies since node js actions are deprecated build fails with an error node js actions are deprecated | 1 |
616,835 | 19,322,223,116 | IssuesEvent | 2021-12-14 07:28:18 | bounswe/2021SpringGroup2 | https://api.github.com/repos/bounswe/2021SpringGroup2 | opened | [Frontend] Signup page is not loading | bug priority: high state: not started Frontend | When I run the current version of our app from the development branch, the signup page is not loaded and it results in a blank page.
Steps to reproduce the behavior:
1. npm install
2. npm run build
3. npm run start
4. Go to signup page from the button in the header
5. Page is blank and error message is printed on console:
```Uncaught TypeError: Cannot read properties of undefined (reading 'common')```
Page should not be blank as it is implemented and its code is in the branch.

| 1.0 | [Frontend] Signup page is not loading - When I run the current version of our app from the development branch, the signup page is not loaded and it results in a blank page.
Steps to reproduce the behavior:
1. npm install
2. npm run build
3. npm run start
4. Go to signup page from the button in the header
5. Page is blank and error message is printed on console:
```Uncaught TypeError: Cannot read properties of undefined (reading 'common')```
Page should not be blank as it is implemented and its code is in the branch.

| priority | signup page is not loading when i run the current version of our app from the development branch the signup page is not loaded and it results in a blank page steps to reproduce the behavior npm install npm run build npm run start go to signup page from the button in the header page is blank and error message is printed on console uncaught typeerror cannot read properties of undefined reading common page should not be blank as it is implemented and its code is in the branch | 1 |
481,522 | 13,888,207,285 | IssuesEvent | 2020-10-19 05:49:59 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.lidl-sklep.pl - site is not usable | browser-fenix engine-gecko ml-needsdiagnosis-false ml-probability-high priority-normal | <!-- @browser: Firefox Mobile 78.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:78.0) Gecko/20100101 Firefox/78.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/60075 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.lidl-sklep.pl/search?query=Opiekacz#
**Browser / Version**: Firefox Mobile 78.0
**Operating System**: Android
**Tested Another Browser**: No
**Problem type**: Site is not usable
**Description**: Page not loading correctly
**Steps to Reproduce**:
<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: 20201008183927</li><li>channel: beta</li><li>hasTouchScreen: true</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.lidl-sklep.pl - site is not usable - <!-- @browser: Firefox Mobile 78.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:78.0) Gecko/20100101 Firefox/78.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/60075 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://www.lidl-sklep.pl/search?query=Opiekacz#
**Browser / Version**: Firefox Mobile 78.0
**Operating System**: Android
**Tested Another Browser**: No
**Problem type**: Site is not usable
**Description**: Page not loading correctly
**Steps to Reproduce**:
<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: 20201008183927</li><li>channel: beta</li><li>hasTouchScreen: true</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | site is not usable url browser version firefox mobile operating system android tested another browser no problem type site is not usable description page not loading correctly steps to reproduce browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true from with ❤️ | 1 |
742,066 | 25,835,130,871 | IssuesEvent | 2022-12-12 19:00:56 | emcify/brno | https://api.github.com/repos/emcify/brno | opened | Vzor | Type: 🪲 Bug Priority: 🔥 High | Popis:
Na svoboďáku je přelidněno.
Kroky:
1. Připojím se na server.
2. Udělám pár vývojářských triků.
3. Svoboďák je plný, sotva jsem našel Pepu.
Screenshoty:

| 1.0 | Vzor - Popis:
Na svoboďáku je přelidněno.
Kroky:
1. Připojím se na server.
2. Udělám pár vývojářských triků.
3. Svoboďák je plný, sotva jsem našel Pepu.
Screenshoty:

| priority | vzor popis na svoboďáku je přelidněno kroky připojím se na server udělám pár vývojářských triků svoboďák je plný sotva jsem našel pepu screenshoty | 1 |
687,898 | 23,542,404,790 | IssuesEvent | 2022-08-20 15:56:30 | tjhubz/PittBOT | https://api.github.com/repos/tjhubz/PittBOT | opened | Race condition in verify due to jumping between interactions | bug essential high priority | Due to the design of the verify operation, the bot jumps around between interactions and relies on `await component.wait()` functions or sending interactions around to different functions and essentially hoping that these interactions
1. run in order
2. do not invalidate
These are not guaranteed and are unsound bases on which the verify operation stands. Already, data races have resulted in verification failures.
To prevent race conditions, we should ideally move all of the code after `await modal.wait()` **into the `callback` function of `VerifyModal`.** Then, we can remove `await modal.wait()` entirely and allow the callback to handle the rest of the verification. Unfortunately, this means a lot of the setup code in `verify` will need to be re-run inside the callback (to get guild, member, log channel if one even exists for the submission interaction, etc), which wastes time and may require a `.defer()` of the response to prevent the submission event from being invalidated outside the three-second limit.
This unfortunately seems like the most reasonable way to resolve this problem, but means some of the **original interaction information will *be destroyed***. That is to say, once the modal has popped up, the button press interaction is **gone,** and cannot be responded to or referenced again. Any information gathered only from that button press disappears.
This change represents a pretty important design change, and may require more review than other changes, but is high priority because of the error potential associated with race conditions.
## Rough Checklist
- [ ] **Copy** some setup code from `verify` to `VerifyModal.callback` (only what is required by the code after `await modal.wait()`
- [ ] **Move** the logic after `await modal.wait()` from `verify` into `VerifyModal.callback`
- [ ] **Remove** the line `await modal.wait()` from `verify` and all code after it | 1.0 | Race condition in verify due to jumping between interactions - Due to the design of the verify operation, the bot jumps around between interactions and relies on `await component.wait()` functions or sending interactions around to different functions and essentially hoping that these interactions
1. run in order
2. do not invalidate
These are not guaranteed and are unsound bases on which the verify operation stands. Already, data races have resulted in verification failures.
To prevent race conditions, we should ideally move all of the code after `await modal.wait()` **into the `callback` function of `VerifyModal`.** Then, we can remove `await modal.wait()` entirely and allow the callback to handle the rest of the verification. Unfortunately, this means a lot of the setup code in `verify` will need to be re-run inside the callback (to get guild, member, log channel if one even exists for the submission interaction, etc), which wastes time and may require a `.defer()` of the response to prevent the submission event from being invalidated outside the three-second limit.
This unfortunately seems like the most reasonable way to resolve this problem, but means some of the **original interaction information will *be destroyed***. That is to say, once the modal has popped up, the button press interaction is **gone,** and cannot be responded to or referenced again. Any information gathered only from that button press disappears.
This change represents a pretty important design change, and may require more review than other changes, but is high priority because of the error potential associated with race conditions.
## Rough Checklist
- [ ] **Copy** some setup code from `verify` to `VerifyModal.callback` (only what is required by the code after `await modal.wait()`
- [ ] **Move** the logic after `await modal.wait()` from `verify` into `VerifyModal.callback`
- [ ] **Remove** the line `await modal.wait()` from `verify` and all code after it | priority | race condition in verify due to jumping between interactions due to the design of the verify operation the bot jumps around between interactions and relies on await component wait functions or sending interactions around to different functions and essentially hoping that these interactions run in order do not invalidate these are not guaranteed and are unsound bases on which the verify operation stands already data races have resulted in verification failures to prevent race conditions we should ideally move all of the code after await modal wait into the callback function of verifymodal then we can remove await modal wait entirely and allow the callback to handle the rest of the verification unfortunately this means a lot of the setup code in verify will need to be re run inside the callback to get guild member log channel if one even exists for the submission interaction etc which wastes time and may require a defer of the response to prevent the submission event from being invalidated outside the three second limit this unfortunately seems like the most reasonable way to resolve this problem but means some of the original interaction information will be destroyed that is to say once the modal has popped up the button press interaction is gone and cannot be responded to or referenced again any information gathered only from that button press disappears this change represents a pretty important design change and may require more review than other changes but is high priority because of the error potential associated with race conditions rough checklist copy some setup code from verify to verifymodal callback only what is required by the code after await modal wait move the logic after await modal wait from verify into verifymodal callback remove the line await modal wait from verify and all code after it | 1 |
622,244 | 19,618,704,639 | IssuesEvent | 2022-01-07 01:36:40 | black7375/Firefox-UI-Fix | https://api.github.com/repos/black7375/Firefox-UI-Fix | closed | No hover highlight in some items in video control context menu | Issue::Bug Env::Windows Class::Color Component::Context-Menu Priority::High | **Describe the bug**
Using Windows 10/11:
+ [Play this video](https://assets.zorincdn.com/zorin.com/videos/16/pro.webm) or Open a local video file (example: MP4) by dragging into the tab bar
+ Right-click on the video
+ When hovering on some items in the context menu, no highlight.
+ Affected items: Play, Mute, Speed (including sub-context items), Full Screen, Hide Controls, Take Snapshot, Save Video As, Copy Video Link, Email Video
**Expected behavior**
Hovering affected items in video control context menu mentioned above must be highlighted.
**Screenshots (note the difference)**
[Lepton 4.5.5](https://www.mediafire.com/file/ovj8b1visc0lw7f/Lepton_4.5.5.gif/file)
https://user-images.githubusercontent.com/25581533/148177178-704a1667-b50d-4228-8b16-81edd2546480.mp4
[Lepton 4.5.4](https://www.mediafire.com/file/6vipqgqfcnr6jk0/Lepton_4.5.4.gif/file)
https://user-images.githubusercontent.com/25581533/148177215-c1105153-9396-4c0e-a984-e833230ae42d.mp4
Reason I can't upload it here:

**Environment:<!-- (please complete the following information) -->**
<!-- Check like `- [x]`. -->
- Distribution
- [x] [Original Lepton](https://github.com/black7375/Firefox-UI-Fix)
- [x] [Lepton's photon style](https://github.com/black7375/Firefox-UI-Fix/tree/photon-style)
- [x] [Lepton's proton style](https://github.com/black7375/Firefox-UI-Fix/tree/proton-style)
- Firefox Version: 95.0.2 (release), 96.0b10 (Beta/Developer Edition), 97.0a1 (Nightly)
- OS:
- [ ] Linux
- [x] Windows
- [ ] Mac
- [ ] Other:
- Theme:
- [x] Light
- [x] Dark
- [x] Alpenglow (System: Light)
- [x] Alpenglow (System: Dark)
- [x] System Default
- GTK Theme Name (Linux only): <!-- For example: Adwaita, Adwaita-Dark, Breath, Breath-Dark. Run `gsettings get org.gnome.desktop.interface gtk-theme` to output this -->
- [x] Other: (e.g. [Photon Colors](https://addons.mozilla.org/en-US/firefox/addon/photon-colors/), [Google Chrome Dark](https://addons.mozilla.org/en-US/firefox/addon/google-chrome-dark/), [Fairytale Of Nature](https://addons.mozilla.org/en-US/firefox/addon/fairytale-of-nature/))
**Additional context**
+ Using Lepton 4.5.5 (release). No issues on Windows 7/8.x
+ I don't know if this affects macOS or Linux versions of Firefox
+ No issues on Lepton 4.5.4
+ I don't know CSS editing :)
| 1.0 | No hover highlight in some items in video control context menu - **Describe the bug**
Using Windows 10/11:
+ [Play this video](https://assets.zorincdn.com/zorin.com/videos/16/pro.webm) or Open a local video file (example: MP4) by dragging into the tab bar
+ Right-click on the video
+ When hovering on some items in the context menu, no highlight.
+ Affected items: Play, Mute, Speed (including sub-context items), Full Screen, Hide Controls, Take Snapshot, Save Video As, Copy Video Link, Email Video
**Expected behavior**
Hovering affected items in video control context menu mentioned above must be highlighted.
**Screenshots (note the difference)**
[Lepton 4.5.5](https://www.mediafire.com/file/ovj8b1visc0lw7f/Lepton_4.5.5.gif/file)
https://user-images.githubusercontent.com/25581533/148177178-704a1667-b50d-4228-8b16-81edd2546480.mp4
[Lepton 4.5.4](https://www.mediafire.com/file/6vipqgqfcnr6jk0/Lepton_4.5.4.gif/file)
https://user-images.githubusercontent.com/25581533/148177215-c1105153-9396-4c0e-a984-e833230ae42d.mp4
Reason I can't upload it here:

**Environment:<!-- (please complete the following information) -->**
<!-- Check like `- [x]`. -->
- Distribution
- [x] [Original Lepton](https://github.com/black7375/Firefox-UI-Fix)
- [x] [Lepton's photon style](https://github.com/black7375/Firefox-UI-Fix/tree/photon-style)
- [x] [Lepton's proton style](https://github.com/black7375/Firefox-UI-Fix/tree/proton-style)
- Firefox Version: 95.0.2 (release), 96.0b10 (Beta/Developer Edition), 97.0a1 (Nightly)
- OS:
- [ ] Linux
- [x] Windows
- [ ] Mac
- [ ] Other:
- Theme:
- [x] Light
- [x] Dark
- [x] Alpenglow (System: Light)
- [x] Alpenglow (System: Dark)
- [x] System Default
- GTK Theme Name (Linux only): <!-- For example: Adwaita, Adwaita-Dark, Breath, Breath-Dark. Run `gsettings get org.gnome.desktop.interface gtk-theme` to output this -->
- [x] Other: (e.g. [Photon Colors](https://addons.mozilla.org/en-US/firefox/addon/photon-colors/), [Google Chrome Dark](https://addons.mozilla.org/en-US/firefox/addon/google-chrome-dark/), [Fairytale Of Nature](https://addons.mozilla.org/en-US/firefox/addon/fairytale-of-nature/))
**Additional context**
+ Using Lepton 4.5.5 (release). No issues on Windows 7/8.x
+ I don't know if this affects macOS or Linux versions of Firefox
+ No issues on Lepton 4.5.4
+ I don't know CSS editing :)
| priority | no hover highlight in some items in video control context menu describe the bug using windows or open a local video file example by dragging into the tab bar right click on the video when hovering on some items in the context menu no highlight affected items play mute speed including sub context items full screen hide controls take snapshot save video as copy video link email video expected behavior hovering affected items in video control context menu mentioned above must be highlighted screenshots note the difference reason i can t upload it here environment distribution firefox version release beta developer edition nightly os linux windows mac other theme light dark alpenglow system light alpenglow system dark system default gtk theme name linux only other e g additional context using lepton release no issues on windows x i don t know if this affects macos or linux versions of firefox no issues on lepton i don t know css editing | 1 |
223,700 | 7,459,914,836 | IssuesEvent | 2018-03-30 17:25:44 | CS2103JAN2018-F09-B1/main | https://api.github.com/repos/CS2103JAN2018-F09-B1/main | closed | Feature: Display Picture | bug priority.high | The UI is not updating with a correct display picture after overwriting. | 1.0 | Feature: Display Picture - The UI is not updating with a correct display picture after overwriting. | priority | feature display picture the ui is not updating with a correct display picture after overwriting | 1 |
650,475 | 21,393,130,028 | IssuesEvent | 2022-04-21 09:04:30 | Aam-Digital/ndb-core | https://api.github.com/repos/Aam-Digital/ndb-core | opened | Support panel | Type: Feature Status: High Priority | *As a user I want to see system information in order to contact the support and provide relevant information for the troubleshooting.*
Remote debugging is very difficult and especially on phones it's difficult to see what problems a user is facing.
Therefore, a simple support page should show some general information that might help in the troubleshooting process as well as some buttons that allow to reset the application and forward the information to the Aam Digital support.
**Objective**
A support page where user can see system information and buttons which helps the Aam Digital support to debug problems.
**Proposed Solutions & Alternatives**
The support page should be reachable through the navigation menu (at the bottom below/above? logout).
Clicking the button opens a page which shows the following:
- Username
- Device, Operating system, Browser (might all be included in `window.navigator.userAgent`)
- Last remote login
- Last successfully finished sync
- Current sync status (remote login successful, sync active)
- A button to forward all information to Aam Digital support (through email or [sentry](https://docs.sentry.io/platforms/javascript/guides/angular/enriching-events/user-feedback/))
- a button to reset the application (at least the database and local storage, optimally a full page reset similar to chromes `clear site data`)
| 1.0 | Support panel - *As a user I want to see system information in order to contact the support and provide relevant information for the troubleshooting.*
Remote debugging is very difficult and especially on phones it's difficult to see what problems a user is facing.
Therefore, a simple support page should show some general information that might help in the troubleshooting process as well as some buttons that allow to reset the application and forward the information to the Aam Digital support.
**Objective**
A support page where user can see system information and buttons which helps the Aam Digital support to debug problems.
**Proposed Solutions & Alternatives**
The support page should be reachable through the navigation menu (at the bottom below/above? logout).
Clicking the button opens a page which shows the following:
- Username
- Device, Operating system, Browser (might all be included in `window.navigator.userAgent`)
- Last remote login
- Last successfully finished sync
- Current sync status (remote login successful, sync active)
- A button to forward all information to Aam Digital support (through email or [sentry](https://docs.sentry.io/platforms/javascript/guides/angular/enriching-events/user-feedback/))
- a button to reset the application (at least the database and local storage, optimally a full page reset similar to chromes `clear site data`)
| priority | support panel as a user i want to see system information in order to contact the support and provide relevant information for the troubleshooting remote debugging is very difficult and especially on phones it s difficult to see what problems a user is facing therefore a simple support page should show some general information that might help in the troubleshooting process as well as some buttons that allow to reset the application and forward the information to the aam digital support objective a support page where user can see system information and buttons which helps the aam digital support to debug problems proposed solutions alternatives the support page should be reachable through the navigation menu at the bottom below above logout clicking the button opens a page which shows the following username device operating system browser might all be included in window navigator useragent last remote login last successfully finished sync current sync status remote login successful sync active a button to forward all information to aam digital support through email or a button to reset the application at least the database and local storage optimally a full page reset similar to chromes clear site data | 1 |
457,491 | 13,157,628,071 | IssuesEvent | 2020-08-10 13:04:51 | MLH-Fellowship/nodemaker | https://api.github.com/repos/MLH-Fellowship/nodemaker | closed | Fix login for mobile n8n.io layout | backend high priority | The layout of [n8n.io](https://n8n.io) changes to mobile view for narrow screens.
We need to fix the Puppeteer login to trigger desktop view every time. | 1.0 | Fix login for mobile n8n.io layout - The layout of [n8n.io](https://n8n.io) changes to mobile view for narrow screens.
We need to fix the Puppeteer login to trigger desktop view every time. | priority | fix login for mobile io layout the layout of changes to mobile view for narrow screens we need to fix the puppeteer login to trigger desktop view every time | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.