Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 844 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 12 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 248k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
387,463 | 11,462,035,187 | IssuesEvent | 2020-02-07 13:20:21 | googleapis/nodejs-dialogflow | https://api.github.com/repos/googleapis/nodejs-dialogflow | closed | Security error on www.googleapis.com | api: dialogflow priority: p1 type: bug | ### Environment details
- OS: Docker running on 64bit Amazon Linux/2.9.2
- Node.js version: 10.17.0
- npm version: 6.11.3
- `dialogflow` version: 1.1.1
### Problem you have encountered:
Suddenly, in our chatbot, we are getting an error when doing the detectIndent function from the dialogflow node module (v 1.1.1).
### The error that we are encountering is:
```
{ Error: 2 UNKNOWN: Getting metadata from plugin failed with error: request to
https://www.googleapis.com/oauth2/v4/token failed, reason: Security error on www.googleapis.com
at Object.callErrorFromStatus (/usr/src/app/node_modules/@grpc/grpc-js/build/src/call.js:30:26)
at Http2CallStream.call.on (/usr/src/app/node_modules/@grpc/grpc-js/build/src/client.js:96:33)
at Http2CallStream.emit (events.js:203:15)
at Http2CallStream.EventEmitter.emit (domain.js:448:20)
at process.nextTick (/usr/src/app/node_modules/@grpc/grpc-js/build/src/call-stream.js:97:22)
at process._tickCallback (internal/process/next_tick.js:61:11)
code: 2,
details:
'Getting metadata from plugin failed with error: request to https://www.googleapis.com/oauth2/v4/token failed, reason:
Security error on www.googleapis.com',
metadata: Metadata { internalRepr: Map {}, options: {} } }
```
We are calling this method for a year now, and it is crashing just recently. Does anybody have a guess about what are we doing wrong?
We even tried to generate another key in JSON, replaced the old ones but the error persists.
### What you expected to happen:
Go on to the next function instead going to the CATCH section and displaying the error described above.
### Steps to reproduce:
```
app = new dialogflow.SessionsClient({
keyFileName : 'path/to/file'
});
app..detectIntent(request).
```
the request object looks like this:
```
{
"session":"projects/projectIDXXXXXX/agent/sessions/SESSIONID",
"queryInput": {
"text": {
"text": "hello",
"languageCode": "es-ES"
}
}
}
```
So at the backend we are able to see the message written on the facebook messenger chatbot.
### Other information:
We checked all the documentation for the detectIndent function of the v2 dialogflow api and apparently we are doing everything as it should be.
Thank you everybody and regards,
Daniel
| 1.0 | Security error on www.googleapis.com - ### Environment details
- OS: Docker running on 64bit Amazon Linux/2.9.2
- Node.js version: 10.17.0
- npm version: 6.11.3
- `dialogflow` version: 1.1.1
### Problem you have encountered:
Suddenly, in our chatbot, we are getting an error when doing the detectIndent function from the dialogflow node module (v 1.1.1).
### The error that we are encountering is:
```
{ Error: 2 UNKNOWN: Getting metadata from plugin failed with error: request to
https://www.googleapis.com/oauth2/v4/token failed, reason: Security error on www.googleapis.com
at Object.callErrorFromStatus (/usr/src/app/node_modules/@grpc/grpc-js/build/src/call.js:30:26)
at Http2CallStream.call.on (/usr/src/app/node_modules/@grpc/grpc-js/build/src/client.js:96:33)
at Http2CallStream.emit (events.js:203:15)
at Http2CallStream.EventEmitter.emit (domain.js:448:20)
at process.nextTick (/usr/src/app/node_modules/@grpc/grpc-js/build/src/call-stream.js:97:22)
at process._tickCallback (internal/process/next_tick.js:61:11)
code: 2,
details:
'Getting metadata from plugin failed with error: request to https://www.googleapis.com/oauth2/v4/token failed, reason:
Security error on www.googleapis.com',
metadata: Metadata { internalRepr: Map {}, options: {} } }
```
We are calling this method for a year now, and it is crashing just recently. Does anybody have a guess about what are we doing wrong?
We even tried to generate another key in JSON, replaced the old ones but the error persists.
### What you expected to happen:
Go on to the next function instead going to the CATCH section and displaying the error described above.
### Steps to reproduce:
```
app = new dialogflow.SessionsClient({
keyFileName : 'path/to/file'
});
app..detectIntent(request).
```
the request object looks like this:
```
{
"session":"projects/projectIDXXXXXX/agent/sessions/SESSIONID",
"queryInput": {
"text": {
"text": "hello",
"languageCode": "es-ES"
}
}
}
```
So at the backend we are able to see the message written on the facebook messenger chatbot.
### Other information:
We checked all the documentation for the detectIndent function of the v2 dialogflow api and apparently we are doing everything as it should be.
Thank you everybody and regards,
Daniel
| priority | security error on environment details os docker running on amazon linux node js version npm version dialogflow version problem you have encountered suddenly in our chatbot we are getting an error when doing the detectindent function from the dialogflow node module v the error that we are encountering is error unknown getting metadata from plugin failed with error request to failed reason security error on at object callerrorfromstatus usr src app node modules grpc grpc js build src call js at call on usr src app node modules grpc grpc js build src client js at emit events js at eventemitter emit domain js at process nexttick usr src app node modules grpc grpc js build src call stream js at process tickcallback internal process next tick js code details getting metadata from plugin failed with error request to failed reason security error on metadata metadata internalrepr map options we are calling this method for a year now and it is crashing just recently does anybody have a guess about what are we doing wrong we even tried to generate another key in json replaced the old ones but the error persists what you expected to happen go on to the next function instead going to the catch section and displaying the error described above steps to reproduce app new dialogflow sessionsclient keyfilename path to file app detectintent request the request object looks like this session projects projectidxxxxxx agent sessions sessionid queryinput text text hello languagecode es es so at the backend we are able to see the message written on the facebook messenger chatbot other information we checked all the documentation for the detectindent function of the dialogflow api and apparently we are doing everything as it should be thank you everybody and regards daniel | 1 |
388,595 | 11,489,784,538 | IssuesEvent | 2020-02-11 16:02:10 | SparkDevNetwork/Rock | https://api.github.com/repos/SparkDevNetwork/Rock | closed | Group Attendance Shows 100% Attended for Kiosk attendance | Priority: Low Status: Confirmed Type: Bug x-bugapalooza: Low |
When checking into a Group that has membership required - the Group Attendance will always show 100% until you go into the group - click Edit on the Attendance item and then hit save. It then calculates the percentage attended correctly.
### Steps to Reproduce
1. Set up a group for check-in as membership required.
1. Add 4 members to the group.
1. Check 3 of the group members in. It will show 100% attended.
1. Click edit on attendance with in the group- then click save. It will now show 75% attended.
Here is a video of doing this:
http://www.screencast.com/t/54wrm8BADOtO
* group with four people: 
* Add one attendance record via check-in or workflow action, etc. Group attendance says 100%: 
* edit group attendance record and press save (change nothing): 
* Percent changes to 25% because now four records exist: 
**Expected behavior:** [What you expected to happen]
Percent attended would be correct when using Kiosk check-in.
**Actual behavior:** [What actually happened]
Percent attended is incorrect. Always shows 100%
### Versions
* **Rock Version:** 5.4
* **Client Culture Setting** en-us
| 1.0 | Group Attendance Shows 100% Attended for Kiosk attendance -
When checking into a Group that has membership required - the Group Attendance will always show 100% until you go into the group - click Edit on the Attendance item and then hit save. It then calculates the percentage attended correctly.
### Steps to Reproduce
1. Set up a group for check-in as membership required.
1. Add 4 members to the group.
1. Check 3 of the group members in. It will show 100% attended.
1. Click edit on attendance with in the group- then click save. It will now show 75% attended.
Here is a video of doing this:
http://www.screencast.com/t/54wrm8BADOtO
* group with four people: 
* Add one attendance record via check-in or workflow action, etc. Group attendance says 100%: 
* edit group attendance record and press save (change nothing): 
* Percent changes to 25% because now four records exist: 
**Expected behavior:** [What you expected to happen]
Percent attended would be correct when using Kiosk check-in.
**Actual behavior:** [What actually happened]
Percent attended is incorrect. Always shows 100%
### Versions
* **Rock Version:** 5.4
* **Client Culture Setting** en-us
| priority | group attendance shows attended for kiosk attendance when checking into a group that has membership required the group attendance will always show until you go into the group click edit on the attendance item and then hit save it then calculates the percentage attended correctly steps to reproduce set up a group for check in as membership required add members to the group check of the group members in it will show attended click edit on attendance with in the group then click save it will now show attended here is a video of doing this group with four people add one attendance record via check in or workflow action etc group attendance says edit group attendance record and press save change nothing percent changes to because now four records exist expected behavior percent attended would be correct when using kiosk check in actual behavior percent attended is incorrect always shows versions rock version client culture setting en us | 1 |
725,663 | 24,970,659,231 | IssuesEvent | 2022-11-02 00:36:36 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | IPSP (IPv6 over BLE) example stop working after a short time | bug priority: low area: Bluetooth Stale area: Bluetooth Host | **Describe the bug**
IPSP example after connection crashes after a few exchanged packets. Similar to #5289
**Platform**
- Zephyr Target
- Nordic nRF52840
- Zephyr OS build v3.1.0-rc2-113-g449516c1359f
- Host
- Linux Kernel 5.17.9
**To Reproduce**
1. Flash the target with the master branch IPSP example
2. Execute the following commands with root privileges on Linux host:
```bash
modprobe bluetooth_6lowpan
echo "connect <nRF MAC> <type>" > /sys/kernel/debug/bluetooth/6lowpan_control
ip address add 2001:db8::2/64 dev bt0
```
3. execute anything to send a few packets to the nRF, for example a ping
```bash
ping -I bt0 2001:db8::1
```
**Impact**
After 10 packets received, the connection will crash and the nRF board will not be able to reconnect to the host until a reset of the board is performed.
**Logs**
- After step 2:
- nRF:
```
*** Booting Zephyr OS build v3.1.0-rc2-113-g449516c1359f ***
[00:00:00.261,657] <inf> bt_hci_core: HW Platform: Nordic Semiconductor (0x0002)
[00:00:00.261,688] <inf> bt_hci_core: HW Variant: nRF52x (0x0002)
[00:00:00.261,718] <inf> bt_hci_core: Firmware: Standard Bluetooth controller (0x00) Version 3.1 Build 0
[00:00:00.262,603] <inf> bt_hci_core: Identity: FA:72:B3:E5:CB:DF (random)
[00:00:00.262,634] <inf> bt_hci_core: HCI: version 5.3 (0x0c) revision 0x0000, manufacturer 0x05f1
[00:00:00.262,664] <inf> bt_hci_core: LMP: version 5.3 (0x0c) subver 0xffff
[00:00:00.263,183] <inf> net_config: Initializing network
[00:00:00.263,336] <inf> net_config: Waiting interface 1 (0x200018b0) to be up...
[00:00:05.465,606] <inf> net_config: Interface 1 (0x200018b0) coming up
[00:00:05.466,125] <wrn> bt_l2cap: No credits to transmit packet
[00:00:05.466,247] <inf> ipsp: Run IPSP sample
[00:00:05.466,888] <inf> ipsp: Starting to wait
[00:00:05.566,436] <inf> net_config: IPv6 address: 2001:db8::1
```
- After step 3:
- Host:
```
$ ping -I bt0 2001:db8::1
PING 2001:db8::1(2001:db8::1) from 2001:db8::2 bt0: 56 data bytes
64 bytes from 2001:db8::1: icmp_seq=1 ttl=64 time=375 ms
64 bytes from 2001:db8::1: icmp_seq=2 ttl=64 time=75.8 ms
64 bytes from 2001:db8::1: icmp_seq=3 ttl=64 time=73.9 ms
64 bytes from 2001:db8::1: icmp_seq=4 ttl=64 time=71.8 ms
64 bytes from 2001:db8::1: icmp_seq=5 ttl=64 time=70.6 ms
64 bytes from 2001:db8::1: icmp_seq=6 ttl=64 time=68.9 ms
64 bytes from 2001:db8::1: icmp_seq=7 ttl=64 time=67.6 ms
64 bytes from 2001:db8::1: icmp_seq=8 ttl=64 time=115 ms
64 bytes from 2001:db8::1: icmp_seq=9 ttl=64 time=64.2 ms
64 bytes from 2001:db8::1: icmp_seq=10 ttl=64 time=63.5 ms
//After this the connection is lost
```
- nRF:
```
[00:02:44.514,892] <wrn> bt_l2cap: No credits to transmit packet
[00:02:44.665,832] <wrn> bt_l2cap: No credits to transmit packet
[00:02:44.668,579] <wrn> bt_l2cap: No credits to transmit packet
[00:02:54.515,747] <wrn> bt_l2cap: Unable to allocate TX context
[00:02:54.515,777] <err> net_bt: Unable to send packet: -105
```
- Trying to reconnect after step 3:
- nRF:
```
[00:10:47.508,728] <wrn> bt_l2cap: Unable to allocate TX context
[00:10:47.508,728] <err> net_bt: Unable to send packet: -105
[00:10:47.608,917] <inf> net_config: IPv6 address: 2001:db8::1
```
| 1.0 | IPSP (IPv6 over BLE) example stop working after a short time - **Describe the bug**
IPSP example after connection crashes after a few exchanged packets. Similar to #5289
**Platform**
- Zephyr Target
- Nordic nRF52840
- Zephyr OS build v3.1.0-rc2-113-g449516c1359f
- Host
- Linux Kernel 5.17.9
**To Reproduce**
1. Flash the target with the master branch IPSP example
2. Execute the following commands with root privileges on Linux host:
```bash
modprobe bluetooth_6lowpan
echo "connect <nRF MAC> <type>" > /sys/kernel/debug/bluetooth/6lowpan_control
ip address add 2001:db8::2/64 dev bt0
```
3. execute anything to send a few packets to the nRF, for example a ping
```bash
ping -I bt0 2001:db8::1
```
**Impact**
After 10 packets received, the connection will crash and the nRF board will not be able to reconnect to the host until a reset of the board is performed.
**Logs**
- After step 2:
- nRF:
```
*** Booting Zephyr OS build v3.1.0-rc2-113-g449516c1359f ***
[00:00:00.261,657] <inf> bt_hci_core: HW Platform: Nordic Semiconductor (0x0002)
[00:00:00.261,688] <inf> bt_hci_core: HW Variant: nRF52x (0x0002)
[00:00:00.261,718] <inf> bt_hci_core: Firmware: Standard Bluetooth controller (0x00) Version 3.1 Build 0
[00:00:00.262,603] <inf> bt_hci_core: Identity: FA:72:B3:E5:CB:DF (random)
[00:00:00.262,634] <inf> bt_hci_core: HCI: version 5.3 (0x0c) revision 0x0000, manufacturer 0x05f1
[00:00:00.262,664] <inf> bt_hci_core: LMP: version 5.3 (0x0c) subver 0xffff
[00:00:00.263,183] <inf> net_config: Initializing network
[00:00:00.263,336] <inf> net_config: Waiting interface 1 (0x200018b0) to be up...
[00:00:05.465,606] <inf> net_config: Interface 1 (0x200018b0) coming up
[00:00:05.466,125] <wrn> bt_l2cap: No credits to transmit packet
[00:00:05.466,247] <inf> ipsp: Run IPSP sample
[00:00:05.466,888] <inf> ipsp: Starting to wait
[00:00:05.566,436] <inf> net_config: IPv6 address: 2001:db8::1
```
- After step 3:
- Host:
```
$ ping -I bt0 2001:db8::1
PING 2001:db8::1(2001:db8::1) from 2001:db8::2 bt0: 56 data bytes
64 bytes from 2001:db8::1: icmp_seq=1 ttl=64 time=375 ms
64 bytes from 2001:db8::1: icmp_seq=2 ttl=64 time=75.8 ms
64 bytes from 2001:db8::1: icmp_seq=3 ttl=64 time=73.9 ms
64 bytes from 2001:db8::1: icmp_seq=4 ttl=64 time=71.8 ms
64 bytes from 2001:db8::1: icmp_seq=5 ttl=64 time=70.6 ms
64 bytes from 2001:db8::1: icmp_seq=6 ttl=64 time=68.9 ms
64 bytes from 2001:db8::1: icmp_seq=7 ttl=64 time=67.6 ms
64 bytes from 2001:db8::1: icmp_seq=8 ttl=64 time=115 ms
64 bytes from 2001:db8::1: icmp_seq=9 ttl=64 time=64.2 ms
64 bytes from 2001:db8::1: icmp_seq=10 ttl=64 time=63.5 ms
//After this the connection is lost
```
- nRF:
```
[00:02:44.514,892] <wrn> bt_l2cap: No credits to transmit packet
[00:02:44.665,832] <wrn> bt_l2cap: No credits to transmit packet
[00:02:44.668,579] <wrn> bt_l2cap: No credits to transmit packet
[00:02:54.515,747] <wrn> bt_l2cap: Unable to allocate TX context
[00:02:54.515,777] <err> net_bt: Unable to send packet: -105
```
- Trying to reconnect after step 3:
- nRF:
```
[00:10:47.508,728] <wrn> bt_l2cap: Unable to allocate TX context
[00:10:47.508,728] <err> net_bt: Unable to send packet: -105
[00:10:47.608,917] <inf> net_config: IPv6 address: 2001:db8::1
```
| priority | ipsp over ble example stop working after a short time describe the bug ipsp example after connection crashes after a few exchanged packets similar to platform zephyr target nordic zephyr os build host linux kernel to reproduce flash the target with the master branch ipsp example execute the following commands with root privileges on linux host bash modprobe bluetooth echo connect sys kernel debug bluetooth control ip address add dev execute anything to send a few packets to the nrf for example a ping bash ping i impact after packets received the connection will crash and the nrf board will not be able to reconnect to the host until a reset of the board is performed logs after step nrf booting zephyr os build bt hci core hw platform nordic semiconductor bt hci core hw variant bt hci core firmware standard bluetooth controller version build bt hci core identity fa cb df random bt hci core hci version revision manufacturer bt hci core lmp version subver net config initializing network net config waiting interface to be up net config interface coming up bt no credits to transmit packet ipsp run ipsp sample ipsp starting to wait net config address after step host ping i ping from data bytes bytes from icmp seq ttl time ms bytes from icmp seq ttl time ms bytes from icmp seq ttl time ms bytes from icmp seq ttl time ms bytes from icmp seq ttl time ms bytes from icmp seq ttl time ms bytes from icmp seq ttl time ms bytes from icmp seq ttl time ms bytes from icmp seq ttl time ms bytes from icmp seq ttl time ms after this the connection is lost nrf bt no credits to transmit packet bt no credits to transmit packet bt no credits to transmit packet bt unable to allocate tx context net bt unable to send packet trying to reconnect after step nrf bt unable to allocate tx context net bt unable to send packet net config address | 1 |
95,025 | 3,933,559,887 | IssuesEvent | 2016-04-25 19:33:33 | ghutchis/avogadro | https://api.github.com/repos/ghutchis/avogadro | closed | Crash select vibrations Mac OS X | auto-migrated low priority v_1.1.0 | after loading GAMESS log file vibrational modes shown but when selected crashes. Previous version loads log and animates mode fine.
Reported by: *anonymous | 1.0 | Crash select vibrations Mac OS X - after loading GAMESS log file vibrational modes shown but when selected crashes. Previous version loads log and animates mode fine.
Reported by: *anonymous | priority | crash select vibrations mac os x after loading gamess log file vibrational modes shown but when selected crashes previous version loads log and animates mode fine reported by anonymous | 1 |
300,091 | 9,206,129,422 | IssuesEvent | 2019-03-08 12:49:30 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | measurements and scale broken in latlon | Category: Projection Support Component: Easy fix? Component: Pull Request or Patch supplied Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Feature request | ---
Author Name: **Maciej Sieczka -** (Maciej Sieczka -)
Original Redmine Issue: 1433, https://issues.qgis.org/issues/1433
Original Assignee: Tim Sutton
---
Distance and area measurmenents as well as scale are broken in latlon coordinate system.
I have my project and layer CRSs set correct, both ll/WGS84, OTFR not enabled.
When I set the unit to degree, the scale seems reasonable, but length and area mesaured are definitely wrong. With units set to meters the scale is also several magnitudes too huge and lenght measurments at meters instead of hundreds of kilometers.
Latest SVN trunk on Debian testing amd64.
| 1.0 | measurements and scale broken in latlon - ---
Author Name: **Maciej Sieczka -** (Maciej Sieczka -)
Original Redmine Issue: 1433, https://issues.qgis.org/issues/1433
Original Assignee: Tim Sutton
---
Distance and area measurmenents as well as scale are broken in latlon coordinate system.
I have my project and layer CRSs set correct, both ll/WGS84, OTFR not enabled.
When I set the unit to degree, the scale seems reasonable, but length and area mesaured are definitely wrong. With units set to meters the scale is also several magnitudes too huge and lenght measurments at meters instead of hundreds of kilometers.
Latest SVN trunk on Debian testing amd64.
| priority | measurements and scale broken in latlon author name maciej sieczka maciej sieczka original redmine issue original assignee tim sutton distance and area measurmenents as well as scale are broken in latlon coordinate system i have my project and layer crss set correct both ll otfr not enabled when i set the unit to degree the scale seems reasonable but length and area mesaured are definitely wrong with units set to meters the scale is also several magnitudes too huge and lenght measurments at meters instead of hundreds of kilometers latest svn trunk on debian testing | 1 |
242,992 | 7,851,989,076 | IssuesEvent | 2018-06-20 13:28:05 | linux-audit/audit-kernel | https://api.github.com/repos/linux-audit/audit-kernel | closed | RFE: switch to consistent boolean use of AUDIT_OFF | enhancement priority/low | Most uses of audit_enabled don't care about the distinction between AUDIT_ON and AUDIT_LOCKED, so using audit_enabled as a boolean makes more sense and is easier to read. Most uses of audit_enabled treat it as a boolean, so switch the remaining AUDIT_OFF usage to simply use audit_enabled as a boolean where applicable. | 1.0 | RFE: switch to consistent boolean use of AUDIT_OFF - Most uses of audit_enabled don't care about the distinction between AUDIT_ON and AUDIT_LOCKED, so using audit_enabled as a boolean makes more sense and is easier to read. Most uses of audit_enabled treat it as a boolean, so switch the remaining AUDIT_OFF usage to simply use audit_enabled as a boolean where applicable. | priority | rfe switch to consistent boolean use of audit off most uses of audit enabled don t care about the distinction between audit on and audit locked so using audit enabled as a boolean makes more sense and is easier to read most uses of audit enabled treat it as a boolean so switch the remaining audit off usage to simply use audit enabled as a boolean where applicable | 1 |
299,232 | 9,205,257,295 | IssuesEvent | 2019-03-08 10:04:11 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | Troubles with the legend and map - Layout printing window | Category: Map Legend Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report | ---
Author Name: **vevila-costa-conab-gov-br -** (vevila-costa-conab-gov-br -)
Original Redmine Issue: 640, https://issues.qgis.org/issues/640
Original Assignee: nobody -
---
When I try to put the map and the legend elements in the printing layout window, the appear deformed, or simply does not appear. I don't see this same problem in putting the scale bar.
| 1.0 | Troubles with the legend and map - Layout printing window - ---
Author Name: **vevila-costa-conab-gov-br -** (vevila-costa-conab-gov-br -)
Original Redmine Issue: 640, https://issues.qgis.org/issues/640
Original Assignee: nobody -
---
When I try to put the map and the legend elements in the printing layout window, the appear deformed, or simply does not appear. I don't see this same problem in putting the scale bar.
| priority | troubles with the legend and map layout printing window author name vevila costa conab gov br vevila costa conab gov br original redmine issue original assignee nobody when i try to put the map and the legend elements in the printing layout window the appear deformed or simply does not appear i don t see this same problem in putting the scale bar | 1 |
195,268 | 6,906,080,720 | IssuesEvent | 2017-11-27 09:55:55 | RMUASD-Team1-2017/RMUASD | https://api.github.com/repos/RMUASD-Team1-2017/RMUASD | closed | Show drone info in the webapp | Priority Low Task | We should show the info about the drones in the webapp, which we recieve from the gcs.
## This includes:
* current location
* current state
* last update
* ETA
## Nice to have:
* Maybe a map showing the drones. | 1.0 | Show drone info in the webapp - We should show the info about the drones in the webapp, which we recieve from the gcs.
## This includes:
* current location
* current state
* last update
* ETA
## Nice to have:
* Maybe a map showing the drones. | priority | show drone info in the webapp we should show the info about the drones in the webapp which we recieve from the gcs this includes current location current state last update eta nice to have maybe a map showing the drones | 1 |
299,120 | 9,205,124,935 | IssuesEvent | 2019-03-08 09:41:36 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | print composer should be better implementing "WISYWIG" concept | Component: Easy fix? Component: Pull Request or Patch supplied Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Feature request | ---
Author Name: **maiellaro-itc-cnr-it -** (maiellaro-itc-cnr-it -)
Original Redmine Issue: 534, https://issues.qgis.org/issues/534
Original Assignee: nobody -
---
print composer interface is not very suitable: the user is not able to see items on monitor as on sheet.
A lot of works is necessary to achive the right dimensions for printing on the selected sheet
| 1.0 | print composer should be better implementing "WISYWIG" concept - ---
Author Name: **maiellaro-itc-cnr-it -** (maiellaro-itc-cnr-it -)
Original Redmine Issue: 534, https://issues.qgis.org/issues/534
Original Assignee: nobody -
---
print composer interface is not very suitable: the user is not able to see items on monitor as on sheet.
A lot of works is necessary to achive the right dimensions for printing on the selected sheet
| priority | print composer should be better implementing wisywig concept author name maiellaro itc cnr it maiellaro itc cnr it original redmine issue original assignee nobody print composer interface is not very suitable the user is not able to see items on monitor as on sheet a lot of works is necessary to achive the right dimensions for printing on the selected sheet | 1 |
329,765 | 10,024,178,787 | IssuesEvent | 2019-07-16 21:08:10 | neo-project/neo | https://api.github.com/repos/neo-project/neo | closed | Add operation OP_EVAL for direct execution of opcodes | discussion low-priority | Dear all, I've been thinking that a very useful operation would be to have the ability of executing a given list of opcodes directly (inside a smart contract). It would be quite similar to the current `APPCALL`, but instead of calling a hash or interop string, it would be a bytearray of operations. I imagine there must be reasons for not having it now (like preventing the creation of very generic deployed contracts, or security issues when more than one value is returned on stack), but we can discuss what are the issues and possible fixes, possibilities for this operation cost (it could be expensive to disencourage random uses), so let me present the huge advantages :)
(1) After seeing the new vision for NEO 3.0, perhaps without UTXO and only NEP-5 assets, I imagine it would be very useful to have "NEP-5 addresses" that perform different types of ownership verification. For example, multisig addresses, time-lock addresses, all of them could possibly be recorded in this "new" NEP-5 as raw contracts, and the verification of withdraw could be directly performed by directly invoking this new `OPCODE_EXECUTE [operation_list]` (pretty much what we have already for UTXO assets)
[edit] this is not needed for nep5, only for advanced metaprogramming.
(2) It would natively support pretty much of we have right now, and give much more amazing use cases for NEO... it's like supporting anonimous lambda functions, just imagine that :)
=========
Current proposal is to implement it directly on NeoVM. InteropCalls will be blocked, also method Calls, Dynamic Invoke, or recursive Op_eval. It will be nearly Turing-incomplete (besides the JUMP that will still be allowed). | 1.0 | Add operation OP_EVAL for direct execution of opcodes - Dear all, I've been thinking that a very useful operation would be to have the ability of executing a given list of opcodes directly (inside a smart contract). It would be quite similar to the current `APPCALL`, but instead of calling a hash or interop string, it would be a bytearray of operations. I imagine there must be reasons for not having it now (like preventing the creation of very generic deployed contracts, or security issues when more than one value is returned on stack), but we can discuss what are the issues and possible fixes, possibilities for this operation cost (it could be expensive to disencourage random uses), so let me present the huge advantages :)
(1) After seeing the new vision for NEO 3.0, perhaps without UTXO and only NEP-5 assets, I imagine it would be very useful to have "NEP-5 addresses" that perform different types of ownership verification. For example, multisig addresses, time-lock addresses, all of them could possibly be recorded in this "new" NEP-5 as raw contracts, and the verification of withdraw could be directly performed by directly invoking this new `OPCODE_EXECUTE [operation_list]` (pretty much what we have already for UTXO assets)
[edit] this is not needed for nep5, only for advanced metaprogramming.
(2) It would natively support pretty much of we have right now, and give much more amazing use cases for NEO... it's like supporting anonimous lambda functions, just imagine that :)
=========
Current proposal is to implement it directly on NeoVM. InteropCalls will be blocked, also method Calls, Dynamic Invoke, or recursive Op_eval. It will be nearly Turing-incomplete (besides the JUMP that will still be allowed). | priority | add operation op eval for direct execution of opcodes dear all i ve been thinking that a very useful operation would be to have the ability of executing a given list of opcodes directly inside a smart contract it would be quite similar to the current appcall but instead of calling a hash or interop string it would be a bytearray of operations i imagine there must be reasons for not having it now like preventing the creation of very generic deployed contracts or security issues when more than one value is returned on stack but we can discuss what are the issues and possible fixes possibilities for this operation cost it could be expensive to disencourage random uses so let me present the huge advantages after seeing the new vision for neo perhaps without utxo and only nep assets i imagine it would be very useful to have nep addresses that perform different types of ownership verification for example multisig addresses time lock addresses all of them could possibly be recorded in this new nep as raw contracts and the verification of withdraw could be directly performed by directly invoking this new opcode execute pretty much what we have already for utxo assets this is not needed for only for advanced metaprogramming it would natively support pretty much of we have right now and give much more amazing use cases for neo it s like supporting anonimous lambda functions just imagine that current proposal is to implement it directly on neovm interopcalls will be blocked also method calls dynamic invoke or recursive op eval it will be nearly turing incomplete besides the jump that will still be allowed | 1 |
764,575 | 26,806,958,096 | IssuesEvent | 2023-02-01 19:04:31 | Tedeapolis/development | https://api.github.com/repos/Tedeapolis/development | closed | [BurgerRaad]: Startpunt voor nieuwe spelers veranderen naar het vliegveld | enhancement new low priority | ### Contact Details
Dyon#9999
### Beschrijf zo duidelijk mogelijk de feature
Ongeveer een jaar geleden waren er foto's van een nieuw vliegveld in Tedeapolis en ik denk dat als dit ooit door gezet word het heel goed zou zijn voor de stad. Zo kregen we van Ambu leiding ook te horen dat hun dagelijks last hebben van nieuwe spelers/kale batsen. die hun ambulances stelen het moment dat ze iemand uit hun ambu aan het halen zijn. En zou dit voor Taxi ook perfect zijn aangezien nieuwe mensen dan meer geneigd zijn een taxi melding te maken om naar de stad te komen (hierdoor worden ze dus geforceerd de RP aan te gaan). Ook is het een stuk logischer dat als je de stad voor het eerst binnen komt vliegen je aankomt bij het vliegveld.
Ik hoop dus dat het idee van een nieuw vliegveld doorgezet kan worden omdat dit naar mijn mening een aantal problemen zou oplossen.

### Wat lost deze feature op?
De overlast die de ambulance heeft van nieuwe spelers/kale batsen. En dat nieuwe mensen geforceerd worden RP aan te gaan doormiddel van een taxi bellen.
### Richtlijnen
- [X] Ik ga akkoord met de issue richtlijnen en heb deze aandachtig gelezen | 1.0 | [BurgerRaad]: Startpunt voor nieuwe spelers veranderen naar het vliegveld - ### Contact Details
Dyon#9999
### Beschrijf zo duidelijk mogelijk de feature
Ongeveer een jaar geleden waren er foto's van een nieuw vliegveld in Tedeapolis en ik denk dat als dit ooit door gezet word het heel goed zou zijn voor de stad. Zo kregen we van Ambu leiding ook te horen dat hun dagelijks last hebben van nieuwe spelers/kale batsen. die hun ambulances stelen het moment dat ze iemand uit hun ambu aan het halen zijn. En zou dit voor Taxi ook perfect zijn aangezien nieuwe mensen dan meer geneigd zijn een taxi melding te maken om naar de stad te komen (hierdoor worden ze dus geforceerd de RP aan te gaan). Ook is het een stuk logischer dat als je de stad voor het eerst binnen komt vliegen je aankomt bij het vliegveld.
Ik hoop dus dat het idee van een nieuw vliegveld doorgezet kan worden omdat dit naar mijn mening een aantal problemen zou oplossen.

### Wat lost deze feature op?
De overlast die de ambulance heeft van nieuwe spelers/kale batsen. En dat nieuwe mensen geforceerd worden RP aan te gaan doormiddel van een taxi bellen.
### Richtlijnen
- [X] Ik ga akkoord met de issue richtlijnen en heb deze aandachtig gelezen | priority | startpunt voor nieuwe spelers veranderen naar het vliegveld contact details dyon beschrijf zo duidelijk mogelijk de feature ongeveer een jaar geleden waren er foto s van een nieuw vliegveld in tedeapolis en ik denk dat als dit ooit door gezet word het heel goed zou zijn voor de stad zo kregen we van ambu leiding ook te horen dat hun dagelijks last hebben van nieuwe spelers kale batsen die hun ambulances stelen het moment dat ze iemand uit hun ambu aan het halen zijn en zou dit voor taxi ook perfect zijn aangezien nieuwe mensen dan meer geneigd zijn een taxi melding te maken om naar de stad te komen hierdoor worden ze dus geforceerd de rp aan te gaan ook is het een stuk logischer dat als je de stad voor het eerst binnen komt vliegen je aankomt bij het vliegveld ik hoop dus dat het idee van een nieuw vliegveld doorgezet kan worden omdat dit naar mijn mening een aantal problemen zou oplossen wat lost deze feature op de overlast die de ambulance heeft van nieuwe spelers kale batsen en dat nieuwe mensen geforceerd worden rp aan te gaan doormiddel van een taxi bellen richtlijnen ik ga akkoord met de issue richtlijnen en heb deze aandachtig gelezen | 1 |
583,618 | 17,394,023,869 | IssuesEvent | 2021-08-02 11:08:33 | PatTheHyruler/BSBot | https://api.github.com/repos/PatTheHyruler/BSBot | opened | Figure out how to run tests without making a million API calls | Priority: Low Status: Available Type: Maintenance | If we could have 0 API calls while running tests, that would be awesome. BUT i lack the braincells required to figure this out. | 1.0 | Figure out how to run tests without making a million API calls - If we could have 0 API calls while running tests, that would be awesome. BUT i lack the braincells required to figure this out. | priority | figure out how to run tests without making a million api calls if we could have api calls while running tests that would be awesome but i lack the braincells required to figure this out | 1 |
628,045 | 19,960,390,773 | IssuesEvent | 2022-01-28 07:40:01 | RTXteam/RTX | https://api.github.com/repos/RTXteam/RTX | closed | start tagging kg2 builds with ISO date? | enhancement low priority | think about how to do this, it is not obvious how to encode the build date in Neo4j | 1.0 | start tagging kg2 builds with ISO date? - think about how to do this, it is not obvious how to encode the build date in Neo4j | priority | start tagging builds with iso date think about how to do this it is not obvious how to encode the build date in | 1 |
725,381 | 24,960,844,849 | IssuesEvent | 2022-11-01 15:24:30 | azerothcore/azerothcore-wotlk | https://api.github.com/repos/azerothcore/azerothcore-wotlk | closed | Zorbin Fandazzle's wares avaible without doing quests | Confirmed 40-49 Priority-Low | ### What client do you play on?
enUS
### Faction
- [X] Alliance
- [X] Horde
### Content Phase:
- [ ] Generic
- [ ] 1-19
- [ ] 20-29
- [ ] 30-39
- [X] 40-49
- [ ] 50-59
- [ ] 60
### Current Behaviour
Original report: https://github.com/chromiecraft/chromiecraft/issues/2862
Player can trade with [Zorbin Fandazzle](https://wowgaming.altervista.org/aowow/?quest=7721) without doing [Zapped Giants](https://wowgaming.altervista.org/aowow/?quest=7003) and [Fuel for the Zapping](https://wowgaming.altervista.org/aowow/?quest=7721).

Tester:
The issue is confirmed.

### Expected Blizzlike Behaviour
Zorbin Fandazzle's engineering supplies should be available only after completing mentioned quest first.
### Source
["_[...] and quest completion of [Zapped Giants] and [Fuel for the Zapping] is required to gain access to his wares.[...]_"~Wowpedia](https://wowpedia.fandom.com/wiki/Zorbin_Fandazzle)
### Steps to reproduce the problem
1. Get a character that didn't do required quests (Any below level 45 will do)
2. Go to Feralas
3. Find Zorbin on the shore
4. Check his best deals, anywhere!
### Extra Notes
DB GUID: **50014**
Entry: **14637**
### AC rev. hash/commit
https://github.com/chromiecraft/azerothcore-wotlk/commit/259b9133f68ef0d740fc871d59fab3d2791f33b4
### Operating system
Ubuntu 20.04
### Modules
- [mod-ah-bot](https://github.com/azerothcore/mod-ah-bot)
- [mod-cfbg](https://github.com/azerothcore/mod-cfbg)
- [mod-chat-transmitter](https://github.com/azerothcore/mod-chat-transmitter)
- [mod-chromie-xp](https://github.com/azerothcore/mod-chromie-xp)
- [mod-desertion-warnings](https://github.com/azerothcore/mod-desertion-warnings)
- [mod-duel-reset](https://github.com/azerothcore/mod-duel-reset)
- [mod-eluna-lua-engine](https://github.com/azerothcore/mod-eluna-lua-engine)
- [mod-ip-tracker](https://github.com/azerothcore/mod-ip-tracker)
- [mod-low-level-arena](https://github.com/azerothcore/mod-low-level-arena)
- [mod-multi-client-check](https://github.com/azerothcore/mod-multi-client-check)
- [mod-pvp-titles](https://github.com/azerothcore/mod-pvp-titles)
- [mod-pvpstats-announcer](https://github.com/azerothcore/mod-pvpstats-announcer)
- [mod-queue-list-cache](https://github.com/azerothcore/mod-queue-list-cache)
- [mod-server-auto-shutdown](https://github.com/azerothcore/mod-server-auto-shutdown)
- [mod-save-inventory](https://github.com/Nyeriah/mod-save-inventory)
- [lua-carbon-copy](https://github.com/55Honey/Acore_CarbonCopy)
- [lua-exchange-npc](https://github.com/55Honey/Acore_ExchangeNpc)
- [lua-custom-worldboss](https://github.com/55Honey/Acore_CustomWorldboss)
- [lua-level-up-reward](https://github.com/55Honey/Acore_LevelUpReward)
- [lua-recruit-a-friend](https://github.com/55Honey/Acore_RecruitAFriend)
- [lua-send-and-bind](https://github.com/55Honey/Acore_SendAndBind)
- [lua-temp-announcements](https://github.com/55Honey/Acore_TempAnnouncements)
- [lua-zonecheck](https://github.com/55Honey/acore_Zonecheck)
- [lua-zone-debuff](https://github.com/55Honey/Acore_ZoneDebuff)
### Customizations
None
### Server
ChromieCraft
| 1.0 | Zorbin Fandazzle's wares avaible without doing quests - ### What client do you play on?
enUS
### Faction
- [X] Alliance
- [X] Horde
### Content Phase:
- [ ] Generic
- [ ] 1-19
- [ ] 20-29
- [ ] 30-39
- [X] 40-49
- [ ] 50-59
- [ ] 60
### Current Behaviour
Original report: https://github.com/chromiecraft/chromiecraft/issues/2862
Player can trade with [Zorbin Fandazzle](https://wowgaming.altervista.org/aowow/?quest=7721) without doing [Zapped Giants](https://wowgaming.altervista.org/aowow/?quest=7003) and [Fuel for the Zapping](https://wowgaming.altervista.org/aowow/?quest=7721).

Tester:
The issue is confirmed.

### Expected Blizzlike Behaviour
Zorbin Fandazzle's engineering supplies should be available only after completing mentioned quest first.
### Source
["_[...] and quest completion of [Zapped Giants] and [Fuel for the Zapping] is required to gain access to his wares.[...]_"~Wowpedia](https://wowpedia.fandom.com/wiki/Zorbin_Fandazzle)
### Steps to reproduce the problem
1. Get a character that didn't do required quests (Any below level 45 will do)
2. Go to Feralas
3. Find Zorbin on the shore
4. Check his best deals, anywhere!
### Extra Notes
DB GUID: **50014**
Entry: **14637**
### AC rev. hash/commit
https://github.com/chromiecraft/azerothcore-wotlk/commit/259b9133f68ef0d740fc871d59fab3d2791f33b4
### Operating system
Ubuntu 20.04
### Modules
- [mod-ah-bot](https://github.com/azerothcore/mod-ah-bot)
- [mod-cfbg](https://github.com/azerothcore/mod-cfbg)
- [mod-chat-transmitter](https://github.com/azerothcore/mod-chat-transmitter)
- [mod-chromie-xp](https://github.com/azerothcore/mod-chromie-xp)
- [mod-desertion-warnings](https://github.com/azerothcore/mod-desertion-warnings)
- [mod-duel-reset](https://github.com/azerothcore/mod-duel-reset)
- [mod-eluna-lua-engine](https://github.com/azerothcore/mod-eluna-lua-engine)
- [mod-ip-tracker](https://github.com/azerothcore/mod-ip-tracker)
- [mod-low-level-arena](https://github.com/azerothcore/mod-low-level-arena)
- [mod-multi-client-check](https://github.com/azerothcore/mod-multi-client-check)
- [mod-pvp-titles](https://github.com/azerothcore/mod-pvp-titles)
- [mod-pvpstats-announcer](https://github.com/azerothcore/mod-pvpstats-announcer)
- [mod-queue-list-cache](https://github.com/azerothcore/mod-queue-list-cache)
- [mod-server-auto-shutdown](https://github.com/azerothcore/mod-server-auto-shutdown)
- [mod-save-inventory](https://github.com/Nyeriah/mod-save-inventory)
- [lua-carbon-copy](https://github.com/55Honey/Acore_CarbonCopy)
- [lua-exchange-npc](https://github.com/55Honey/Acore_ExchangeNpc)
- [lua-custom-worldboss](https://github.com/55Honey/Acore_CustomWorldboss)
- [lua-level-up-reward](https://github.com/55Honey/Acore_LevelUpReward)
- [lua-recruit-a-friend](https://github.com/55Honey/Acore_RecruitAFriend)
- [lua-send-and-bind](https://github.com/55Honey/Acore_SendAndBind)
- [lua-temp-announcements](https://github.com/55Honey/Acore_TempAnnouncements)
- [lua-zonecheck](https://github.com/55Honey/acore_Zonecheck)
- [lua-zone-debuff](https://github.com/55Honey/Acore_ZoneDebuff)
### Customizations
None
### Server
ChromieCraft
| priority | zorbin fandazzle s wares avaible without doing quests what client do you play on enus faction alliance horde content phase generic current behaviour original report player can trade with without doing and tester the issue is confirmed expected blizzlike behaviour zorbin fandazzle s engineering supplies should be available only after completing mentioned quest first source and quest completion of and is required to gain access to his wares wowpedia steps to reproduce the problem get a character that didn t do required quests any below level will do go to feralas find zorbin on the shore check his best deals anywhere extra notes db guid entry ac rev hash commit operating system ubuntu modules customizations none server chromiecraft | 1 |
52,501 | 3,023,767,060 | IssuesEvent | 2015-08-01 21:19:54 | nprapps/dailygraphics | https://api.github.com/repos/nprapps/dailygraphics | opened | Line chart: Only cast value as a number if it's not null | Priority: Low | https://github.com/nprapps/dailygraphics/blob/master/graphic_templates/line_chart/js/graphic.js#L62-L64
Otherwise, the value changes from null to 0 — not always what's wanted. | 1.0 | Line chart: Only cast value as a number if it's not null - https://github.com/nprapps/dailygraphics/blob/master/graphic_templates/line_chart/js/graphic.js#L62-L64
Otherwise, the value changes from null to 0 — not always what's wanted. | priority | line chart only cast value as a number if it s not null otherwise the value changes from null to — not always what s wanted | 1 |
322,233 | 9,815,088,011 | IssuesEvent | 2019-06-13 11:48:59 | GoogleCloudPlatform/google-cloud-eclipse | https://api.github.com/repos/GoogleCloudPlatform/google-cloud-eclipse | closed | Annotations one per line in MockHttpServletResponse | bug help wanted low priority ready | https://google.github.io/styleguide/javaguide.html#s4.8.5-annotations
E.g.
```
@Override @Deprecated
public String encodeRedirectUrl(String url) {
return null;
}
```
should be
```
@Override
@Deprecated
public String encodeRedirectUrl(String url) {
return null;
}
```
| 1.0 | Annotations one per line in MockHttpServletResponse - https://google.github.io/styleguide/javaguide.html#s4.8.5-annotations
E.g.
```
@Override @Deprecated
public String encodeRedirectUrl(String url) {
return null;
}
```
should be
```
@Override
@Deprecated
public String encodeRedirectUrl(String url) {
return null;
}
```
| priority | annotations one per line in mockhttpservletresponse e g override deprecated public string encoderedirecturl string url return null should be override deprecated public string encoderedirecturl string url return null | 1 |
716,542 | 24,638,592,421 | IssuesEvent | 2022-10-17 09:50:16 | ibissource/frank-flow | https://api.github.com/repos/ibissource/frank-flow | closed | Upon deletion of a file switch back to the last edited file. | feature priority:low work:medium | **Is your feature request related to a problem? Please describe.**
Upon deletion of a file, the editor will load the first XML file in the file-tree. This may cause confusion.
**Describe the solution you'd like**
Keep track of previously edited file, so upon deletion of a file, it can switch back to the last.
**Describe alternatives you've considered**
Load empty file.
| 1.0 | Upon deletion of a file switch back to the last edited file. - **Is your feature request related to a problem? Please describe.**
Upon deletion of a file, the editor will load the first XML file in the file-tree. This may cause confusion.
**Describe the solution you'd like**
Keep track of previously edited file, so upon deletion of a file, it can switch back to the last.
**Describe alternatives you've considered**
Load empty file.
| priority | upon deletion of a file switch back to the last edited file is your feature request related to a problem please describe upon deletion of a file the editor will load the first xml file in the file tree this may cause confusion describe the solution you d like keep track of previously edited file so upon deletion of a file it can switch back to the last describe alternatives you ve considered load empty file | 1 |
815,094 | 30,536,135,588 | IssuesEvent | 2023-07-19 17:29:51 | workcraft/workcraft | https://api.github.com/repos/workcraft/workcraft | closed | Remove underused dependency on Kotlin | enhancement tag:core tag:model:circuit status:confirmed priority:low | Over years there was no attempt to implement any plugins or even utility functions in Kotlin.
The only Kotlin code is for traversing circuit structure to find preset and postset components for a given contact.
These can be easily converted into Java, thus dropping the dependency on Kotlin runtime and Gradle integration. | 1.0 | Remove underused dependency on Kotlin - Over years there was no attempt to implement any plugins or even utility functions in Kotlin.
The only Kotlin code is for traversing circuit structure to find preset and postset components for a given contact.
These can be easily converted into Java, thus dropping the dependency on Kotlin runtime and Gradle integration. | priority | remove underused dependency on kotlin over years there was no attempt to implement any plugins or even utility functions in kotlin the only kotlin code is for traversing circuit structure to find preset and postset components for a given contact these can be easily converted into java thus dropping the dependency on kotlin runtime and gradle integration | 1 |
299,347 | 9,205,387,883 | IssuesEvent | 2019-03-08 10:25:47 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | Qgis crash associated with vector actions | Category: Vectors Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report | ---
Author Name: **cgs_bob -** (cgs_bob -)
Original Redmine Issue: 744, https://issues.qgis.org/issues/744
Original Assignee: Gavin Macaulay -
---
I have been able to consistently crash qgis by doing this:
1) Start qgis and load project that has vectors with actions.
2) Click on vector in the legend and then click on Identify Feature.
3) In the Identify Results window, click on an action.
(my action opens up a window that says "starting konqueror ftp://..." and then konqueror brings up the ftp site)
4) Click on the Close button in the window that says "starting konqueror" will crash qgis.
I have attached the debug messages I got on my Konsole.
---
- [qgis_actions_crash.txt](https://issues.qgis.org/attachments/download/1923/qgis_actions_crash.txt) (cgs_bob -) | 1.0 | Qgis crash associated with vector actions - ---
Author Name: **cgs_bob -** (cgs_bob -)
Original Redmine Issue: 744, https://issues.qgis.org/issues/744
Original Assignee: Gavin Macaulay -
---
I have been able to consistently crash qgis by doing this:
1) Start qgis and load project that has vectors with actions.
2) Click on vector in the legend and then click on Identify Feature.
3) In the Identify Results window, click on an action.
(my action opens up a window that says "starting konqueror ftp://..." and then konqueror brings up the ftp site)
4) Click on the Close button in the window that says "starting konqueror" will crash qgis.
I have attached the debug messages I got on my Konsole.
---
- [qgis_actions_crash.txt](https://issues.qgis.org/attachments/download/1923/qgis_actions_crash.txt) (cgs_bob -) | priority | qgis crash associated with vector actions author name cgs bob cgs bob original redmine issue original assignee gavin macaulay i have been able to consistently crash qgis by doing this start qgis and load project that has vectors with actions click on vector in the legend and then click on identify feature in the identify results window click on an action my action opens up a window that says starting konqueror ftp and then konqueror brings up the ftp site click on the close button in the window that says starting konqueror will crash qgis i have attached the debug messages i got on my konsole cgs bob | 1 |
329,186 | 10,013,114,859 | IssuesEvent | 2019-07-15 14:34:47 | NCIOCPL/cgov-digital-platform | https://api.github.com/repos/NCIOCPL/cgov-digital-platform | closed | Wrong main menu on “Subvenciones y capacitación” (Grants and training) | Low priority Technical Item bug | 1. Go to the English version of the site.
1. Click on "Grants & Training".
1. Click on the "Spanish" link.
* The main menu appears in English.
* The URL path is `/espanol/grants-training` instead of `/espanol/subvenciones-capacitacion`
| 1.0 | Wrong main menu on “Subvenciones y capacitación” (Grants and training) - 1. Go to the English version of the site.
1. Click on "Grants & Training".
1. Click on the "Spanish" link.
* The main menu appears in English.
* The URL path is `/espanol/grants-training` instead of `/espanol/subvenciones-capacitacion`
| priority | wrong main menu on “subvenciones y capacitación” grants and training go to the english version of the site click on grants training click on the spanish link the main menu appears in english the url path is espanol grants training instead of espanol subvenciones capacitacion | 1 |
803,486 | 29,178,939,485 | IssuesEvent | 2023-05-19 10:13:03 | rmlockwood/FLExTrans | https://api.github.com/repos/rmlockwood/FLExTrans | opened | [Sense Linker] headwords shouldn't be capitalized | bug low priority | Even though the text has capitalized letters, it would be nice if the headwords for the source project were not capitalized in the LInker. | 1.0 | [Sense Linker] headwords shouldn't be capitalized - Even though the text has capitalized letters, it would be nice if the headwords for the source project were not capitalized in the LInker. | priority | headwords shouldn t be capitalized even though the text has capitalized letters it would be nice if the headwords for the source project were not capitalized in the linker | 1 |
815,394 | 30,551,117,699 | IssuesEvent | 2023-07-20 08:35:27 | EddieHubCommunity/LinkFree | https://api.github.com/repos/EddieHubCommunity/LinkFree | closed | [OTHER] Rename docker-compose.yml to compose.yml | 🏁 status: ready for dev ✨ goal: improvement 🟩 priority: low 🔢 points: 2 | ### What would you like to share?
Docker Compose (and compatible) will accept `compose.yml` by default for the filename. We should rename ours to be less vendor specific.
### Additional information
_No response_ | 1.0 | [OTHER] Rename docker-compose.yml to compose.yml - ### What would you like to share?
Docker Compose (and compatible) will accept `compose.yml` by default for the filename. We should rename ours to be less vendor specific.
### Additional information
_No response_ | priority | rename docker compose yml to compose yml what would you like to share docker compose and compatible will accept compose yml by default for the filename we should rename ours to be less vendor specific additional information no response | 1 |
169,540 | 6,403,852,485 | IssuesEvent | 2017-08-06 22:28:52 | facelessuser/backrefs | https://api.github.com/repos/facelessuser/backrefs | opened | Python 3.7 support | Bug Priority - Low Severity - Major | Looks like we aren't going to get lucky and have 3.7 just work ☹️ . I'm trying to get acquainted with these issues early so when 3.7 goes live, I'll be ready.
Issues seem to be be contained to `bre` and seem to deal with escaped characters again. Not sure what Python is doing in regards to escapes, but it looks like there is more work to be done:
```
else:
try:
> this = chr(ESCAPES[this][1])
E KeyError: '\\c'
``` | 1.0 | Python 3.7 support - Looks like we aren't going to get lucky and have 3.7 just work ☹️ . I'm trying to get acquainted with these issues early so when 3.7 goes live, I'll be ready.
Issues seem to be be contained to `bre` and seem to deal with escaped characters again. Not sure what Python is doing in regards to escapes, but it looks like there is more work to be done:
```
else:
try:
> this = chr(ESCAPES[this][1])
E KeyError: '\\c'
``` | priority | python support looks like we aren t going to get lucky and have just work ☹️ i m trying to get acquainted with these issues early so when goes live i ll be ready issues seem to be be contained to bre and seem to deal with escaped characters again not sure what python is doing in regards to escapes but it looks like there is more work to be done else try this chr escapes e keyerror c | 1 |
406,350 | 11,890,476,361 | IssuesEvent | 2020-03-28 18:31:17 | GentenStudios/Phoenix | https://api.github.com/repos/GentenStudios/Phoenix | opened | Upgrade setting system to ENtt | enhancement good first issue help wanted priority-low | ## Story
We are using ENtt to store data instead of custom registry systems. The settings system still uses a custom registry and should be updated to work towards consistency.
## MVP
What are the minimum features needed for this story?
- [ ] Swap out custom settings registry with ENtt registry | 1.0 | Upgrade setting system to ENtt - ## Story
We are using ENtt to store data instead of custom registry systems. The settings system still uses a custom registry and should be updated to work towards consistency.
## MVP
What are the minimum features needed for this story?
- [ ] Swap out custom settings registry with ENtt registry | priority | upgrade setting system to entt story we are using entt to store data instead of custom registry systems the settings system still uses a custom registry and should be updated to work towards consistency mvp what are the minimum features needed for this story swap out custom settings registry with entt registry | 1 |
375,831 | 11,135,017,800 | IssuesEvent | 2019-12-20 13:23:23 | sacloud/libsacloud | https://api.github.com/repos/sacloud/libsacloud | closed | RetryableHTTPClientの実装切り替え | enhancement priority/low v2 | https://github.com/hashicorp/go-retryablehttp などへの切り替えを検討する。
Memo:
以前はエラー時のリトライ待ちでExponential Backoff(and jitter)は不要と考えていたが、Terraformなどから同種のリクエストを多数発行する場面などがあることを踏まえるとあった方が良いかもしれない。hashicorp/go-retryablehttpであればこの辺りをクリアしており、かつ現在の実装からの変更が少なくて済む。(現在のretryable-http-clientはhashicorp/go-retryablehttpを参考に作られている) | 1.0 | RetryableHTTPClientの実装切り替え - https://github.com/hashicorp/go-retryablehttp などへの切り替えを検討する。
Memo:
以前はエラー時のリトライ待ちでExponential Backoff(and jitter)は不要と考えていたが、Terraformなどから同種のリクエストを多数発行する場面などがあることを踏まえるとあった方が良いかもしれない。hashicorp/go-retryablehttpであればこの辺りをクリアしており、かつ現在の実装からの変更が少なくて済む。(現在のretryable-http-clientはhashicorp/go-retryablehttpを参考に作られている) | priority | retryablehttpclientの実装切り替え などへの切り替えを検討する。 memo 以前はエラー時のリトライ待ちでexponential backoff and jitter は不要と考えていたが、terraformなどから同種のリクエストを多数発行する場面などがあることを踏まえるとあった方が良いかもしれない。hashicorp go retryablehttpであればこの辺りをクリアしており、かつ現在の実装からの変更が少なくて済む。 現在のretryable http clientはhashicorp go retryablehttpを参考に作られている | 1 |
184,059 | 6,700,699,643 | IssuesEvent | 2017-10-11 06:35:06 | De7vID/klingon-assistant | https://api.github.com/repos/De7vID/klingon-assistant | opened | provide material design app icon | enhancement Priority-Low | "feature request for boQwI': have the app's icon follow Google's material design more."
See [this guide](https://material.io/guidelines/style/icons.html#icons-product-icons). | 1.0 | provide material design app icon - "feature request for boQwI': have the app's icon follow Google's material design more."
See [this guide](https://material.io/guidelines/style/icons.html#icons-product-icons). | priority | provide material design app icon feature request for boqwi have the app s icon follow google s material design more see | 1 |
649,113 | 21,218,332,740 | IssuesEvent | 2022-04-11 09:29:38 | devinit/ddw-analyst-ui | https://api.github.com/repos/devinit/ddw-analyst-ui | closed | Order of columns when viewing data | Low Priority pinned | This seems to be random. Is there any control over this? Can we specify a column order (Not in the query but in the UI generally)?

| 1.0 | Order of columns when viewing data - This seems to be random. Is there any control over this? Can we specify a column order (Not in the query but in the UI generally)?

| priority | order of columns when viewing data this seems to be random is there any control over this can we specify a column order not in the query but in the ui generally | 1 |
663,587 | 22,198,540,326 | IssuesEvent | 2022-06-07 09:07:38 | woocommerce/woocommerce-blocks | https://api.github.com/repos/woocommerce/woocommerce-blocks | closed | Refactor line-height properties for ease of use | category: refactor category: styles priority: low stale | This is a follow-up of https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/2533#discussion_r429432474 and https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/2533#pullrequestreview-419988141.
In #2533 we refactored font size properties but that meant removing line heights from the `font-size()` mixin. In order to avoid having magic numbers around the code, we could explore other solutions:
- Adding `line-height` back to the mixin.
- Using variables for `line-height`. | 1.0 | Refactor line-height properties for ease of use - This is a follow-up of https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/2533#discussion_r429432474 and https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/2533#pullrequestreview-419988141.
In #2533 we refactored font size properties but that meant removing line heights from the `font-size()` mixin. In order to avoid having magic numbers around the code, we could explore other solutions:
- Adding `line-height` back to the mixin.
- Using variables for `line-height`. | priority | refactor line height properties for ease of use this is a follow up of and in we refactored font size properties but that meant removing line heights from the font size mixin in order to avoid having magic numbers around the code we could explore other solutions adding line height back to the mixin using variables for line height | 1 |
647,817 | 21,156,659,839 | IssuesEvent | 2022-04-07 04:34:07 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [3.1] [studio] Handle multipart write-content.json API with error code instead of 200 if there is no file uploaded | enhancement priority: low CI | ### Bug Report
#### Crafter CMS Version
3.1.x
#### Date of Build
Mar 25, 2022
#### Describe the bug
There are cases in which `write-content.json` API responds with status `200`, content `{}` if sending requests with header `multipart` without a body or with the body but without a file.
#### To Reproduce
Steps to reproduce the behavior:
1. Create a site with empty BP (Ex: sample)
2. Using `curl` to send request to `write-content.json` API as following:
(a)
```
curl 'http://localhost:8080/studio/api/1/services/api/1/content/write-content.json?site=sample&phase=onSave&path=/site/website/index.xml&fileName=index.xml&contentType=/page/entry&unlock=true' \
-H 'X-XSRF-TOKEN: <your_token>' \
-H 'Content-Type: multipart/form-data; boundary=fb806693459d463fa41bb513ccdb3be0' \
-H 'Cookie: <your_cookie>' \
--data-raw $'a random text'
```
(b)
```
curl 'http://localhost:8080/studio/api/1/services/api/1/content/write-content.json?site=sample&path=/static-assets&contentType=folder&createFolders=true&draft=false&duplicate=false&unlock=true&_csrf=<your_token>' \
-H 'Content-Type: multipart/form-data; boundary=----WebKitFormBoundary1svf4nc69JLit4SA' \
-H 'Cookie: <your_cookie>' \
--data-raw $'------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="site"\r\n\r\nsample\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="relativePath"\r\n\r\nnull\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="name"\r\n\r\ntest.txt\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="type"\r\n\r\ntext/plain\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="path"\r\n\r\n/static-assets\r\n\r\n\r\n------WebKitFormBoundary1svf4nc69JLit4SA--\r\n'
```
Note that in
(a): The content-type header is malformed. It has no form data
(b): Upload a text file but the multipart is missing the `form-data` for filename. A correct `data-raw` could be:
```
--data-raw $'------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="site"\r\n\r\nsample\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="relativePath"\r\n\r\nnull\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="name"\r\n\r\ntest.txt\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="type"\r\n\r\ntext/plain\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="path"\r\n\r\n/static-assets\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="file"; filename="test.txt"\r\nContent-Type: text/plain\r\n\r\n\r\n------WebKitFormBoundary1svf4nc69JLit4SA--\r\n'
```
3. Run the above command after updating cookie and token
4. Notice that there is no upload file but the response is `200 {}`
#### Logs
#### Screenshots

| 1.0 | [3.1] [studio] Handle multipart write-content.json API with error code instead of 200 if there is no file uploaded - ### Bug Report
#### Crafter CMS Version
3.1.x
#### Date of Build
Mar 25, 2022
#### Describe the bug
There are cases in which `write-content.json` API responds with status `200`, content `{}` if sending requests with header `multipart` without a body or with the body but without a file.
#### To Reproduce
Steps to reproduce the behavior:
1. Create a site with empty BP (Ex: sample)
2. Using `curl` to send request to `write-content.json` API as following:
(a)
```
curl 'http://localhost:8080/studio/api/1/services/api/1/content/write-content.json?site=sample&phase=onSave&path=/site/website/index.xml&fileName=index.xml&contentType=/page/entry&unlock=true' \
-H 'X-XSRF-TOKEN: <your_token>' \
-H 'Content-Type: multipart/form-data; boundary=fb806693459d463fa41bb513ccdb3be0' \
-H 'Cookie: <your_cookie>' \
--data-raw $'a random text'
```
(b)
```
curl 'http://localhost:8080/studio/api/1/services/api/1/content/write-content.json?site=sample&path=/static-assets&contentType=folder&createFolders=true&draft=false&duplicate=false&unlock=true&_csrf=<your_token>' \
-H 'Content-Type: multipart/form-data; boundary=----WebKitFormBoundary1svf4nc69JLit4SA' \
-H 'Cookie: <your_cookie>' \
--data-raw $'------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="site"\r\n\r\nsample\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="relativePath"\r\n\r\nnull\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="name"\r\n\r\ntest.txt\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="type"\r\n\r\ntext/plain\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="path"\r\n\r\n/static-assets\r\n\r\n\r\n------WebKitFormBoundary1svf4nc69JLit4SA--\r\n'
```
Note that in
(a): The content-type header is malformed. It has no form data
(b): Upload a text file but the multipart is missing the `form-data` for filename. A correct `data-raw` could be:
```
--data-raw $'------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="site"\r\n\r\nsample\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="relativePath"\r\n\r\nnull\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="name"\r\n\r\ntest.txt\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="type"\r\n\r\ntext/plain\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="path"\r\n\r\n/static-assets\r\n------WebKitFormBoundary1svf4nc69JLit4SA\r\nContent-Disposition: form-data; name="file"; filename="test.txt"\r\nContent-Type: text/plain\r\n\r\n\r\n------WebKitFormBoundary1svf4nc69JLit4SA--\r\n'
```
3. Run the above command after updating cookie and token
4. Notice that there is no upload file but the response is `200 {}`
#### Logs
#### Screenshots

| priority | handle multipart write content json api with error code instead of if there is no file uploaded bug report crafter cms version x date of build mar describe the bug there are cases in which write content json api responds with status content if sending requests with header multipart without a body or with the body but without a file to reproduce steps to reproduce the behavior create a site with empty bp ex sample using curl to send request to write content json api as following a curl h x xsrf token h content type multipart form data boundary h cookie data raw a random text b curl h content type multipart form data boundary h cookie data raw r ncontent disposition form data name site r n r nsample r n r ncontent disposition form data name relativepath r n r nnull r n r ncontent disposition form data name name r n r ntest txt r n r ncontent disposition form data name type r n r ntext plain r n r ncontent disposition form data name path r n r n static assets r n r n r n r n note that in a the content type header is malformed it has no form data b upload a text file but the multipart is missing the form data for filename a correct data raw could be data raw r ncontent disposition form data name site r n r nsample r n r ncontent disposition form data name relativepath r n r nnull r n r ncontent disposition form data name name r n r ntest txt r n r ncontent disposition form data name type r n r ntext plain r n r ncontent disposition form data name path r n r n static assets r n r ncontent disposition form data name file filename test txt r ncontent type text plain r n r n r n r n run the above command after updating cookie and token notice that there is no upload file but the response is logs screenshots | 1 |
599,249 | 18,268,822,575 | IssuesEvent | 2021-10-04 11:40:34 | resistance-modelling/slim | https://api.github.com/repos/resistance-modelling/slim | closed | Add parameter sources to JSON files | enhancement low-priority | At the moment the sources of data are both in `README.md` and descriptions of JSON configuration files.
The aim of this issue is to move the sources of constants into the JSON files so that the general structure of the JSON is as follows:
`{"name": { "description": "dummy variable", "source": "Dummy et al", "value": 0}}`
The keys could also include `"notes"` when the source requires further explanation. | 1.0 | Add parameter sources to JSON files - At the moment the sources of data are both in `README.md` and descriptions of JSON configuration files.
The aim of this issue is to move the sources of constants into the JSON files so that the general structure of the JSON is as follows:
`{"name": { "description": "dummy variable", "source": "Dummy et al", "value": 0}}`
The keys could also include `"notes"` when the source requires further explanation. | priority | add parameter sources to json files at the moment the sources of data are both in readme md and descriptions of json configuration files the aim of this issue is to move the sources of constants into the json files so that the general structure of the json is as follows name description dummy variable source dummy et al value the keys could also include notes when the source requires further explanation | 1 |
703,476 | 24,161,517,358 | IssuesEvent | 2022-09-22 12:03:58 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | mgmt/mcumgr/lib: Async image erase command with status check | Feature Request priority: low area: mcumgr | **Is your feature request related to a problem? Please describe.**
Currently when issues image erase command, the application will wait for the image to be erased before responding to
the host that send the command. The erase may take some time, depending on flash size, erase command implementation and so on; because host gets response from image erase command only after it finishes, it may take long time for the host to wait for the response without really knowing when it will end - which causes problem with distinguishing from command taking long and not responding at all.
**Describe the solution you'd like**
Asynchronous erase.
After receiving image erase command (write) with additional parameter, for example "async=true", the mcumgr immediately responds with rc=0 (OK), if it can accept command, and "async" with value "doing" and then stars erase.
Then host can periodically ask application with image erase read command for current status of erase, to figure out when it ends.
**Describe alternatives you've considered**
Completely changing current image erase to async, but this would break compatibility.
**Additional context**
Image upload should be rejected when async erase is in progress.
| 1.0 | mgmt/mcumgr/lib: Async image erase command with status check - **Is your feature request related to a problem? Please describe.**
Currently when issues image erase command, the application will wait for the image to be erased before responding to
the host that send the command. The erase may take some time, depending on flash size, erase command implementation and so on; because host gets response from image erase command only after it finishes, it may take long time for the host to wait for the response without really knowing when it will end - which causes problem with distinguishing from command taking long and not responding at all.
**Describe the solution you'd like**
Asynchronous erase.
After receiving image erase command (write) with additional parameter, for example "async=true", the mcumgr immediately responds with rc=0 (OK), if it can accept command, and "async" with value "doing" and then stars erase.
Then host can periodically ask application with image erase read command for current status of erase, to figure out when it ends.
**Describe alternatives you've considered**
Completely changing current image erase to async, but this would break compatibility.
**Additional context**
Image upload should be rejected when async erase is in progress.
| priority | mgmt mcumgr lib async image erase command with status check is your feature request related to a problem please describe currently when issues image erase command the application will wait for the image to be erased before responding to the host that send the command the erase may take some time depending on flash size erase command implementation and so on because host gets response from image erase command only after it finishes it may take long time for the host to wait for the response without really knowing when it will end which causes problem with distinguishing from command taking long and not responding at all describe the solution you d like asynchronous erase after receiving image erase command write with additional parameter for example async true the mcumgr immediately responds with rc ok if it can accept command and async with value doing and then stars erase then host can periodically ask application with image erase read command for current status of erase to figure out when it ends describe alternatives you ve considered completely changing current image erase to async but this would break compatibility additional context image upload should be rejected when async erase is in progress | 1 |
398,207 | 11,739,288,062 | IssuesEvent | 2020-03-11 17:27:05 | thaliawww/ThaliApp | https://api.github.com/repos/thaliawww/ThaliApp | closed | Age/membership verification | api feature priority: low | In GitLab by @wkuipers on Feb 7, 2017, 17:14
Enable users to verify another user's age and membership status | 1.0 | Age/membership verification - In GitLab by @wkuipers on Feb 7, 2017, 17:14
Enable users to verify another user's age and membership status | priority | age membership verification in gitlab by wkuipers on feb enable users to verify another user s age and membership status | 1 |
421,043 | 12,247,988,153 | IssuesEvent | 2020-05-05 16:44:46 | kermitt2/dataseer-web | https://api.github.com/repos/kermitt2/dataseer-web | closed | Inconsistent capitalisation on data type list | Low priority | Some terms are all lower case (genetic data, spectrometry, protein data) and most others are capitalised. Would be good to have them all the same (Capitalised seems better).

| 1.0 | Inconsistent capitalisation on data type list - Some terms are all lower case (genetic data, spectrometry, protein data) and most others are capitalised. Would be good to have them all the same (Capitalised seems better).

| priority | inconsistent capitalisation on data type list some terms are all lower case genetic data spectrometry protein data and most others are capitalised would be good to have them all the same capitalised seems better | 1 |
211,220 | 7,199,346,677 | IssuesEvent | 2018-02-05 15:42:08 | xcat2/xcat-core | https://api.github.com/repos/xcat2/xcat-core | opened | Create better message on invalid node names? | priority:low type:usability | Opening as a usability issue, wondering if we can better detect this and provide a better message to the user?
Trying to create a node definition with the following:
```
c100.domain.com:
objtype=node
groups=mm
mgt=blade
mpa=c100u01.domain.com
```
Results in:
```
[root@briggs01 ~]# cat test.stanza | mkdef -z
Error: The object name 'c100.domain.com' is invalid, please refer to "man xcatdb" for the valid "xCAT Object Name Format"
```
The reason is that there's a domain here, is there a way we could better inform the user of the problem. Or update the man page to state that domains are not allowed as an xCAT node definition.
Suggestion, something like:
```
[root@briggs01 ~]# cat test.stanza | mkdef -z
Error: The object name 'c100.domain.com' is invalid. Cannot use '.' in node name.
```
If this could be a quick check, could help new users figure out what is wrong quicker. | 1.0 | Create better message on invalid node names? - Opening as a usability issue, wondering if we can better detect this and provide a better message to the user?
Trying to create a node definition with the following:
```
c100.domain.com:
objtype=node
groups=mm
mgt=blade
mpa=c100u01.domain.com
```
Results in:
```
[root@briggs01 ~]# cat test.stanza | mkdef -z
Error: The object name 'c100.domain.com' is invalid, please refer to "man xcatdb" for the valid "xCAT Object Name Format"
```
The reason is that there's a domain here, is there a way we could better inform the user of the problem. Or update the man page to state that domains are not allowed as an xCAT node definition.
Suggestion, something like:
```
[root@briggs01 ~]# cat test.stanza | mkdef -z
Error: The object name 'c100.domain.com' is invalid. Cannot use '.' in node name.
```
If this could be a quick check, could help new users figure out what is wrong quicker. | priority | create better message on invalid node names opening as a usability issue wondering if we can better detect this and provide a better message to the user trying to create a node definition with the following domain com objtype node groups mm mgt blade mpa domain com results in cat test stanza mkdef z error the object name domain com is invalid please refer to man xcatdb for the valid xcat object name format the reason is that there s a domain here is there a way we could better inform the user of the problem or update the man page to state that domains are not allowed as an xcat node definition suggestion something like cat test stanza mkdef z error the object name domain com is invalid cannot use in node name if this could be a quick check could help new users figure out what is wrong quicker | 1 |
112,226 | 4,513,603,162 | IssuesEvent | 2016-09-04 11:26:43 | rathena/rathena | https://api.github.com/repos/rathena/rathena | closed | 18123 - Bow of Storm | bug:database mode:renewal priority:low server:map status:confirmed | First: Should be useable by Ranger, Minstel, Wander.
Second: The Item Script is wrong it buffs the Ranger Skill "Arrow Storm" not as mentioned in the Item Description the Minstel/Wander Skill "Severe Rainstorm".
rA Offical:
18123,Bow_of_Storms,Bow of Storms,5,20,,1500,160,,5,1,0x00000800,63,2,34,4,130,1,11,{ bonus bLongAtkRate,30; bonus2 bSkillCooldown,"RA_ARROWSTORM",-20; bonus2 bSkillUseSP,"RA_ARROWSTORM",15; },{},{}
Fixed:
18123,Bow_of_Storms,Bow of Storms,5,20,,1500,160,,5,1,0x00080800,56,2,34,4,130,1,11,{ bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-20; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",15; },{},{}
http://ragnarok.wikia.com/wiki/Bow_of_Storm | 1.0 | 18123 - Bow of Storm - First: Should be useable by Ranger, Minstel, Wander.
Second: The Item Script is wrong it buffs the Ranger Skill "Arrow Storm" not as mentioned in the Item Description the Minstel/Wander Skill "Severe Rainstorm".
rA Offical:
18123,Bow_of_Storms,Bow of Storms,5,20,,1500,160,,5,1,0x00000800,63,2,34,4,130,1,11,{ bonus bLongAtkRate,30; bonus2 bSkillCooldown,"RA_ARROWSTORM",-20; bonus2 bSkillUseSP,"RA_ARROWSTORM",15; },{},{}
Fixed:
18123,Bow_of_Storms,Bow of Storms,5,20,,1500,160,,5,1,0x00080800,56,2,34,4,130,1,11,{ bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-20; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",15; },{},{}
http://ragnarok.wikia.com/wiki/Bow_of_Storm | priority | bow of storm first should be useable by ranger minstel wander second the item script is wrong it buffs the ranger skill arrow storm not as mentioned in the item description the minstel wander skill severe rainstorm ra offical bow of storms bow of storms bonus blongatkrate bskillcooldown ra arrowstorm bskillusesp ra arrowstorm fixed bow of storms bow of storms bonus blongatkrate bskillcooldown wm severe rainstorm bskillusesp wm severe rainstorm | 1 |
426,903 | 12,389,921,912 | IssuesEvent | 2020-05-20 09:47:53 | CSBiology/CsbScaffold | https://api.github.com/repos/CSBiology/CsbScaffold | opened | Polyglot template | Area: v2 Priority: Low Status: Pending Type: Discussion | Maybe it is beneficial to not limit the template to F#. I am not sure about R, but it should be pretty easy to add the option to setup a python environment using anaconda in addition to the F# environment.
| 1.0 | Polyglot template - Maybe it is beneficial to not limit the template to F#. I am not sure about R, but it should be pretty easy to add the option to setup a python environment using anaconda in addition to the F# environment.
| priority | polyglot template maybe it is beneficial to not limit the template to f i am not sure about r but it should be pretty easy to add the option to setup a python environment using anaconda in addition to the f environment | 1 |
299,403 | 9,205,458,287 | IssuesEvent | 2019-03-08 10:37:47 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | Missing verb in AttibuteActionDialogBase | Category: GUI Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report | ---
Author Name: **cdavila -** (cdavila -)
Original Redmine Issue: 793, https://issues.qgis.org/issues/793
Original Assignee: cdavila -
---
"be" is missing where XXXX are in the following message:
...The special characters %% will *XXXX* replaced by the value of the field that was selected...
| 1.0 | Missing verb in AttibuteActionDialogBase - ---
Author Name: **cdavila -** (cdavila -)
Original Redmine Issue: 793, https://issues.qgis.org/issues/793
Original Assignee: cdavila -
---
"be" is missing where XXXX are in the following message:
...The special characters %% will *XXXX* replaced by the value of the field that was selected...
| priority | missing verb in attibuteactiondialogbase author name cdavila cdavila original redmine issue original assignee cdavila be is missing where xxxx are in the following message the special characters will xxxx replaced by the value of the field that was selected | 1 |
719,462 | 24,761,125,268 | IssuesEvent | 2022-10-22 00:33:33 | Metastruct/issues | https://api.github.com/repos/Metastruct/issues | closed | newchatsounds: aliases don't work anymore? | bug help wanted usersubmitted low priority chatsounds | `ayy lmao` plays, but is supposed to be aliased to `ace of base`, too:
```Lua
L["ace of base"]={{path="chatsounds/autoadd/music/ayy lmao.ogg",length=21.838}}
L["ayy lmao"]={{path="chatsounds/autoadd/music/ayy lmao.ogg",length=21.838}}
```
However only `ayy lmao` works, `ace of base` doesn't. Doesn't even show up in the autocomplete list.
Bug reported by '^3Potc :flag_de: Fdk' (STEAM_0:1:30490065). | 1.0 | newchatsounds: aliases don't work anymore? - `ayy lmao` plays, but is supposed to be aliased to `ace of base`, too:
```Lua
L["ace of base"]={{path="chatsounds/autoadd/music/ayy lmao.ogg",length=21.838}}
L["ayy lmao"]={{path="chatsounds/autoadd/music/ayy lmao.ogg",length=21.838}}
```
However only `ayy lmao` works, `ace of base` doesn't. Doesn't even show up in the autocomplete list.
Bug reported by '^3Potc :flag_de: Fdk' (STEAM_0:1:30490065). | priority | newchatsounds aliases don t work anymore ayy lmao plays but is supposed to be aliased to ace of base too lua l path chatsounds autoadd music ayy lmao ogg length l path chatsounds autoadd music ayy lmao ogg length however only ayy lmao works ace of base doesn t doesn t even show up in the autocomplete list bug reported by flag de fdk steam | 1 |
360,680 | 10,695,876,320 | IssuesEvent | 2019-10-23 13:48:34 | opentargets/platform | https://api.github.com/repos/opentargets/platform | closed | Add expression data to batch search page | Kind: Enhancement Priority: Low Topic: Batch search | @peatroot commented on [Mon Sep 25 2017](https://github.com/opentargets/webapp/issues/198)
The RNA and protein expression data should be displayed on the target batch search page.
## Earlier design
Here's a screenshot of the first design, which I don't think was ever used in production.

## Grouping of tissues
We have tissue hierarchies organised by organ and anatomical system elsewhere, which we could also use in this view.
## Ordering of genes/tissues
It may be helpful to cluster the genes and tissues. The clustering would give one scheme to order rows and columns, though other schemes such as value (row/column sums) or alphabetical might also be useful. There are some nice transitions on [this example](https://bost.ocks.org/mike/miserables/). We may want to consider displaying dendrograms/trees to the left and top (something like the final example [here](http://genomicsclass.github.io/book/pages/clustering_and_heatmaps.html)).
## Size consideration
Currently the batch search supports up to 200 targets. With the 84 tissues available, keeping the data sufficiently compressed whilst it is passed over the wire is important. The existing format for calls to the `expression` endpoint for a single target would otherwise be acceptable.
A possible way to reduce the size of the response is to use a structure roughly as follows (where the rna/protein ordering matches that within the tissues array):
```
{
genes: {
ENSG00000197430: {
rna: [10, 1, 3, 1, -1, 0, 0, ...],
protein: [2, 1, 3, 1, -1, 0, 0, ...]
},
ENSG00000197431: {
rna: [10, 1, 3, 1, -1, 0, 0, ...],
protein: [2, 1, 3, 1, -1, 0, 0, ...]
},
...
],
tissues: [
{
label: "adrenal gland",
organs: ["endocrine gland"],
anatomical_systems: ["endocrine system"],
},
{
label: "vermiform appendix",
organs: ["colon", "intestine"],
anatomical_systems: ["digestive system"],
},
...
]
}
```
The `expression` endpoint currently supports only GET requests I think, but if we could extend it to support POST requests, the above example response might be received from a POST request with the following payload:
```
{
"genes": ["ENSG00000197430", "ENSG00000197431"],
"flat": true
}
```
## Questions
* Should we show RNA and protein data?
* Should we show raw RNA data or bucketed strength/specificity (ideally be consistent with single target expression widget)
* What interactivity do we want?
* Any specific colouring scheme to use?
* There are 84 tissues, which will *just* fit horizontally if the labels are small, but it is not very scalable. Is this a problem?
---
@emepyc commented on [Mon Sep 25 2017](https://github.com/opentargets/webapp/issues/198#issuecomment-331907259)
> Should we show RNA and protein data?
RNA
> Should we show raw RNA data or bucketed strength/specificity (ideally be consistent with single target expression widget)
I was thinking the same when we were discussing the single target expression widget. I agree it should be consistent, but it is a bit tricky: what would be the legend of the color scale for the cells? (some kind of normalised TPM?)
> There are 84 tissues, which will just fit horizontally if the labels are small, but it is not very scalable. Is this a problem?
My understanding is that the number of tissues will not change significantly considerably, but the number of cell lines in the data can grow (considerably?) due to the blueprint data. Any idea @ckongEbi ?
---
@peatroot commented on [Wed Oct 04 2017](https://github.com/opentargets/webapp/issues/198#issuecomment-334106485)
Targets' expression profiles should now contain `level`, `value`, `zscore` for RNA and `level` for protein. Each gene in the above suggested output should include (in some similar format):
```
ENSG00000197430: {
rna_level: [10, 1, 3, 1, -1, 0, 0, ...],
rna_value: [17, 0.5, 198322, ...],
rna_zscore: [-1, 2, 5, 0, 0, ...],
protein_level: [2, 1, 3, 1, -1, 0, 0, ...]
}
```
---
@mkarmona commented on [Wed Oct 04 2017](https://github.com/opentargets/webapp/issues/198#issuecomment-334160916)
here a first implementation https://github.com/opentargets/rest_api/pull/117
| 1.0 | Add expression data to batch search page - @peatroot commented on [Mon Sep 25 2017](https://github.com/opentargets/webapp/issues/198)
The RNA and protein expression data should be displayed on the target batch search page.
## Earlier design
Here's a screenshot of the first design, which I don't think was ever used in production.

## Grouping of tissues
We have tissue hierarchies organised by organ and anatomical system elsewhere, which we could also use in this view.
## Ordering of genes/tissues
It may be helpful to cluster the genes and tissues. The clustering would give one scheme to order rows and columns, though other schemes such as value (row/column sums) or alphabetical might also be useful. There are some nice transitions on [this example](https://bost.ocks.org/mike/miserables/). We may want to consider displaying dendrograms/trees to the left and top (something like the final example [here](http://genomicsclass.github.io/book/pages/clustering_and_heatmaps.html)).
## Size consideration
Currently the batch search supports up to 200 targets. With the 84 tissues available, keeping the data sufficiently compressed whilst it is passed over the wire is important. The existing format for calls to the `expression` endpoint for a single target would otherwise be acceptable.
A possible way to reduce the size of the response is to use a structure roughly as follows (where the rna/protein ordering matches that within the tissues array):
```
{
genes: {
ENSG00000197430: {
rna: [10, 1, 3, 1, -1, 0, 0, ...],
protein: [2, 1, 3, 1, -1, 0, 0, ...]
},
ENSG00000197431: {
rna: [10, 1, 3, 1, -1, 0, 0, ...],
protein: [2, 1, 3, 1, -1, 0, 0, ...]
},
...
],
tissues: [
{
label: "adrenal gland",
organs: ["endocrine gland"],
anatomical_systems: ["endocrine system"],
},
{
label: "vermiform appendix",
organs: ["colon", "intestine"],
anatomical_systems: ["digestive system"],
},
...
]
}
```
The `expression` endpoint currently supports only GET requests I think, but if we could extend it to support POST requests, the above example response might be received from a POST request with the following payload:
```
{
"genes": ["ENSG00000197430", "ENSG00000197431"],
"flat": true
}
```
## Questions
* Should we show RNA and protein data?
* Should we show raw RNA data or bucketed strength/specificity (ideally be consistent with single target expression widget)
* What interactivity do we want?
* Any specific colouring scheme to use?
* There are 84 tissues, which will *just* fit horizontally if the labels are small, but it is not very scalable. Is this a problem?
---
@emepyc commented on [Mon Sep 25 2017](https://github.com/opentargets/webapp/issues/198#issuecomment-331907259)
> Should we show RNA and protein data?
RNA
> Should we show raw RNA data or bucketed strength/specificity (ideally be consistent with single target expression widget)
I was thinking the same when we were discussing the single target expression widget. I agree it should be consistent, but it is a bit tricky: what would be the legend of the color scale for the cells? (some kind of normalised TPM?)
> There are 84 tissues, which will just fit horizontally if the labels are small, but it is not very scalable. Is this a problem?
My understanding is that the number of tissues will not change significantly considerably, but the number of cell lines in the data can grow (considerably?) due to the blueprint data. Any idea @ckongEbi ?
---
@peatroot commented on [Wed Oct 04 2017](https://github.com/opentargets/webapp/issues/198#issuecomment-334106485)
Targets' expression profiles should now contain `level`, `value`, `zscore` for RNA and `level` for protein. Each gene in the above suggested output should include (in some similar format):
```
ENSG00000197430: {
rna_level: [10, 1, 3, 1, -1, 0, 0, ...],
rna_value: [17, 0.5, 198322, ...],
rna_zscore: [-1, 2, 5, 0, 0, ...],
protein_level: [2, 1, 3, 1, -1, 0, 0, ...]
}
```
---
@mkarmona commented on [Wed Oct 04 2017](https://github.com/opentargets/webapp/issues/198#issuecomment-334160916)
here a first implementation https://github.com/opentargets/rest_api/pull/117
| priority | add expression data to batch search page peatroot commented on the rna and protein expression data should be displayed on the target batch search page earlier design here s a screenshot of the first design which i don t think was ever used in production grouping of tissues we have tissue hierarchies organised by organ and anatomical system elsewhere which we could also use in this view ordering of genes tissues it may be helpful to cluster the genes and tissues the clustering would give one scheme to order rows and columns though other schemes such as value row column sums or alphabetical might also be useful there are some nice transitions on we may want to consider displaying dendrograms trees to the left and top something like the final example size consideration currently the batch search supports up to targets with the tissues available keeping the data sufficiently compressed whilst it is passed over the wire is important the existing format for calls to the expression endpoint for a single target would otherwise be acceptable a possible way to reduce the size of the response is to use a structure roughly as follows where the rna protein ordering matches that within the tissues array genes rna protein rna protein tissues label adrenal gland organs anatomical systems label vermiform appendix organs anatomical systems the expression endpoint currently supports only get requests i think but if we could extend it to support post requests the above example response might be received from a post request with the following payload genes flat true questions should we show rna and protein data should we show raw rna data or bucketed strength specificity ideally be consistent with single target expression widget what interactivity do we want any specific colouring scheme to use there are tissues which will just fit horizontally if the labels are small but it is not very scalable is this a problem emepyc commented on should we show rna and protein data rna should we show raw rna data or bucketed strength specificity ideally be consistent with single target expression widget i was thinking the same when we were discussing the single target expression widget i agree it should be consistent but it is a bit tricky what would be the legend of the color scale for the cells some kind of normalised tpm there are tissues which will just fit horizontally if the labels are small but it is not very scalable is this a problem my understanding is that the number of tissues will not change significantly considerably but the number of cell lines in the data can grow considerably due to the blueprint data any idea ckongebi peatroot commented on targets expression profiles should now contain level value zscore for rna and level for protein each gene in the above suggested output should include in some similar format rna level rna value rna zscore protein level mkarmona commented on here a first implementation | 1 |
787,095 | 27,706,023,843 | IssuesEvent | 2023-03-14 11:15:03 | woocommerce/woocommerce-blocks | https://api.github.com/repos/woocommerce/woocommerce-blocks | closed | Local pickup icon is not aligned correctly in Antonia theme | type: bug ◼️ block: checkout priority: low 🔹 block-type: local pickup | On a [WordPress.com](http://wordpress.com/) site with antonia theme: https://wordpress.com/theme/antonia/
we have a minor CSS issue in the Editor for local pickup.
<img width="1208" alt="image" src="https://user-images.githubusercontent.com/11503784/213161186-c9076e52-8542-4105-ac68-b7438f60dd07.png">
## To reproduce
Steps to reproduce the behavior:
1. Enable local pickup.
2. Activate the `antonia` theme.
3. Go to the Checkout block page editor
4. Notice the local pickup icon is not aligned correctly
## Expected behavior
The local pickup icon should be aligned correctly for all the themes.
https://user-images.githubusercontent.com/11503784/213162009-0ce42f81-3e67-4c0f-80aa-f8d79234e282.mov
| 1.0 | Local pickup icon is not aligned correctly in Antonia theme - On a [WordPress.com](http://wordpress.com/) site with antonia theme: https://wordpress.com/theme/antonia/
we have a minor CSS issue in the Editor for local pickup.
<img width="1208" alt="image" src="https://user-images.githubusercontent.com/11503784/213161186-c9076e52-8542-4105-ac68-b7438f60dd07.png">
## To reproduce
Steps to reproduce the behavior:
1. Enable local pickup.
2. Activate the `antonia` theme.
3. Go to the Checkout block page editor
4. Notice the local pickup icon is not aligned correctly
## Expected behavior
The local pickup icon should be aligned correctly for all the themes.
https://user-images.githubusercontent.com/11503784/213162009-0ce42f81-3e67-4c0f-80aa-f8d79234e282.mov
| priority | local pickup icon is not aligned correctly in antonia theme on a site with antonia theme we have a minor css issue in the editor for local pickup img width alt image src to reproduce steps to reproduce the behavior enable local pickup activate the antonia theme go to the checkout block page editor notice the local pickup icon is not aligned correctly expected behavior the local pickup icon should be aligned correctly for all the themes | 1 |
611,066 | 18,944,191,315 | IssuesEvent | 2021-11-18 08:20:54 | kubesphere/console | https://api.github.com/repos/kubesphere/console | closed | Remove statistics on the number of pods in the fedProject overview | kind/bug kind/need-to-verify priority/low | **Describe the bug**
A clear and concise description of what the bug is.
It is not easy to display the pods' resources of the FedProject separately, so it is recommended to remove the statistics of the pods
For UI issues please also add a screenshot that shows the issue.

**Versions used(KubeSphere/Kubernetes)**
KubeSphere: 3.1.1
/assign @kubesphere/sig-console
/priority low
| 1.0 | Remove statistics on the number of pods in the fedProject overview - **Describe the bug**
A clear and concise description of what the bug is.
It is not easy to display the pods' resources of the FedProject separately, so it is recommended to remove the statistics of the pods
For UI issues please also add a screenshot that shows the issue.

**Versions used(KubeSphere/Kubernetes)**
KubeSphere: 3.1.1
/assign @kubesphere/sig-console
/priority low
| priority | remove statistics on the number of pods in the fedproject overview describe the bug a clear and concise description of what the bug is it is not easy to display the pods resources of the fedproject separately so it is recommended to remove the statistics of the pods for ui issues please also add a screenshot that shows the issue versions used kubesphere kubernetes kubesphere assign kubesphere sig console priority low | 1 |
131,568 | 5,156,713,257 | IssuesEvent | 2017-01-16 01:28:19 | cs136/seashell | https://api.github.com/repos/cs136/seashell | closed | Make the editor and console resizable | enhancement low-priority | Submitter: Tim Brecht
Feature request.
Ideally I would like to be able to grab the line between the left panel and right (console) and adjust the width of
both by moving the dividing line.
If that isn't possible, could you please make the console panel narrower (e.g., 35% of the screen width).
Ideally configurable by the user. When trying to do demos in class the code on the left needs to use a large
font and when that happens most of the code line wraps, making it really ugly and hard to read.
| 1.0 | Make the editor and console resizable - Submitter: Tim Brecht
Feature request.
Ideally I would like to be able to grab the line between the left panel and right (console) and adjust the width of
both by moving the dividing line.
If that isn't possible, could you please make the console panel narrower (e.g., 35% of the screen width).
Ideally configurable by the user. When trying to do demos in class the code on the left needs to use a large
font and when that happens most of the code line wraps, making it really ugly and hard to read.
| priority | make the editor and console resizable submitter tim brecht feature request ideally i would like to be able to grab the line between the left panel and right console and adjust the width of both by moving the dividing line if that isn t possible could you please make the console panel narrower e g of the screen width ideally configurable by the user when trying to do demos in class the code on the left needs to use a large font and when that happens most of the code line wraps making it really ugly and hard to read | 1 |
385,097 | 11,412,509,197 | IssuesEvent | 2020-02-01 13:41:33 | opentargets/platform | https://api.github.com/repos/opentargets/platform | closed | Improve ontology mapping | Priority: Low Topic: SPOT | The ontology mapping done by OnToma looks a bit clunky for PheWAS. In some cases the mapped term is either too generic or more specific than the actual term (e.g. Primary/intrinsic cardiomyopathies -> dilated cardiomyopathy - [EFO_0000407](http://www.ebi.ac.uk/efo/EFO_0000407)). In some other cases, the mapped term is not even a disease (Disorders of penis -> penis - [UBERON_0000989](http://purl.obolibrary.org/obo/UBERON_0000989))
@MichaelaEBI and I have been curating the mappings for PheWAS but this issue may affect other data sources. According to @afaulconbridge, what OnToma does is call other services like ZOOMA and OLS so there seems to be little we can do. He suggests we feed the ontologies group back with the curated PheWAS mappings to see if they can improve them. Perhaps one request may me to be able to map terms to certain ontologies or entities, so that we would be sure that we get diseases and not an organ or a measurement (e.g. [Alzheimer's disease biomarker measurement](http://www.ebi.ac.uk/efo/EFO_0006514)). | 1.0 | Improve ontology mapping - The ontology mapping done by OnToma looks a bit clunky for PheWAS. In some cases the mapped term is either too generic or more specific than the actual term (e.g. Primary/intrinsic cardiomyopathies -> dilated cardiomyopathy - [EFO_0000407](http://www.ebi.ac.uk/efo/EFO_0000407)). In some other cases, the mapped term is not even a disease (Disorders of penis -> penis - [UBERON_0000989](http://purl.obolibrary.org/obo/UBERON_0000989))
@MichaelaEBI and I have been curating the mappings for PheWAS but this issue may affect other data sources. According to @afaulconbridge, what OnToma does is call other services like ZOOMA and OLS so there seems to be little we can do. He suggests we feed the ontologies group back with the curated PheWAS mappings to see if they can improve them. Perhaps one request may me to be able to map terms to certain ontologies or entities, so that we would be sure that we get diseases and not an organ or a measurement (e.g. [Alzheimer's disease biomarker measurement](http://www.ebi.ac.uk/efo/EFO_0006514)). | priority | improve ontology mapping the ontology mapping done by ontoma looks a bit clunky for phewas in some cases the mapped term is either too generic or more specific than the actual term e g primary intrinsic cardiomyopathies dilated cardiomyopathy in some other cases the mapped term is not even a disease disorders of penis penis michaelaebi and i have been curating the mappings for phewas but this issue may affect other data sources according to afaulconbridge what ontoma does is call other services like zooma and ols so there seems to be little we can do he suggests we feed the ontologies group back with the curated phewas mappings to see if they can improve them perhaps one request may me to be able to map terms to certain ontologies or entities so that we would be sure that we get diseases and not an organ or a measurement e g | 1 |
233,750 | 7,704,262,718 | IssuesEvent | 2018-05-21 11:34:07 | InfiniteFlightAirportEditing/Airports | https://api.github.com/repos/InfiniteFlightAirportEditing/Airports | closed | PGSN-Francisco C Ada/Saipan International Airport-NORTHERN MARIANA ISLANDS-USA | Being Redone Low Priority | # Airport Name
PGSN Saipan Intl' Airport
# Country?
USA
# Improvements that need to be made?
Full redone from scratch
# Are you working on this airport?
Of course, started
# Airport Priority? (A380, 10000ft+ Runway)
IDK, RW is 8700ft long
| 1.0 | PGSN-Francisco C Ada/Saipan International Airport-NORTHERN MARIANA ISLANDS-USA - # Airport Name
PGSN Saipan Intl' Airport
# Country?
USA
# Improvements that need to be made?
Full redone from scratch
# Are you working on this airport?
Of course, started
# Airport Priority? (A380, 10000ft+ Runway)
IDK, RW is 8700ft long
| priority | pgsn francisco c ada saipan international airport northern mariana islands usa airport name pgsn saipan intl airport country usa improvements that need to be made full redone from scratch are you working on this airport of course started airport priority runway idk rw is long | 1 |
510,146 | 14,785,562,420 | IssuesEvent | 2021-01-12 03:05:53 | kami-blue/client | https://api.github.com/repos/kami-blue/client | closed | Add an alt manager | -gui -low-priority enhancement new | - [x] zeroeightysix/KAMI#4 (#673)
- [x] zeroeightysix/KAMI#106 [video](https://www.youtube.com/watch?v=72gJgxpJrgE) (see #584)
- [x] zeroeightysix/KAMI#103
- [x] zeroeightysix/KAMI#94
- [x] zeroeightysix/KAMI#95
- [ ] zeroeightysix/KAMI#96
- [x] zeroeightysix/KAMI#97
- [x] zeroeightysix/KAMI#92 (by pr #113)
- [x] zeroeightysix/KAMI#87 (#354)
- [x] zeroeightysix/KAMI#81 (#790)
- [x] zeroeightysix/KAMI#80 (#289 / #447)
- [x] zeroeightysix/KAMI#75 (#707)
- [x] zeroeightysix/KAMI#72 (#25)
- [x] zeroeightysix/KAMI#129 (#671)
- [x] zeroeightysix/KAMI#69 (#503)
- [x] zeroeightysix/KAMI#56
- [x] zeroeightysix/KAMI#128
- [x] zeroeightysix/KAMI#120 (won't fix)
- [x] zeroeightysix/KAMI#45 (#173)
- [x] zeroeightysix/KAMI#20
<!---
@huboard:{"order":12.0,"milestone_order":12,"custom_state":""}
-->
| 1.0 | Add an alt manager - - [x] zeroeightysix/KAMI#4 (#673)
- [x] zeroeightysix/KAMI#106 [video](https://www.youtube.com/watch?v=72gJgxpJrgE) (see #584)
- [x] zeroeightysix/KAMI#103
- [x] zeroeightysix/KAMI#94
- [x] zeroeightysix/KAMI#95
- [ ] zeroeightysix/KAMI#96
- [x] zeroeightysix/KAMI#97
- [x] zeroeightysix/KAMI#92 (by pr #113)
- [x] zeroeightysix/KAMI#87 (#354)
- [x] zeroeightysix/KAMI#81 (#790)
- [x] zeroeightysix/KAMI#80 (#289 / #447)
- [x] zeroeightysix/KAMI#75 (#707)
- [x] zeroeightysix/KAMI#72 (#25)
- [x] zeroeightysix/KAMI#129 (#671)
- [x] zeroeightysix/KAMI#69 (#503)
- [x] zeroeightysix/KAMI#56
- [x] zeroeightysix/KAMI#128
- [x] zeroeightysix/KAMI#120 (won't fix)
- [x] zeroeightysix/KAMI#45 (#173)
- [x] zeroeightysix/KAMI#20
<!---
@huboard:{"order":12.0,"milestone_order":12,"custom_state":""}
-->
| priority | add an alt manager zeroeightysix kami zeroeightysix kami see zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami by pr zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami zeroeightysix kami won t fix zeroeightysix kami zeroeightysix kami huboard order milestone order custom state | 1 |
449,536 | 12,970,370,324 | IssuesEvent | 2020-07-21 09:14:15 | mauriciovigolo/keycloak-angular | https://api.github.com/repos/mauriciovigolo/keycloak-angular | closed | Bearer prefix value "bearer" instead of "Bearer" | Good first issue Priority: Low Status: Accepted Type: Bug | <!--
Please fill out the following information. Thanks!
-->
### Bug Report or Feature Request (mark with an `x`)
```
- [X ] bug report -> please search for issues before submitting
- [ ] feature request
```
### Versions.
<!--
keycloak-angular, angular and keycloak versions.
-->
- keycloak-angular: 7.1.0
- angular:
- Angular CLI: 9.0.2
- Node: 12.14.0
- OS: win32 x64
- Angular: 9.0.1
- keycloak: 8.0.2
### Repro steps.
<!--
Simple steps to reproduce this bug.
Please include: commands run, packages added, related code changes.
A link to a sample repo would help too.
-->
Using out-of-the-box interceptor (no customization), when making a callout to an API, the value in the authorization header for the bearer prefix is "bearer" .
### The log given by the failure.
<!-- Normally this include a stack trace and some more information. -->
### Desired functionality.
<!--
What would like to see implemented?
What is the usecase?
-->
Maybe I'm wrong (new to this stuff) but I interpret the standard points it should the prefix should be "Bearer". Source: [The OAuth 2.0 Authorization Framework: Bearer Token Usage](https://tools.ietf.org/html/rfc6750) (section 2.1)
On a quickly read and test of the code, I think correction can be applied on line 116 of "keycloak-angular\__ivy_ngcc__\fesm2015\keycloak-angular.js".
| 1.0 | Bearer prefix value "bearer" instead of "Bearer" - <!--
Please fill out the following information. Thanks!
-->
### Bug Report or Feature Request (mark with an `x`)
```
- [X ] bug report -> please search for issues before submitting
- [ ] feature request
```
### Versions.
<!--
keycloak-angular, angular and keycloak versions.
-->
- keycloak-angular: 7.1.0
- angular:
- Angular CLI: 9.0.2
- Node: 12.14.0
- OS: win32 x64
- Angular: 9.0.1
- keycloak: 8.0.2
### Repro steps.
<!--
Simple steps to reproduce this bug.
Please include: commands run, packages added, related code changes.
A link to a sample repo would help too.
-->
Using out-of-the-box interceptor (no customization), when making a callout to an API, the value in the authorization header for the bearer prefix is "bearer" .
### The log given by the failure.
<!-- Normally this include a stack trace and some more information. -->
### Desired functionality.
<!--
What would like to see implemented?
What is the usecase?
-->
Maybe I'm wrong (new to this stuff) but I interpret the standard points it should the prefix should be "Bearer". Source: [The OAuth 2.0 Authorization Framework: Bearer Token Usage](https://tools.ietf.org/html/rfc6750) (section 2.1)
On a quickly read and test of the code, I think correction can be applied on line 116 of "keycloak-angular\__ivy_ngcc__\fesm2015\keycloak-angular.js".
| priority | bearer prefix value bearer instead of bearer please fill out the following information thanks bug report or feature request mark with an x bug report please search for issues before submitting feature request versions keycloak angular angular and keycloak versions keycloak angular angular angular cli node os angular keycloak repro steps simple steps to reproduce this bug please include commands run packages added related code changes a link to a sample repo would help too using out of the box interceptor no customization when making a callout to an api the value in the authorization header for the bearer prefix is bearer the log given by the failure desired functionality what would like to see implemented what is the usecase maybe i m wrong new to this stuff but i interpret the standard points it should the prefix should be bearer source section on a quickly read and test of the code i think correction can be applied on line of keycloak angular ivy ngcc keycloak angular js | 1 |
634,611 | 20,366,270,051 | IssuesEvent | 2022-02-21 06:11:42 | jhuopensource/semesterly | https://api.github.com/repos/jhuopensource/semesterly | closed | Refactor Course Parser, Ingestor/Digestor, Validator | low-priority python | ### Refactoring
* [ ] parsing
* [ ] scripts
* [ ] Remove textbook support (Textbook, TextbookLink)
### Documentation
* Add what needs to be documented
* Also include what could be useful for documentation for when new members are onboarding | 1.0 | Refactor Course Parser, Ingestor/Digestor, Validator - ### Refactoring
* [ ] parsing
* [ ] scripts
* [ ] Remove textbook support (Textbook, TextbookLink)
### Documentation
* Add what needs to be documented
* Also include what could be useful for documentation for when new members are onboarding | priority | refactor course parser ingestor digestor validator refactoring parsing scripts remove textbook support textbook textbooklink documentation add what needs to be documented also include what could be useful for documentation for when new members are onboarding | 1 |
824,202 | 31,144,194,902 | IssuesEvent | 2023-08-16 04:27:20 | chimple/cuba | https://api.github.com/repos/chimple/cuba | closed | we can paste text's in mobile number field | bug Low Priority | - [ ] If we copy and paste the text to Phone number field it's taking
- [ ] If alphabets are 10, send OTP button will be enabled
 | 1.0 | we can paste text's in mobile number field - - [ ] If we copy and paste the text to Phone number field it's taking
- [ ] If alphabets are 10, send OTP button will be enabled
 | priority | we can paste text s in mobile number field if we copy and paste the text to phone number field it s taking if alphabets are send otp button will be enabled | 1 |
61,041 | 3,137,469,696 | IssuesEvent | 2015-09-11 02:52:54 | thalida/ShapeConnector | https://api.github.com/repos/thalida/ShapeConnector | closed | Add how many times you had to restart | platform: all priority: low request: enhancement | Once you fully complete a level, include how many times you tried. | 1.0 | Add how many times you had to restart - Once you fully complete a level, include how many times you tried. | priority | add how many times you had to restart once you fully complete a level include how many times you tried | 1 |
154,450 | 5,919,137,206 | IssuesEvent | 2017-05-22 16:56:38 | mkdo/kapow-sass | https://api.github.com/repos/mkdo/kapow-sass | opened | Create and enqueue a login.scss | Priority: Low Status: Pending Type: Enhancement | We should have a `login.scss` for when we do need to style the login screen. | 1.0 | Create and enqueue a login.scss - We should have a `login.scss` for when we do need to style the login screen. | priority | create and enqueue a login scss we should have a login scss for when we do need to style the login screen | 1 |
300,159 | 9,206,203,896 | IssuesEvent | 2019-03-08 13:03:20 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | QGIS fails to recognise Shapefile projection | Category: Projection Support Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report | ---
Author Name: **marisn -** (marisn -)
Original Redmine Issue: 1487, https://issues.qgis.org/issues/1487
Original Assignee: nobody -
---
When loading shapefile with defined projection into QGIS 1.0.0 pr2, it shows up as layer without coordinate information (assigned default one). ogrinfo reports projection info just fine. Shapefile is created with Phyton + OGR and as SRS is used EPSG:3059
```
ogrinfo -ro -so bbox_3059.shp bbox_3059
INFO: Open of @bbox_3059.shp'
using driver @ESRI Shapefile' successful.
Layer name: bbox_3059
Geometry: Polygon
Feature Count: 240
Extent: (28.110982, 56.323566) - (1050169.240520, 524386.627352)
Layer SRS WKT:
PROJCS["LKS92 / Latvia TM",
GEOGCS["LKS92",
DATUM["Latvia_1992",
SPHEROID[[GRS_1980]],
PRIMEM[[Greenwich]],
UNIT[[Degree]],
PROJECTION[[Transverse_Mercator]],
PARAMETER[[latitude_of_origin]],
PARAMETER[[central_meridian]],
PARAMETER[[scale_factor]],
PARAMETER[[false_easting]],
PARAMETER[[false_northing]],
UNIT[[Meter]]
FID: Real (11.0)
```
---
- [bbox_3059.tgz](https://issues.qgis.org/attachments/download/2205/bbox_3059.tgz) (marisn -) | 1.0 | QGIS fails to recognise Shapefile projection - ---
Author Name: **marisn -** (marisn -)
Original Redmine Issue: 1487, https://issues.qgis.org/issues/1487
Original Assignee: nobody -
---
When loading shapefile with defined projection into QGIS 1.0.0 pr2, it shows up as layer without coordinate information (assigned default one). ogrinfo reports projection info just fine. Shapefile is created with Phyton + OGR and as SRS is used EPSG:3059
```
ogrinfo -ro -so bbox_3059.shp bbox_3059
INFO: Open of @bbox_3059.shp'
using driver @ESRI Shapefile' successful.
Layer name: bbox_3059
Geometry: Polygon
Feature Count: 240
Extent: (28.110982, 56.323566) - (1050169.240520, 524386.627352)
Layer SRS WKT:
PROJCS["LKS92 / Latvia TM",
GEOGCS["LKS92",
DATUM["Latvia_1992",
SPHEROID[[GRS_1980]],
PRIMEM[[Greenwich]],
UNIT[[Degree]],
PROJECTION[[Transverse_Mercator]],
PARAMETER[[latitude_of_origin]],
PARAMETER[[central_meridian]],
PARAMETER[[scale_factor]],
PARAMETER[[false_easting]],
PARAMETER[[false_northing]],
UNIT[[Meter]]
FID: Real (11.0)
```
---
- [bbox_3059.tgz](https://issues.qgis.org/attachments/download/2205/bbox_3059.tgz) (marisn -) | priority | qgis fails to recognise shapefile projection author name marisn marisn original redmine issue original assignee nobody when loading shapefile with defined projection into qgis it shows up as layer without coordinate information assigned default one ogrinfo reports projection info just fine shapefile is created with phyton ogr and as srs is used epsg ogrinfo ro so bbox shp bbox info open of bbox shp using driver esri shapefile successful layer name bbox geometry polygon feature count extent layer srs wkt projcs latvia tm geogcs datum latvia spheroid primem unit projection parameter parameter parameter parameter parameter unit fid real marisn | 1 |
532,785 | 15,571,417,681 | IssuesEvent | 2021-03-17 04:54:26 | rainlab/pages-plugin | https://api.github.com/repos/rainlab/pages-plugin | closed | Please add native page duplication action | Priority: Low Status: Review Needed Type: Conceptual Enhancement | Hi,
it would be very helpful for the clients, if you could duplicate a static page in the backend, e.g. providing a base page, which should be duplicated by the client. Also this would be nice the the normal cms pages. | 1.0 | Please add native page duplication action - Hi,
it would be very helpful for the clients, if you could duplicate a static page in the backend, e.g. providing a base page, which should be duplicated by the client. Also this would be nice the the normal cms pages. | priority | please add native page duplication action hi it would be very helpful for the clients if you could duplicate a static page in the backend e g providing a base page which should be duplicated by the client also this would be nice the the normal cms pages | 1 |
625,035 | 19,716,755,160 | IssuesEvent | 2022-01-13 11:46:25 | epicmaxco/vuestic-ui | https://api.github.com/repos/epicmaxco/vuestic-ui | closed | Bot to set EXTERNAL label on external user issues. | LOW PRIORITY groomed | Right now EXTERNAL label should be set/removed manually. I suggest to use bot for that as all info is known.
- [ ] If issue is new and created by external contributor - should add label EXTERNAL to issue.
Could be done immediately on issue create if possible.
Seems to cover all cases and not too hard to implement.
We probably want to use some bot engine to not reinvent the wheel.
But either way it doesn't provide too much value for now. | 1.0 | Bot to set EXTERNAL label on external user issues. - Right now EXTERNAL label should be set/removed manually. I suggest to use bot for that as all info is known.
- [ ] If issue is new and created by external contributor - should add label EXTERNAL to issue.
Could be done immediately on issue create if possible.
Seems to cover all cases and not too hard to implement.
We probably want to use some bot engine to not reinvent the wheel.
But either way it doesn't provide too much value for now. | priority | bot to set external label on external user issues right now external label should be set removed manually i suggest to use bot for that as all info is known if issue is new and created by external contributor should add label external to issue could be done immediately on issue create if possible seems to cover all cases and not too hard to implement we probably want to use some bot engine to not reinvent the wheel but either way it doesn t provide too much value for now | 1 |
396,689 | 11,712,334,352 | IssuesEvent | 2020-03-09 08:05:30 | OpenSRP/opensrp-client-anc | https://api.github.com/repos/OpenSRP/opensrp-client-anc | opened | Empty state for Tasks tab | enhancement low priority | We should add an empty state message specifically tailored to no due Tasks in the tasks tab:

The reason being, the empty state shown right now is for a newly-registered woman who has no contacts recorded. In the screenshot above, the woman has a contact recorded, but no tasks are due, because they were all completed, so it's a good state to be in. The current message is a little misleading. | 1.0 | Empty state for Tasks tab - We should add an empty state message specifically tailored to no due Tasks in the tasks tab:

The reason being, the empty state shown right now is for a newly-registered woman who has no contacts recorded. In the screenshot above, the woman has a contact recorded, but no tasks are due, because they were all completed, so it's a good state to be in. The current message is a little misleading. | priority | empty state for tasks tab we should add an empty state message specifically tailored to no due tasks in the tasks tab the reason being the empty state shown right now is for a newly registered woman who has no contacts recorded in the screenshot above the woman has a contact recorded but no tasks are due because they were all completed so it s a good state to be in the current message is a little misleading | 1 |
703,930 | 24,178,409,548 | IssuesEvent | 2022-09-23 06:13:13 | bossbuwi/existence | https://api.github.com/repos/bossbuwi/existence | closed | Update frontend dependencies | enhancement endpoint low priority | Some frontend dependencies are outdated. Update them and check for code or function breaking changes. | 1.0 | Update frontend dependencies - Some frontend dependencies are outdated. Update them and check for code or function breaking changes. | priority | update frontend dependencies some frontend dependencies are outdated update them and check for code or function breaking changes | 1 |
826,046 | 31,549,609,879 | IssuesEvent | 2023-09-02 00:17:22 | Geo-Kings/asc-geostac-forked | https://api.github.com/repos/Geo-Kings/asc-geostac-forked | closed | Footprint Fetcher Bug | type: bug type: fix priority: Low work: complicated | FootprintFetcher.js throws error if a request is made for more features than are currently still available | 1.0 | Footprint Fetcher Bug - FootprintFetcher.js throws error if a request is made for more features than are currently still available | priority | footprint fetcher bug footprintfetcher js throws error if a request is made for more features than are currently still available | 1 |
398,213 | 11,739,306,977 | IssuesEvent | 2020-03-11 17:29:02 | thaliawww/ThaliApp | https://api.github.com/repos/thaliawww/ThaliApp | closed | Make app bilingual | feature priority: low | In GitLab by @gijshendriksen on Jun 13, 2017, 13:42
Net als op de site zou het mooi zijn als de app, afhankelijk van de voorkeur van de gebruiker, Nederlands of Engels wordt.
Dit kan op meerdere manieren:
* We halen de voorkeur van de site af, en gebruiken die om de taal te bepalen.
* We voegen een feature toe in de app om te switchen tussen beide talen.
* We doen een mix van beide, waarin we initieel de voorkeur van de site gebruiken maar de gebruiker wel laten switchen. Hierbij moeten we dan wel bedenken of we dit weer door willen voeren op de site. | 1.0 | Make app bilingual - In GitLab by @gijshendriksen on Jun 13, 2017, 13:42
Net als op de site zou het mooi zijn als de app, afhankelijk van de voorkeur van de gebruiker, Nederlands of Engels wordt.
Dit kan op meerdere manieren:
* We halen de voorkeur van de site af, en gebruiken die om de taal te bepalen.
* We voegen een feature toe in de app om te switchen tussen beide talen.
* We doen een mix van beide, waarin we initieel de voorkeur van de site gebruiken maar de gebruiker wel laten switchen. Hierbij moeten we dan wel bedenken of we dit weer door willen voeren op de site. | priority | make app bilingual in gitlab by gijshendriksen on jun net als op de site zou het mooi zijn als de app afhankelijk van de voorkeur van de gebruiker nederlands of engels wordt dit kan op meerdere manieren we halen de voorkeur van de site af en gebruiken die om de taal te bepalen we voegen een feature toe in de app om te switchen tussen beide talen we doen een mix van beide waarin we initieel de voorkeur van de site gebruiken maar de gebruiker wel laten switchen hierbij moeten we dan wel bedenken of we dit weer door willen voeren op de site | 1 |
329,007 | 10,011,011,217 | IssuesEvent | 2019-07-15 09:29:54 | leancloud/android-sdk-all | https://api.github.com/repos/leancloud/android-sdk-all | closed | conversation.getAttribut() 提示过时,没有提供替代方法 | low-priority | 社区链接: https://forum.leancloud.cn/t/android-getattribute/17089
conversation.getAttribut() 提示过时,却没有提供替代的方法。这里应该给出一个可替代的新方法。 | 1.0 | conversation.getAttribut() 提示过时,没有提供替代方法 - 社区链接: https://forum.leancloud.cn/t/android-getattribute/17089
conversation.getAttribut() 提示过时,却没有提供替代的方法。这里应该给出一个可替代的新方法。 | priority | conversation getattribut 提示过时,没有提供替代方法 社区链接: conversation getattribut 提示过时,却没有提供替代的方法。这里应该给出一个可替代的新方法。 | 1 |
669,062 | 22,609,543,374 | IssuesEvent | 2022-06-29 15:54:33 | grage03/prello | https://api.github.com/repos/grage03/prello | opened | Page not found | bug frontend low priority | 
After entering any non-existent address, the user will be transferred to a page without content, instead of a page prepared for this
| 1.0 | Page not found - 
After entering any non-existent address, the user will be transferred to a page without content, instead of a page prepared for this
| priority | page not found after entering any non existent address the user will be transferred to a page without content instead of a page prepared for this | 1 |
754,832 | 26,405,254,755 | IssuesEvent | 2023-01-13 07:16:30 | YangCatalog/module-compilation | https://api.github.com/repos/YangCatalog/module-compilation | closed | Reorganize bin directory | Priority: Low Maintenance | There's no reason the directory with all the code should be named bin, we don't have any binaries in the repo.
The scripts in this directory could also be logically separated into directories. For example, for each of the `run_*.sh` scripts, the files it depends on could go to a separate directory. This would make finding relevant files much easier. | 1.0 | Reorganize bin directory - There's no reason the directory with all the code should be named bin, we don't have any binaries in the repo.
The scripts in this directory could also be logically separated into directories. For example, for each of the `run_*.sh` scripts, the files it depends on could go to a separate directory. This would make finding relevant files much easier. | priority | reorganize bin directory there s no reason the directory with all the code should be named bin we don t have any binaries in the repo the scripts in this directory could also be logically separated into directories for example for each of the run sh scripts the files it depends on could go to a separate directory this would make finding relevant files much easier | 1 |
100,150 | 4,076,735,806 | IssuesEvent | 2016-05-30 02:26:00 | joeyGumer/Pixel_Mirror--Diablo_II | https://api.github.com/repos/joeyGumer/Pixel_Mirror--Diablo_II | opened | Heard of Bats consumes additional MP when hitting enemies | CLASS: Minor LOW PRIORITY TYPE: Gameplay | **Frequency:** 100%
**Description of the bug:** Heard of Bats consumes additional MP when hitting enemies
**Steps to reproduce:**
1- Cast Heard of Bats (consumes X MP)
2- Heard of Bats hits once and enemy (consumes X MP again)
| 1.0 | Heard of Bats consumes additional MP when hitting enemies - **Frequency:** 100%
**Description of the bug:** Heard of Bats consumes additional MP when hitting enemies
**Steps to reproduce:**
1- Cast Heard of Bats (consumes X MP)
2- Heard of Bats hits once and enemy (consumes X MP again)
| priority | heard of bats consumes additional mp when hitting enemies frequency description of the bug heard of bats consumes additional mp when hitting enemies steps to reproduce cast heard of bats consumes x mp heard of bats hits once and enemy consumes x mp again | 1 |
314,428 | 9,596,892,199 | IssuesEvent | 2019-05-09 19:50:00 | jonnhy12333/hmct-web | https://api.github.com/repos/jonnhy12333/hmct-web | opened | Images Should Be Larger? | Low Priority enhancement question | Am I the only one who thinks the images need to be a bit bigger in the chat? | 1.0 | Images Should Be Larger? - Am I the only one who thinks the images need to be a bit bigger in the chat? | priority | images should be larger am i the only one who thinks the images need to be a bit bigger in the chat | 1 |
262,138 | 8,251,373,056 | IssuesEvent | 2018-09-12 07:35:49 | aeternity/elixir-node | https://api.github.com/repos/aeternity/elixir-node | closed | Change the Supervisor -> GenServer design pattern | enhancement low-priority non-spec | As you can read [here](https://hexdocs.pm/elixir/Supervisor.Spec.html) the worker(GenServer..) type of design is now deprecated and it should be changed with [child-specs](https://hexdocs.pm/elixir/Supervisor.html#module-child-specification). This design pattern should be adopted for the whole code-base of the project. | 1.0 | Change the Supervisor -> GenServer design pattern - As you can read [here](https://hexdocs.pm/elixir/Supervisor.Spec.html) the worker(GenServer..) type of design is now deprecated and it should be changed with [child-specs](https://hexdocs.pm/elixir/Supervisor.html#module-child-specification). This design pattern should be adopted for the whole code-base of the project. | priority | change the supervisor genserver design pattern as you can read the worker genserver type of design is now deprecated and it should be changed with this design pattern should be adopted for the whole code base of the project | 1 |
819,074 | 30,718,945,321 | IssuesEvent | 2023-07-27 14:42:18 | BurnedLand/Reports | https://api.github.com/repos/BurnedLand/Reports | opened | server cata bug del hunter | Low Priority | "Player Name and Faction"= lamu,ally
"Describe the bug"=3 bug il primo il pet se messo in defensive nel momento che entri in combat dovrebbe attaccare e non lo fa, il secondo quando il pet usa la spell charge al posto di partire a razzo verso il mob invece si stunna e perde un po di vita,
la spell cover del pet dovrebbe attivarsi al 50% di vita del pet non prima di attaccare
"Wowhead link"=
https://www.wowhead.com/wotlk/spell=61685/charge
cover non esiste piu su wowhead
"Screenshots"=


| 1.0 | server cata bug del hunter - "Player Name and Faction"= lamu,ally
"Describe the bug"=3 bug il primo il pet se messo in defensive nel momento che entri in combat dovrebbe attaccare e non lo fa, il secondo quando il pet usa la spell charge al posto di partire a razzo verso il mob invece si stunna e perde un po di vita,
la spell cover del pet dovrebbe attivarsi al 50% di vita del pet non prima di attaccare
"Wowhead link"=
https://www.wowhead.com/wotlk/spell=61685/charge
cover non esiste piu su wowhead
"Screenshots"=


| priority | server cata bug del hunter player name and faction lamu ally describe the bug bug il primo il pet se messo in defensive nel momento che entri in combat dovrebbe attaccare e non lo fa il secondo quando il pet usa la spell charge al posto di partire a razzo verso il mob invece si stunna e perde un po di vita la spell cover del pet dovrebbe attivarsi al di vita del pet non prima di attaccare wowhead link cover non esiste piu su wowhead screenshots | 1 |
298,713 | 9,200,694,677 | IssuesEvent | 2019-03-07 17:40:48 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | svn 2006.09.14 crashes after using "Move vertex" on an empty canvas | Category: Map Canvas Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report | ---
Author Name: **Redmine Admin** (Redmine Admin)
Original Redmine Issue: 271, https://issues.qgis.org/issues/271
Original Assignee: Gavin Macaulay -
---
1. start Qgis
2. press "Move vertex"
3. left-click on the canvas
4. crash:
```
#0 0xb6b86f3d in [[QgsVectorLayer]]::vectorType (this=0x0)
at qgsvectorlayer.cpp:1300
#3905 0xb6afc115 in [[QgsMapToolVertexEdit]]::canvasPressEvent (this=0x8203380,
e=0xbfe86088) at qgsmaptoolvertexedit.cpp:154
#3906 0xb6ad80cb in [[QgsMapCanvas]]::contentsMousePressEvent (this=0x8144118,
e=0xbfe86088) at qgsmapcanvas.cpp:649
#3907 0xb7579792 in Q3ScrollView::viewportMousePressEvent ()
from /usr/lib/libQt3Support.so.4
#3908 0xb7579e28 in Q3ScrollView::eventFilter () from /usr/lib/libQt3Support.so.4
#3909 0xb6fed796 in QApplicationPrivate::notify_helper ()
from /usr/lib/libQtGui.so.4
#3910 0xb6feea5a in QApplication::notify () from /usr/lib/libQtGui.so.4
#3911 0xb703fe7d in QApplication::x11ProcessEvent () from /usr/lib/libQtGui.so.4
#3912 0xb703f568 in QApplication::x11ProcessEvent () from /usr/lib/libQtGui.so.4
#3913 0xb705084e in non-virtual thunk to QDesktopWidget::~QDesktopWidget() ()
from /usr/lib/libQtGui.so.4
#10 0xb77d568a in QEventLoop::processEvents () from /usr/lib/libQtCore.so.4
#3914 0xb77d589d in QEventLoop::exec () from /usr/lib/libQtCore.so.4
#3915 0xb77d7fe7 in QCoreApplication::exec () from /usr/lib/libQtCore.so.4
#3916 0xb6fed565 in QApplication::exec () from /usr/lib/libQtGui.so.4
#3917 0x0804c4b8 in main (argc=1, argv=0xbfe86cf4) at main.cpp:604
```
| 1.0 | svn 2006.09.14 crashes after using "Move vertex" on an empty canvas - ---
Author Name: **Redmine Admin** (Redmine Admin)
Original Redmine Issue: 271, https://issues.qgis.org/issues/271
Original Assignee: Gavin Macaulay -
---
1. start Qgis
2. press "Move vertex"
3. left-click on the canvas
4. crash:
```
#0 0xb6b86f3d in [[QgsVectorLayer]]::vectorType (this=0x0)
at qgsvectorlayer.cpp:1300
#3905 0xb6afc115 in [[QgsMapToolVertexEdit]]::canvasPressEvent (this=0x8203380,
e=0xbfe86088) at qgsmaptoolvertexedit.cpp:154
#3906 0xb6ad80cb in [[QgsMapCanvas]]::contentsMousePressEvent (this=0x8144118,
e=0xbfe86088) at qgsmapcanvas.cpp:649
#3907 0xb7579792 in Q3ScrollView::viewportMousePressEvent ()
from /usr/lib/libQt3Support.so.4
#3908 0xb7579e28 in Q3ScrollView::eventFilter () from /usr/lib/libQt3Support.so.4
#3909 0xb6fed796 in QApplicationPrivate::notify_helper ()
from /usr/lib/libQtGui.so.4
#3910 0xb6feea5a in QApplication::notify () from /usr/lib/libQtGui.so.4
#3911 0xb703fe7d in QApplication::x11ProcessEvent () from /usr/lib/libQtGui.so.4
#3912 0xb703f568 in QApplication::x11ProcessEvent () from /usr/lib/libQtGui.so.4
#3913 0xb705084e in non-virtual thunk to QDesktopWidget::~QDesktopWidget() ()
from /usr/lib/libQtGui.so.4
#10 0xb77d568a in QEventLoop::processEvents () from /usr/lib/libQtCore.so.4
#3914 0xb77d589d in QEventLoop::exec () from /usr/lib/libQtCore.so.4
#3915 0xb77d7fe7 in QCoreApplication::exec () from /usr/lib/libQtCore.so.4
#3916 0xb6fed565 in QApplication::exec () from /usr/lib/libQtGui.so.4
#3917 0x0804c4b8 in main (argc=1, argv=0xbfe86cf4) at main.cpp:604
```
| priority | svn crashes after using move vertex on an empty canvas author name redmine admin redmine admin original redmine issue original assignee gavin macaulay start qgis press move vertex left click on the canvas crash in vectortype this at qgsvectorlayer cpp in canvaspressevent this e at qgsmaptoolvertexedit cpp in contentsmousepressevent this e at qgsmapcanvas cpp in viewportmousepressevent from usr lib so in eventfilter from usr lib so in qapplicationprivate notify helper from usr lib libqtgui so in qapplication notify from usr lib libqtgui so in qapplication from usr lib libqtgui so in qapplication from usr lib libqtgui so in non virtual thunk to qdesktopwidget qdesktopwidget from usr lib libqtgui so in qeventloop processevents from usr lib libqtcore so in qeventloop exec from usr lib libqtcore so in qcoreapplication exec from usr lib libqtcore so in qapplication exec from usr lib libqtgui so in main argc argv at main cpp | 1 |
699,553 | 24,021,047,052 | IssuesEvent | 2022-09-15 07:41:20 | chaotic-aur/packages | https://api.github.com/repos/chaotic-aur/packages | closed | [Request] trilium | request:new-pkg priority:low | ### Link to the package(s) in the AUR
https://aur.archlinux.org/packages/trilium
### Utility this package has for you
A hierarchical note taking application with focus on building large personal knowledge bases.
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
YES!
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [ ] Yes
### Does the package's license allow redistributing it?
YES!
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
_No response_ | 1.0 | [Request] trilium - ### Link to the package(s) in the AUR
https://aur.archlinux.org/packages/trilium
### Utility this package has for you
A hierarchical note taking application with focus on building large personal knowledge bases.
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
YES!
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [ ] Yes
### Does the package's license allow redistributing it?
YES!
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
_No response_ | priority | trilium link to the package s in the aur utility this package has for you a hierarchical note taking application with focus on building large personal knowledge bases do you consider the package s to be useful for every chaotic aur user yes do you consider the package to be useful for feature testing preview yes have you tested if the package builds in a clean chroot yes does the package s license allow redistributing it yes have you searched the issues to ensure this request is unique yes have you read the readme to ensure this package is not banned yes more information no response | 1 |
813,946 | 30,480,362,137 | IssuesEvent | 2023-07-17 19:50:05 | KinsonDigital/VelaptorDocs | https://api.github.com/repos/KinsonDigital/VelaptorDocs | closed | 📋Set up vscode settings for file tabbing | low priority ⚙️config | ### Complete The Item Below
- [X] I have updated the title without removing the 📋 emoji.
### Description
Set up the vscode settings to set the tab settings for various files for the workspace.
This will involve adding the settings to the _**.vscode/settings.json**_ file. Add the settings as shown below.
```diff
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"build/": true
}
+ "[typescript]": {
+ "editor.insertSpaces": false,
+ "editor.tabSize": 4,
+ },
+ "[yaml]": {
+ "editor.insertSpaces": true,
+ "editor.tabSize": 2,
+ },
+ "[jsonc]": {
+ "editor.insertSpaces": false,
+ "editor.tabSize": 4,
+ },
+ "editor.detectIndentation": false,
+ "[github-actions-workflow]": {
+ "editor.tabSize": 2,
+ "editor.insertSpaces": true
+ }
```
### Acceptance Criteria
- [x] Tab settings added for typescript files
- [x] Tab settings added for yaml files
- [x] Tab settings added for jsonc files
- [x] Indentation detection turned off for the editor
- [x] Tab settings added for the **GitHub Actions** VSCode extension
### ToDo Items
- [X] Change type labels added to this issue. Refer to the _**Change Type Labels**_ section below.
- [X] Priority label added to this issue. Refer to the _**Priority Type Labels**_ section below.
- [X] Issue linked to the correct project _(if applicable)_.
- [x] Draft pull request created and linked to this issue _(only required with code changes)_.
### Additional Information:
**_<details closed><summary>Change Type Labels</summary>_**
| Change Type | Label |
|--------------|---------------------------------------------------------------------------------------------------|
| CICD | https://github.com/KinsonDigital/VelaptorDocs/labels/%E2%99%BB%EF%B8%8Fcicd |
| Dependency Update | https://github.com/KinsonDigital/VelaptorDocs/labels/dependency%20update |
| Miscellaneous | https://github.com/KinsonDigital/VelaptorDocs/labels/miscellaneous |
| Tutorial Doc Changes | https://github.com/KinsonDigital/VelaptorDocs/labels/%F0%9F%93%9Ctutorial%20doc%20changes |
</details>
**_<details closed><summary>Priority Type Labels</summary>_**
| Priority Type | Label |
|---------------------|------------------------------------------------------------------------|
| Low Priority | https://github.com/KinsonDigital/VelaptorDocs/labels/low%20priority |
| Medium Priority | https://github.com/KinsonDigital/VelaptorDocs/labels/medium%20priority |
| High Priority | https://github.com/KinsonDigital/VelaptorDocs/labels/high%20priority |
</details>
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct. | 1.0 | 📋Set up vscode settings for file tabbing - ### Complete The Item Below
- [X] I have updated the title without removing the 📋 emoji.
### Description
Set up the vscode settings to set the tab settings for various files for the workspace.
This will involve adding the settings to the _**.vscode/settings.json**_ file. Add the settings as shown below.
```diff
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"build/": true
}
+ "[typescript]": {
+ "editor.insertSpaces": false,
+ "editor.tabSize": 4,
+ },
+ "[yaml]": {
+ "editor.insertSpaces": true,
+ "editor.tabSize": 2,
+ },
+ "[jsonc]": {
+ "editor.insertSpaces": false,
+ "editor.tabSize": 4,
+ },
+ "editor.detectIndentation": false,
+ "[github-actions-workflow]": {
+ "editor.tabSize": 2,
+ "editor.insertSpaces": true
+ }
```
### Acceptance Criteria
- [x] Tab settings added for typescript files
- [x] Tab settings added for yaml files
- [x] Tab settings added for jsonc files
- [x] Indentation detection turned off for the editor
- [x] Tab settings added for the **GitHub Actions** VSCode extension
### ToDo Items
- [X] Change type labels added to this issue. Refer to the _**Change Type Labels**_ section below.
- [X] Priority label added to this issue. Refer to the _**Priority Type Labels**_ section below.
- [X] Issue linked to the correct project _(if applicable)_.
- [x] Draft pull request created and linked to this issue _(only required with code changes)_.
### Additional Information:
**_<details closed><summary>Change Type Labels</summary>_**
| Change Type | Label |
|--------------|---------------------------------------------------------------------------------------------------|
| CICD | https://github.com/KinsonDigital/VelaptorDocs/labels/%E2%99%BB%EF%B8%8Fcicd |
| Dependency Update | https://github.com/KinsonDigital/VelaptorDocs/labels/dependency%20update |
| Miscellaneous | https://github.com/KinsonDigital/VelaptorDocs/labels/miscellaneous |
| Tutorial Doc Changes | https://github.com/KinsonDigital/VelaptorDocs/labels/%F0%9F%93%9Ctutorial%20doc%20changes |
</details>
**_<details closed><summary>Priority Type Labels</summary>_**
| Priority Type | Label |
|---------------------|------------------------------------------------------------------------|
| Low Priority | https://github.com/KinsonDigital/VelaptorDocs/labels/low%20priority |
| Medium Priority | https://github.com/KinsonDigital/VelaptorDocs/labels/medium%20priority |
| High Priority | https://github.com/KinsonDigital/VelaptorDocs/labels/high%20priority |
</details>
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct. | priority | 📋set up vscode settings for file tabbing complete the item below i have updated the title without removing the 📋 emoji description set up the vscode settings to set the tab settings for various files for the workspace this will involve adding the settings to the vscode settings json file add the settings as shown below diff search exclude node modules true bower components true code search true build true editor insertspaces false editor tabsize editor insertspaces true editor tabsize editor insertspaces false editor tabsize editor detectindentation false editor tabsize editor insertspaces true acceptance criteria tab settings added for typescript files tab settings added for yaml files tab settings added for jsonc files indentation detection turned off for the editor tab settings added for the github actions vscode extension todo items change type labels added to this issue refer to the change type labels section below priority label added to this issue refer to the priority type labels section below issue linked to the correct project if applicable draft pull request created and linked to this issue only required with code changes additional information change type labels change type label cicd dependency update miscellaneous tutorial doc changes priority type labels priority type label low priority medium priority high priority code of conduct i agree to follow this project s code of conduct | 1 |
537,274 | 15,726,322,916 | IssuesEvent | 2021-03-29 11:08:50 | wso2/product-apim | https://api.github.com/repos/wso2/product-apim | closed | Subscription does not get removed in publisher | API-M 4.0.0 Condition/LowHanging Priority/High Type/Bug | ### Description:
Subscription of APIs and API Product does not get removed after subscription blocking.
### Steps to reproduce:
- Follow steps in https://github.com/wso2/product-apim/issues/9706
- Remove the subscription from Dev Portal
- Check the Publisher Subscription tab
### Affected Product Version:
M2 Pack
| 1.0 | Subscription does not get removed in publisher - ### Description:
Subscription of APIs and API Product does not get removed after subscription blocking.
### Steps to reproduce:
- Follow steps in https://github.com/wso2/product-apim/issues/9706
- Remove the subscription from Dev Portal
- Check the Publisher Subscription tab
### Affected Product Version:
M2 Pack
| priority | subscription does not get removed in publisher description subscription of apis and api product does not get removed after subscription blocking steps to reproduce follow steps in remove the subscription from dev portal check the publisher subscription tab affected product version pack | 1 |
729,791 | 25,144,554,368 | IssuesEvent | 2022-11-10 03:26:15 | CyberedCake/CyberAPI | https://api.github.com/repos/CyberedCake/CyberAPI | closed | Add a way to extend SpigotListener for auto-registering | enhancement spigot bungee priority: low | For example, someone creates a new class, adds "extends SpigotListener" or "implements SpigotListener" and the class with automatically register with CyberAPI. Although this would require a change in the system of "commandsPath", it's still possible. | 1.0 | Add a way to extend SpigotListener for auto-registering - For example, someone creates a new class, adds "extends SpigotListener" or "implements SpigotListener" and the class with automatically register with CyberAPI. Although this would require a change in the system of "commandsPath", it's still possible. | priority | add a way to extend spigotlistener for auto registering for example someone creates a new class adds extends spigotlistener or implements spigotlistener and the class with automatically register with cyberapi although this would require a change in the system of commandspath it s still possible | 1 |
606,800 | 18,768,516,732 | IssuesEvent | 2021-11-06 11:34:54 | GrapheneOS/Camera | https://api.github.com/repos/GrapheneOS/Camera | closed | consider replacing video button with a mode at the bottom per Google Camera (unclear if we want this) | enhancement priority-low | If there end up being video extensions, they can be fit into the video mode as settings. Most of the CameraX extension modes are only going to be for images. | 1.0 | consider replacing video button with a mode at the bottom per Google Camera (unclear if we want this) - If there end up being video extensions, they can be fit into the video mode as settings. Most of the CameraX extension modes are only going to be for images. | priority | consider replacing video button with a mode at the bottom per google camera unclear if we want this if there end up being video extensions they can be fit into the video mode as settings most of the camerax extension modes are only going to be for images | 1 |
813,558 | 30,462,333,544 | IssuesEvent | 2023-07-17 07:56:03 | telerik/kendo-react | https://api.github.com/repos/telerik/kendo-react | opened | [Grid] Unstable selection of embedded tables | accessibility Priority 1 SEV: Low | if we open a row it jumps to the table, however, when going back it is not possible to return to the table inside the cell. This can be reproduced in the following example with the following sequence:
Tab, down arrow, down arrow, Enter, down arrow, down arrow, down arrow, Shift+Tab, Tab
or Tab, down arrow, down arrow, Enter, down arrow, down arrow, down arrow, Shift+Tab, up arrow, up arrow, down arrow, down arrow, Tab.
https://stackblitz.com/edit/react-zydusu-vrau9y?file=app%2Fmain.tsx
Ticket ID: 1616095
| 1.0 | [Grid] Unstable selection of embedded tables - if we open a row it jumps to the table, however, when going back it is not possible to return to the table inside the cell. This can be reproduced in the following example with the following sequence:
Tab, down arrow, down arrow, Enter, down arrow, down arrow, down arrow, Shift+Tab, Tab
or Tab, down arrow, down arrow, Enter, down arrow, down arrow, down arrow, Shift+Tab, up arrow, up arrow, down arrow, down arrow, Tab.
https://stackblitz.com/edit/react-zydusu-vrau9y?file=app%2Fmain.tsx
Ticket ID: 1616095
| priority | unstable selection of embedded tables if we open a row it jumps to the table however when going back it is not possible to return to the table inside the cell this can be reproduced in the following example with the following sequence tab down arrow down arrow enter down arrow down arrow down arrow shift tab tab or tab down arrow down arrow enter down arrow down arrow down arrow shift tab up arrow up arrow down arrow down arrow tab ticket id | 1 |
516,632 | 14,984,937,536 | IssuesEvent | 2021-01-28 19:18:50 | nlpsandbox/data-node | https://api.github.com/repos/nlpsandbox/data-node | closed | Remove all traces of _all_of.py and AllOf models | Priority: Low | These files are automatically generated by `openapi-generator` but (all?) can be safely removed from the codebase. | 1.0 | Remove all traces of _all_of.py and AllOf models - These files are automatically generated by `openapi-generator` but (all?) can be safely removed from the codebase. | priority | remove all traces of all of py and allof models these files are automatically generated by openapi generator but all can be safely removed from the codebase | 1 |
250,939 | 7,992,987,873 | IssuesEvent | 2018-07-20 05:17:23 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | tests/shell failing on Arduino 101 / Quark SE arc | area: ARC area: Console area: Shell bug priority: low | Fails to boot and produce any console output; same result on 11 different boards (6 Quark SE, 5 A101) (not even the " booting Zephyr message")
commit v1.12.0-rc2-7-g55494c3f0a
| 1.0 | tests/shell failing on Arduino 101 / Quark SE arc - Fails to boot and produce any console output; same result on 11 different boards (6 Quark SE, 5 A101) (not even the " booting Zephyr message")
commit v1.12.0-rc2-7-g55494c3f0a
| priority | tests shell failing on arduino quark se arc fails to boot and produce any console output same result on different boards quark se not even the booting zephyr message commit | 1 |
335,609 | 10,164,073,142 | IssuesEvent | 2019-08-07 10:44:52 | etclabscore/go-ethereum | https://api.github.com/repos/etclabscore/go-ethereum | opened | Feature request: Submit Block RPC | ISS: Discussion Priority: 7 Low Type: Core Type: Feature | Imported from https://github.com/ethereumproject/go-ethereum/issues/719
# New JSON-RPC method submitBlock
## Purpose
I would like to be able to submitWork, but have the address used be one other than the etherbase of the node the work is being submitted by.
This would allow signing of new blocks to occur outside of the client, similar to sendRawTransaction allows you to externally sign a tx.
## Proposed solution
Named as per @sorpaas suggestion, perhaps this could be done as a `submitBlock`.
It would look as follows:

Here is an OpenRPC describing the method doc if you want to [play](https://playground.open-rpc.org) with it.
```json
{
"openrpc": "1.1.8",
"info": {
"version": "1.0.0",
"title": "Example submitBlock"
},
"methods": [
{
"name": "parity_submitBlock",
"summary": "Submit a new block proposal",
"description": "Given a new block, it will validate the block, and broadcast it to connected peers.",
"params": [
{ "$ref": "https://raw.githubusercontent.com/etclabscore/ethereum-json-rpc-specification/master/openrpc.json#/components/contentDescriptors/Block" }
],
"result": {
"name": "isBlockAccepted",
"schema": {
"type": "boolean"
}
}
}
],
"components": {
"schemas": {
"OpenRPCDocument": {
"title": "OpenRPC Document",
"description": "an open rpc document as defined by https://spec.open-rpc.org."
}
}
}
}
```
| 1.0 | Feature request: Submit Block RPC - Imported from https://github.com/ethereumproject/go-ethereum/issues/719
# New JSON-RPC method submitBlock
## Purpose
I would like to be able to submitWork, but have the address used be one other than the etherbase of the node the work is being submitted by.
This would allow signing of new blocks to occur outside of the client, similar to sendRawTransaction allows you to externally sign a tx.
## Proposed solution
Named as per @sorpaas suggestion, perhaps this could be done as a `submitBlock`.
It would look as follows:

Here is an OpenRPC describing the method doc if you want to [play](https://playground.open-rpc.org) with it.
```json
{
"openrpc": "1.1.8",
"info": {
"version": "1.0.0",
"title": "Example submitBlock"
},
"methods": [
{
"name": "parity_submitBlock",
"summary": "Submit a new block proposal",
"description": "Given a new block, it will validate the block, and broadcast it to connected peers.",
"params": [
{ "$ref": "https://raw.githubusercontent.com/etclabscore/ethereum-json-rpc-specification/master/openrpc.json#/components/contentDescriptors/Block" }
],
"result": {
"name": "isBlockAccepted",
"schema": {
"type": "boolean"
}
}
}
],
"components": {
"schemas": {
"OpenRPCDocument": {
"title": "OpenRPC Document",
"description": "an open rpc document as defined by https://spec.open-rpc.org."
}
}
}
}
```
| priority | feature request submit block rpc imported from new json rpc method submitblock purpose i would like to be able to submitwork but have the address used be one other than the etherbase of the node the work is being submitted by this would allow signing of new blocks to occur outside of the client similar to sendrawtransaction allows you to externally sign a tx proposed solution named as per sorpaas suggestion perhaps this could be done as a submitblock it would look as follows here is an openrpc describing the method doc if you want to with it json openrpc info version title example submitblock methods name parity submitblock summary submit a new block proposal description given a new block it will validate the block and broadcast it to connected peers params ref result name isblockaccepted schema type boolean components schemas openrpcdocument title openrpc document description an open rpc document as defined by | 1 |
685,802 | 23,467,699,965 | IssuesEvent | 2022-08-16 18:25:41 | 01rfcberlin/robocup-blockly | https://api.github.com/repos/01rfcberlin/robocup-blockly | closed | Responsive design | visuals low-priority | The webapp should not only work with the desktop but also tablets and maybe even smart phones. | 1.0 | Responsive design - The webapp should not only work with the desktop but also tablets and maybe even smart phones. | priority | responsive design the webapp should not only work with the desktop but also tablets and maybe even smart phones | 1 |
146,372 | 5,620,267,861 | IssuesEvent | 2017-04-04 06:11:42 | minetest/minetest | https://api.github.com/repos/minetest/minetest | closed | Remove smooth lighting from firelike for performance? | @ Client / Audiovisuals Low priority Performance Request / Suggestion | EDITED
The smooth lighting on all nodes PR is one of my all-time favourite PRs, it's stunningly good.
However i am not sure we should have smooth lighting for firelike, as this has faces that are disconnected from surrounding nodes so never had a visual problem when not smooth lighted.
Because the faces are not standard cube faces the smooth lighting is calculated through 3D interpolation of vertex positions, which is more intensive. Firelike has 6 faces and fire nodes can number thousands in a forest fire.
Firelike is usually used for fire, which is a bright light source so therefore has even less need for smooth lighting because it is always near full brightness. Smooth lighting is not really needed for a fire texture. | 1.0 | Remove smooth lighting from firelike for performance? - EDITED
The smooth lighting on all nodes PR is one of my all-time favourite PRs, it's stunningly good.
However i am not sure we should have smooth lighting for firelike, as this has faces that are disconnected from surrounding nodes so never had a visual problem when not smooth lighted.
Because the faces are not standard cube faces the smooth lighting is calculated through 3D interpolation of vertex positions, which is more intensive. Firelike has 6 faces and fire nodes can number thousands in a forest fire.
Firelike is usually used for fire, which is a bright light source so therefore has even less need for smooth lighting because it is always near full brightness. Smooth lighting is not really needed for a fire texture. | priority | remove smooth lighting from firelike for performance edited the smooth lighting on all nodes pr is one of my all time favourite prs it s stunningly good however i am not sure we should have smooth lighting for firelike as this has faces that are disconnected from surrounding nodes so never had a visual problem when not smooth lighted because the faces are not standard cube faces the smooth lighting is calculated through interpolation of vertex positions which is more intensive firelike has faces and fire nodes can number thousands in a forest fire firelike is usually used for fire which is a bright light source so therefore has even less need for smooth lighting because it is always near full brightness smooth lighting is not really needed for a fire texture | 1 |
445,524 | 12,832,168,785 | IssuesEvent | 2020-07-07 07:09:48 | kubesphere/kubesphere | https://api.github.com/repos/kubesphere/kubesphere | closed | Click app screenshot and enter the enlarge view picture page, can't click '<' '>' to switch pictures | area/console kind/bug kind/need-to-verify priority/low | steps:
1、The user enters the app template page
2、Select an app template and enter the app details page
3、Click the application information to enter the application information page
4、Click on the image in the screenshot ,enter enlarge view image page
5、Click '<''>' to switch images
expected result:
can switch to the previous or the next image
actual result :
cannot switch to the previous or the next image
<img width="560" alt="微信图片_20200317190803" src="https://user-images.githubusercontent.com/36271543/76850877-3eb0cc80-6883-11ea-9be3-2b2544e98ec4.png">
| 1.0 | Click app screenshot and enter the enlarge view picture page, can't click '<' '>' to switch pictures - steps:
1、The user enters the app template page
2、Select an app template and enter the app details page
3、Click the application information to enter the application information page
4、Click on the image in the screenshot ,enter enlarge view image page
5、Click '<''>' to switch images
expected result:
can switch to the previous or the next image
actual result :
cannot switch to the previous or the next image
<img width="560" alt="微信图片_20200317190803" src="https://user-images.githubusercontent.com/36271543/76850877-3eb0cc80-6883-11ea-9be3-2b2544e98ec4.png">
| priority | click app screenshot and enter the enlarge view picture page can t click to switch pictures steps: 、the user enters the app template page 、select an app template and enter the app details page 、click the application information to enter the application information page 、click on the image in the screenshot enter enlarge view image page 、click to switch images expected result: can switch to the previous or the next image actual result : cannot switch to the previous or the next image img width alt 微信图片 src | 1 |
761,850 | 26,699,566,881 | IssuesEvent | 2023-01-27 13:19:56 | AGPlested/ASCAM | https://api.github.com/repos/AGPlested/ASCAM | opened | Window elements are not big enough to show full text | bug low-priority | This happens with the idealization frame where the button that says "Drag lines to change parameters" is too narrow to display the full text and with the names of lists where e.g. when using `ascam -t` the name of the baseline corrected, gaussian filtered list named "BC_GFILTER1000_" is not fully displayed. | 1.0 | Window elements are not big enough to show full text - This happens with the idealization frame where the button that says "Drag lines to change parameters" is too narrow to display the full text and with the names of lists where e.g. when using `ascam -t` the name of the baseline corrected, gaussian filtered list named "BC_GFILTER1000_" is not fully displayed. | priority | window elements are not big enough to show full text this happens with the idealization frame where the button that says drag lines to change parameters is too narrow to display the full text and with the names of lists where e g when using ascam t the name of the baseline corrected gaussian filtered list named bc is not fully displayed | 1 |
779,406 | 27,351,667,712 | IssuesEvent | 2023-02-27 09:59:55 | NVIDIAGameWorks/Falcor | https://api.github.com/repos/NVIDIAGameWorks/Falcor | closed | Optimize descriptor pools/heap memory usage | Low Priority | Vulkan memory allocation policy seems to be different then DX12. It appears that DX12 lazily allocates memory for the QueryHeap, while VK allocates on request. There are 2 issues:
1. Running the FeatureDemo on Vulkan consumes 800MB. DX Consumes about 200MB. Need to figure out where the difference is coming from.
2. We should start with smaller heaps/set sizes and reallocate when we are out of the space (that should be straightforward)
| 1.0 | Optimize descriptor pools/heap memory usage - Vulkan memory allocation policy seems to be different then DX12. It appears that DX12 lazily allocates memory for the QueryHeap, while VK allocates on request. There are 2 issues:
1. Running the FeatureDemo on Vulkan consumes 800MB. DX Consumes about 200MB. Need to figure out where the difference is coming from.
2. We should start with smaller heaps/set sizes and reallocate when we are out of the space (that should be straightforward)
| priority | optimize descriptor pools heap memory usage vulkan memory allocation policy seems to be different then it appears that lazily allocates memory for the queryheap while vk allocates on request there are issues running the featuredemo on vulkan consumes dx consumes about need to figure out where the difference is coming from we should start with smaller heaps set sizes and reallocate when we are out of the space that should be straightforward | 1 |
646,402 | 21,046,903,270 | IssuesEvent | 2022-03-31 16:51:40 | dhowe/AdNauseam | https://api.github.com/repos/dhowe/AdNauseam | closed | Advault: data not visible for large ads with focus | PRIORITY: Low Bug | no way to zoom in on this info, as zooming in/out returns user to the full vault view:
<img width="1039" alt="image" src="https://user-images.githubusercontent.com/737638/155828134-b6145e6e-6f85-43b4-8e83-183603adc1b7.png">
| 1.0 | Advault: data not visible for large ads with focus - no way to zoom in on this info, as zooming in/out returns user to the full vault view:
<img width="1039" alt="image" src="https://user-images.githubusercontent.com/737638/155828134-b6145e6e-6f85-43b4-8e83-183603adc1b7.png">
| priority | advault data not visible for large ads with focus no way to zoom in on this info as zooming in out returns user to the full vault view img width alt image src | 1 |
35,708 | 2,792,918,642 | IssuesEvent | 2015-05-11 07:11:39 | engineers-nightmare/engineers-nightmare | https://api.github.com/repos/engineers-nightmare/engineers-nightmare | closed | consider moving to wercker for automated testing | low-priority | So far travis has been nothing but pain for us since it is stuck in the past (ubuntu 12.04 lts)
as an example see issue #72
Wercker is an interesting docker based alternative that should allow us to escape the shackles of 2012.
https://hacks.mozilla.org/2013/02/wercker-continuous-delivery-made-easy-a-webfwd-project/
http://wercker.com/ | 1.0 | consider moving to wercker for automated testing - So far travis has been nothing but pain for us since it is stuck in the past (ubuntu 12.04 lts)
as an example see issue #72
Wercker is an interesting docker based alternative that should allow us to escape the shackles of 2012.
https://hacks.mozilla.org/2013/02/wercker-continuous-delivery-made-easy-a-webfwd-project/
http://wercker.com/ | priority | consider moving to wercker for automated testing so far travis has been nothing but pain for us since it is stuck in the past ubuntu lts as an example see issue wercker is an interesting docker based alternative that should allow us to escape the shackles of | 1 |
440,487 | 12,700,704,346 | IssuesEvent | 2020-06-22 16:47:24 | less/less.js | https://api.github.com/repos/less/less.js | closed | warn when invalid values are passed to functions and clamped? | consider closing feature request low priority | If you define a color like this:
```
@color: hsla(0,100,100,1);
```
...it should produce 100% red, but it produces 100% cyan.
Also, the corresponding readout function of `hue()` is producing the incorrect value too; although if you use the two functions together the errors cancel each other out.
Still `hsla()` should be fixed to work correctly for defining new colors.
| 1.0 | warn when invalid values are passed to functions and clamped? - If you define a color like this:
```
@color: hsla(0,100,100,1);
```
...it should produce 100% red, but it produces 100% cyan.
Also, the corresponding readout function of `hue()` is producing the incorrect value too; although if you use the two functions together the errors cancel each other out.
Still `hsla()` should be fixed to work correctly for defining new colors.
| priority | warn when invalid values are passed to functions and clamped if you define a color like this color hsla it should produce red but it produces cyan also the corresponding readout function of hue is producing the incorrect value too although if you use the two functions together the errors cancel each other out still hsla should be fixed to work correctly for defining new colors | 1 |
229,970 | 7,602,610,822 | IssuesEvent | 2018-04-29 03:40:21 | FluxionNetwork/fluxion | https://api.github.com/repos/FluxionNetwork/fluxion | closed | Target mismatch is possible when resuming attacks. | Priority: Low Type: Bug | ----
#### Read the [wiki](https://github.com/FluxionNetwork/fluxion/wiki)?
I'm an author.
#### Do you want to request a *feature* or report a *bug*?
Report a potential bug.
#### What is the current behaviour?
When resuming/restoring attacks, fluxion's target may differ from the target in the saved attack since the contents aren't checked for a target mismatch.
#### If the current behaviour is a bug, please provide the steps to reproduce it.
* Start fluxion
* Select `Captive Portal` attack
* Target SSID-X
* Launch attack
* Stop attack
* Select `Captive Portal` attack
* Target SSID-Y (change targets)
* Launch attack (resume/restore)
* **Encounter problem due to a mismatched handshake file**
#### What do you think the expected behaviour should be?
We need to make sure the contents of the restored attack are still valid for the selected target. The solution must be generalized, and all attacks should be able to follow the same procedure to check the sanity of the restored attack's contents.
#### If this is a feature request, what is the motivation or use case for the added feature?
N/A
#### Specs
N/A
## Workaround
**The user must simply reset the attack whenever changing targets for the same attack.** | 1.0 | Target mismatch is possible when resuming attacks. - ----
#### Read the [wiki](https://github.com/FluxionNetwork/fluxion/wiki)?
I'm an author.
#### Do you want to request a *feature* or report a *bug*?
Report a potential bug.
#### What is the current behaviour?
When resuming/restoring attacks, fluxion's target may differ from the target in the saved attack since the contents aren't checked for a target mismatch.
#### If the current behaviour is a bug, please provide the steps to reproduce it.
* Start fluxion
* Select `Captive Portal` attack
* Target SSID-X
* Launch attack
* Stop attack
* Select `Captive Portal` attack
* Target SSID-Y (change targets)
* Launch attack (resume/restore)
* **Encounter problem due to a mismatched handshake file**
#### What do you think the expected behaviour should be?
We need to make sure the contents of the restored attack are still valid for the selected target. The solution must be generalized, and all attacks should be able to follow the same procedure to check the sanity of the restored attack's contents.
#### If this is a feature request, what is the motivation or use case for the added feature?
N/A
#### Specs
N/A
## Workaround
**The user must simply reset the attack whenever changing targets for the same attack.** | priority | target mismatch is possible when resuming attacks read the i m an author do you want to request a feature or report a bug report a potential bug what is the current behaviour when resuming restoring attacks fluxion s target may differ from the target in the saved attack since the contents aren t checked for a target mismatch if the current behaviour is a bug please provide the steps to reproduce it start fluxion select captive portal attack target ssid x launch attack stop attack select captive portal attack target ssid y change targets launch attack resume restore encounter problem due to a mismatched handshake file what do you think the expected behaviour should be we need to make sure the contents of the restored attack are still valid for the selected target the solution must be generalized and all attacks should be able to follow the same procedure to check the sanity of the restored attack s contents if this is a feature request what is the motivation or use case for the added feature n a specs n a workaround the user must simply reset the attack whenever changing targets for the same attack | 1 |
175,421 | 6,550,851,262 | IssuesEvent | 2017-09-05 12:49:28 | wordpress-mobile/AztecEditor-Android | https://api.github.com/repos/wordpress-mobile/AztecEditor-Android | opened | Perform parsing in the background | enhancement low priority performance | When loading a large HTML file the app can become unresponsive because the parsing is performed on the main thread. We should do this in the background. | 1.0 | Perform parsing in the background - When loading a large HTML file the app can become unresponsive because the parsing is performed on the main thread. We should do this in the background. | priority | perform parsing in the background when loading a large html file the app can become unresponsive because the parsing is performed on the main thread we should do this in the background | 1 |
483,852 | 13,930,526,707 | IssuesEvent | 2020-10-22 02:41:56 | Thorium-Sim/thorium | https://api.github.com/repos/Thorium-Sim/thorium | opened | THX Charging Speed | priority/low type/feature | ### Requested By: Lissa Hadfield (lissaeagar@gmail.com)
### Priority: Low
### Version: 2.12.4
Hello! I'm back lol. Could you add a THX Charging Speed like that of the Transporters? That way we can make it fast or slow? Thanks!
| 1.0 | THX Charging Speed - ### Requested By: Lissa Hadfield (lissaeagar@gmail.com)
### Priority: Low
### Version: 2.12.4
Hello! I'm back lol. Could you add a THX Charging Speed like that of the Transporters? That way we can make it fast or slow? Thanks!
| priority | thx charging speed requested by lissa hadfield lissaeagar gmail com priority low version hello i m back lol could you add a thx charging speed like that of the transporters that way we can make it fast or slow thanks | 1 |
515,494 | 14,964,214,204 | IssuesEvent | 2021-01-27 11:39:03 | ntop/ntopng | https://api.github.com/repos/ntop/ntopng | closed | Empty network page | low-priority bug | The pcap https://github.com/ntop/ntopng/files/5874325/a.pcap.gz can be used to reproduce this issue
Starting ntopng with -i a.pcap -m 192.168.0.0/16 will result in an empty network page (no title etc). This has to be fixed. | 1.0 | Empty network page - The pcap https://github.com/ntop/ntopng/files/5874325/a.pcap.gz can be used to reproduce this issue
Starting ntopng with -i a.pcap -m 192.168.0.0/16 will result in an empty network page (no title etc). This has to be fixed. | priority | empty network page the pcap can be used to reproduce this issue starting ntopng with i a pcap m will result in an empty network page no title etc this has to be fixed | 1 |
628,930 | 20,018,620,788 | IssuesEvent | 2022-02-01 14:29:49 | trimble-oss/modus-web-components | https://api.github.com/repos/trimble-oss/modus-web-components | closed | Storybook's external links are not highlighted a different color | priority:low bug good first issue | The links are not highlighted blue anymore. They should be a different color than the other text. | 1.0 | Storybook's external links are not highlighted a different color - The links are not highlighted blue anymore. They should be a different color than the other text. | priority | storybook s external links are not highlighted a different color the links are not highlighted blue anymore they should be a different color than the other text | 1 |
276,404 | 8,598,064,428 | IssuesEvent | 2018-11-15 20:36:49 | ansible/galaxy | https://api.github.com/repos/ansible/galaxy | closed | Vertical Nav links cannot be opened in new tab/window | area/frontend backport priority/low status/blocked type/bug | <!---
Verify first that your issue/request is not already reported on GitHub.
-->
## Bug Report
##### SUMMARY
Links in the galaxy UI's collapsible navbar and search page cannot be opened in a new tab/window. This is especially frustrating when searching for roles.
##### STEPS TO REPRODUCE
Ctrl/Shift + Left Mouse click on link or Mouse wheel click on link should open it in a separate tab/window, e.g.:
https://galaxy.ansible.com/search?platforms=SLES&order_by=-relevance&page_size=10&page=2
##### EXPECTED RESULTS
Ctrl/Shift + Left Mouse click on link or Mouse wheel click on link should open it in a separate tab/window.
##### ACTUAL RESULTS
Link is not opened in a separate tab/window.
| 1.0 | Vertical Nav links cannot be opened in new tab/window - <!---
Verify first that your issue/request is not already reported on GitHub.
-->
## Bug Report
##### SUMMARY
Links in the galaxy UI's collapsible navbar and search page cannot be opened in a new tab/window. This is especially frustrating when searching for roles.
##### STEPS TO REPRODUCE
Ctrl/Shift + Left Mouse click on link or Mouse wheel click on link should open it in a separate tab/window, e.g.:
https://galaxy.ansible.com/search?platforms=SLES&order_by=-relevance&page_size=10&page=2
##### EXPECTED RESULTS
Ctrl/Shift + Left Mouse click on link or Mouse wheel click on link should open it in a separate tab/window.
##### ACTUAL RESULTS
Link is not opened in a separate tab/window.
| priority | vertical nav links cannot be opened in new tab window verify first that your issue request is not already reported on github bug report summary links in the galaxy ui s collapsible navbar and search page cannot be opened in a new tab window this is especially frustrating when searching for roles steps to reproduce ctrl shift left mouse click on link or mouse wheel click on link should open it in a separate tab window e g expected results ctrl shift left mouse click on link or mouse wheel click on link should open it in a separate tab window actual results link is not opened in a separate tab window | 1 |
152,617 | 5,857,877,127 | IssuesEvent | 2017-05-12 01:12:19 | astropy/astropy | https://api.github.com/repos/astropy/astropy | closed | Unify section header characters | Docs Effort-low Package-novice Priority-Low | This is a placeholder if someone has the desire to unify the section header characters throughout the astropy docs to use the same ordering, which is now standardized as `* = - ^ " + : ~`.
I wrote a quick script to determine all unique sets of character orders used in the RST section headers. I _think_ it works, but this was fast without too much test. It's here in this gist: https://gist.github.com/3208992.
Upshot: for astropy RST files in docs/ the sets we use are:
```
% find . -name "*.rst" | xargs ./header_chars.py
... # bunch of files and their section orderings
#*=
*=-"
*=-^"
-^".
-^">
=-^"
=-`
```
You can find which files correspond to a particular set with (e.g.):
```
% find . -name "*.rst" | xargs ./header_chars.py | grep '=-`'
./wcs/history.rst =-`
=-`
```
It's probably not much work to take this script and extend to actually do the fixing.
| 1.0 | Unify section header characters - This is a placeholder if someone has the desire to unify the section header characters throughout the astropy docs to use the same ordering, which is now standardized as `* = - ^ " + : ~`.
I wrote a quick script to determine all unique sets of character orders used in the RST section headers. I _think_ it works, but this was fast without too much test. It's here in this gist: https://gist.github.com/3208992.
Upshot: for astropy RST files in docs/ the sets we use are:
```
% find . -name "*.rst" | xargs ./header_chars.py
... # bunch of files and their section orderings
#*=
*=-"
*=-^"
-^".
-^">
=-^"
=-`
```
You can find which files correspond to a particular set with (e.g.):
```
% find . -name "*.rst" | xargs ./header_chars.py | grep '=-`'
./wcs/history.rst =-`
=-`
```
It's probably not much work to take this script and extend to actually do the fixing.
| priority | unify section header characters this is a placeholder if someone has the desire to unify the section header characters throughout the astropy docs to use the same ordering which is now standardized as i wrote a quick script to determine all unique sets of character orders used in the rst section headers i think it works but this was fast without too much test it s here in this gist upshot for astropy rst files in docs the sets we use are find name rst xargs header chars py bunch of files and their section orderings you can find which files correspond to a particular set with e g find name rst xargs header chars py grep wcs history rst it s probably not much work to take this script and extend to actually do the fixing | 1 |
821,799 | 30,837,041,729 | IssuesEvent | 2023-08-02 08:08:03 | assemblee-virtuelle/semapps | https://api.github.com/repos/assemblee-virtuelle/semapps | closed | No display type & status in ReferenceInput | bug low difficulty medium priority | **Décrivez le bug**
For exemple in organization Edit, input of type & status are empty.
When you refresh page, it display the content.
**Etapes pour reproduire**
1. Open an organization which have a type or/and a status
2. Clic "Edit" button
3. See input field Type & status empty
**Comportement attendu**
Display the content of type & status field
**Système**
Chrome, firefox
| 1.0 | No display type & status in ReferenceInput - **Décrivez le bug**
For exemple in organization Edit, input of type & status are empty.
When you refresh page, it display the content.
**Etapes pour reproduire**
1. Open an organization which have a type or/and a status
2. Clic "Edit" button
3. See input field Type & status empty
**Comportement attendu**
Display the content of type & status field
**Système**
Chrome, firefox
| priority | no display type status in referenceinput décrivez le bug for exemple in organization edit input of type status are empty when you refresh page it display the content etapes pour reproduire open an organization which have a type or and a status clic edit button see input field type status empty comportement attendu display the content of type status field système chrome firefox | 1 |
236,724 | 7,752,155,308 | IssuesEvent | 2018-05-30 19:21:53 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Property Claims audit log | Low Priority Suggestion | Can we possibly get a "Claims" layer to see how claims expand and who owns what claims? It would be useful for providing proof of someone claiming an area and then griefing that area in case an admin cleans up the mess before taking screenshots. | 1.0 | Property Claims audit log - Can we possibly get a "Claims" layer to see how claims expand and who owns what claims? It would be useful for providing proof of someone claiming an area and then griefing that area in case an admin cleans up the mess before taking screenshots. | priority | property claims audit log can we possibly get a claims layer to see how claims expand and who owns what claims it would be useful for providing proof of someone claiming an area and then griefing that area in case an admin cleans up the mess before taking screenshots | 1 |
158,413 | 6,026,793,859 | IssuesEvent | 2017-06-08 12:17:46 | Helioviewer-Project/helioviewer.org | https://api.github.com/repos/Helioviewer-Project/helioviewer.org | closed | Feature/event timeline labels react to mouseover? | 3.2 enhancement priority: low Timeline: features and events | The feature/event timeline labels

have to be clicked to react. It might be more useful to have them react to mouseover instead of click. In addition, the reaction on mouseover should change. When mousing over a feature/event timeline label, only those features/events should appear in the viewer window and in the timeline. The other feature/events should disappear. | 1.0 | Feature/event timeline labels react to mouseover? - The feature/event timeline labels

have to be clicked to react. It might be more useful to have them react to mouseover instead of click. In addition, the reaction on mouseover should change. When mousing over a feature/event timeline label, only those features/events should appear in the viewer window and in the timeline. The other feature/events should disappear. | priority | feature event timeline labels react to mouseover the feature event timeline labels have to be clicked to react it might be more useful to have them react to mouseover instead of click in addition the reaction on mouseover should change when mousing over a feature event timeline label only those features events should appear in the viewer window and in the timeline the other feature events should disappear | 1 |
402,863 | 11,825,812,487 | IssuesEvent | 2020-03-21 14:50:20 | seccomp/libseccomp | https://api.github.com/repos/seccomp/libseccomp | closed | Q: why do libseccomp-2.4.3.tar.gz differ | priority/low question | If i download libseccomp-2.4.3.tar.gz from releases or archive why do they differ.
If i check sha256sum the files differ.
https://github.com/seccomp/libseccomp/releases/download/v2.4.3/libseccomp-2.4.3.tar.gz
cf15d1421997fac45b936515af61d209c4fd788af11005d212b3d0fd71e7991d
https://github.com/seccomp/libseccomp/archive/v2.4.3/libseccomp-2.4.3.tar.gz
4d86f0bd0847795bf7f7bf6e44cb73edf4417d84f6d8848c23eda99b0c50fce6 | 1.0 | Q: why do libseccomp-2.4.3.tar.gz differ - If i download libseccomp-2.4.3.tar.gz from releases or archive why do they differ.
If i check sha256sum the files differ.
https://github.com/seccomp/libseccomp/releases/download/v2.4.3/libseccomp-2.4.3.tar.gz
cf15d1421997fac45b936515af61d209c4fd788af11005d212b3d0fd71e7991d
https://github.com/seccomp/libseccomp/archive/v2.4.3/libseccomp-2.4.3.tar.gz
4d86f0bd0847795bf7f7bf6e44cb73edf4417d84f6d8848c23eda99b0c50fce6 | priority | q why do libseccomp tar gz differ if i download libseccomp tar gz from releases or archive why do they differ if i check the files differ | 1 |
280,758 | 8,686,338,247 | IssuesEvent | 2018-12-03 10:31:45 | status-im/status-react | https://api.github.com/repos/status-im/status-react | opened | Update the colours and username display inside the mobile chat UI | chat low-hanging-fruit low-priority mobile | # Problem
As part of the ongoing work on UI components we've made some changes to the mobile UI that aim to unify it across all screens and products, this issue is related to introducing those changes into chat message UI.
# Implementation

### The scope of this task is related to two areas:
_Change of chat background from grey to white, and incoming messages from white to light blue, with some minor colour tweaks that go along with it. The purpose of that is unifying the visual design across all screens and mobile-desktop chat UIs_
- [ ] Change the chat background colour to white (#FFF)
- [ ] Change the Incoming message bubble background colour to Light Blue (#ECEFFC)
- [ ] Outgoing reply message, change the colour to 70% white (rgba 255,255,255, 0.7) of following:
- the quoted username colour
- quoted text colour
- the timestamp colour
/ _this is a fix, currently, the contrast ratio is too low there to be readable_
Incoming reply message, the 2px high underline below the quoted snippet should be 10% black (rgba 0,0,0 0.1)
_Change the way we render usernames inside chat to better distinguish between chosen username and 3w anonymous username_
- [ ] Chosen username, font-size 13px font-weight: 500, color: Dark Grey (#939BA1), line-height: 16px
- [ ] 3w anonymous name, font-size: 12px, font-weight 400, color: Dark Grey (#939BA1), line-height: 16px
- [ ] change the :: characters to a bullet • (opt+8 on mac)
- [ ] 12px padding on the left, 16px on the right (the username begins at the same place as text inside message bubbles)
- [ ] the entire username should span the entire screen width and not only the message bubble (it can be wider than the message bubble)
- inside message replies, the entire quoted username should be truncated with ellipsis (…) if it overflows and doesn't fit in a line
# Acceptance Criteria

All improvements were introduced as outlined [in this design](https://www.figma.com/file/aS1ct66VQ6V0cio7vSqS8UoG/Chat?node-id=1254%3A1791)
thanks a bunch!
| 1.0 | Update the colours and username display inside the mobile chat UI - # Problem
As part of the ongoing work on UI components we've made some changes to the mobile UI that aim to unify it across all screens and products, this issue is related to introducing those changes into chat message UI.
# Implementation

### The scope of this task is related to two areas:
_Change of chat background from grey to white, and incoming messages from white to light blue, with some minor colour tweaks that go along with it. The purpose of that is unifying the visual design across all screens and mobile-desktop chat UIs_
- [ ] Change the chat background colour to white (#FFF)
- [ ] Change the Incoming message bubble background colour to Light Blue (#ECEFFC)
- [ ] Outgoing reply message, change the colour to 70% white (rgba 255,255,255, 0.7) of following:
- the quoted username colour
- quoted text colour
- the timestamp colour
/ _this is a fix, currently, the contrast ratio is too low there to be readable_
Incoming reply message, the 2px high underline below the quoted snippet should be 10% black (rgba 0,0,0 0.1)
_Change the way we render usernames inside chat to better distinguish between chosen username and 3w anonymous username_
- [ ] Chosen username, font-size 13px font-weight: 500, color: Dark Grey (#939BA1), line-height: 16px
- [ ] 3w anonymous name, font-size: 12px, font-weight 400, color: Dark Grey (#939BA1), line-height: 16px
- [ ] change the :: characters to a bullet • (opt+8 on mac)
- [ ] 12px padding on the left, 16px on the right (the username begins at the same place as text inside message bubbles)
- [ ] the entire username should span the entire screen width and not only the message bubble (it can be wider than the message bubble)
- inside message replies, the entire quoted username should be truncated with ellipsis (…) if it overflows and doesn't fit in a line
# Acceptance Criteria

All improvements were introduced as outlined [in this design](https://www.figma.com/file/aS1ct66VQ6V0cio7vSqS8UoG/Chat?node-id=1254%3A1791)
thanks a bunch!
| priority | update the colours and username display inside the mobile chat ui problem as part of the ongoing work on ui components we ve made some changes to the mobile ui that aim to unify it across all screens and products this issue is related to introducing those changes into chat message ui implementation the scope of this task is related to two areas change of chat background from grey to white and incoming messages from white to light blue with some minor colour tweaks that go along with it the purpose of that is unifying the visual design across all screens and mobile desktop chat uis change the chat background colour to white fff change the incoming message bubble background colour to light blue eceffc outgoing reply message change the colour to white rgba of following the quoted username colour quoted text colour the timestamp colour this is a fix currently the contrast ratio is too low there to be readable incoming reply message the high underline below the quoted snippet should be black rgba change the way we render usernames inside chat to better distinguish between chosen username and anonymous username chosen username font size font weight color dark grey line height anonymous name font size font weight color dark grey line height change the characters to a bullet • opt on mac padding on the left on the right the username begins at the same place as text inside message bubbles the entire username should span the entire screen width and not only the message bubble it can be wider than the message bubble inside message replies the entire quoted username should be truncated with ellipsis … if it overflows and doesn t fit in a line acceptance criteria all improvements were introduced as outlined thanks a bunch | 1 |
829,693 | 31,887,074,897 | IssuesEvent | 2023-09-17 03:34:32 | azerothcore/azerothcore-wotlk | https://api.github.com/repos/azerothcore/azerothcore-wotlk | opened | (Instance/MagistersTerrace): Kalecgos' gossip options do not work. | Priority-Low Instance - Dungeon - Outland 70 | ### Current Behaviour
[Kalecgos](https://wowgaming.altervista.org/aowow/?npc=24848) has a couple gossip options when interacted with. Neither do anything.
### Expected Blizzlike Behaviour
Both of them should lead down a couple small dialogue trees.
### Source
Wrath Classic
### Steps to reproduce the problem
1. `.tele magistersterrace`
2. Enter the instance.
3. Clear your way to the scrying orb.
4. Interact with Kalecgos when he appears and transforms to his humanoid form.
5. Use his gossip options.
6. Observe how Kalecgos is not one for conversation.
### Extra Notes
_No response_
### AC rev. hash/commit
b84596fcaba2b805723e30d291c570c09c091f94
### Operating system
Windows 10 x64
### Custom changes or Modules
[mod-ptr-template](https://github.com/heyitsbench/mod-ptr-template) | 1.0 | (Instance/MagistersTerrace): Kalecgos' gossip options do not work. - ### Current Behaviour
[Kalecgos](https://wowgaming.altervista.org/aowow/?npc=24848) has a couple gossip options when interacted with. Neither do anything.
### Expected Blizzlike Behaviour
Both of them should lead down a couple small dialogue trees.
### Source
Wrath Classic
### Steps to reproduce the problem
1. `.tele magistersterrace`
2. Enter the instance.
3. Clear your way to the scrying orb.
4. Interact with Kalecgos when he appears and transforms to his humanoid form.
5. Use his gossip options.
6. Observe how Kalecgos is not one for conversation.
### Extra Notes
_No response_
### AC rev. hash/commit
b84596fcaba2b805723e30d291c570c09c091f94
### Operating system
Windows 10 x64
### Custom changes or Modules
[mod-ptr-template](https://github.com/heyitsbench/mod-ptr-template) | priority | instance magistersterrace kalecgos gossip options do not work current behaviour has a couple gossip options when interacted with neither do anything expected blizzlike behaviour both of them should lead down a couple small dialogue trees source wrath classic steps to reproduce the problem tele magistersterrace enter the instance clear your way to the scrying orb interact with kalecgos when he appears and transforms to his humanoid form use his gossip options observe how kalecgos is not one for conversation extra notes no response ac rev hash commit operating system windows custom changes or modules | 1 |
753,427 | 26,347,133,862 | IssuesEvent | 2023-01-10 23:25:50 | helpmebot/helpmebot | https://api.github.com/repos/helpmebot/helpmebot | opened | when silenced, can it unsilence itself after, say, an hour? | priority/low type/feature migrated | when silenced, can it unsilence itself after, say, an hour? | 1.0 | when silenced, can it unsilence itself after, say, an hour? - when silenced, can it unsilence itself after, say, an hour? | priority | when silenced can it unsilence itself after say an hour when silenced can it unsilence itself after say an hour | 1 |
580,230 | 17,213,432,458 | IssuesEvent | 2021-07-19 08:28:03 | DroneDB/Registry | https://api.github.com/repos/DroneDB/Registry | opened | Add mime/extension aware compression level | enhancement low priority | Since https://github.com/DroneDB/Registry/pull/166 we don't actually compress files in zips because most of them are incompressible. (images, videos, point clouds, and so on). But we should compress all other file types using a mime / extension filter logic. | 1.0 | Add mime/extension aware compression level - Since https://github.com/DroneDB/Registry/pull/166 we don't actually compress files in zips because most of them are incompressible. (images, videos, point clouds, and so on). But we should compress all other file types using a mime / extension filter logic. | priority | add mime extension aware compression level since we don t actually compress files in zips because most of them are incompressible images videos point clouds and so on but we should compress all other file types using a mime extension filter logic | 1 |
821,779 | 30,836,217,711 | IssuesEvent | 2023-08-02 07:33:58 | discord-jar/discord.jar | https://api.github.com/repos/discord-jar/discord.jar | closed | Media Channels | type: feature priority: low status: claimed | ### General Troubleshooting
- [X] You've have checked for similar feature requests.
- [X] You've updated to the latest version of the API.
- [X] You've have checked the PR's for features relating to your suggestion.
### Feature Request Description
https://github.com/discord/discord-api-docs/pull/6232 | 1.0 | Media Channels - ### General Troubleshooting
- [X] You've have checked for similar feature requests.
- [X] You've updated to the latest version of the API.
- [X] You've have checked the PR's for features relating to your suggestion.
### Feature Request Description
https://github.com/discord/discord-api-docs/pull/6232 | priority | media channels general troubleshooting you ve have checked for similar feature requests you ve updated to the latest version of the api you ve have checked the pr s for features relating to your suggestion feature request description | 1 |
35,657 | 2,792,092,284 | IssuesEvent | 2015-05-10 18:10:43 | mpv-player/mpv | https://api.github.com/repos/mpv-player/mpv | closed | Fetch subtitles request | feature request low priority | It would be really nice to be able to fetch subtitles from sites such as opensubtitles.org based on movie's hash and triggered by custom hotkey. I am spoiled with such feat from smplayer and wish mpv had this. Will feature like this be any time soon in the scope of mpv progress? | 1.0 | Fetch subtitles request - It would be really nice to be able to fetch subtitles from sites such as opensubtitles.org based on movie's hash and triggered by custom hotkey. I am spoiled with such feat from smplayer and wish mpv had this. Will feature like this be any time soon in the scope of mpv progress? | priority | fetch subtitles request it would be really nice to be able to fetch subtitles from sites such as opensubtitles org based on movie s hash and triggered by custom hotkey i am spoiled with such feat from smplayer and wish mpv had this will feature like this be any time soon in the scope of mpv progress | 1 |
81,890 | 3,600,003,517 | IssuesEvent | 2016-02-03 02:19:00 | cuckoosandbox/cuckoo | https://api.github.com/repos/cuckoosandbox/cuckoo | closed | UnicodeWarning in abstract.py pattern comparison | Bug (to verify) Low Priority | ```/cuckoo/lib/cuckoo/common/abstracts.py:721: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if item.lower() == pattern.lower():``` | 1.0 | UnicodeWarning in abstract.py pattern comparison - ```/cuckoo/lib/cuckoo/common/abstracts.py:721: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if item.lower() == pattern.lower():``` | priority | unicodewarning in abstract py pattern comparison cuckoo lib cuckoo common abstracts py unicodewarning unicode equal comparison failed to convert both arguments to unicode interpreting them as being unequal if item lower pattern lower | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.