Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
957
labels
stringlengths
4
795
body
stringlengths
1
259k
index
stringclasses
12 values
text_combine
stringlengths
96
259k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
162,681
6,157,942,160
IssuesEvent
2017-06-28 20:06:14
graphcool/console
https://api.github.com/repos/graphcool/console
opened
Generated mutations based on self-relations are not correctly displayed
bug priority/medium UI
**Do you want to request a *feature* or report a *bug*?** Bug **What is the current behavior?** ![image](https://user-images.githubusercontent.com/1780597/27656703-445be694-5c4a-11e7-8b34-04efe6b5439f.png) **What is the expected behavior?** Needs to say `contacts1User: ID!` and `contacts2User: ID!` instead.
1.0
Generated mutations based on self-relations are not correctly displayed - **Do you want to request a *feature* or report a *bug*?** Bug **What is the current behavior?** ![image](https://user-images.githubusercontent.com/1780597/27656703-445be694-5c4a-11e7-8b34-04efe6b5439f.png) **What is the expected behavior?** Needs to say `contacts1User: ID!` and `contacts2User: ID!` instead.
priority
generated mutations based on self relations are not correctly displayed do you want to request a feature or report a bug bug what is the current behavior what is the expected behavior needs to say id and id instead
1
639,047
20,745,331,587
IssuesEvent
2022-03-14 22:10:03
sunpy/sunpy
https://api.github.com/repos/sunpy/sunpy
closed
`.superpixel()` and `.resample()` do not correctly modify metadata for maps with non-zero rotation
Bug map Priority Medium Effort Medium Package Intermediate
`.superpixel()` and `.resample()` modify the data in pixel space, and they correspondingly modify the coordinate metadata as if the pixel axes are aligned with the coordinate axes. If a map has non-zero rotation, this does not return the correct result unless the resampling is the same in both directions (which, admittedly, is the typical use case). Here's an example: ```python import matplotlib.pyplot as plt import astropy.units as u import sunpy.map from sunpy.data.sample import AIA_171_IMAGE rot = sunpy.map.Map(AIA_171_IMAGE).rotate(30*u.deg) rotsp = rot.superpixel([2, 1]*u.pix) fig = plt.figure(figsize=(10, 4)) fig.add_subplot(121, projection=rot) rot.plot(clip_interval=(1, 99.5)*u.percent, title='Original') fig.add_subplot(122, projection=rotsp) # Using aspect to visually correct for the rectangular pixels rotsp.plot(clip_interval=(1, 99.5)*u.percent, title='After superpixel to rectangular pixels', aspect=0.5) plt.show() ``` ![superpixel bug](https://user-images.githubusercontent.com/991759/148115511-afd82d85-d6b0-411a-87e8-f2eddc53eb2f.png)
1.0
`.superpixel()` and `.resample()` do not correctly modify metadata for maps with non-zero rotation - `.superpixel()` and `.resample()` modify the data in pixel space, and they correspondingly modify the coordinate metadata as if the pixel axes are aligned with the coordinate axes. If a map has non-zero rotation, this does not return the correct result unless the resampling is the same in both directions (which, admittedly, is the typical use case). Here's an example: ```python import matplotlib.pyplot as plt import astropy.units as u import sunpy.map from sunpy.data.sample import AIA_171_IMAGE rot = sunpy.map.Map(AIA_171_IMAGE).rotate(30*u.deg) rotsp = rot.superpixel([2, 1]*u.pix) fig = plt.figure(figsize=(10, 4)) fig.add_subplot(121, projection=rot) rot.plot(clip_interval=(1, 99.5)*u.percent, title='Original') fig.add_subplot(122, projection=rotsp) # Using aspect to visually correct for the rectangular pixels rotsp.plot(clip_interval=(1, 99.5)*u.percent, title='After superpixel to rectangular pixels', aspect=0.5) plt.show() ``` ![superpixel bug](https://user-images.githubusercontent.com/991759/148115511-afd82d85-d6b0-411a-87e8-f2eddc53eb2f.png)
priority
superpixel and resample do not correctly modify metadata for maps with non zero rotation superpixel and resample modify the data in pixel space and they correspondingly modify the coordinate metadata as if the pixel axes are aligned with the coordinate axes if a map has non zero rotation this does not return the correct result unless the resampling is the same in both directions which admittedly is the typical use case here s an example python import matplotlib pyplot as plt import astropy units as u import sunpy map from sunpy data sample import aia image rot sunpy map map aia image rotate u deg rotsp rot superpixel u pix fig plt figure figsize fig add subplot projection rot rot plot clip interval u percent title original fig add subplot projection rotsp using aspect to visually correct for the rectangular pixels rotsp plot clip interval u percent title after superpixel to rectangular pixels aspect plt show
1
232,186
7,655,853,130
IssuesEvent
2018-05-10 14:32:44
salesagility/SuiteCRM
https://api.github.com/repos/salesagility/SuiteCRM
closed
Undefined function minify_css() in block.minify.php
Fix Proposed Medium Priority Resolved: Next Release bug
There was a FATAL error observed as: Fatal error: Uncaught Error: Call to undefined function minify_css() in /home2/luminisi/public_html/SuiteCRM/include/Smarty/plugins/block.minify.php:15 (or 18th line) [Reference:](https://suitecrm.com/suitecrm/forum/developer-help/18942-call-to-undefined-function-minify-css) There was no previous reference of this issue on this repository or SuiteCRM forums before, thus had to dig out the culprit code. Issue This function was not allowing us to create or select the target list from a subpanel and was resulting a huge functionality built by us going absolutely hay-wired. The function minify_css() in line 15 of block.minify.php, definitely looks like some sort of coding leftover. This file is a recent inclusion in SuiteCRM/include/Smarty/plugins/. Only the developer of this file could confirm -- whether it is a minor bug or essential piece of code. However, as of now minify_css() is surely an undefined function. Possible Fix Deleting the line 15: return '<' . $matches[1] . ' style=' . $matches[2] . minify_css($matches[3]) . $matches[2]; Replacing with line 15: return '<' . $matches[1] . ' style=' . $matches[2] . $matches[3] . $matches[2]; Context https://suitecrm.com/suitecrm/forum/developer-help/18942-call-to-undefined-function-minify-css#65304 Your Environment * SuiteCRM Version used: 7.10.4 * Browser name and version : 66.0.3359.139 (Official Build) (64-bit) * Environment name and version: MySQL, PHP 7.1: * Operating System and version : Linux
1.0
Undefined function minify_css() in block.minify.php - There was a FATAL error observed as: Fatal error: Uncaught Error: Call to undefined function minify_css() in /home2/luminisi/public_html/SuiteCRM/include/Smarty/plugins/block.minify.php:15 (or 18th line) [Reference:](https://suitecrm.com/suitecrm/forum/developer-help/18942-call-to-undefined-function-minify-css) There was no previous reference of this issue on this repository or SuiteCRM forums before, thus had to dig out the culprit code. Issue This function was not allowing us to create or select the target list from a subpanel and was resulting a huge functionality built by us going absolutely hay-wired. The function minify_css() in line 15 of block.minify.php, definitely looks like some sort of coding leftover. This file is a recent inclusion in SuiteCRM/include/Smarty/plugins/. Only the developer of this file could confirm -- whether it is a minor bug or essential piece of code. However, as of now minify_css() is surely an undefined function. Possible Fix Deleting the line 15: return '<' . $matches[1] . ' style=' . $matches[2] . minify_css($matches[3]) . $matches[2]; Replacing with line 15: return '<' . $matches[1] . ' style=' . $matches[2] . $matches[3] . $matches[2]; Context https://suitecrm.com/suitecrm/forum/developer-help/18942-call-to-undefined-function-minify-css#65304 Your Environment * SuiteCRM Version used: 7.10.4 * Browser name and version : 66.0.3359.139 (Official Build) (64-bit) * Environment name and version: MySQL, PHP 7.1: * Operating System and version : Linux
priority
undefined function minify css in block minify php there was a fatal error observed as fatal error uncaught error call to undefined function minify css in luminisi public html suitecrm include smarty plugins block minify php or line there was no previous reference of this issue on this repository or suitecrm forums before thus had to dig out the culprit code issue this function was not allowing us to create or select the target list from a subpanel and was resulting a huge functionality built by us going absolutely hay wired the function minify css in line of block minify php definitely looks like some sort of coding leftover this file is a recent inclusion in suitecrm include smarty plugins only the developer of this file could confirm whether it is a minor bug or essential piece of code however as of now minify css is surely an undefined function possible fix deleting the line return matches style matches minify css matches matches replacing with line return matches style matches matches matches context your environment suitecrm version used browser name and version official build bit environment name and version mysql php operating system and version linux
1
69,339
3,297,515,806
IssuesEvent
2015-11-02 09:24:48
cs2103aug2015-w15-2j/main
https://api.github.com/repos/cs2103aug2015-w15-2j/main
closed
A user can archive old meetings / deadlines and also clear archive
priority.medium type.story
so that user can see events/tasks of the past when needed.
1.0
A user can archive old meetings / deadlines and also clear archive - so that user can see events/tasks of the past when needed.
priority
a user can archive old meetings deadlines and also clear archive so that user can see events tasks of the past when needed
1
75,780
3,475,643,931
IssuesEvent
2015-12-25 22:35:06
williamxu/MangoReader
https://api.github.com/repos/williamxu/MangoReader
closed
excess direction switching causes improper image loading
bug medium priority
occasionally seems to cause loading offset by 1 page
1.0
excess direction switching causes improper image loading - occasionally seems to cause loading offset by 1 page
priority
excess direction switching causes improper image loading occasionally seems to cause loading offset by page
1
542,811
15,867,374,044
IssuesEvent
2021-04-08 16:49:30
AY2021S2-CS2113T-F08-4/tp
https://api.github.com/repos/AY2021S2-CS2113T-F08-4/tp
opened
make DG more consistent - Change Section 4.01 of DG
priority.Medium type.Task
Change "Problem-solution" format to the same as rest of DG
1.0
make DG more consistent - Change Section 4.01 of DG - Change "Problem-solution" format to the same as rest of DG
priority
make dg more consistent change section of dg change problem solution format to the same as rest of dg
1
20,510
2,622,851,538
IssuesEvent
2015-03-04 08:05:30
max99x/pagemon-chrome-ext
https://api.github.com/repos/max99x/pagemon-chrome-ext
closed
maisondelarobe.fr
auto-migrated Priority-Medium
``` What steps will reproduce the problem? What is the expected output? What do you see instead? What version of the Chrome are you using? On what operating system? What are the error log messages? To view them, go to Wrench -> Tools -> Extensions -> Developer Mode -> expand Page Monitor -> "background.htm" -> Console. Please provide any additional information below. ``` Original issue reported on code.google.com by `nicolasu...@gmail.com` on 30 Apr 2012 at 6:26
1.0
maisondelarobe.fr - ``` What steps will reproduce the problem? What is the expected output? What do you see instead? What version of the Chrome are you using? On what operating system? What are the error log messages? To view them, go to Wrench -> Tools -> Extensions -> Developer Mode -> expand Page Monitor -> "background.htm" -> Console. Please provide any additional information below. ``` Original issue reported on code.google.com by `nicolasu...@gmail.com` on 30 Apr 2012 at 6:26
priority
maisondelarobe fr what steps will reproduce the problem what is the expected output what do you see instead what version of the chrome are you using on what operating system what are the error log messages to view them go to wrench tools extensions developer mode expand page monitor background htm console please provide any additional information below original issue reported on code google com by nicolasu gmail com on apr at
1
392,751
11,595,315,921
IssuesEvent
2020-02-24 16:47:05
appsody/appsody
https://api.github.com/repos/appsody/appsody
closed
Function checkDockerImageExistsLocally should have a buildah option
priority/medium
**Describe the bug** This function checks whether the image is present in the local image cache, but it presumes the availability of the `docker` client (it won't work in case it is invoked with `--buildah` and in an environment where `docker` is not installed **Expected behavior** Use the appropriate `buildah` command when `--buildah` is set.
1.0
Function checkDockerImageExistsLocally should have a buildah option - **Describe the bug** This function checks whether the image is present in the local image cache, but it presumes the availability of the `docker` client (it won't work in case it is invoked with `--buildah` and in an environment where `docker` is not installed **Expected behavior** Use the appropriate `buildah` command when `--buildah` is set.
priority
function checkdockerimageexistslocally should have a buildah option describe the bug this function checks whether the image is present in the local image cache but it presumes the availability of the docker client it won t work in case it is invoked with buildah and in an environment where docker is not installed expected behavior use the appropriate buildah command when buildah is set
1
129,344
5,095,168,759
IssuesEvent
2017-01-03 14:22:54
pymedusa/Medusa
https://api.github.com/repos/pymedusa/Medusa
closed
PP weird quality settings
Bug Priority: 2. Medium
Medusa use to PP and replace 720p HDTV with 720p WEB-DL perfectly fine but now won't. The show is added with these quality settings. The file in question is downloaded as 720p HDTV and I manually snatched the 720p WEB-DL file. Allowed: SDTV, SD DVD, 720p HDTV, 1080p HDTV, 720p WEB-DL Preferred: 1080p WEB-DL ``` 2017-01-03 17:18:39 WARNING POSTPROCESSOR :: [e4289d9] [/downloads/White.Collar.S03E05.Veiled.Threat.720p.WEB-DL.DD5.1.H.264-KiNGS/White.Collar.S03E05.Veiled.Threat.720p.WEB-DL.DD5.1.H.264-KiNGS.mkv : Processing failed: File exists. Marking it unsafe to replace because this quality is not preferred] ```
1.0
PP weird quality settings - Medusa use to PP and replace 720p HDTV with 720p WEB-DL perfectly fine but now won't. The show is added with these quality settings. The file in question is downloaded as 720p HDTV and I manually snatched the 720p WEB-DL file. Allowed: SDTV, SD DVD, 720p HDTV, 1080p HDTV, 720p WEB-DL Preferred: 1080p WEB-DL ``` 2017-01-03 17:18:39 WARNING POSTPROCESSOR :: [e4289d9] [/downloads/White.Collar.S03E05.Veiled.Threat.720p.WEB-DL.DD5.1.H.264-KiNGS/White.Collar.S03E05.Veiled.Threat.720p.WEB-DL.DD5.1.H.264-KiNGS.mkv : Processing failed: File exists. Marking it unsafe to replace because this quality is not preferred] ```
priority
pp weird quality settings medusa use to pp and replace hdtv with web dl perfectly fine but now won t the show is added with these quality settings the file in question is downloaded as hdtv and i manually snatched the web dl file allowed sdtv sd dvd hdtv hdtv web dl preferred web dl warning postprocessor
1
387,566
11,463,365,534
IssuesEvent
2020-02-07 15:52:31
canonical-web-and-design/tutorials.ubuntu.com
https://api.github.com/repos/canonical-web-and-design/tutorials.ubuntu.com
closed
macOS instructions to boot from external usb hdd with ubuntu already installed (from bootable usb).
Feature 🎁 Priority: Medium Tutorials Content
while all these steps are great (and accurate) https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-macos#6 if you are targeting an external usb drive for install once you power off / on the computer and hit option on mac there's no way to get into the newly installed hdd. there's been attempts to solve this / but it's no longer updated. https://askubuntu.com/questions/525845/how-to-boot-ubuntu-on-a-mac-from-external-usb-storage
1.0
macOS instructions to boot from external usb hdd with ubuntu already installed (from bootable usb). - while all these steps are great (and accurate) https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-macos#6 if you are targeting an external usb drive for install once you power off / on the computer and hit option on mac there's no way to get into the newly installed hdd. there's been attempts to solve this / but it's no longer updated. https://askubuntu.com/questions/525845/how-to-boot-ubuntu-on-a-mac-from-external-usb-storage
priority
macos instructions to boot from external usb hdd with ubuntu already installed from bootable usb while all these steps are great and accurate if you are targeting an external usb drive for install once you power off on the computer and hit option on mac there s no way to get into the newly installed hdd there s been attempts to solve this but it s no longer updated
1
179,146
6,621,925,454
IssuesEvent
2017-09-21 21:06:29
ArkEcosystem/ark-desktop
https://api.github.com/repos/ArkEcosystem/ark-desktop
closed
Localisation: Contact Address Hover
Priority: Medium Type: Bug
There is an error upon mouse hover on the contact addresses list where the popup on top of "i" symbol is displayed in English (Income:.... Expend:...) even if another language is chosen. Attached and emphasized in red. ![popup](https://user-images.githubusercontent.com/31689626/30103361-b45f3458-92f2-11e7-8275-f7736f043180.jpg)
1.0
Localisation: Contact Address Hover - There is an error upon mouse hover on the contact addresses list where the popup on top of "i" symbol is displayed in English (Income:.... Expend:...) even if another language is chosen. Attached and emphasized in red. ![popup](https://user-images.githubusercontent.com/31689626/30103361-b45f3458-92f2-11e7-8275-f7736f043180.jpg)
priority
localisation contact address hover there is an error upon mouse hover on the contact addresses list where the popup on top of i symbol is displayed in english income expend even if another language is chosen attached and emphasized in red
1
106,582
4,274,537,231
IssuesEvent
2016-07-13 20:50:01
molview/bromium
https://api.github.com/repos/molview/bromium
closed
Implement extensive info logging
debug-tool enhancement priority-medium
Run-time information such as buffer resizes and particle allocation should be logged (selectively).
1.0
Implement extensive info logging - Run-time information such as buffer resizes and particle allocation should be logged (selectively).
priority
implement extensive info logging run time information such as buffer resizes and particle allocation should be logged selectively
1
567,897
16,918,848,000
IssuesEvent
2021-06-25 00:13:38
1Hive/honeyswap
https://api.github.com/repos/1Hive/honeyswap
opened
router prioritizes quickswap over honeyswap when swaps are equivalent
bug priority: medium
**Describe the bug** When prices returned are equal, router chooses quickswap over honeyswap even though a user would save more by using honey (b/c of lower fees on wETh pairs) **To Reproduce** Steps to reproduce the behavior: 1. Go to Honeyswap.org 2. Enter app 3. Choose ETH as swap pair 4. Choose AAVE (assuming market prices are same on both dexes) 5. Router defaulted to quickswap even tho prices were the same and I could save by switching to honeyswap ![bad router bad.PNG](https://images.zenhubusercontent.com/60b150d0aa64fc7a662399c6/b1c28ce1-8bc2-4584-8f9f-6748f32c5b82) **Expected behavior** In the event that price is equivalent, router picks Honeyswap over Quickswap when user would save on fees **Screenshots** Example attached **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Smartphone (please complete the following information):** - Device: [e.g. iPhone6] - OS: [e.g. iOS8.1] - Browser [e.g. stock browser, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here.
1.0
router prioritizes quickswap over honeyswap when swaps are equivalent - **Describe the bug** When prices returned are equal, router chooses quickswap over honeyswap even though a user would save more by using honey (b/c of lower fees on wETh pairs) **To Reproduce** Steps to reproduce the behavior: 1. Go to Honeyswap.org 2. Enter app 3. Choose ETH as swap pair 4. Choose AAVE (assuming market prices are same on both dexes) 5. Router defaulted to quickswap even tho prices were the same and I could save by switching to honeyswap ![bad router bad.PNG](https://images.zenhubusercontent.com/60b150d0aa64fc7a662399c6/b1c28ce1-8bc2-4584-8f9f-6748f32c5b82) **Expected behavior** In the event that price is equivalent, router picks Honeyswap over Quickswap when user would save on fees **Screenshots** Example attached **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Smartphone (please complete the following information):** - Device: [e.g. iPhone6] - OS: [e.g. iOS8.1] - Browser [e.g. stock browser, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here.
priority
router prioritizes quickswap over honeyswap when swaps are equivalent describe the bug when prices returned are equal router chooses quickswap over honeyswap even though a user would save more by using honey b c of lower fees on weth pairs to reproduce steps to reproduce the behavior go to honeyswap org enter app choose eth as swap pair choose aave assuming market prices are same on both dexes router defaulted to quickswap even tho prices were the same and i could save by switching to honeyswap expected behavior in the event that price is equivalent router picks honeyswap over quickswap when user would save on fees screenshots example attached desktop please complete the following information os browser version smartphone please complete the following information device os browser version additional context add any other context about the problem here
1
264,394
8,309,498,285
IssuesEvent
2018-09-24 06:57:40
Bro-Time/Bro-Time-Server
https://api.github.com/repos/Bro-Time/Bro-Time-Server
closed
User Settings
priority: medium
An extension to the Settings Provider (#536) for loading settings associated with a user. - [ ] A user setting definition would need an additional property (indicating they are a user setting), - [ ] and would load when a user loads, rather than when a server does.
1.0
User Settings - An extension to the Settings Provider (#536) for loading settings associated with a user. - [ ] A user setting definition would need an additional property (indicating they are a user setting), - [ ] and would load when a user loads, rather than when a server does.
priority
user settings an extension to the settings provider for loading settings associated with a user a user setting definition would need an additional property indicating they are a user setting and would load when a user loads rather than when a server does
1
827,972
31,805,199,095
IssuesEvent
2023-09-13 13:34:24
Daybringer/gomoku
https://api.github.com/repos/Daybringer/gomoku
opened
Allow fuzzysearch in leaderboard search by username
type: feature priority: medium estimated complexity: low
Should ignore lowercase/uppercase difference
1.0
Allow fuzzysearch in leaderboard search by username - Should ignore lowercase/uppercase difference
priority
allow fuzzysearch in leaderboard search by username should ignore lowercase uppercase difference
1
106,390
4,271,481,918
IssuesEvent
2016-07-13 11:17:49
thesgc/chembiohub_helpdesk
https://api.github.com/repos/thesgc/chembiohub_helpdesk
opened
Search pick from list is confused. On demo in search within Gro for Good rainfall data sample projec
app: The ChemBio Hub platform name: Karen Porter priority: Medium status: New
Search pick from list is confused. On demo in search within Gro for Good rainfall data sample project, I selected 2 stations (Shimba Hills and Associated Sugar Works), then selected precipitation greater than 0.0. The results look correct. However, when I try to edit the station list what appears is a list of precipitation values. when i close the filter then reopen the list is populated correctly. Separately, when I save this search it doesn't save - no project is created. This is high priority @nroam @ddamerell53
1.0
Search pick from list is confused. On demo in search within Gro for Good rainfall data sample projec - Search pick from list is confused. On demo in search within Gro for Good rainfall data sample project, I selected 2 stations (Shimba Hills and Associated Sugar Works), then selected precipitation greater than 0.0. The results look correct. However, when I try to edit the station list what appears is a list of precipitation values. when i close the filter then reopen the list is populated correctly. Separately, when I save this search it doesn't save - no project is created. This is high priority @nroam @ddamerell53
priority
search pick from list is confused on demo in search within gro for good rainfall data sample projec search pick from list is confused on demo in search within gro for good rainfall data sample project i selected stations shimba hills and associated sugar works then selected precipitation greater than the results look correct however when i try to edit the station list what appears is a list of precipitation values when i close the filter then reopen the list is populated correctly separately when i save this search it doesn t save no project is created this is high priority nroam
1
103,522
4,174,610,148
IssuesEvent
2016-06-21 14:33:00
CCAFS/MARLO
https://api.github.com/repos/CCAFS/MARLO
closed
Include continents in the geographical scope
in progress Priority - Medium
Suggested by David Rider-Smith: can’t we have continent and then country?
1.0
Include continents in the geographical scope - Suggested by David Rider-Smith: can’t we have continent and then country?
priority
include continents in the geographical scope suggested by david rider smith can’t we have continent and then country
1
505,343
14,631,864,926
IssuesEvent
2020-12-23 20:54:11
MikeVedsted/JoinMe
https://api.github.com/repos/MikeVedsted/JoinMe
closed
[FEAT] Refactor updateUser service
Priority: Medium :zap: Status: In review :mag: Type: Enhancement :rocket:
**💡 I would really like to solve or include** Clearly and concisely describe the problem you are trying to solve. Currently, back end service has not been updated to accommodate all update options. To implement gender, age and proper address handling, the service needs to be updated. **👶 How would a user describe this?** Describe how users are affected by statements users might make or a user story. Why isn't the information updated, when I press update? **🚀 I'm ready for take off** Before submitting, please mark if you: - [x] Checked that this feature doesn't already exists - [x] Checked that a feature request doesn't already exists - [x] Went through the user flow, and understand the impact - [x] Made sure the request shows why it is important to users but doesn't exaggerate the value
1.0
[FEAT] Refactor updateUser service - **💡 I would really like to solve or include** Clearly and concisely describe the problem you are trying to solve. Currently, back end service has not been updated to accommodate all update options. To implement gender, age and proper address handling, the service needs to be updated. **👶 How would a user describe this?** Describe how users are affected by statements users might make or a user story. Why isn't the information updated, when I press update? **🚀 I'm ready for take off** Before submitting, please mark if you: - [x] Checked that this feature doesn't already exists - [x] Checked that a feature request doesn't already exists - [x] Went through the user flow, and understand the impact - [x] Made sure the request shows why it is important to users but doesn't exaggerate the value
priority
refactor updateuser service 💡 i would really like to solve or include clearly and concisely describe the problem you are trying to solve currently back end service has not been updated to accommodate all update options to implement gender age and proper address handling the service needs to be updated 👶 how would a user describe this describe how users are affected by statements users might make or a user story why isn t the information updated when i press update 🚀 i m ready for take off before submitting please mark if you checked that this feature doesn t already exists checked that a feature request doesn t already exists went through the user flow and understand the impact made sure the request shows why it is important to users but doesn t exaggerate the value
1
82,338
3,605,596,396
IssuesEvent
2016-02-04 06:35:26
dmusican/Elegit
https://api.github.com/repos/dmusican/Elegit
closed
Add explanatory tooltips to all git action buttons
enhancement priority medium
For `push`, `pull`, `commit`, `fetch` buttons, add tooltip explaining what they do
1.0
Add explanatory tooltips to all git action buttons - For `push`, `pull`, `commit`, `fetch` buttons, add tooltip explaining what they do
priority
add explanatory tooltips to all git action buttons for push pull commit fetch buttons add tooltip explaining what they do
1
281,572
8,696,973,019
IssuesEvent
2018-12-04 18:58:42
cvanclee/AnkiOverdriveTagClient
https://api.github.com/repos/cvanclee/AnkiOverdriveTagClient
opened
Add visual block cooldown
enhancement priority: medium
Add some visual feedback to the status of the block command cooldown, since the only way to tell currently is to manually count the seconds or just spamming the button.
1.0
Add visual block cooldown - Add some visual feedback to the status of the block command cooldown, since the only way to tell currently is to manually count the seconds or just spamming the button.
priority
add visual block cooldown add some visual feedback to the status of the block command cooldown since the only way to tell currently is to manually count the seconds or just spamming the button
1
433,759
12,510,074,726
IssuesEvent
2020-06-02 17:59:43
Azure/ARO-RP
https://api.github.com/repos/Azure/ARO-RP
closed
validate RP system logs flowing correctly via syslog
priority-high size-medium
validate that RP system logs are flowing correctly from journald -> rsyslog -> mdsd -> geneva and if not, fix
1.0
validate RP system logs flowing correctly via syslog - validate that RP system logs are flowing correctly from journald -> rsyslog -> mdsd -> geneva and if not, fix
priority
validate rp system logs flowing correctly via syslog validate that rp system logs are flowing correctly from journald rsyslog mdsd geneva and if not fix
1
683,691
23,391,262,067
IssuesEvent
2022-08-11 18:04:55
Automattic/abacus
https://api.github.com/repos/Automattic/abacus
opened
Add suggestion to run for at least 7 days in disable warning
[!priority] medium [type] enhancement [section] experiment management
I think we should add the text "Consider running the experiment for at least 7 days to account for weekly seasonality". This will add a bit of experimenter education into this flow, and help prevent experimenters from drawing conclusions too quickly. Should we also add text saying that "it's okay to disable an experiment early if it is harming the user experience" or something to that effect? What the disable warning currently shows: <img width="621" alt="Screen Shot 2022-08-11 at 11 00 53 AM" src="https://user-images.githubusercontent.com/4505888/184208222-9206f425-f920-40b9-b119-814b4079ba83.png">
1.0
Add suggestion to run for at least 7 days in disable warning - I think we should add the text "Consider running the experiment for at least 7 days to account for weekly seasonality". This will add a bit of experimenter education into this flow, and help prevent experimenters from drawing conclusions too quickly. Should we also add text saying that "it's okay to disable an experiment early if it is harming the user experience" or something to that effect? What the disable warning currently shows: <img width="621" alt="Screen Shot 2022-08-11 at 11 00 53 AM" src="https://user-images.githubusercontent.com/4505888/184208222-9206f425-f920-40b9-b119-814b4079ba83.png">
priority
add suggestion to run for at least days in disable warning i think we should add the text consider running the experiment for at least days to account for weekly seasonality this will add a bit of experimenter education into this flow and help prevent experimenters from drawing conclusions too quickly should we also add text saying that it s okay to disable an experiment early if it is harming the user experience or something to that effect what the disable warning currently shows img width alt screen shot at am src
1
101,597
4,120,525,206
IssuesEvent
2016-06-08 18:12:15
Supadog/DB_iti
https://api.github.com/repos/Supadog/DB_iti
opened
Write getGrades() function in case setting grades fails
Medium priority
In file assign_grades_admin_sel At the moment the newly entered grade is taken from input rather than DB. if a DB error occurs, there is no way for the user to know about this and he may falsely believe that a grade was successfully entered/amended.
1.0
Write getGrades() function in case setting grades fails - In file assign_grades_admin_sel At the moment the newly entered grade is taken from input rather than DB. if a DB error occurs, there is no way for the user to know about this and he may falsely believe that a grade was successfully entered/amended.
priority
write getgrades function in case setting grades fails in file assign grades admin sel at the moment the newly entered grade is taken from input rather than db if a db error occurs there is no way for the user to know about this and he may falsely believe that a grade was successfully entered amended
1
102,805
4,160,964,235
IssuesEvent
2016-06-17 15:02:30
ALitttleBitDifferent/AmbientPrologueBugs
https://api.github.com/repos/ALitttleBitDifferent/AmbientPrologueBugs
opened
Getting stuck in Scaffolding
bug Medium Priority
**Submitted by:** Zil **how to reproduce:** unknown Making them slightly bigger might solve the issue.
1.0
Getting stuck in Scaffolding - **Submitted by:** Zil **how to reproduce:** unknown Making them slightly bigger might solve the issue.
priority
getting stuck in scaffolding submitted by zil how to reproduce unknown making them slightly bigger might solve the issue
1
479,512
13,798,091,504
IssuesEvent
2020-10-10 00:00:06
radical-cybertools/radical.entk
https://api.github.com/repos/radical-cybertools/radical.entk
opened
feature request: job_name attribute in resource description
priority:medium topic:api type:feature
See radical-collaboration/hpc-workflows/issues/122: EnTK should forward `job_name` settings to RP.
1.0
feature request: job_name attribute in resource description - See radical-collaboration/hpc-workflows/issues/122: EnTK should forward `job_name` settings to RP.
priority
feature request job name attribute in resource description see radical collaboration hpc workflows issues entk should forward job name settings to rp
1
656,449
21,730,793,288
IssuesEvent
2022-05-11 11:50:10
HEPData/hepdata
https://api.github.com/repos/HEPData/hepdata
opened
analyses: remove outdated Rivet analyses from database
type: bug priority: high complexity: medium
Now that we can filter by `analysis:rivet` on the QA site, the search results are ordered by number of Rivet analyses, showing that 36 records have more than one Rivet analyses. Many of these do not appear in the current list of Rivet analyses (https://rivet.hepforge.org/analyses.json) that is harvested daily and processed by the [`update_analyses`](https://github.com/HEPData/hepdata/blob/896d02db36c575a2bd927b33fc71c19d0cf1e6f8/hepdata/modules/records/utils/analyses.py#L42) function. Some Rivet analysis are removed with new releases (https://rivet.hepforge.org/anadiffs.txt) while others have been combined. There also seem to be a few duplicates. The current `update_analyses` function only creates new `DataResource` objects. It should be expanded to remove `DataResource` objects corresponding to duplicate, outdated or superseded Rivet analyses that are not specified in the current list of Rivet analyses (https://rivet.hepforge.org/analyses.json). If a `DataResource` object is deleted, the corresponding submission should then be reindexed.
1.0
analyses: remove outdated Rivet analyses from database - Now that we can filter by `analysis:rivet` on the QA site, the search results are ordered by number of Rivet analyses, showing that 36 records have more than one Rivet analyses. Many of these do not appear in the current list of Rivet analyses (https://rivet.hepforge.org/analyses.json) that is harvested daily and processed by the [`update_analyses`](https://github.com/HEPData/hepdata/blob/896d02db36c575a2bd927b33fc71c19d0cf1e6f8/hepdata/modules/records/utils/analyses.py#L42) function. Some Rivet analysis are removed with new releases (https://rivet.hepforge.org/anadiffs.txt) while others have been combined. There also seem to be a few duplicates. The current `update_analyses` function only creates new `DataResource` objects. It should be expanded to remove `DataResource` objects corresponding to duplicate, outdated or superseded Rivet analyses that are not specified in the current list of Rivet analyses (https://rivet.hepforge.org/analyses.json). If a `DataResource` object is deleted, the corresponding submission should then be reindexed.
priority
analyses remove outdated rivet analyses from database now that we can filter by analysis rivet on the qa site the search results are ordered by number of rivet analyses showing that records have more than one rivet analyses many of these do not appear in the current list of rivet analyses that is harvested daily and processed by the function some rivet analysis are removed with new releases while others have been combined there also seem to be a few duplicates the current update analyses function only creates new dataresource objects it should be expanded to remove dataresource objects corresponding to duplicate outdated or superseded rivet analyses that are not specified in the current list of rivet analyses if a dataresource object is deleted the corresponding submission should then be reindexed
1
580,207
17,212,887,837
IssuesEvent
2021-07-19 07:48:36
wazuh/wazuh-documentation
https://api.github.com/repos/wazuh/wazuh-documentation
closed
Fix meta descriptions with rhetorical questions
SEO priority: medium type: refactor
Hello team, this issue aims to modify some meta descriptions that had rhetorical questions. Thanks!
1.0
Fix meta descriptions with rhetorical questions - Hello team, this issue aims to modify some meta descriptions that had rhetorical questions. Thanks!
priority
fix meta descriptions with rhetorical questions hello team this issue aims to modify some meta descriptions that had rhetorical questions thanks
1
201,230
7,027,752,146
IssuesEvent
2017-12-25 02:22:48
JKGDevs/JediKnightGalaxies
https://api.github.com/repos/JKGDevs/JediKnightGalaxies
closed
Shield damage plums do not show up
bug priority:medium
When you break the shield you will get a blue plum of how much health damage you did AFTER breaking the shield, but you will not get any plums until after the shield is broken.
1.0
Shield damage plums do not show up - When you break the shield you will get a blue plum of how much health damage you did AFTER breaking the shield, but you will not get any plums until after the shield is broken.
priority
shield damage plums do not show up when you break the shield you will get a blue plum of how much health damage you did after breaking the shield but you will not get any plums until after the shield is broken
1
401,614
11,795,228,054
IssuesEvent
2020-03-18 08:31:54
thaliawww/concrexit
https://api.github.com/repos/thaliawww/concrexit
opened
Event looks like registered for though on waiting list
bug priority: medium
In GitLab by @JobDoesburg on Feb 17, 2020, 15:49 ### One-sentence description When on the waiting list for an event, it still looks like you are registered for that event. ### Current behaviour / Reproducing the bug - In the calendar stream, the event does appear in your calendar - Cancelling your registration does show the warning that you have to pay a fine, if after the unregistration deadline - In the event overview calendar, the dot in front of the event is colored as if you are registered. ### Expected behaviour - Do not appear in the calendar stream - Do not show a message that you cannot unregister without having to pay a fine, but something different more fit to the situation - In the event overview, show some other, pending-ish, colored dot.
1.0
Event looks like registered for though on waiting list - In GitLab by @JobDoesburg on Feb 17, 2020, 15:49 ### One-sentence description When on the waiting list for an event, it still looks like you are registered for that event. ### Current behaviour / Reproducing the bug - In the calendar stream, the event does appear in your calendar - Cancelling your registration does show the warning that you have to pay a fine, if after the unregistration deadline - In the event overview calendar, the dot in front of the event is colored as if you are registered. ### Expected behaviour - Do not appear in the calendar stream - Do not show a message that you cannot unregister without having to pay a fine, but something different more fit to the situation - In the event overview, show some other, pending-ish, colored dot.
priority
event looks like registered for though on waiting list in gitlab by jobdoesburg on feb one sentence description when on the waiting list for an event it still looks like you are registered for that event current behaviour reproducing the bug in the calendar stream the event does appear in your calendar cancelling your registration does show the warning that you have to pay a fine if after the unregistration deadline in the event overview calendar the dot in front of the event is colored as if you are registered expected behaviour do not appear in the calendar stream do not show a message that you cannot unregister without having to pay a fine but something different more fit to the situation in the event overview show some other pending ish colored dot
1
77,228
3,506,274,525
IssuesEvent
2016-01-08 05:12:28
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
Issue with TrinityCore auth server (BB #292)
migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** mateo0169 **Original Date:** 13.09.2010 15:51:02 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/292 <hr> Since rev.580 (271aa49e0bf8) i've some issues with trinityrealm. Why do you backport Mangos realmd instead of Trinity's one ?
1.0
Issue with TrinityCore auth server (BB #292) - This issue was migrated from bitbucket. **Original Reporter:** mateo0169 **Original Date:** 13.09.2010 15:51:02 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/292 <hr> Since rev.580 (271aa49e0bf8) i've some issues with trinityrealm. Why do you backport Mangos realmd instead of Trinity's one ?
priority
issue with trinitycore auth server bb this issue was migrated from bitbucket original reporter original date gmt original priority major original type bug original state resolved direct link since rev i ve some issues with trinityrealm why do you backport mangos realmd instead of trinity s one
1
57,819
3,084,014,174
IssuesEvent
2015-08-24 12:54:00
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
TODO - Разобраться зачем нам два setBytesShared в AdcHub
bug imported Priority-Medium
_From [Pavel.Pimenov@gmail.com](https://code.google.com/u/Pavel.Pimenov@gmail.com/) on July 24, 2013 16:56:15_ Навеяно коммитом https://code.google.com/p/flylinkdc/source/detail?r=14695 Думаю тут нужно хранить в одном месте и в виде числа чтобы не преобразовывать постоянно из строки Util::toInt64 _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1109_
1.0
TODO - Разобраться зачем нам два setBytesShared в AdcHub - _From [Pavel.Pimenov@gmail.com](https://code.google.com/u/Pavel.Pimenov@gmail.com/) on July 24, 2013 16:56:15_ Навеяно коммитом https://code.google.com/p/flylinkdc/source/detail?r=14695 Думаю тут нужно хранить в одном месте и в виде числа чтобы не преобразовывать постоянно из строки Util::toInt64 _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1109_
priority
todo разобраться зачем нам два setbytesshared в adchub from on july навеяно коммитом думаю тут нужно хранить в одном месте и в виде числа чтобы не преобразовывать постоянно из строки util original issue
1
330,544
10,044,154,796
IssuesEvent
2019-07-19 09:19:36
svof/svof
https://api.github.com/repos/svof/svof
closed
Blood boil support
confirmed enhancement help wanted in-client medium difficulty medium priority up for grabs
Look into adding blood boil which is like shrugging other than it cannot be used with haemeophilia (sp?).
1.0
Blood boil support - Look into adding blood boil which is like shrugging other than it cannot be used with haemeophilia (sp?).
priority
blood boil support look into adding blood boil which is like shrugging other than it cannot be used with haemeophilia sp
1
4,875
2,564,836,893
IssuesEvent
2015-02-06 22:46:16
laravel/framework
https://api.github.com/repos/laravel/framework
closed
[5.0] Do not automatically generate compiled.php (or get better at regenerating it)
medium priority
On a recent update to the latest L5 base project and framework, I encountered an issue where `compiled.php` ended up being stale and was basically from a version prior to my update (#6117). Forgetting that L5 is currently in development, for a couple of reasons, I'd like to suggest that this file not be generated automatically based on a default install of the framework: - If any minor release happens and someone is counting on that file to be regenerated automatically, they could end up inadvertently **not** upgrading their actual framework code. In the rare case of security patches, this could reflect negatively on L5 as many people "stick with defaults" and would never end up with a new `compiled.php`. - During development and in cases such as mine, pulling the latest updates doesn't flush out that file, so I end up with a situation similar to #6117. Addressing this will help avoid some accidental non-bugs from coming up.
1.0
[5.0] Do not automatically generate compiled.php (or get better at regenerating it) - On a recent update to the latest L5 base project and framework, I encountered an issue where `compiled.php` ended up being stale and was basically from a version prior to my update (#6117). Forgetting that L5 is currently in development, for a couple of reasons, I'd like to suggest that this file not be generated automatically based on a default install of the framework: - If any minor release happens and someone is counting on that file to be regenerated automatically, they could end up inadvertently **not** upgrading their actual framework code. In the rare case of security patches, this could reflect negatively on L5 as many people "stick with defaults" and would never end up with a new `compiled.php`. - During development and in cases such as mine, pulling the latest updates doesn't flush out that file, so I end up with a situation similar to #6117. Addressing this will help avoid some accidental non-bugs from coming up.
priority
do not automatically generate compiled php or get better at regenerating it on a recent update to the latest base project and framework i encountered an issue where compiled php ended up being stale and was basically from a version prior to my update forgetting that is currently in development for a couple of reasons i d like to suggest that this file not be generated automatically based on a default install of the framework if any minor release happens and someone is counting on that file to be regenerated automatically they could end up inadvertently not upgrading their actual framework code in the rare case of security patches this could reflect negatively on as many people stick with defaults and would never end up with a new compiled php during development and in cases such as mine pulling the latest updates doesn t flush out that file so i end up with a situation similar to addressing this will help avoid some accidental non bugs from coming up
1
128,459
5,065,077,061
IssuesEvent
2016-12-23 10:18:53
dhowe/AdNauseamV1
https://api.github.com/repos/dhowe/AdNauseamV1
closed
Toolbar icon should perhaps get flat bottom like ABP
3 - Working on it Enhancement PRIORITY: Medium
Still doesn't look right to me (as if chopped off at bottom). I think this would only apply to 16x16 icon ![screen shot 2014-11-11 at 2 50 18 am](https://cloud.githubusercontent.com/assets/737638/4981585/740ed558-690a-11e4-9d4c-f31de4f7dde9.png) <!--- @huboard:{"custom_state":"ready","order":142.0,"milestone_order":142} -->
1.0
Toolbar icon should perhaps get flat bottom like ABP - Still doesn't look right to me (as if chopped off at bottom). I think this would only apply to 16x16 icon ![screen shot 2014-11-11 at 2 50 18 am](https://cloud.githubusercontent.com/assets/737638/4981585/740ed558-690a-11e4-9d4c-f31de4f7dde9.png) <!--- @huboard:{"custom_state":"ready","order":142.0,"milestone_order":142} -->
priority
toolbar icon should perhaps get flat bottom like abp still doesn t look right to me as if chopped off at bottom i think this would only apply to icon huboard custom state ready order milestone order
1
802,137
28,718,732,044
IssuesEvent
2023-04-28 00:43:53
AestheticalZ/Bluechirp
https://api.github.com/repos/AestheticalZ/Bluechirp
closed
Fix the unit tests not working.
bug medium priority backend
Currently, the client and auth tests are broken due to the package upgrades done to the project. They must be fixed. # Tasks - [x] #3 - [x] #4 - [x] #17
1.0
Fix the unit tests not working. - Currently, the client and auth tests are broken due to the package upgrades done to the project. They must be fixed. # Tasks - [x] #3 - [x] #4 - [x] #17
priority
fix the unit tests not working currently the client and auth tests are broken due to the package upgrades done to the project they must be fixed tasks
1
501,892
14,535,979,275
IssuesEvent
2020-12-15 06:46:58
HabitRPG/habitica
https://api.github.com/repos/HabitRPG/habitica
opened
Shop on-hover popup should always disappear when moving mouse off item
help wanted priority: minor section: Market section: Quest Shop section: Seasonal Shop section: Time Travelers type: medium level coding
As reported by @johnjsal (624e48a3-cbea-4bbe-ae44-ca9183f49626): **"when I go to Shops > Quests and click on a quest, the quest description pops up like normal, but when I close this pop-up, the smaller quest text window (the one that appears when you hover over a quest) remains locked on the screen. It won't disappear if you move the cursor around, but it will when you click elsewhere on the screen."** The same applies to Shops > Market and Shops > Time Travellers and probably Shops > Seasonal Shop. The same fix should be applied to all of them (it may be shared code so it's possible that a fix in one place may fix all of them).
1.0
Shop on-hover popup should always disappear when moving mouse off item - As reported by @johnjsal (624e48a3-cbea-4bbe-ae44-ca9183f49626): **"when I go to Shops > Quests and click on a quest, the quest description pops up like normal, but when I close this pop-up, the smaller quest text window (the one that appears when you hover over a quest) remains locked on the screen. It won't disappear if you move the cursor around, but it will when you click elsewhere on the screen."** The same applies to Shops > Market and Shops > Time Travellers and probably Shops > Seasonal Shop. The same fix should be applied to all of them (it may be shared code so it's possible that a fix in one place may fix all of them).
priority
shop on hover popup should always disappear when moving mouse off item as reported by johnjsal cbea when i go to shops quests and click on a quest the quest description pops up like normal but when i close this pop up the smaller quest text window the one that appears when you hover over a quest remains locked on the screen it won t disappear if you move the cursor around but it will when you click elsewhere on the screen the same applies to shops market and shops time travellers and probably shops seasonal shop the same fix should be applied to all of them it may be shared code so it s possible that a fix in one place may fix all of them
1
221,193
7,374,434,199
IssuesEvent
2018-03-13 20:20:53
knowmetools/km-api
https://api.github.com/repos/knowmetools/km-api
closed
Marking profiles as private has no effect
Priority: Medium Status: Available Type: Bug
### Bug Report #### Expected Behavior Even after #261 is fixed, private profiles have no effect on permissions. #### Actual Behavior Profiles should require an additional check for if the requesting user is an admin.
1.0
Marking profiles as private has no effect - ### Bug Report #### Expected Behavior Even after #261 is fixed, private profiles have no effect on permissions. #### Actual Behavior Profiles should require an additional check for if the requesting user is an admin.
priority
marking profiles as private has no effect bug report expected behavior even after is fixed private profiles have no effect on permissions actual behavior profiles should require an additional check for if the requesting user is an admin
1
189,284
6,796,047,536
IssuesEvent
2017-11-01 17:41:04
cranndarach/lifetracker
https://api.github.com/repos/cranndarach/lifetracker
opened
[bug] Cannot find config file
electron nodejs priority/high task-size/medium type/bug
When I use LifeTracker that was installed with `npm i -g lifetracker`, it does not find the config file when the program starts. Thus, the default save directory is not my preferred one, and no data is loaded. The error handling for `loadUserConfig` could also be improved. I know `CSON.load` doesn't want to be Promisified, but it should at least be Promise-wrapped so that its errors can be turned into rejections. Also, there's an unhandled rejection when the data file can't be loaded, and the object is empty.
1.0
[bug] Cannot find config file - When I use LifeTracker that was installed with `npm i -g lifetracker`, it does not find the config file when the program starts. Thus, the default save directory is not my preferred one, and no data is loaded. The error handling for `loadUserConfig` could also be improved. I know `CSON.load` doesn't want to be Promisified, but it should at least be Promise-wrapped so that its errors can be turned into rejections. Also, there's an unhandled rejection when the data file can't be loaded, and the object is empty.
priority
cannot find config file when i use lifetracker that was installed with npm i g lifetracker it does not find the config file when the program starts thus the default save directory is not my preferred one and no data is loaded the error handling for loaduserconfig could also be improved i know cson load doesn t want to be promisified but it should at least be promise wrapped so that its errors can be turned into rejections also there s an unhandled rejection when the data file can t be loaded and the object is empty
1
319,336
9,742,354,926
IssuesEvent
2019-06-02 16:25:58
generative-music/generative.fm
https://api.github.com/repos/generative-music/generative.fm
closed
Observable Streams doesn't record properly
bug low priority medium effort
Observable Streams uses RxJS for timing and doesn't using Tone's Transport system like every other piece on the site, which is why it doesn't record properly. - [x] Update pieces-alex-bainter - [x] Update generative.fm
1.0
Observable Streams doesn't record properly - Observable Streams uses RxJS for timing and doesn't using Tone's Transport system like every other piece on the site, which is why it doesn't record properly. - [x] Update pieces-alex-bainter - [x] Update generative.fm
priority
observable streams doesn t record properly observable streams uses rxjs for timing and doesn t using tone s transport system like every other piece on the site which is why it doesn t record properly update pieces alex bainter update generative fm
1
625,582
19,753,911,765
IssuesEvent
2022-01-15 11:49:07
Seniorendi/AdvancedPeripherals
https://api.github.com/repos/Seniorendi/AdvancedPeripherals
closed
[BUG] BlockReader gives no usefull data
bug Priority-Medium 1.18x
### Descripe When I use the BlockRader, it only spits out useless data. I don't think this is intentional. ### Steps to reproduce 1. set up BlockReader with chest at the front. 2. put something into the chest as a test. 3. control the block reader with `getBlockData` ### Multiplayer? Yes ### Version 0.7.8r (Latest) ### Minecraft, Forge and maybe other related mods versions 39.0.10 ### Screenshots or Videos https://imgur.com/a/KrgM9YR ### Crashlog/log _No response_
1.0
[BUG] BlockReader gives no usefull data - ### Descripe When I use the BlockRader, it only spits out useless data. I don't think this is intentional. ### Steps to reproduce 1. set up BlockReader with chest at the front. 2. put something into the chest as a test. 3. control the block reader with `getBlockData` ### Multiplayer? Yes ### Version 0.7.8r (Latest) ### Minecraft, Forge and maybe other related mods versions 39.0.10 ### Screenshots or Videos https://imgur.com/a/KrgM9YR ### Crashlog/log _No response_
priority
blockreader gives no usefull data descripe when i use the blockrader it only spits out useless data i don t think this is intentional steps to reproduce set up blockreader with chest at the front put something into the chest as a test control the block reader with getblockdata multiplayer yes version latest minecraft forge and maybe other related mods versions screenshots or videos crashlog log no response
1
519,205
15,047,473,167
IssuesEvent
2021-02-03 08:58:16
SAP/xsk
https://api.github.com/repos/SAP/xsk
opened
[Engines] Refactor xssecurestore core service
bug core effort-medium priority-high
Refactor xssecurestore processor to comply to the persistence rules e.g. xsjob
1.0
[Engines] Refactor xssecurestore core service - Refactor xssecurestore processor to comply to the persistence rules e.g. xsjob
priority
refactor xssecurestore core service refactor xssecurestore processor to comply to the persistence rules e g xsjob
1
663,554
22,196,722,993
IssuesEvent
2022-06-07 07:38:30
ever-co/ever-gauzy
https://api.github.com/repos/ever-co/ever-gauzy
closed
Fix: Contact name should displaying inline.
type: bug :bug: priority: medium
## Goal ⭕️ We have to change contact display in the table. If the text it's more wider than column, it should be clipped. ## Actually ![image](https://user-images.githubusercontent.com/41804588/157841174-71f8a2fc-95d9-4f83-8f9e-90d711fe6056.png) ## Expected <img width="699" alt="Screen Shot 2022-05-24 at 10 30 48 AM" src="https://user-images.githubusercontent.com/45813955/169986963-56155e7b-7f06-4df7-ab1e-4e2cfc6014e9.png">
1.0
Fix: Contact name should displaying inline. - ## Goal ⭕️ We have to change contact display in the table. If the text it's more wider than column, it should be clipped. ## Actually ![image](https://user-images.githubusercontent.com/41804588/157841174-71f8a2fc-95d9-4f83-8f9e-90d711fe6056.png) ## Expected <img width="699" alt="Screen Shot 2022-05-24 at 10 30 48 AM" src="https://user-images.githubusercontent.com/45813955/169986963-56155e7b-7f06-4df7-ab1e-4e2cfc6014e9.png">
priority
fix contact name should displaying inline goal ⭕️ we have to change contact display in the table if the text it s more wider than column it should be clipped actually expected img width alt screen shot at am src
1
504,020
14,611,508,355
IssuesEvent
2020-12-22 03:30:20
space-wizards/RobustToolbox
https://api.github.com/repos/space-wizards/RobustToolbox
opened
Make Rsi directions default to 1
Misc: Junior Job Priority: 2-medium Type: Feature
Having the delays default to 1 is convenient for rsis, so would be defaulting the directions to 1 as well. See discord discussion: https://discord.com/channels/310555209753690112/317803472491773953/790778217966993418 Should just be updating this method https://github.com/space-wizards/RobustToolbox/blob/362b7804d9ac4aa0aff12cd987024960f75bd1be/Robust.Client/ResourceManagement/ResourceTypes/RSIResource.cs#L336
1.0
Make Rsi directions default to 1 - Having the delays default to 1 is convenient for rsis, so would be defaulting the directions to 1 as well. See discord discussion: https://discord.com/channels/310555209753690112/317803472491773953/790778217966993418 Should just be updating this method https://github.com/space-wizards/RobustToolbox/blob/362b7804d9ac4aa0aff12cd987024960f75bd1be/Robust.Client/ResourceManagement/ResourceTypes/RSIResource.cs#L336
priority
make rsi directions default to having the delays default to is convenient for rsis so would be defaulting the directions to as well see discord discussion should just be updating this method
1
356,685
10,596,389,465
IssuesEvent
2019-10-09 21:07:53
cuappdev/ithaca-transit-backend
https://api.github.com/repos/cuappdev/ithaca-transit-backend
closed
Add new /delays endpoint
Priority: Medium
currently, iOS gets a delay for each route, which is tedious -- to fix this, iOS is planning to send an array of objects that have tripID and stopID attributes, so the backend should give a set of delays for a set of those objects
1.0
Add new /delays endpoint - currently, iOS gets a delay for each route, which is tedious -- to fix this, iOS is planning to send an array of objects that have tripID and stopID attributes, so the backend should give a set of delays for a set of those objects
priority
add new delays endpoint currently ios gets a delay for each route which is tedious to fix this ios is planning to send an array of objects that have tripid and stopid attributes so the backend should give a set of delays for a set of those objects
1
828,210
31,816,707,871
IssuesEvent
2023-09-13 21:05:30
asastats/channel
https://api.github.com/repos/asastats/channel
closed
Messina.one Liquid Staking - Research and decide about implementation
feature research medium priority addressed
Users get 1 mALGO on every staked ALGO. Tokens are not being locked in a smart contract. https://messina.one/liquid-staking
1.0
Messina.one Liquid Staking - Research and decide about implementation - Users get 1 mALGO on every staked ALGO. Tokens are not being locked in a smart contract. https://messina.one/liquid-staking
priority
messina one liquid staking research and decide about implementation users get malgo on every staked algo tokens are not being locked in a smart contract
1
371,613
10,974,632,581
IssuesEvent
2019-11-29 09:35:10
SOSML/SOSML
https://api.github.com/repos/SOSML/SOSML
closed
`as` keyword is broken.
p5: medium priority s:elaboration t:squid
Currently, the `as` keyword does not seem to work properly in patterns: ``` SML fun random {seedref as ref seed} = 5.0; (* fails to elab, but shouldn't *) fun f (y as x::xs) = x :: y; (* fails to elab, but shouldn't *) ```
1.0
`as` keyword is broken. - Currently, the `as` keyword does not seem to work properly in patterns: ``` SML fun random {seedref as ref seed} = 5.0; (* fails to elab, but shouldn't *) fun f (y as x::xs) = x :: y; (* fails to elab, but shouldn't *) ```
priority
as keyword is broken currently the as keyword does not seem to work properly in patterns sml fun random seedref as ref seed fails to elab but shouldn t fun f y as x xs x y fails to elab but shouldn t
1
96,194
3,966,353,104
IssuesEvent
2016-05-03 12:40:30
BugBusterSWE/MaaS
https://api.github.com/repos/BugBusterSWE/MaaS
opened
UserModel.ts
backend priority:medium Programmer
Scrivere il modulo UserModel.ts. Vedere la documentazione nella ST per i dettagli Link task: [https://bugbusters.teamwork.com/tasks/6538109](https://bugbusters.teamwork.com/tasks/6538109)
1.0
UserModel.ts - Scrivere il modulo UserModel.ts. Vedere la documentazione nella ST per i dettagli Link task: [https://bugbusters.teamwork.com/tasks/6538109](https://bugbusters.teamwork.com/tasks/6538109)
priority
usermodel ts scrivere il modulo usermodel ts vedere la documentazione nella st per i dettagli link task
1
208,719
7,157,694,148
IssuesEvent
2018-01-26 20:53:35
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Eco Configuration Not remembering my Graphics Quality 6.3.1
Medium Priority
when i load i always get this ![snap960](https://user-images.githubusercontent.com/29383891/34735876-edf0da4a-f568-11e7-9e94-6b9177944f1e.png) it Never remembers that i always choose Fantastic ![snap961](https://user-images.githubusercontent.com/29383891/34735897-021cb818-f569-11e7-974e-cde8e1ffabfc.png) this is after exiting Game properly (i would understand this if i had problems closing the game and it not remembering the settings) also could it be possible to have the Version Number showing on this window??
1.0
Eco Configuration Not remembering my Graphics Quality 6.3.1 - when i load i always get this ![snap960](https://user-images.githubusercontent.com/29383891/34735876-edf0da4a-f568-11e7-9e94-6b9177944f1e.png) it Never remembers that i always choose Fantastic ![snap961](https://user-images.githubusercontent.com/29383891/34735897-021cb818-f569-11e7-974e-cde8e1ffabfc.png) this is after exiting Game properly (i would understand this if i had problems closing the game and it not remembering the settings) also could it be possible to have the Version Number showing on this window??
priority
eco configuration not remembering my graphics quality when i load i always get this it never remembers that i always choose fantastic this is after exiting game properly i would understand this if i had problems closing the game and it not remembering the settings also could it be possible to have the version number showing on this window
1
40,989
2,868,961,384
IssuesEvent
2015-06-05 22:13:24
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
closed
allow to preserve a subset of .dart asset files in pub-build.
Area-Pub Priority-Medium Triaged Type-Enhancement
Currently pub-build doesn't include any .dart files in the build/ folder. Maybe we can preserve them if they are under the 'asset/' folder, or if some options are added to the pubspec file?
1.0
allow to preserve a subset of .dart asset files in pub-build. - Currently pub-build doesn't include any .dart files in the build/ folder. Maybe we can preserve them if they are under the 'asset/' folder, or if some options are added to the pubspec file?
priority
allow to preserve a subset of dart asset files in pub build currently pub build doesn t include any dart files in the build folder maybe we can preserve them if they are under the asset folder or if some options are added to the pubspec file
1
364,857
10,774,076,393
IssuesEvent
2019-11-03 01:49:02
AY1920S1-CS2103T-W11-2/main
https://api.github.com/repos/AY1920S1-CS2103T-W11-2/main
closed
As a user, I can export the data to other formats (.ics, etc.)
priority.Medium type.Story
so that I can export the data to other applications.
1.0
As a user, I can export the data to other formats (.ics, etc.) - so that I can export the data to other applications.
priority
as a user i can export the data to other formats ics etc so that i can export the data to other applications
1
449,191
12,964,720,142
IssuesEvent
2020-07-20 20:59:22
Alluxio/alluxio
https://api.github.com/repos/Alluxio/alluxio
closed
The multiple mediumtypes can't work
area-k8s priority-medium type-bug
**Alluxio Version:** 2.3.0 alluxio helm chart: 0.6.8 helm3 **Describe the bug** I install the alluxio with helm with the following value yaml ```yaml tieredstore: levels: - level: 0 alias: HDD mediumtype: MEM,SSD path: /mnt/disk1,/mnt/disk2 type: hostPath quota: 1024G,1024G high: 0.95 low: 0.7 ``` it's expected that mediumtype="MEM,SSD", mediumName resolves to mem-0 and ssd-1. But when I run `helm template -f value.yaml alluxio` The result is ``` volumeMounts: - name: alluxio-domain mountPath: /opt/domain - mountPath: /mnt/disk1 name: mem- - mountPath: /mnt/disk2 name: ssd- ``` But it's illegal. **To Reproduce** Steps to reproduce the behavior (as minimally and precisely as possible) 1. Download the helm chart ``` git clone https://github.com/Alluxio/alluxio.git cd alluxio/integration/kubernetes/helm-chart/ ``` 2.Create the the yaml ```yaml tieredstore: levels: - level: 0 alias: HDD mediumtype: MEM,SSD path: /mnt/disk1,/mnt/disk2 type: hostPath quota: 1024G,1024G high: 0.95 low: 0.7 ``` 3. Generate the template ``` helm template -f value.yaml alluxio ``` **Expected behavior** A clear and concise description of what you expected to happen. **Urgency** Describe the impact and urgency of the bug. **Additional context** Add any other context about the problem here.
1.0
The multiple mediumtypes can't work - **Alluxio Version:** 2.3.0 alluxio helm chart: 0.6.8 helm3 **Describe the bug** I install the alluxio with helm with the following value yaml ```yaml tieredstore: levels: - level: 0 alias: HDD mediumtype: MEM,SSD path: /mnt/disk1,/mnt/disk2 type: hostPath quota: 1024G,1024G high: 0.95 low: 0.7 ``` it's expected that mediumtype="MEM,SSD", mediumName resolves to mem-0 and ssd-1. But when I run `helm template -f value.yaml alluxio` The result is ``` volumeMounts: - name: alluxio-domain mountPath: /opt/domain - mountPath: /mnt/disk1 name: mem- - mountPath: /mnt/disk2 name: ssd- ``` But it's illegal. **To Reproduce** Steps to reproduce the behavior (as minimally and precisely as possible) 1. Download the helm chart ``` git clone https://github.com/Alluxio/alluxio.git cd alluxio/integration/kubernetes/helm-chart/ ``` 2.Create the the yaml ```yaml tieredstore: levels: - level: 0 alias: HDD mediumtype: MEM,SSD path: /mnt/disk1,/mnt/disk2 type: hostPath quota: 1024G,1024G high: 0.95 low: 0.7 ``` 3. Generate the template ``` helm template -f value.yaml alluxio ``` **Expected behavior** A clear and concise description of what you expected to happen. **Urgency** Describe the impact and urgency of the bug. **Additional context** Add any other context about the problem here.
priority
the multiple mediumtypes can t work alluxio version alluxio helm chart describe the bug i install the alluxio with helm with the following value yaml yaml tieredstore levels level alias hdd mediumtype mem ssd path mnt mnt type hostpath quota high low it s expected that mediumtype mem ssd mediumname resolves to mem and ssd but when i run helm template f value yaml alluxio the result is volumemounts name alluxio domain mountpath opt domain mountpath mnt name mem mountpath mnt name ssd but it s illegal to reproduce steps to reproduce the behavior as minimally and precisely as possible download the helm chart git clone cd alluxio integration kubernetes helm chart create the the yaml yaml tieredstore levels level alias hdd mediumtype mem ssd path mnt mnt type hostpath quota high low generate the template helm template f value yaml alluxio expected behavior a clear and concise description of what you expected to happen urgency describe the impact and urgency of the bug additional context add any other context about the problem here
1
398,551
11,741,825,949
IssuesEvent
2020-03-11 22:46:09
thaliawww/concrexit
https://api.github.com/repos/thaliawww/concrexit
closed
Link naar event in ical
priority: medium
In GitLab by wboumans on Dec 13, 2016, 13:18 Het zou fijn zijn om vanuit de ical meteen een link te krijgen naar een evenement.
1.0
Link naar event in ical - In GitLab by wboumans on Dec 13, 2016, 13:18 Het zou fijn zijn om vanuit de ical meteen een link te krijgen naar een evenement.
priority
link naar event in ical in gitlab by wboumans on dec het zou fijn zijn om vanuit de ical meteen een link te krijgen naar een evenement
1
222,887
7,440,547,206
IssuesEvent
2018-03-27 10:26:21
cilium/cilium
https://api.github.com/repos/cilium/cilium
opened
Refactor subprocess supervisors into one place
area/daemon area/monitor kind/enhancement priority/medium
cilium-agent spawns a number of subprocesses: 1- monitor (https://github.com/cilium/cilium/blob/master/monitor/launch/launcher.go#L75) 2- health (https://github.com/cilium/cilium/blob/master/cilium-health/launch/launcher.go#L46) 3- envoy (https://github.com/cilium/cilium/blob/master/pkg/envoy/envoy.go#L127) (1 & 2 use https://sourcegraph.com/github.com/cilium/cilium@6b37ad65e156c0b88f1f35e677a3d3fa8dc5795d/-/blob/pkg/launcher/launcher.go#L39) Each currently has it's own supervisor code to restart it or report on it. They each do some of: - start a subprocess - restart it if it exits - shut down the child on agent exit - pre/post spawn cleanup - wire up child stdout/stderr It would be good to have a single way to spawn child processes with a more structured set of callbacks for each lifecycle step. Further in the future we will also need to support running these processes as separate non-child processes (for example, as another container, pod or systemd unit). Some features would be: 1- us a single package to manage such processes (pkg/launcher is a start, perhaps) 2- clear configuration on what to do with stdin, stdout and stderr for the child 3- hooks for lifecycle steps: pre-spawn, post-spawn, pre-shutdown, post-shutdown, post-unexpected-exit (or whatever makes sense) 4- consistent status checking: isRunning, getStdOut etc. (or what make sense) 5- support different ways to run this code. This is the least clear aspect of this since some lifecycle events will not correlate and stdout/in/err may not be accessible manageable directly. The goal is not to make the same interface but to present something usable. 6- It might be worthwhile to use the controller package directly, or mimic the reporting mechanisms it has to export that to cilium status. This data is already present there, however, in ways specific to each subsystem (envoy, monitor, health). I'm not sure if it's a good idea to try and build a real supervisor but I don't see how to avoid that in the short term since the current implementations do exactly that. Once they are all behind one interface it might be easier to reuse and existing package to do this (or use that package directly and avoid building our own).
1.0
Refactor subprocess supervisors into one place - cilium-agent spawns a number of subprocesses: 1- monitor (https://github.com/cilium/cilium/blob/master/monitor/launch/launcher.go#L75) 2- health (https://github.com/cilium/cilium/blob/master/cilium-health/launch/launcher.go#L46) 3- envoy (https://github.com/cilium/cilium/blob/master/pkg/envoy/envoy.go#L127) (1 & 2 use https://sourcegraph.com/github.com/cilium/cilium@6b37ad65e156c0b88f1f35e677a3d3fa8dc5795d/-/blob/pkg/launcher/launcher.go#L39) Each currently has it's own supervisor code to restart it or report on it. They each do some of: - start a subprocess - restart it if it exits - shut down the child on agent exit - pre/post spawn cleanup - wire up child stdout/stderr It would be good to have a single way to spawn child processes with a more structured set of callbacks for each lifecycle step. Further in the future we will also need to support running these processes as separate non-child processes (for example, as another container, pod or systemd unit). Some features would be: 1- us a single package to manage such processes (pkg/launcher is a start, perhaps) 2- clear configuration on what to do with stdin, stdout and stderr for the child 3- hooks for lifecycle steps: pre-spawn, post-spawn, pre-shutdown, post-shutdown, post-unexpected-exit (or whatever makes sense) 4- consistent status checking: isRunning, getStdOut etc. (or what make sense) 5- support different ways to run this code. This is the least clear aspect of this since some lifecycle events will not correlate and stdout/in/err may not be accessible manageable directly. The goal is not to make the same interface but to present something usable. 6- It might be worthwhile to use the controller package directly, or mimic the reporting mechanisms it has to export that to cilium status. This data is already present there, however, in ways specific to each subsystem (envoy, monitor, health). I'm not sure if it's a good idea to try and build a real supervisor but I don't see how to avoid that in the short term since the current implementations do exactly that. Once they are all behind one interface it might be easier to reuse and existing package to do this (or use that package directly and avoid building our own).
priority
refactor subprocess supervisors into one place cilium agent spawns a number of subprocesses monitor health envoy use each currently has it s own supervisor code to restart it or report on it they each do some of start a subprocess restart it if it exits shut down the child on agent exit pre post spawn cleanup wire up child stdout stderr it would be good to have a single way to spawn child processes with a more structured set of callbacks for each lifecycle step further in the future we will also need to support running these processes as separate non child processes for example as another container pod or systemd unit some features would be us a single package to manage such processes pkg launcher is a start perhaps clear configuration on what to do with stdin stdout and stderr for the child hooks for lifecycle steps pre spawn post spawn pre shutdown post shutdown post unexpected exit or whatever makes sense consistent status checking isrunning getstdout etc or what make sense support different ways to run this code this is the least clear aspect of this since some lifecycle events will not correlate and stdout in err may not be accessible manageable directly the goal is not to make the same interface but to present something usable it might be worthwhile to use the controller package directly or mimic the reporting mechanisms it has to export that to cilium status this data is already present there however in ways specific to each subsystem envoy monitor health i m not sure if it s a good idea to try and build a real supervisor but i don t see how to avoid that in the short term since the current implementations do exactly that once they are all behind one interface it might be easier to reuse and existing package to do this or use that package directly and avoid building our own
1
78,130
3,509,476,988
IssuesEvent
2016-01-08 22:57:35
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
Shaman and Druid. (BB #899)
Category: Spells migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** bewtihozzy **Original Date:** 23.05.2015 15:59:46 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** invalid **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/899 <hr> Shaman - Ghost Wolf form does not make him as a Beast so Scare beast/Hibernate wont work on him because it says invalid target. Same happens with druid's Cat and Bear form. Aquatic form not tested.
1.0
Shaman and Druid. (BB #899) - This issue was migrated from bitbucket. **Original Reporter:** bewtihozzy **Original Date:** 23.05.2015 15:59:46 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** invalid **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/899 <hr> Shaman - Ghost Wolf form does not make him as a Beast so Scare beast/Hibernate wont work on him because it says invalid target. Same happens with druid's Cat and Bear form. Aquatic form not tested.
priority
shaman and druid bb this issue was migrated from bitbucket original reporter bewtihozzy original date gmt original priority major original type bug original state invalid direct link shaman ghost wolf form does not make him as a beast so scare beast hibernate wont work on him because it says invalid target same happens with druid s cat and bear form aquatic form not tested
1
669,624
22,634,265,087
IssuesEvent
2022-06-30 17:17:51
creativecommons/search
https://api.github.com/repos/creativecommons/search
closed
feedback from user
🟨 priority: medium ⛔️ status: discarded 🛠 goal: fix 🕹 aspect: interface
Here's a message someone wrote to info@ to give some feedback to search. ============== Hi, Some feedback: - good concept - helpful way to search on multiple sources, if it actually works - bug: if you search for something, and it doesn't find anything, you can just enter in that results page a new query, and it'll search with the same parameters. That is good. However, if it does find something, you can still enter something - but no matter what you enter, it returns you to the empty search form. Seems unintended behavior. - Add a link in the request for feedback :) - Wikimedia Commons is missing - a big repository that would make a lot of sense to tap into... good for me because I am looking for images to add to Wikimedia Commons, but perhaps less perfect for externals :) - The page breaks when privacy badger is active. That is usually a bad sign for the amount of data you're trying to collect. Thanks, and keep up the good work,
1.0
feedback from user - Here's a message someone wrote to info@ to give some feedback to search. ============== Hi, Some feedback: - good concept - helpful way to search on multiple sources, if it actually works - bug: if you search for something, and it doesn't find anything, you can just enter in that results page a new query, and it'll search with the same parameters. That is good. However, if it does find something, you can still enter something - but no matter what you enter, it returns you to the empty search form. Seems unintended behavior. - Add a link in the request for feedback :) - Wikimedia Commons is missing - a big repository that would make a lot of sense to tap into... good for me because I am looking for images to add to Wikimedia Commons, but perhaps less perfect for externals :) - The page breaks when privacy badger is active. That is usually a bad sign for the amount of data you're trying to collect. Thanks, and keep up the good work,
priority
feedback from user here s a message someone wrote to info to give some feedback to search hi some feedback good concept helpful way to search on multiple sources if it actually works bug if you search for something and it doesn t find anything you can just enter in that results page a new query and it ll search with the same parameters that is good however if it does find something you can still enter something but no matter what you enter it returns you to the empty search form seems unintended behavior add a link in the request for feedback wikimedia commons is missing a big repository that would make a lot of sense to tap into good for me because i am looking for images to add to wikimedia commons but perhaps less perfect for externals the page breaks when privacy badger is active that is usually a bad sign for the amount of data you re trying to collect thanks and keep up the good work
1
136,414
5,281,957,455
IssuesEvent
2017-02-07 17:39:00
rwth-afu/RustPager
https://api.github.com/repos/rwth-afu/RustPager
closed
ADF7012 not ready
Priority: Medium Type: Bug
info Received Message { id: 0, mtype: AlphaNum, speed: Baud(1200), addr: 12345, func: AlphaNum, data: "1fsfasfhjkas hfjklahskj hfklashjkldfhajkshf jkahsjkdfhjklashdfasdfa" } info Transmitting... info Transmission completed. info Received Message { id: 0, mtype: AlphaNum, speed: Baud(1200), addr: 12345, func: AlphaNum, data: "ashjk hfjkal hsdjkfhakjs lhdkfjl hasjkhfjklashjkdfhlkajl shjkflhaskjlhdjkf lhasdfasdfasdfa" } info Transmitting... warn ADF7012 not ready
1.0
ADF7012 not ready - info Received Message { id: 0, mtype: AlphaNum, speed: Baud(1200), addr: 12345, func: AlphaNum, data: "1fsfasfhjkas hfjklahskj hfklashjkldfhajkshf jkahsjkdfhjklashdfasdfa" } info Transmitting... info Transmission completed. info Received Message { id: 0, mtype: AlphaNum, speed: Baud(1200), addr: 12345, func: AlphaNum, data: "ashjk hfjkal hsdjkfhakjs lhdkfjl hasjkhfjklashjkdfhlkajl shjkflhaskjlhdjkf lhasdfasdfasdfa" } info Transmitting... warn ADF7012 not ready
priority
not ready info received message id mtype alphanum speed baud addr func alphanum data hfjklahskj hfklashjkldfhajkshf jkahsjkdfhjklashdfasdfa info transmitting info transmission completed info received message id mtype alphanum speed baud addr func alphanum data ashjk hfjkal hsdjkfhakjs lhdkfjl hasjkhfjklashjkdfhlkajl shjkflhaskjlhdjkf lhasdfasdfasdfa info transmitting warn not ready
1
163,484
6,199,147,484
IssuesEvent
2017-07-05 20:52:20
Polymer/polymer-bundler
https://api.github.com/repos/Polymer/polymer-bundler
closed
--out-dir option for bin/polymer-bundler doesn't seem to handle absolute paths
Priority: Medium Source: Hooli Status: Review Needed Type: Bug
This should be as easy as changing the line: ```typescript const out = pathLib.join(process.cwd(), outDir, url); ``` to ```typescript const out = pathLib.resolve(pathLib.join(outDir, url)); ```
1.0
--out-dir option for bin/polymer-bundler doesn't seem to handle absolute paths - This should be as easy as changing the line: ```typescript const out = pathLib.join(process.cwd(), outDir, url); ``` to ```typescript const out = pathLib.resolve(pathLib.join(outDir, url)); ```
priority
out dir option for bin polymer bundler doesn t seem to handle absolute paths this should be as easy as changing the line typescript const out pathlib join process cwd outdir url to typescript const out pathlib resolve pathlib join outdir url
1
205,913
7,107,235,110
IssuesEvent
2018-01-16 19:15:38
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
closed
Cluster maintenance section isn't too clear
Priority: Medium Type: Feature / Enhancement
The section that talks about putting a node in maintenance isn't very clear since it doesn't contain any service start/stop/restarts to make the cluster aware of the changes. We could update the doc, put I thought instead of putting the necessary commands to reflect the maintenance on the system On maintenance on: - systemctl stop monit (fail open) - /usr/local/pf/bin/pfcmd service pf stop - systemctl stop packetfence-mariadb On maintenance off: - systemctl start packetfence-mariadb - /usr/local/pf/bin/pfcmd service pf restart - systemctl start monit Not sure if 7.4 or 8.0, we shall see how it goes
1.0
Cluster maintenance section isn't too clear - The section that talks about putting a node in maintenance isn't very clear since it doesn't contain any service start/stop/restarts to make the cluster aware of the changes. We could update the doc, put I thought instead of putting the necessary commands to reflect the maintenance on the system On maintenance on: - systemctl stop monit (fail open) - /usr/local/pf/bin/pfcmd service pf stop - systemctl stop packetfence-mariadb On maintenance off: - systemctl start packetfence-mariadb - /usr/local/pf/bin/pfcmd service pf restart - systemctl start monit Not sure if 7.4 or 8.0, we shall see how it goes
priority
cluster maintenance section isn t too clear the section that talks about putting a node in maintenance isn t very clear since it doesn t contain any service start stop restarts to make the cluster aware of the changes we could update the doc put i thought instead of putting the necessary commands to reflect the maintenance on the system on maintenance on systemctl stop monit fail open usr local pf bin pfcmd service pf stop systemctl stop packetfence mariadb on maintenance off systemctl start packetfence mariadb usr local pf bin pfcmd service pf restart systemctl start monit not sure if or we shall see how it goes
1
58,957
3,098,022,963
IssuesEvent
2015-08-28 08:13:49
tconsts/pefladdons
https://api.github.com/repos/tconsts/pefladdons
closed
Concatenate pefllinksostav.user.js and peflsostav.user.js
auto-migrated Priority-Medium Type-Improvment
``` До того как отдавать c новыми урлами, надо объединить для состава эти файлики - чтоб люди ставили только один. ``` Original issue reported on code.google.com by `tconsts` on 11 Nov 2010 at 5:33
1.0
Concatenate pefllinksostav.user.js and peflsostav.user.js - ``` До того как отдавать c новыми урлами, надо объединить для состава эти файлики - чтоб люди ставили только один. ``` Original issue reported on code.google.com by `tconsts` on 11 Nov 2010 at 5:33
priority
concatenate pefllinksostav user js and peflsostav user js до того как отдавать c новыми урлами надо объединить для состава эти файлики чтоб люди ставили только один original issue reported on code google com by tconsts on nov at
1
648,659
21,191,266,205
IssuesEvent
2022-04-08 17:42:09
grage03/prello
https://api.github.com/repos/grage03/prello
closed
Anchor
frontend medium priority
Need to create a component that, by clicking on it, will move the user's screen to the desired block.
1.0
Anchor - Need to create a component that, by clicking on it, will move the user's screen to the desired block.
priority
anchor need to create a component that by clicking on it will move the user s screen to the desired block
1
166,943
6,320,433,113
IssuesEvent
2017-07-25 01:36:25
RobotLocomotion/drake
https://api.github.com/repos/RobotLocomotion/drake
closed
Remove some MATLAB-based examples and libraries
configuration: matlab priority: medium team: software core type: cleanup
(This is a meta-issue to help consolidate and track the PR train.) Many of Drake's older mechanisms for MATLAB support are being removed, including some core libraries in `drake/matlab/...` as well as the examples that depend on them. Some of them have already been ported to the newer C++ and/or pybind11 infrastructure, but some have not. Even though not everything is ported yet, we are removing the older software to accelerate the push to the new codebase. The old software is still available at https://github.com/RobotLocomotion/drake/tree/last_sha_with_original_matlab.
1.0
Remove some MATLAB-based examples and libraries - (This is a meta-issue to help consolidate and track the PR train.) Many of Drake's older mechanisms for MATLAB support are being removed, including some core libraries in `drake/matlab/...` as well as the examples that depend on them. Some of them have already been ported to the newer C++ and/or pybind11 infrastructure, but some have not. Even though not everything is ported yet, we are removing the older software to accelerate the push to the new codebase. The old software is still available at https://github.com/RobotLocomotion/drake/tree/last_sha_with_original_matlab.
priority
remove some matlab based examples and libraries this is a meta issue to help consolidate and track the pr train many of drake s older mechanisms for matlab support are being removed including some core libraries in drake matlab as well as the examples that depend on them some of them have already been ported to the newer c and or infrastructure but some have not even though not everything is ported yet we are removing the older software to accelerate the push to the new codebase the old software is still available at
1
109,785
4,413,913,256
IssuesEvent
2016-08-13 03:56:34
WalkBikeCupertino/v2.0
https://api.github.com/repos/WalkBikeCupertino/v2.0
closed
Make front page pictures all the same size
enhancement P1 - Medium Priority
[Jennifer 8/3/2016] Can we make the pictures on the front page all the same size or height, and the boxes too? (The boxes at the bottom)
1.0
Make front page pictures all the same size - [Jennifer 8/3/2016] Can we make the pictures on the front page all the same size or height, and the boxes too? (The boxes at the bottom)
priority
make front page pictures all the same size can we make the pictures on the front page all the same size or height and the boxes too the boxes at the bottom
1
229,959
7,602,488,951
IssuesEvent
2018-04-29 01:47:07
HabitRPG/habitica
https://api.github.com/repos/HabitRPG/habitica
opened
Lunar Battle quest scrolls show wrong unlock conditions
help wanted priority: medium section: Quest Shop type: medium level coding
The three Lunar Battle quest scrolls are unlocked after a certain number of check-ins. However for the second and third scrolls, the Quest Shop says that you can unlock them by completing the preceding quests, which is wrong, as well as saying they unlock after check-ins, which is correct. In the two screenshots below, only the first sentence is correct. The second sentence should not appear. ![image](https://user-images.githubusercontent.com/1495809/39402445-c5d09c2c-4ba2-11e8-8bbd-0bd94f51f4e2.png) ![image](https://user-images.githubusercontent.com/1495809/39402447-d8822868-4ba2-11e8-935b-6f5abff754f9.png) For comparison, the text for the first Lunar Battle quest scroll is correct: ![image](https://user-images.githubusercontent.com/1495809/39402449-f23494f8-4ba2-11e8-9614-1f7417556e60.png)
1.0
Lunar Battle quest scrolls show wrong unlock conditions - The three Lunar Battle quest scrolls are unlocked after a certain number of check-ins. However for the second and third scrolls, the Quest Shop says that you can unlock them by completing the preceding quests, which is wrong, as well as saying they unlock after check-ins, which is correct. In the two screenshots below, only the first sentence is correct. The second sentence should not appear. ![image](https://user-images.githubusercontent.com/1495809/39402445-c5d09c2c-4ba2-11e8-8bbd-0bd94f51f4e2.png) ![image](https://user-images.githubusercontent.com/1495809/39402447-d8822868-4ba2-11e8-935b-6f5abff754f9.png) For comparison, the text for the first Lunar Battle quest scroll is correct: ![image](https://user-images.githubusercontent.com/1495809/39402449-f23494f8-4ba2-11e8-9614-1f7417556e60.png)
priority
lunar battle quest scrolls show wrong unlock conditions the three lunar battle quest scrolls are unlocked after a certain number of check ins however for the second and third scrolls the quest shop says that you can unlock them by completing the preceding quests which is wrong as well as saying they unlock after check ins which is correct in the two screenshots below only the first sentence is correct the second sentence should not appear for comparison the text for the first lunar battle quest scroll is correct
1
174,103
6,536,596,861
IssuesEvent
2017-08-31 18:46:24
opencaching/opencaching-pl
https://api.github.com/repos/opencaching/opencaching-pl
closed
error in badges calculation ?
Component_Badges Priority_Medium Type_Needs_clarify (unknown)
from mail to ocpl team: > > Chciałbym zgłosić (zapewne już o nim wiecie) błąd w przyznawaniu oznak tropicieli. Mianowicie, posiadam na swoim profilu odznakę tropiciel podlaski, mimo iż nigdy nie byłem i nie szukałem keszy w tym rejonie. Najprawdopodobniej błąd jest związany z przeniesieniem jednego z mobilniaków, którego zaliczyłem w Woj. Dolnośląskim. Warto rozważyć inny model naliczania odznak dla mobilniaków lub ich wyłączenie z systemu odznak. > > Dzięki za wysłuchanie, > viajero71 > https://opencaching.pl/viewprofile.php?userid=83320
1.0
error in badges calculation ? - from mail to ocpl team: > > Chciałbym zgłosić (zapewne już o nim wiecie) błąd w przyznawaniu oznak tropicieli. Mianowicie, posiadam na swoim profilu odznakę tropiciel podlaski, mimo iż nigdy nie byłem i nie szukałem keszy w tym rejonie. Najprawdopodobniej błąd jest związany z przeniesieniem jednego z mobilniaków, którego zaliczyłem w Woj. Dolnośląskim. Warto rozważyć inny model naliczania odznak dla mobilniaków lub ich wyłączenie z systemu odznak. > > Dzięki za wysłuchanie, > viajero71 > https://opencaching.pl/viewprofile.php?userid=83320
priority
error in badges calculation from mail to ocpl team chciałbym zgłosić zapewne już o nim wiecie błąd w przyznawaniu oznak tropicieli mianowicie posiadam na swoim profilu odznakę tropiciel podlaski mimo iż nigdy nie byłem i nie szukałem keszy w tym rejonie najprawdopodobniej błąd jest związany z przeniesieniem jednego z mobilniaków którego zaliczyłem w woj dolnośląskim warto rozważyć inny model naliczania odznak dla mobilniaków lub ich wyłączenie z systemu odznak dzięki za wysłuchanie
1
205,110
7,093,943,869
IssuesEvent
2018-01-12 22:52:55
Cyberjusticelab/JusticeAI
https://api.github.com/repos/Cyberjusticelab/JusticeAI
closed
Adding FAQ Questions from RDL
Chatbot Points (8) Priority (Medium) Risk (Medium)
*Description* As a user, I would like the system to respond to questions listed in the Regie du Logement FAQ *Scope of Work* - [x] Scrape all question/answers from https://www.rdl.gouv.qc.ca/en/faqs - [x] Group common scenarios, and split into different "fact" values. i.e. the following questions: "If a tenant refuses the rent increase asked by the landlord, can he force the tenant to move?" and "Can a tenant refuse the rent increase asked by the landlord?" can map to facts "refuse_to_move" and "refuse_rent_increase" - [x] Possibly limit to this user story to the top 10 FAQ questions *Demo requirement* 1. User asks a question found in the FAQ 2. The system answers with the correct answer *Acceptance Criteria* -
1.0
Adding FAQ Questions from RDL - *Description* As a user, I would like the system to respond to questions listed in the Regie du Logement FAQ *Scope of Work* - [x] Scrape all question/answers from https://www.rdl.gouv.qc.ca/en/faqs - [x] Group common scenarios, and split into different "fact" values. i.e. the following questions: "If a tenant refuses the rent increase asked by the landlord, can he force the tenant to move?" and "Can a tenant refuse the rent increase asked by the landlord?" can map to facts "refuse_to_move" and "refuse_rent_increase" - [x] Possibly limit to this user story to the top 10 FAQ questions *Demo requirement* 1. User asks a question found in the FAQ 2. The system answers with the correct answer *Acceptance Criteria* -
priority
adding faq questions from rdl description as a user i would like the system to respond to questions listed in the regie du logement faq scope of work scrape all question answers from group common scenarios and split into different fact values i e the following questions if a tenant refuses the rent increase asked by the landlord can he force the tenant to move and can a tenant refuse the rent increase asked by the landlord can map to facts refuse to move and refuse rent increase possibly limit to this user story to the top faq questions demo requirement user asks a question found in the faq the system answers with the correct answer acceptance criteria
1
20,579
2,622,853,788
IssuesEvent
2015-03-04 08:06:40
max99x/pagemon-chrome-ext
https://api.github.com/repos/max99x/pagemon-chrome-ext
closed
Page Monitor dismisses Chrome "Crash Restore"
auto-migrated Priority-Medium
``` If, when Chrome starts after a crash, Page Monitor detects changes in monitored pages, the alert generated by Page Monitor somehow dismisses the 'restore' button at the top of the Chrome window. :( ``` Original issue reported on code.google.com by `aj.oster...@googlemail.com` on 23 Oct 2013 at 4:27
1.0
Page Monitor dismisses Chrome "Crash Restore" - ``` If, when Chrome starts after a crash, Page Monitor detects changes in monitored pages, the alert generated by Page Monitor somehow dismisses the 'restore' button at the top of the Chrome window. :( ``` Original issue reported on code.google.com by `aj.oster...@googlemail.com` on 23 Oct 2013 at 4:27
priority
page monitor dismisses chrome crash restore if when chrome starts after a crash page monitor detects changes in monitored pages the alert generated by page monitor somehow dismisses the restore button at the top of the chrome window original issue reported on code google com by aj oster googlemail com on oct at
1
293,481
8,996,421,168
IssuesEvent
2019-02-02 01:18:43
Baystation12/Baystation12
https://api.github.com/repos/Baystation12/Baystation12
closed
Tendon cutting bits and pieces
BINGO! Bug :bug: Oversight :bug: Priority: Medium
<!-- If a specific field doesn't apply, remove it! Anything inside tags like these is a comment and will not be displayed in the final issue. Be careful not to write inside them! Joke or spammed issues can and will result in punishment. PUT YOUR ANSWERS ON THE BLANK LINES BELOW THE HEADERS (The lines with four #'s) Don't edit them or delete them it's part of the formatting --> #### Description of issue 1. Tendon cut messages report the datum path instead of the victim. 2. Tendon cutting causes no wounds, attack_tendons and sever_tendon just flip the flag on. ![https://i.imgur.com/WAPF48D.png](https://i.imgur.com/WAPF48D.png) #### Difference between expected and actual behavior -- #### Steps to reproduce -- #### Specific information for locating <!-- e.g. an object name, paste specific message outputs... --> -- #### Length of time in which bug has been known to occur <!-- Be specific if you approximately know the time it's been occurring for—this can speed up finding the source. If you're not sure about it, tell us too! --> -- #### Client version, Server revision & Game ID <!-- Found with the "Show server revision" verb in the OOC tab in game. --> Client Version: 511 Server Revision: 32a6590a5c3bfd16347b2f0a2a463d59deaf35df - dev - 2018-07-22 Game ID: bVt-cw1m Current map: SEV Torch #### Issue bingo Please check whatever applies. More checkboxes checked increase your chances of the issue being looked at sooner. <!-- Check these by writing an x inside the [ ] (like this: [x])--> <!-- Don't forget to remove the space between the brackets, or it won't work! --> - [x] Issue could be reproduced at least once - [x] Issue could be reproduced by different players - [x] Issue could be reproduced in multiple rounds - [x] Issue happened in a recent (less than 7 days ago) round - [x] [Couldn't find an existing issue about this](https://github.com/Baystation12/Baystation12/issues)
1.0
Tendon cutting bits and pieces - <!-- If a specific field doesn't apply, remove it! Anything inside tags like these is a comment and will not be displayed in the final issue. Be careful not to write inside them! Joke or spammed issues can and will result in punishment. PUT YOUR ANSWERS ON THE BLANK LINES BELOW THE HEADERS (The lines with four #'s) Don't edit them or delete them it's part of the formatting --> #### Description of issue 1. Tendon cut messages report the datum path instead of the victim. 2. Tendon cutting causes no wounds, attack_tendons and sever_tendon just flip the flag on. ![https://i.imgur.com/WAPF48D.png](https://i.imgur.com/WAPF48D.png) #### Difference between expected and actual behavior -- #### Steps to reproduce -- #### Specific information for locating <!-- e.g. an object name, paste specific message outputs... --> -- #### Length of time in which bug has been known to occur <!-- Be specific if you approximately know the time it's been occurring for—this can speed up finding the source. If you're not sure about it, tell us too! --> -- #### Client version, Server revision & Game ID <!-- Found with the "Show server revision" verb in the OOC tab in game. --> Client Version: 511 Server Revision: 32a6590a5c3bfd16347b2f0a2a463d59deaf35df - dev - 2018-07-22 Game ID: bVt-cw1m Current map: SEV Torch #### Issue bingo Please check whatever applies. More checkboxes checked increase your chances of the issue being looked at sooner. <!-- Check these by writing an x inside the [ ] (like this: [x])--> <!-- Don't forget to remove the space between the brackets, or it won't work! --> - [x] Issue could be reproduced at least once - [x] Issue could be reproduced by different players - [x] Issue could be reproduced in multiple rounds - [x] Issue happened in a recent (less than 7 days ago) round - [x] [Couldn't find an existing issue about this](https://github.com/Baystation12/Baystation12/issues)
priority
tendon cutting bits and pieces if a specific field doesn t apply remove it anything inside tags like these is a comment and will not be displayed in the final issue be careful not to write inside them joke or spammed issues can and will result in punishment put your answers on the blank lines below the headers the lines with four s don t edit them or delete them it s part of the formatting description of issue tendon cut messages report the datum path instead of the victim tendon cutting causes no wounds attack tendons and sever tendon just flip the flag on difference between expected and actual behavior steps to reproduce specific information for locating length of time in which bug has been known to occur be specific if you approximately know the time it s been occurring for—this can speed up finding the source if you re not sure about it tell us too client version server revision game id client version server revision dev game id bvt current map sev torch issue bingo please check whatever applies more checkboxes checked increase your chances of the issue being looked at sooner issue could be reproduced at least once issue could be reproduced by different players issue could be reproduced in multiple rounds issue happened in a recent less than days ago round
1
108,060
4,326,234,066
IssuesEvent
2016-07-26 04:57:24
ryleykimmel/brandywine
https://api.github.com/repos/ryleykimmel/brandywine
opened
Add a built in RSA keygenerator
enhancement/suggestion high priority medium
RSA keys should: - Generate user friendly warnings and errors - Using some [PKI](https://en.wikipedia.org/wiki/Public_key_infrastructure) to manage key-pair certs - Up to 1,024 bits, this is the maximum modulus length the RS client can naively support - (Maybe) add support for storing public keys using the PKI and adding a module to the client to parse it - See [this](https://en.wikipedia.org/wiki/X.509#Certificate_filename_extensions) for common certificate storage types
1.0
Add a built in RSA keygenerator - RSA keys should: - Generate user friendly warnings and errors - Using some [PKI](https://en.wikipedia.org/wiki/Public_key_infrastructure) to manage key-pair certs - Up to 1,024 bits, this is the maximum modulus length the RS client can naively support - (Maybe) add support for storing public keys using the PKI and adding a module to the client to parse it - See [this](https://en.wikipedia.org/wiki/X.509#Certificate_filename_extensions) for common certificate storage types
priority
add a built in rsa keygenerator rsa keys should generate user friendly warnings and errors using some to manage key pair certs up to bits this is the maximum modulus length the rs client can naively support maybe add support for storing public keys using the pki and adding a module to the client to parse it see for common certificate storage types
1
423,926
12,303,856,237
IssuesEvent
2020-05-11 19:26:45
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
opened
Forums - when viewing another user's forum replies, it says "My Replies"
bug priority: medium
**Describe the bug** When you go to another user's profile, and view their forums, replies, etc, it adds the word "My" which should only be when viewing these links in your own profile. **To Reproduce** Steps to reproduce the behavior: 1. Go to another users profile 2. Click on Forums 3. View tabs "My Discussions, My Replies, My Favorites" **Expected behavior** On MY profile I should see "My Discussions, My Replies, My Favorites" On any other users profile I should see "Discussions, Replies, Favorites" **Screenshots** https://prnt.sc/sew7m4 **Support ticket links** None yet
1.0
Forums - when viewing another user's forum replies, it says "My Replies" - **Describe the bug** When you go to another user's profile, and view their forums, replies, etc, it adds the word "My" which should only be when viewing these links in your own profile. **To Reproduce** Steps to reproduce the behavior: 1. Go to another users profile 2. Click on Forums 3. View tabs "My Discussions, My Replies, My Favorites" **Expected behavior** On MY profile I should see "My Discussions, My Replies, My Favorites" On any other users profile I should see "Discussions, Replies, Favorites" **Screenshots** https://prnt.sc/sew7m4 **Support ticket links** None yet
priority
forums when viewing another user s forum replies it says my replies describe the bug when you go to another user s profile and view their forums replies etc it adds the word my which should only be when viewing these links in your own profile to reproduce steps to reproduce the behavior go to another users profile click on forums view tabs my discussions my replies my favorites expected behavior on my profile i should see my discussions my replies my favorites on any other users profile i should see discussions replies favorites screenshots support ticket links none yet
1
385,806
11,426,052,590
IssuesEvent
2020-02-03 21:06:19
semperfiwebdesign/all-in-one-seo-pack
https://api.github.com/repos/semperfiwebdesign/all-in-one-seo-pack
closed
move post seo out of main class file
Priority | Medium
it's in the add_meta_box stuff This may not make it for 2.3.10
1.0
move post seo out of main class file - it's in the add_meta_box stuff This may not make it for 2.3.10
priority
move post seo out of main class file it s in the add meta box stuff this may not make it for
1
55,573
3,073,788,973
IssuesEvent
2015-08-20 00:32:17
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
Use of Robot java class in Robotium through error 'Test run failed: Instrumentation run failed due to 'java.lang.VerifyError'
bug imported invalid Priority-Medium
_From [cybageus...@gmail.com](https://code.google.com/u/113039081148017402765/) on June 24, 2013 05:33:48_ What steps will reproduce the problem? 1.Created robot method by importing import java.awt.AWTException; import java.awt.Robot; import java.awt.event.InputEvent; 2. I need to click on the screen having specific x, y co-ordinate 3. What is the expected output? What do you see instead? The mouse should click on the screen of x, y co-ordinate. But running android junit test case through error 'Test run failed: Instrumentation run failed due to 'java.lang.VerifyError' What version of the product are you using? On what operating system? 4.2.2 (APL level 17) Please provide any additional information below. Embedded below code in my test script: try { Robot robot = new Robot(); robot.mouseMove(300,550); robot.mousePress(InputEvent.BUTTON1_MASK); robot.delay(2000); robot.mouseRelease(InputEvent.BUTTON1_MASK); } catch (AWTException e) { e.printStackTrace(); } Please let me know. Thanks! _Original issue: http://code.google.com/p/robotium/issues/detail?id=476_
1.0
Use of Robot java class in Robotium through error 'Test run failed: Instrumentation run failed due to 'java.lang.VerifyError' - _From [cybageus...@gmail.com](https://code.google.com/u/113039081148017402765/) on June 24, 2013 05:33:48_ What steps will reproduce the problem? 1.Created robot method by importing import java.awt.AWTException; import java.awt.Robot; import java.awt.event.InputEvent; 2. I need to click on the screen having specific x, y co-ordinate 3. What is the expected output? What do you see instead? The mouse should click on the screen of x, y co-ordinate. But running android junit test case through error 'Test run failed: Instrumentation run failed due to 'java.lang.VerifyError' What version of the product are you using? On what operating system? 4.2.2 (APL level 17) Please provide any additional information below. Embedded below code in my test script: try { Robot robot = new Robot(); robot.mouseMove(300,550); robot.mousePress(InputEvent.BUTTON1_MASK); robot.delay(2000); robot.mouseRelease(InputEvent.BUTTON1_MASK); } catch (AWTException e) { e.printStackTrace(); } Please let me know. Thanks! _Original issue: http://code.google.com/p/robotium/issues/detail?id=476_
priority
use of robot java class in robotium through error test run failed instrumentation run failed due to java lang verifyerror from on june what steps will reproduce the problem created robot method by importing import java awt awtexception import java awt robot import java awt event inputevent i need to click on the screen having specific x y co ordinate what is the expected output what do you see instead the mouse should click on the screen of x y co ordinate but running android junit test case through error test run failed instrumentation run failed due to java lang verifyerror what version of the product are you using on what operating system apl level please provide any additional information below embedded below code in my test script try robot robot new robot robot mousemove robot mousepress inputevent mask robot delay robot mouserelease inputevent mask catch awtexception e e printstacktrace please let me know thanks original issue
1
638,426
20,727,495,565
IssuesEvent
2022-03-14 05:01:02
minio/minio-dotnet
https://api.github.com/repos/minio/minio-dotnet
closed
MakeBucketAsync does not work with region parameter
priority: medium community
I am unable to create a bucket using the .NET client SDK. I get an exception with ``` MinIO API responded with message=The XML you provided was not well-formed or did not validate against our published schema ``` All my code does is ```cs _mc = new MinioClient(endpoint, config.AccessKeyId, config.SecretAccessKey); if (uri.Scheme == "https") { _mc = _mc.WithSSL(); } _mc.MakeBucketAsync("xyz", _config.Region).Wait(); ``` If I run a local minio server I get the following: ```cs $ minio server minio-lol ... API: PutBucket(bucket=xyz) Time: 16:27:01 CEST 09/29/2020 DeploymentID: 4c442570-afbb-4ca2-a840-eb537e128865 RequestID: 1639476057D9FF78 RemoteHost: 127.0.0.1 Host: 127.0.0.1:9000 UserAgent: MinIO (Darwin 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64;X64) minio-dotnet/1.0.9 Error: Bad sha256: Expected e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 does not match calculated 21a2331ffea5b7711cd8a996461c34140a170b981d282a9e1ae9c5d38f672e50 4: cmd/auth-handler.go:320:cmd.checkRequestAuthTypeToAccessKey() 3: cmd/auth-handler.go:273:cmd.checkRequestAuthType() 2: cmd/bucket-handlers.go:540:cmd.objectAPIHandlers.PutBucketHandler() 1: net/http/server.go:2042:http.HandlerFunc.ServeHTTP() ``` And if I use admin tracing, I find this: ``` minio.cloud.algoryx.se [REQUEST s3.PutBucket] 14:44:51.385 minio.cloud.algoryx.se PUT /xyz minio.cloud.algoryx.se Proto: minio.cloud.algoryx.se Host: minio.cloud.algoryx.se:443 minio.cloud.algoryx.se Authorization: AWS4-HMAC-SHA256 Credential=xxx, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=xxx minio.cloud.algoryx.se Content-Type: application/xml minio.cloud.algoryx.se User-Agent: MinIO (Darwin 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64;X64) minio-dotnet/1.0.9 minio.cloud.algoryx.se X-Forwarded-Proto: https minio.cloud.algoryx.se X-Real-Ip: 10.255.0.2 minio.cloud.algoryx.se Content-Length: 211 minio.cloud.algoryx.se X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 minio.cloud.algoryx.se X-Amz-Date: 20200929T144450Z minio.cloud.algoryx.se X-Forwarded-For: 10.255.0.2 minio.cloud.algoryx.se X-Forwarded-Port: 443 minio.cloud.algoryx.se Accept: application/json, text/json, text/x-json, text/javascript, application/xml, text/xml minio.cloud.algoryx.se Accept-Encoding: gzip, deflate minio.cloud.algoryx.se Request-Id: |72590bfd-44bab348368790e7.1. minio.cloud.algoryx.se X-Forwarded-Host: minio.cloud.algoryx.se:443 minio.cloud.algoryx.se X-Forwarded-Server: d655ef62def1 minio.cloud.algoryx.se <?xml version="1.0" encoding="utf-8"?> <q1:CreateBucketConfiguration xmlns:q1="http://s3.amazonaws.com/doc/2006-03-01/"> <q1:LocationConstraint>eu-west-1</q1:LocationConstraint> </q1:CreateBucketConfiguration> minio.cloud.algoryx.se [RESPONSE] [14:44:51.385] [ Duration 349µs ↑ 432 B ↓ 592 B ] minio.cloud.algoryx.se 400 Bad Request minio.cloud.algoryx.se Content-Security-Policy: block-all-mixed-content minio.cloud.algoryx.se Content-Type: application/xml minio.cloud.algoryx.se Server: MinIO/RELEASE.2020-06-22T03-12-50Z minio.cloud.algoryx.se Vary: Origin minio.cloud.algoryx.se X-Amz-Request-Id: 163948596A994443 minio.cloud.algoryx.se X-Xss-Protection: 1; mode=block minio.cloud.algoryx.se Accept-Ranges: bytes minio.cloud.algoryx.se Content-Length: 333 minio.cloud.algoryx.se <?xml version="1.0" encoding="UTF-8"?> <Error><Code>MalformedXML</Code><Message>The XML you provided was not well-formed or did not validate against our published schema.</Message><BucketName>xyz</BucketName><Resource>/xyz</Resource><RequestId>163948596A994443</RequestId><HostId>b85b8107-7224-464a-b477-f22bd6680c7a</HostId></Error> minio.cloud.algoryx.se ``` If I compare this to my working python client: ``` minio.cloud.algoryx.se [REQUEST s3.PutBucket] 14:45:42.532 minio.cloud.algoryx.se PUT /e21dbb95-7a38-480a-9a58-dadc61e17db1/ minio.cloud.algoryx.se Proto: minio.cloud.algoryx.se Host: minio.cloud.algoryx.se minio.cloud.algoryx.se X-Amz-Date: 20200929T144542Z minio.cloud.algoryx.se X-Forwarded-For: 10.255.0.2 minio.cloud.algoryx.se X-Real-Ip: 10.255.0.2 minio.cloud.algoryx.se X-Amz-Content-Sha256: UNSIGNED-PAYLOAD minio.cloud.algoryx.se Content-Length: 153 minio.cloud.algoryx.se X-Forwarded-Proto: https minio.cloud.algoryx.se X-Forwarded-Server: d655ef62def1 minio.cloud.algoryx.se Accept-Encoding: identity minio.cloud.algoryx.se X-Forwarded-Port: 443 minio.cloud.algoryx.se Content-Md5: RRbNtostJSb8PTpMdgsvng== minio.cloud.algoryx.se User-Agent: MinIO (Darwin; x86_64) minio-py/5.0.8 minio.cloud.algoryx.se X-Forwarded-Host: minio.cloud.algoryx.se minio.cloud.algoryx.se Authorization: AWS4-HMAC-SHA256 Credential=xxx, SignedHeaders=content-length;content-md5;host;user-agent;x-amz-content-sha256;x-amz-date, Signature=xxx minio.cloud.algoryx.se <CreateBucketConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><LocationConstraint>eu-west-1</LocationConstraint></CreateBucketConfiguration> minio.cloud.algoryx.se [RESPONSE] [14:45:42.532] [ Duration 947µs ↑ 355 B ↓ 266 B ] minio.cloud.algoryx.se 200 OK minio.cloud.algoryx.se Content-Security-Policy: block-all-mixed-content minio.cloud.algoryx.se Location: /e21dbb95-7a38-480a-9a58-dadc61e17db1 minio.cloud.algoryx.se Server: MinIO/RELEASE.2020-06-22T03-12-50Z minio.cloud.algoryx.se Vary: Origin minio.cloud.algoryx.se X-Amz-Request-Id: 1639486553292357 minio.cloud.algoryx.se X-Xss-Protection: 1; mode=block minio.cloud.algoryx.se Accept-Ranges: bytes minio.cloud.algoryx.se Content-Length: 0 ```
1.0
MakeBucketAsync does not work with region parameter - I am unable to create a bucket using the .NET client SDK. I get an exception with ``` MinIO API responded with message=The XML you provided was not well-formed or did not validate against our published schema ``` All my code does is ```cs _mc = new MinioClient(endpoint, config.AccessKeyId, config.SecretAccessKey); if (uri.Scheme == "https") { _mc = _mc.WithSSL(); } _mc.MakeBucketAsync("xyz", _config.Region).Wait(); ``` If I run a local minio server I get the following: ```cs $ minio server minio-lol ... API: PutBucket(bucket=xyz) Time: 16:27:01 CEST 09/29/2020 DeploymentID: 4c442570-afbb-4ca2-a840-eb537e128865 RequestID: 1639476057D9FF78 RemoteHost: 127.0.0.1 Host: 127.0.0.1:9000 UserAgent: MinIO (Darwin 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64;X64) minio-dotnet/1.0.9 Error: Bad sha256: Expected e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 does not match calculated 21a2331ffea5b7711cd8a996461c34140a170b981d282a9e1ae9c5d38f672e50 4: cmd/auth-handler.go:320:cmd.checkRequestAuthTypeToAccessKey() 3: cmd/auth-handler.go:273:cmd.checkRequestAuthType() 2: cmd/bucket-handlers.go:540:cmd.objectAPIHandlers.PutBucketHandler() 1: net/http/server.go:2042:http.HandlerFunc.ServeHTTP() ``` And if I use admin tracing, I find this: ``` minio.cloud.algoryx.se [REQUEST s3.PutBucket] 14:44:51.385 minio.cloud.algoryx.se PUT /xyz minio.cloud.algoryx.se Proto: minio.cloud.algoryx.se Host: minio.cloud.algoryx.se:443 minio.cloud.algoryx.se Authorization: AWS4-HMAC-SHA256 Credential=xxx, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=xxx minio.cloud.algoryx.se Content-Type: application/xml minio.cloud.algoryx.se User-Agent: MinIO (Darwin 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64;X64) minio-dotnet/1.0.9 minio.cloud.algoryx.se X-Forwarded-Proto: https minio.cloud.algoryx.se X-Real-Ip: 10.255.0.2 minio.cloud.algoryx.se Content-Length: 211 minio.cloud.algoryx.se X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 minio.cloud.algoryx.se X-Amz-Date: 20200929T144450Z minio.cloud.algoryx.se X-Forwarded-For: 10.255.0.2 minio.cloud.algoryx.se X-Forwarded-Port: 443 minio.cloud.algoryx.se Accept: application/json, text/json, text/x-json, text/javascript, application/xml, text/xml minio.cloud.algoryx.se Accept-Encoding: gzip, deflate minio.cloud.algoryx.se Request-Id: |72590bfd-44bab348368790e7.1. minio.cloud.algoryx.se X-Forwarded-Host: minio.cloud.algoryx.se:443 minio.cloud.algoryx.se X-Forwarded-Server: d655ef62def1 minio.cloud.algoryx.se <?xml version="1.0" encoding="utf-8"?> <q1:CreateBucketConfiguration xmlns:q1="http://s3.amazonaws.com/doc/2006-03-01/"> <q1:LocationConstraint>eu-west-1</q1:LocationConstraint> </q1:CreateBucketConfiguration> minio.cloud.algoryx.se [RESPONSE] [14:44:51.385] [ Duration 349µs ↑ 432 B ↓ 592 B ] minio.cloud.algoryx.se 400 Bad Request minio.cloud.algoryx.se Content-Security-Policy: block-all-mixed-content minio.cloud.algoryx.se Content-Type: application/xml minio.cloud.algoryx.se Server: MinIO/RELEASE.2020-06-22T03-12-50Z minio.cloud.algoryx.se Vary: Origin minio.cloud.algoryx.se X-Amz-Request-Id: 163948596A994443 minio.cloud.algoryx.se X-Xss-Protection: 1; mode=block minio.cloud.algoryx.se Accept-Ranges: bytes minio.cloud.algoryx.se Content-Length: 333 minio.cloud.algoryx.se <?xml version="1.0" encoding="UTF-8"?> <Error><Code>MalformedXML</Code><Message>The XML you provided was not well-formed or did not validate against our published schema.</Message><BucketName>xyz</BucketName><Resource>/xyz</Resource><RequestId>163948596A994443</RequestId><HostId>b85b8107-7224-464a-b477-f22bd6680c7a</HostId></Error> minio.cloud.algoryx.se ``` If I compare this to my working python client: ``` minio.cloud.algoryx.se [REQUEST s3.PutBucket] 14:45:42.532 minio.cloud.algoryx.se PUT /e21dbb95-7a38-480a-9a58-dadc61e17db1/ minio.cloud.algoryx.se Proto: minio.cloud.algoryx.se Host: minio.cloud.algoryx.se minio.cloud.algoryx.se X-Amz-Date: 20200929T144542Z minio.cloud.algoryx.se X-Forwarded-For: 10.255.0.2 minio.cloud.algoryx.se X-Real-Ip: 10.255.0.2 minio.cloud.algoryx.se X-Amz-Content-Sha256: UNSIGNED-PAYLOAD minio.cloud.algoryx.se Content-Length: 153 minio.cloud.algoryx.se X-Forwarded-Proto: https minio.cloud.algoryx.se X-Forwarded-Server: d655ef62def1 minio.cloud.algoryx.se Accept-Encoding: identity minio.cloud.algoryx.se X-Forwarded-Port: 443 minio.cloud.algoryx.se Content-Md5: RRbNtostJSb8PTpMdgsvng== minio.cloud.algoryx.se User-Agent: MinIO (Darwin; x86_64) minio-py/5.0.8 minio.cloud.algoryx.se X-Forwarded-Host: minio.cloud.algoryx.se minio.cloud.algoryx.se Authorization: AWS4-HMAC-SHA256 Credential=xxx, SignedHeaders=content-length;content-md5;host;user-agent;x-amz-content-sha256;x-amz-date, Signature=xxx minio.cloud.algoryx.se <CreateBucketConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><LocationConstraint>eu-west-1</LocationConstraint></CreateBucketConfiguration> minio.cloud.algoryx.se [RESPONSE] [14:45:42.532] [ Duration 947µs ↑ 355 B ↓ 266 B ] minio.cloud.algoryx.se 200 OK minio.cloud.algoryx.se Content-Security-Policy: block-all-mixed-content minio.cloud.algoryx.se Location: /e21dbb95-7a38-480a-9a58-dadc61e17db1 minio.cloud.algoryx.se Server: MinIO/RELEASE.2020-06-22T03-12-50Z minio.cloud.algoryx.se Vary: Origin minio.cloud.algoryx.se X-Amz-Request-Id: 1639486553292357 minio.cloud.algoryx.se X-Xss-Protection: 1; mode=block minio.cloud.algoryx.se Accept-Ranges: bytes minio.cloud.algoryx.se Content-Length: 0 ```
priority
makebucketasync does not work with region parameter i am unable to create a bucket using the net client sdk i get an exception with minio api responded with message the xml you provided was not well formed or did not validate against our published schema all my code does is cs mc new minioclient endpoint config accesskeyid config secretaccesskey if uri scheme https mc mc withssl mc makebucketasync xyz config region wait if i run a local minio server i get the following cs minio server minio lol api putbucket bucket xyz time cest deploymentid afbb requestid remotehost host useragent minio darwin darwin kernel version thu jun pdt root xnu release minio dotnet error bad expected does not match calculated cmd auth handler go cmd checkrequestauthtypetoaccesskey cmd auth handler go cmd checkrequestauthtype cmd bucket handlers go cmd objectapihandlers putbuckethandler net http server go http handlerfunc servehttp and if i use admin tracing i find this minio cloud algoryx se minio cloud algoryx se put xyz minio cloud algoryx se proto minio cloud algoryx se host minio cloud algoryx se minio cloud algoryx se authorization hmac credential xxx signedheaders host x amz content x amz date signature xxx minio cloud algoryx se content type application xml minio cloud algoryx se user agent minio darwin darwin kernel version thu jun pdt root xnu release minio dotnet minio cloud algoryx se x forwarded proto https minio cloud algoryx se x real ip minio cloud algoryx se content length minio cloud algoryx se x amz content minio cloud algoryx se x amz date minio cloud algoryx se x forwarded for minio cloud algoryx se x forwarded port minio cloud algoryx se accept application json text json text x json text javascript application xml text xml minio cloud algoryx se accept encoding gzip deflate minio cloud algoryx se request id minio cloud algoryx se x forwarded host minio cloud algoryx se minio cloud algoryx se x forwarded server minio cloud algoryx se createbucketconfiguration xmlns eu west minio cloud algoryx se minio cloud algoryx se bad request minio cloud algoryx se content security policy block all mixed content minio cloud algoryx se content type application xml minio cloud algoryx se server minio release minio cloud algoryx se vary origin minio cloud algoryx se x amz request id minio cloud algoryx se x xss protection mode block minio cloud algoryx se accept ranges bytes minio cloud algoryx se content length minio cloud algoryx se malformedxml the xml you provided was not well formed or did not validate against our published schema xyz xyz minio cloud algoryx se if i compare this to my working python client minio cloud algoryx se minio cloud algoryx se put minio cloud algoryx se proto minio cloud algoryx se host minio cloud algoryx se minio cloud algoryx se x amz date minio cloud algoryx se x forwarded for minio cloud algoryx se x real ip minio cloud algoryx se x amz content unsigned payload minio cloud algoryx se content length minio cloud algoryx se x forwarded proto https minio cloud algoryx se x forwarded server minio cloud algoryx se accept encoding identity minio cloud algoryx se x forwarded port minio cloud algoryx se content minio cloud algoryx se user agent minio darwin minio py minio cloud algoryx se x forwarded host minio cloud algoryx se minio cloud algoryx se authorization hmac credential xxx signedheaders content length content host user agent x amz content x amz date signature xxx minio cloud algoryx se createbucketconfiguration xmlns minio cloud algoryx se minio cloud algoryx se ok minio cloud algoryx se content security policy block all mixed content minio cloud algoryx se location minio cloud algoryx se server minio release minio cloud algoryx se vary origin minio cloud algoryx se x amz request id minio cloud algoryx se x xss protection mode block minio cloud algoryx se accept ranges bytes minio cloud algoryx se content length
1
698,533
23,984,091,883
IssuesEvent
2022-09-13 17:26:27
rstudio/gt
https://api.github.com/repos/rstudio/gt
closed
Create human-readable style identifiers
Difficulty: [2] Intermediate Effort: [2] Medium Priority: [2] Medium Type: ★ Enhancement
The numeric style identifiers for column formatting would be greatly improved with human-readable versions. In the introductory blog post, you already alluded to this issue by including descriptors: date_style 6 (the m_day_year style) time_style 4 (the hm_p style) Baking this in, and using standard descriptors to do it, i.e. ISO 8601 for dates and times, would be very helpful
1.0
Create human-readable style identifiers - The numeric style identifiers for column formatting would be greatly improved with human-readable versions. In the introductory blog post, you already alluded to this issue by including descriptors: date_style 6 (the m_day_year style) time_style 4 (the hm_p style) Baking this in, and using standard descriptors to do it, i.e. ISO 8601 for dates and times, would be very helpful
priority
create human readable style identifiers the numeric style identifiers for column formatting would be greatly improved with human readable versions in the introductory blog post you already alluded to this issue by including descriptors date style the m day year style time style the hm p style baking this in and using standard descriptors to do it i e iso for dates and times would be very helpful
1
651,204
21,469,441,894
IssuesEvent
2022-04-26 08:11:39
azerothcore/azerothcore-wotlk
https://api.github.com/repos/azerothcore/azerothcore-wotlk
closed
Core/Aura: Mechanics are faulty.
Priority-Medium
**Description**: Aura Rules doesn't work. **Current behaviour**: Tell us what happens Slow Effects currently Stack. **Expected behaviour**: Tell us what should happen instead When a stronger slow effect is applied, for example Hamstring, on a target that has a weaker slow effect, for example Frostbolt, then the stronger slow effect should overwrite it. Evidence: Gif generated from [this](https://www.youtube.com/watch?v=RQKhiRTWRX8&t=166s) video: https://gyazo.com/2c53408b80cb8865819780c8d711b131 **Steps to reproduce the problem**: 1. Apply Frostbolt to Target. 2. Apply Hamstring to Target. 3. Look at targets debuffs. It now has both Frostbolt and hamstring on. **Branch(es)**: master **AC hash/commit**: fca0bfd **Operating system**: Linux Ubuntu 14.04 **Modules**: None. **Other Customizations**: None. [//]: # (This template is for problem reports, for other type of reports edit it accordingly) [//]: # (If this is a crash report, include the crashlog with https://gist.github.com/) [//]: # (For fixes containing c++ create a Pull Request) <bountysource-plugin> --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/53061608-core-aura-mechanics-are-faulty?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github). </bountysource-plugin>
1.0
Core/Aura: Mechanics are faulty. - **Description**: Aura Rules doesn't work. **Current behaviour**: Tell us what happens Slow Effects currently Stack. **Expected behaviour**: Tell us what should happen instead When a stronger slow effect is applied, for example Hamstring, on a target that has a weaker slow effect, for example Frostbolt, then the stronger slow effect should overwrite it. Evidence: Gif generated from [this](https://www.youtube.com/watch?v=RQKhiRTWRX8&t=166s) video: https://gyazo.com/2c53408b80cb8865819780c8d711b131 **Steps to reproduce the problem**: 1. Apply Frostbolt to Target. 2. Apply Hamstring to Target. 3. Look at targets debuffs. It now has both Frostbolt and hamstring on. **Branch(es)**: master **AC hash/commit**: fca0bfd **Operating system**: Linux Ubuntu 14.04 **Modules**: None. **Other Customizations**: None. [//]: # (This template is for problem reports, for other type of reports edit it accordingly) [//]: # (If this is a crash report, include the crashlog with https://gist.github.com/) [//]: # (For fixes containing c++ create a Pull Request) <bountysource-plugin> --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/53061608-core-aura-mechanics-are-faulty?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github). </bountysource-plugin>
priority
core aura mechanics are faulty description aura rules doesn t work current behaviour tell us what happens slow effects currently stack expected behaviour tell us what should happen instead when a stronger slow effect is applied for example hamstring on a target that has a weaker slow effect for example frostbolt then the stronger slow effect should overwrite it evidence gif generated from video steps to reproduce the problem apply frostbolt to target apply hamstring to target look at targets debuffs it now has both frostbolt and hamstring on branch es master ac hash commit operating system linux ubuntu modules none other customizations none this template is for problem reports for other type of reports edit it accordingly if this is a crash report include the crashlog with for fixes containing c create a pull request want to back this issue we accept bounties via
1
372,341
11,012,907,796
IssuesEvent
2019-12-04 19:18:44
kyranet/Skyra
https://api.github.com/repos/kyranet/Skyra
closed
feature: discoin intergration
Meta: Feature Priority: Medium Status: Blocked Status: Help Wanted
Add [Discoin](https://discoin.gitbook.io/) integration The **PROS** - A novel idea for skyra - Helps cooperate with other bots - Free ad, kinda? The **CONS** - Maybe economic inflation ~~Blocked until @austinhuang0131 accepts skyra in the system~~ See below Assigned-to: @cfanoulis
1.0
feature: discoin intergration - Add [Discoin](https://discoin.gitbook.io/) integration The **PROS** - A novel idea for skyra - Helps cooperate with other bots - Free ad, kinda? The **CONS** - Maybe economic inflation ~~Blocked until @austinhuang0131 accepts skyra in the system~~ See below Assigned-to: @cfanoulis
priority
feature discoin intergration add integration the pros a novel idea for skyra helps cooperate with other bots free ad kinda the cons maybe economic inflation blocked until accepts skyra in the system see below assigned to cfanoulis
1
465,164
13,357,943,019
IssuesEvent
2020-08-31 10:44:59
ooni/probe
https://api.github.com/repos/ooni/probe
closed
Add support for automated testing of full test lists
enhancement ooni/probe-mobile priority/medium
Currently Android OONI Probe users only test a random selection of URLs -> as many as they can connect to within 90 seconds. Many users though are interested in testing the full test lists (global + country-specific) automatically on a daily basis. Once automated testing is re-added to the OONI Probe Android app (per https://github.com/ooni/probe-android/issues/245), it would be great to add support (in future releases) for automatic testing of full test lists. This could be an option that users can choose through the (new) "Automated testing" settings in the app. This feature requires that we know that the user is connected to WiFi, and that this automated testing of full test lists (which can involve thousands of URLs) is only performed when the user is connected to WiFi (and stops as soon as they are disconnected or switch to data).
1.0
Add support for automated testing of full test lists - Currently Android OONI Probe users only test a random selection of URLs -> as many as they can connect to within 90 seconds. Many users though are interested in testing the full test lists (global + country-specific) automatically on a daily basis. Once automated testing is re-added to the OONI Probe Android app (per https://github.com/ooni/probe-android/issues/245), it would be great to add support (in future releases) for automatic testing of full test lists. This could be an option that users can choose through the (new) "Automated testing" settings in the app. This feature requires that we know that the user is connected to WiFi, and that this automated testing of full test lists (which can involve thousands of URLs) is only performed when the user is connected to WiFi (and stops as soon as they are disconnected or switch to data).
priority
add support for automated testing of full test lists currently android ooni probe users only test a random selection of urls as many as they can connect to within seconds many users though are interested in testing the full test lists global country specific automatically on a daily basis once automated testing is re added to the ooni probe android app per it would be great to add support in future releases for automatic testing of full test lists this could be an option that users can choose through the new automated testing settings in the app this feature requires that we know that the user is connected to wifi and that this automated testing of full test lists which can involve thousands of urls is only performed when the user is connected to wifi and stops as soon as they are disconnected or switch to data
1
181,611
6,662,573,228
IssuesEvent
2017-10-02 13:39:01
Rsl1122/Plan-PlayerAnalytics
https://api.github.com/repos/Rsl1122/Plan-PlayerAnalytics
closed
Unknown command causes NoSuchMethodError on 1.8
Bug Priority: MEDIUM server: 1.8 status: Done
``` [15:57:11 ERROR]: Could not pass event PlayerCommandPreprocessEvent to Plan v4.0.0 org.bukkit.event.EventException: null at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[server.jar:git-Spigot-7754231-a3b3a42] at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62) ~[server.jar:git-Spigot-7754231-a3b3a42] at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:499) [server.jar:git-Spigot-7754231-a3b3a42] at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:484) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PlayerConnection.handleCommand(PlayerConnection.java:1384) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PlayerConnection.a(PlayerConnection.java:1227) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PacketPlayInChat.a(PacketPlayInChat.java:45) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PacketPlayInChat.a(PacketPlayInChat.java:1) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PlayerConnectionUtils$1.run(SourceFile:13) [server.jar:git-Spigot-7754231-a3b3a42] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_144] at net.minecraft.server.v1_12_R1.SystemUtils.a(SourceFile:46) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:748) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577) [server.jar:git-Spigot-7754231-a3b3a42] at java.lang.Thread.run(Thread.java:748) [?:1.8.0_144] Caused by: java.lang.NoSuchMethodError: org.bukkit.Server.getCommandMap()Lorg/bukkit/command/CommandMap; at main.java.com.djrapitops.plan.systems.listeners.PlanCommandPreprocessListener.onPlayerCommand(PlanCommandPreprocessListener.java:55) ~[Plan-4.0.0.jar:2.1.1] at sun.reflect.GeneratedMethodAccessor810.invoke(Unknown Source) ~[?:?] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_144] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_144] at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:302) ~[server.jar:git-Spigot-7754231-a3b3a42] ... 16 more ```
1.0
Unknown command causes NoSuchMethodError on 1.8 - ``` [15:57:11 ERROR]: Could not pass event PlayerCommandPreprocessEvent to Plan v4.0.0 org.bukkit.event.EventException: null at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[server.jar:git-Spigot-7754231-a3b3a42] at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62) ~[server.jar:git-Spigot-7754231-a3b3a42] at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:499) [server.jar:git-Spigot-7754231-a3b3a42] at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:484) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PlayerConnection.handleCommand(PlayerConnection.java:1384) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PlayerConnection.a(PlayerConnection.java:1227) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PacketPlayInChat.a(PacketPlayInChat.java:45) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PacketPlayInChat.a(PacketPlayInChat.java:1) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.PlayerConnectionUtils$1.run(SourceFile:13) [server.jar:git-Spigot-7754231-a3b3a42] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_144] at net.minecraft.server.v1_12_R1.SystemUtils.a(SourceFile:46) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:748) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679) [server.jar:git-Spigot-7754231-a3b3a42] at net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577) [server.jar:git-Spigot-7754231-a3b3a42] at java.lang.Thread.run(Thread.java:748) [?:1.8.0_144] Caused by: java.lang.NoSuchMethodError: org.bukkit.Server.getCommandMap()Lorg/bukkit/command/CommandMap; at main.java.com.djrapitops.plan.systems.listeners.PlanCommandPreprocessListener.onPlayerCommand(PlanCommandPreprocessListener.java:55) ~[Plan-4.0.0.jar:2.1.1] at sun.reflect.GeneratedMethodAccessor810.invoke(Unknown Source) ~[?:?] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_144] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_144] at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:302) ~[server.jar:git-Spigot-7754231-a3b3a42] ... 16 more ```
priority
unknown command causes nosuchmethoderror on could not pass event playercommandpreprocessevent to plan org bukkit event eventexception null at org bukkit plugin java javapluginloader execute javapluginloader java at org bukkit plugin registeredlistener callevent registeredlistener java at org bukkit plugin simplepluginmanager fireevent simplepluginmanager java at org bukkit plugin simplepluginmanager callevent simplepluginmanager java at net minecraft server playerconnection handlecommand playerconnection java at net minecraft server playerconnection a playerconnection java at net minecraft server packetplayinchat a packetplayinchat java at net minecraft server packetplayinchat a packetplayinchat java at net minecraft server playerconnectionutils run sourcefile at java util concurrent executors runnableadapter call executors java at java util concurrent futuretask run futuretask java at net minecraft server systemutils a sourcefile at net minecraft server minecraftserver d minecraftserver java at net minecraft server dedicatedserver d dedicatedserver java at net minecraft server minecraftserver c minecraftserver java at net minecraft server minecraftserver run minecraftserver java at java lang thread run thread java caused by java lang nosuchmethoderror org bukkit server getcommandmap lorg bukkit command commandmap at main java com djrapitops plan systems listeners plancommandpreprocesslistener onplayercommand plancommandpreprocesslistener java at sun reflect invoke unknown source at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org bukkit plugin java javapluginloader execute javapluginloader java more
1
123,820
4,876,573,137
IssuesEvent
2016-11-16 13:19:14
benjamincharity/angular-flickity
https://api.github.com/repos/benjamincharity/angular-flickity
closed
Add tests
Priority: Medium Type: Maintenance
- [x] Test service - [x] Test directives - [x] Test controller - [x] Hook up CodeClimate - [x] Set up build with CircleCi
1.0
Add tests - - [x] Test service - [x] Test directives - [x] Test controller - [x] Hook up CodeClimate - [x] Set up build with CircleCi
priority
add tests test service test directives test controller hook up codeclimate set up build with circleci
1
262,074
8,250,389,753
IssuesEvent
2018-09-12 02:29:24
Railcraft/Railcraft
https://api.github.com/repos/Railcraft/Railcraft
closed
Adding both chest- and tank-carts to a locomotive possible. Bug or feature?
bug carts medium priority
Railcraft 9.6.1.15 No other mods besides Forge. Singleplayer test world. Since "Steam Locomotives can now pull fuel and water from attached carts." I wanted to try and add both types. According to the changelog this is not possible, and when trying with just one cart of each type and one locomotive, this seems to be true. However, when you add a second locomotive to the train this works just fine. I took some screenshots, see https://drive.google.com/open?id=0Bz_fgROOZk6VfnpWVXc2ZVl0SzgyNEZ5UHhkdUMyRnl2ZGx6dUlEQXpfTXFNckhNcWJxUWM&authuser=0 To make it clear: - The setup with just one locomotive doesn't work. linking the chest cart fails - The setup with two locomotives works. Both locomotives pull water and fuel from the respective carts. While I would consider this to be a feature; The changelog and the fact that this doesn't work with a single locomotive in the middle, suggests to me, that this is not intended.
1.0
Adding both chest- and tank-carts to a locomotive possible. Bug or feature? - Railcraft 9.6.1.15 No other mods besides Forge. Singleplayer test world. Since "Steam Locomotives can now pull fuel and water from attached carts." I wanted to try and add both types. According to the changelog this is not possible, and when trying with just one cart of each type and one locomotive, this seems to be true. However, when you add a second locomotive to the train this works just fine. I took some screenshots, see https://drive.google.com/open?id=0Bz_fgROOZk6VfnpWVXc2ZVl0SzgyNEZ5UHhkdUMyRnl2ZGx6dUlEQXpfTXFNckhNcWJxUWM&authuser=0 To make it clear: - The setup with just one locomotive doesn't work. linking the chest cart fails - The setup with two locomotives works. Both locomotives pull water and fuel from the respective carts. While I would consider this to be a feature; The changelog and the fact that this doesn't work with a single locomotive in the middle, suggests to me, that this is not intended.
priority
adding both chest and tank carts to a locomotive possible bug or feature railcraft no other mods besides forge singleplayer test world since steam locomotives can now pull fuel and water from attached carts i wanted to try and add both types according to the changelog this is not possible and when trying with just one cart of each type and one locomotive this seems to be true however when you add a second locomotive to the train this works just fine i took some screenshots see to make it clear the setup with just one locomotive doesn t work linking the chest cart fails the setup with two locomotives works both locomotives pull water and fuel from the respective carts while i would consider this to be a feature the changelog and the fact that this doesn t work with a single locomotive in the middle suggests to me that this is not intended
1
237,972
7,768,754,195
IssuesEvent
2018-06-03 21:27:48
TerraFusion/basicFusion
https://api.github.com/repos/TerraFusion/basicFusion
closed
Modify generation scripts for BF output directories
Medium Priority enhancement
Modify the generation scripts so that the BF output files are stored in some sort of directory hierarchy based on dates.
1.0
Modify generation scripts for BF output directories - Modify the generation scripts so that the BF output files are stored in some sort of directory hierarchy based on dates.
priority
modify generation scripts for bf output directories modify the generation scripts so that the bf output files are stored in some sort of directory hierarchy based on dates
1
336,833
10,197,536,406
IssuesEvent
2019-08-13 00:51:06
AuDigitalHealth/ci-fhir-stu3
https://api.github.com/repos/AuDigitalHealth/ci-fhir-stu3
closed
PractitionerRole profiles - add constraints and update descriptions
feature/change-profile size/medium status/complete tag/priority
<!-- Make sure to NOT include any sensitive or personally identifiable information. --> # Prerequisites - [x] I have searched [open](https://github.com/ci-fhir-stu3/Issues/issues) and [closed](https://github.com/ci-fhir-stu3/Issues/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed) issues to make sure it isn't already requested or reported - [x] I have written a descriptive issue title # The issue / feature ## Change description <!-- A description of the issue or feature, e.g. new profile that enforces demographics on patient or ... --> **This ticket applies to the following profiles.** - practitionerrole-dh-base-1 - practitionerrole-ident-1 - practitionerrole-withparty-1 - practitionerrole-withpractitionerident-1 **Updates include:** 1) Add or update the invariants in the profiles as applicable: - If present, a practitioner shall at least have a reference, an identifier or a display - If present, an organisation shall at least have a reference, an identifier or a display - If present, a location shall at least have a reference, an identifier or a display - If present, a healthcare service shall at least have a reference, an identifier or a display - At least one practitioner role identifier shall at least have a system and a value - The practitioner role shall at least have a practitioner or an organisation - The practitioner shall at least have a reference or an identifier with at least a system and a value 2) Update the base practitioner role StructureDefinition description 3) Update copyright information is the profiles ## What it actually enables people to do <!-- A description of what the change / new feature will allow people to do, e.g. behaviour change, software change, validation etc. --> It will enable the user to better understand the agency practitioner role profiles and the added invariants will apply them efficiently. ## Mockups <!-- If applicable, add screenshots or mockups to help explain the issue / feature. --> N/A ## How awesome would it be? <!-- A description of the value of this request to help us understand its value in comparison to the other awesome things we are doing. --> N/A ## Workarounds <!-- Are there any viable workarounds in case this cannot be addressed quickly?--> N/A ## Additional context <!-- Add any other context or links about the issue or feature here, e.g. replicate this page over here in this context.--> N/A
1.0
PractitionerRole profiles - add constraints and update descriptions - <!-- Make sure to NOT include any sensitive or personally identifiable information. --> # Prerequisites - [x] I have searched [open](https://github.com/ci-fhir-stu3/Issues/issues) and [closed](https://github.com/ci-fhir-stu3/Issues/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed) issues to make sure it isn't already requested or reported - [x] I have written a descriptive issue title # The issue / feature ## Change description <!-- A description of the issue or feature, e.g. new profile that enforces demographics on patient or ... --> **This ticket applies to the following profiles.** - practitionerrole-dh-base-1 - practitionerrole-ident-1 - practitionerrole-withparty-1 - practitionerrole-withpractitionerident-1 **Updates include:** 1) Add or update the invariants in the profiles as applicable: - If present, a practitioner shall at least have a reference, an identifier or a display - If present, an organisation shall at least have a reference, an identifier or a display - If present, a location shall at least have a reference, an identifier or a display - If present, a healthcare service shall at least have a reference, an identifier or a display - At least one practitioner role identifier shall at least have a system and a value - The practitioner role shall at least have a practitioner or an organisation - The practitioner shall at least have a reference or an identifier with at least a system and a value 2) Update the base practitioner role StructureDefinition description 3) Update copyright information is the profiles ## What it actually enables people to do <!-- A description of what the change / new feature will allow people to do, e.g. behaviour change, software change, validation etc. --> It will enable the user to better understand the agency practitioner role profiles and the added invariants will apply them efficiently. ## Mockups <!-- If applicable, add screenshots or mockups to help explain the issue / feature. --> N/A ## How awesome would it be? <!-- A description of the value of this request to help us understand its value in comparison to the other awesome things we are doing. --> N/A ## Workarounds <!-- Are there any viable workarounds in case this cannot be addressed quickly?--> N/A ## Additional context <!-- Add any other context or links about the issue or feature here, e.g. replicate this page over here in this context.--> N/A
priority
practitionerrole profiles add constraints and update descriptions prerequisites i have searched and issues to make sure it isn t already requested or reported i have written a descriptive issue title the issue feature change description this ticket applies to the following profiles practitionerrole dh base practitionerrole ident practitionerrole withparty practitionerrole withpractitionerident updates include add or update the invariants in the profiles as applicable if present a practitioner shall at least have a reference an identifier or a display if present an organisation shall at least have a reference an identifier or a display if present a location shall at least have a reference an identifier or a display if present a healthcare service shall at least have a reference an identifier or a display at least one practitioner role identifier shall at least have a system and a value the practitioner role shall at least have a practitioner or an organisation the practitioner shall at least have a reference or an identifier with at least a system and a value update the base practitioner role structuredefinition description update copyright information is the profiles what it actually enables people to do it will enable the user to better understand the agency practitioner role profiles and the added invariants will apply them efficiently mockups n a how awesome would it be n a workarounds n a additional context n a
1
464,298
13,309,885,750
IssuesEvent
2020-08-26 05:20:04
2ofClubsApp/2ofclubs-server
https://api.github.com/repos/2ofClubsApp/2ofclubs-server
closed
Get Clubs based off a tag
Backend: Database Backend: Enhancement Priority: Medium
- [ ] Return clubs of a particular Tag type (if no tags are specified, then return all clubs)
1.0
Get Clubs based off a tag - - [ ] Return clubs of a particular Tag type (if no tags are specified, then return all clubs)
priority
get clubs based off a tag return clubs of a particular tag type if no tags are specified then return all clubs
1
392,798
11,595,974,535
IssuesEvent
2020-02-24 18:02:19
Spudnik-Group/Spudnik
https://api.github.com/repos/Spudnik-Group/Spudnik
opened
Brew command enhancement
enhancement group:ref priority:medium
Use a richembed to display query results, and allow selection of the most relevant result the api can be a little clunky at times, so why not allow users to select from the list of results
1.0
Brew command enhancement - Use a richembed to display query results, and allow selection of the most relevant result the api can be a little clunky at times, so why not allow users to select from the list of results
priority
brew command enhancement use a richembed to display query results and allow selection of the most relevant result the api can be a little clunky at times so why not allow users to select from the list of results
1
625,589
19,758,156,020
IssuesEvent
2022-01-16 00:29:14
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
_Fault() will be called after user thread finished if PMP_STACK_GUARD=y on RISC-V platform
bug priority: medium area: RISCV Stale
**Describe the bug** When hello_world_user is built with CONFIG_PMP_STACK_GUARD=y CONFIG_HW_STACK_PROTECTION=y, after user mode thread finished, _Fault() has been called. **To Reproduce** 1. Modify samples/userspace/hello_world_user/src/main.c so that the link result does not exceed the RAM capacity. ``` < #define USER_STACKSIZE 2048 > #define USER_STACKSIZE 1024 ``` 2. Modify zephyr/include/arch/riscv/common/linker.ld as following, (This is workaround for another issue. #39922) ``` < __rom_region_size = __rom_region_end - __rom_region_start; > __rom_region_size_orig = __rom_region_end - __rom_region_start; > __rom_region_size = (1 << LOG2CEIL(__rom_region_size_orig)); ``` 3. Add 2 lines to hello_world_user/prj.conf ``` CONFIG_PMP_STACK_GUARD=y CONFIG_HW_STACK_PROTECTION=y ``` 4. west build -b hifive1_revb samples/userspace/hello_world_user 5. cd build/zephyr 6. $ZEPHYR_SDK_INSTALL_DIR/riscv64-zephyr-elf/bin/riscv64-zephyr-elf-objcopy -O ihex zephyr.elf zephyr.hex 7. Write zephyr.hex to the Hifive1 revB board and run. _Fault() will be called. However, there is no UART message because the fault will be happened recursively. (Please see "Investigation" below) **Investigation** (1) Direct cause of the fault ``` zephyr/arch/riscv/core/isr.S 926 /* Check the thread mode */ 927 WAS_NOT_USER(t2, t4) 928 bnez t2, kernel_swap 929 930 /* Switch to user stack */ 931 RV_OP_LOADREG sp, _thread_offset_to_user_sp(t1) ``` The sp register will be set to 0 in the skip_callee_saved_reg routine at line 931 of above code. To confirm that the sp register is set to 0, I made the following modification temporarily and confirmed _Fault is called (t2 == 0). ``` zephyr/arch/riscv/core/isr.S:931 < /* Switch to user stack */ < RV_OP_LOADREG sp, _thread_offset_to_user_sp(t1) > /* Switch to user stack */ > RV_OP_LOADREG t2, _thread_offset_to_user_sp(t1) > beqz t2, _Fault > mv sp, t2 ``` (2) Cause of the above (1) Above (1) is happen after user thread function was finished and thread_abort system call was called from z_thread_entry. The path of returning from thread_abort system call is suspicious. However I don't know the detailed cause of the problem. **Environment (please complete the following information):** - OS: Ubuntu 18.04.5 LTS - Toolchain: zephyr-sdk-0.13.1 - Version: v2.7.99 - Commit: f6e829a68b1ae7b127bb847d0947df0cc9f708a2 - Target: hifive1_revb
1.0
_Fault() will be called after user thread finished if PMP_STACK_GUARD=y on RISC-V platform - **Describe the bug** When hello_world_user is built with CONFIG_PMP_STACK_GUARD=y CONFIG_HW_STACK_PROTECTION=y, after user mode thread finished, _Fault() has been called. **To Reproduce** 1. Modify samples/userspace/hello_world_user/src/main.c so that the link result does not exceed the RAM capacity. ``` < #define USER_STACKSIZE 2048 > #define USER_STACKSIZE 1024 ``` 2. Modify zephyr/include/arch/riscv/common/linker.ld as following, (This is workaround for another issue. #39922) ``` < __rom_region_size = __rom_region_end - __rom_region_start; > __rom_region_size_orig = __rom_region_end - __rom_region_start; > __rom_region_size = (1 << LOG2CEIL(__rom_region_size_orig)); ``` 3. Add 2 lines to hello_world_user/prj.conf ``` CONFIG_PMP_STACK_GUARD=y CONFIG_HW_STACK_PROTECTION=y ``` 4. west build -b hifive1_revb samples/userspace/hello_world_user 5. cd build/zephyr 6. $ZEPHYR_SDK_INSTALL_DIR/riscv64-zephyr-elf/bin/riscv64-zephyr-elf-objcopy -O ihex zephyr.elf zephyr.hex 7. Write zephyr.hex to the Hifive1 revB board and run. _Fault() will be called. However, there is no UART message because the fault will be happened recursively. (Please see "Investigation" below) **Investigation** (1) Direct cause of the fault ``` zephyr/arch/riscv/core/isr.S 926 /* Check the thread mode */ 927 WAS_NOT_USER(t2, t4) 928 bnez t2, kernel_swap 929 930 /* Switch to user stack */ 931 RV_OP_LOADREG sp, _thread_offset_to_user_sp(t1) ``` The sp register will be set to 0 in the skip_callee_saved_reg routine at line 931 of above code. To confirm that the sp register is set to 0, I made the following modification temporarily and confirmed _Fault is called (t2 == 0). ``` zephyr/arch/riscv/core/isr.S:931 < /* Switch to user stack */ < RV_OP_LOADREG sp, _thread_offset_to_user_sp(t1) > /* Switch to user stack */ > RV_OP_LOADREG t2, _thread_offset_to_user_sp(t1) > beqz t2, _Fault > mv sp, t2 ``` (2) Cause of the above (1) Above (1) is happen after user thread function was finished and thread_abort system call was called from z_thread_entry. The path of returning from thread_abort system call is suspicious. However I don't know the detailed cause of the problem. **Environment (please complete the following information):** - OS: Ubuntu 18.04.5 LTS - Toolchain: zephyr-sdk-0.13.1 - Version: v2.7.99 - Commit: f6e829a68b1ae7b127bb847d0947df0cc9f708a2 - Target: hifive1_revb
priority
fault will be called after user thread finished if pmp stack guard y on risc v platform describe the bug when hello world user is built with config pmp stack guard y config hw stack protection y after user mode thread finished fault has been called to reproduce modify samples userspace hello world user src main c so that the link result does not exceed the ram capacity define user stacksize define user stacksize modify zephyr include arch riscv common linker ld as following this is workaround for another issue rom region size rom region end rom region start rom region size orig rom region end rom region start rom region size rom region size orig add lines to hello world user prj conf config pmp stack guard y config hw stack protection y west build b revb samples userspace hello world user cd build zephyr zephyr sdk install dir zephyr elf bin zephyr elf objcopy o ihex zephyr elf zephyr hex write zephyr hex to the revb board and run fault will be called however there is no uart message because the fault will be happened recursively please see investigation below investigation direct cause of the fault zephyr arch riscv core isr s check the thread mode was not user bnez kernel swap switch to user stack rv op loadreg sp thread offset to user sp the sp register will be set to in the skip callee saved reg routine at line of above code to confirm that the sp register is set to i made the following modification temporarily and confirmed fault is called zephyr arch riscv core isr s switch to user stack rv op loadreg sp thread offset to user sp switch to user stack rv op loadreg thread offset to user sp beqz fault mv sp cause of the above above is happen after user thread function was finished and thread abort system call was called from z thread entry the path of returning from thread abort system call is suspicious however i don t know the detailed cause of the problem environment please complete the following information os ubuntu lts toolchain zephyr sdk version commit target revb
1
466,884
13,435,995,054
IssuesEvent
2020-09-07 13:44:52
geocollections/sarv-edit
https://api.github.com/repos/geocollections/sarv-edit
closed
Show storage images in list view
Difficulty: Medium Priority: Low Source: App Status: Completed Type: Feature Request
Show storage (location) images in list view, similarly to specimen table/image view. Thumbnail should include eye icon - click on which would open large image file in separate window (like in case of specimen). Regular click on image should open the storage for editing. If storage has no image, empty thumbnail should be shown. If storage has more than one image, the latest should be displayed.
1.0
Show storage images in list view - Show storage (location) images in list view, similarly to specimen table/image view. Thumbnail should include eye icon - click on which would open large image file in separate window (like in case of specimen). Regular click on image should open the storage for editing. If storage has no image, empty thumbnail should be shown. If storage has more than one image, the latest should be displayed.
priority
show storage images in list view show storage location images in list view similarly to specimen table image view thumbnail should include eye icon click on which would open large image file in separate window like in case of specimen regular click on image should open the storage for editing if storage has no image empty thumbnail should be shown if storage has more than one image the latest should be displayed
1
251,060
7,998,151,319
IssuesEvent
2018-07-21 06:43:38
Repair-DeskPOS/RepairDesk-BUGS-IMPROVEMENTS
https://api.github.com/repos/Repair-DeskPOS/RepairDesk-BUGS-IMPROVEMENTS
closed
Discount error on ticket lines
Medium Priority
If discount is added to a ticket line (either in the device details repair items, or inventory items) the total amount due at the bottom of the ticket is incorrect. If the total discount is added to the bottom area it is calculated correctly. This needs fixed as commission will be paid on the totals of the individual items without taking into account the discount. It also skews the reports as they show the total value of items sold even though the discounts should have been added to each item.
1.0
Discount error on ticket lines - If discount is added to a ticket line (either in the device details repair items, or inventory items) the total amount due at the bottom of the ticket is incorrect. If the total discount is added to the bottom area it is calculated correctly. This needs fixed as commission will be paid on the totals of the individual items without taking into account the discount. It also skews the reports as they show the total value of items sold even though the discounts should have been added to each item.
priority
discount error on ticket lines if discount is added to a ticket line either in the device details repair items or inventory items the total amount due at the bottom of the ticket is incorrect if the total discount is added to the bottom area it is calculated correctly this needs fixed as commission will be paid on the totals of the individual items without taking into account the discount it also skews the reports as they show the total value of items sold even though the discounts should have been added to each item
1
119,718
4,775,006,589
IssuesEvent
2016-10-27 08:58:14
MatchboxDorry/dorry-web
https://api.github.com/repos/MatchboxDorry/dorry-web
closed
[UI]test1-the state of 'services' icon in menu
censor: approved effort: 2 (medium) feature: controller flag: fixed priority: 2 (required) type: bug
**System:** Mac mini Os X EI Capitan **Browser:** Chrome **What I want to do** I want to see the state of 'services' icon in menu. **Where I am** services page **What I have done** I saw the state of 'services' icon in menu. **What I expect:** I can see the state of 'services' icon is clickable. ![the heighlight of services](https://cloud.githubusercontent.com/assets/22925114/19549851/2e0d2e3e-96d9-11e6-91a1-94927a93317c.png) **What really happened** ![services in menu-bug](https://cloud.githubusercontent.com/assets/22925114/19543477/4f23affa-96aa-11e6-8022-318f2fa56425.png)
1.0
[UI]test1-the state of 'services' icon in menu - **System:** Mac mini Os X EI Capitan **Browser:** Chrome **What I want to do** I want to see the state of 'services' icon in menu. **Where I am** services page **What I have done** I saw the state of 'services' icon in menu. **What I expect:** I can see the state of 'services' icon is clickable. ![the heighlight of services](https://cloud.githubusercontent.com/assets/22925114/19549851/2e0d2e3e-96d9-11e6-91a1-94927a93317c.png) **What really happened** ![services in menu-bug](https://cloud.githubusercontent.com/assets/22925114/19543477/4f23affa-96aa-11e6-8022-318f2fa56425.png)
priority
the state of services icon in menu system mac mini os x ei capitan browser chrome what i want to do i want to see the state of services icon in menu where i am services page what i have done i saw the state of services icon in menu what i expect i can see the state of services icon is clickable what really happened
1
42,037
2,869,094,527
IssuesEvent
2015-06-05 23:17:26
dart-lang/test
https://api.github.com/repos/dart-lang/test
closed
Use === instead of == in CallMatcher constructor
bug Fixed Priority-Medium
<a href="https://github.com/rbeeger"><img src="https://avatars.githubusercontent.com/u/426834?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [rbeeger](https://github.com/rbeeger)** _Originally opened as dart-lang/sdk#4191_ ---- CallMatcher in the mock framework has the following constructor &nbsp;&nbsp;CallMatcher([name, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg0 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg1 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg2 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg3 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg4 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg5 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg6 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg7 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg8 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg9 = \_noArg]) { &nbsp;&nbsp;&nbsp;&nbsp;if (name == null) { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;nameFilter = anything; &nbsp;&nbsp;&nbsp;&nbsp;} else { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;nameFilter = wrapMatcher(name); &nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;argMatchers = new List&lt;Matcher&gt;(); &nbsp;&nbsp;&nbsp;&nbsp;if (arg0 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg0)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg1 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg1)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg2 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg2)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg3 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg3)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg4 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg4)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg5 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg5)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg6 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg6)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg7 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg7)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg8 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg8)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg9 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg9)); &nbsp;&nbsp;} The problem with this is that the operator == is called on each argument with \_noArg as its parameter. Since \_noArg is of type \_Sentinel, it is not of the same type as any passed argument. If the class of a passed argument has an implemented operator == that surmises that it will only be used to compare with null or with an object of the class, the comparison will fail with an error complaining that \_Sentinel doesn't have any of the properties of the class on which the operator is called. A better way is to use the identity comparison operator &equals;&equals;&equals; here. So you have &quot;if (arg0 &equals;&equals;&equals; \_noArg) return;&quot;. Flipping the sides of the comparison like in &quot;if (_noArg == arg0) return;&quot; would also work but is a waste of time as none will ever pass a \_Sentinel to this method and the default value \_noArg is only used to differentiate against an explicitly passed null.
1.0
Use === instead of == in CallMatcher constructor - <a href="https://github.com/rbeeger"><img src="https://avatars.githubusercontent.com/u/426834?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [rbeeger](https://github.com/rbeeger)** _Originally opened as dart-lang/sdk#4191_ ---- CallMatcher in the mock framework has the following constructor &nbsp;&nbsp;CallMatcher([name, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg0 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg1 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg2 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg3 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg4 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg5 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg6 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg7 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg8 = \_noArg, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;arg9 = \_noArg]) { &nbsp;&nbsp;&nbsp;&nbsp;if (name == null) { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;nameFilter = anything; &nbsp;&nbsp;&nbsp;&nbsp;} else { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;nameFilter = wrapMatcher(name); &nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;argMatchers = new List&lt;Matcher&gt;(); &nbsp;&nbsp;&nbsp;&nbsp;if (arg0 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg0)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg1 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg1)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg2 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg2)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg3 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg3)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg4 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg4)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg5 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg5)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg6 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg6)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg7 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg7)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg8 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg8)); &nbsp;&nbsp;&nbsp;&nbsp;if (arg9 == \_noArg) return; &nbsp;&nbsp;&nbsp;&nbsp;argMatchers.add(wrapMatcher(arg9)); &nbsp;&nbsp;} The problem with this is that the operator == is called on each argument with \_noArg as its parameter. Since \_noArg is of type \_Sentinel, it is not of the same type as any passed argument. If the class of a passed argument has an implemented operator == that surmises that it will only be used to compare with null or with an object of the class, the comparison will fail with an error complaining that \_Sentinel doesn't have any of the properties of the class on which the operator is called. A better way is to use the identity comparison operator &equals;&equals;&equals; here. So you have &quot;if (arg0 &equals;&equals;&equals; \_noArg) return;&quot;. Flipping the sides of the comparison like in &quot;if (_noArg == arg0) return;&quot; would also work but is a waste of time as none will ever pass a \_Sentinel to this method and the default value \_noArg is only used to differentiate against an explicitly passed null.
priority
use instead of in callmatcher constructor issue by originally opened as dart lang sdk callmatcher in the mock framework has the following constructor nbsp nbsp callmatcher name nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp noarg nbsp nbsp nbsp nbsp if name null nbsp nbsp nbsp nbsp nbsp nbsp namefilter anything nbsp nbsp nbsp nbsp else nbsp nbsp nbsp nbsp nbsp nbsp namefilter wrapmatcher name nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp argmatchers new list lt matcher gt nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp nbsp nbsp if noarg return nbsp nbsp nbsp nbsp argmatchers add wrapmatcher nbsp nbsp the problem with this is that the operator is called on each argument with noarg as its parameter since noarg is of type sentinel it is not of the same type as any passed argument if the class of a passed argument has an implemented operator that surmises that it will only be used to compare with null or with an object of the class the comparison will fail with an error complaining that sentinel doesn t have any of the properties of the class on which the operator is called a better way is to use the identity comparison operator equals equals equals here so you have quot if equals equals equals noarg return quot flipping the sides of the comparison like in quot if noarg return quot would also work but is a waste of time as none will ever pass a sentinel to this method and the default value noarg is only used to differentiate against an explicitly passed null
1
26,195
2,684,226,192
IssuesEvent
2015-03-28 19:37:26
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
opened
cursor is blinking when selecting text
1 star bug imported Priority-Medium
_From [zouabi.m...@gmail.com](https://code.google.com/u/107578137700464460751/) on November 15, 2012 08:47:47_ Required information! OS version: Windows 7 x64 ConEmu version: 121109 *Bug description* The cursor is blinking at the end of the selected text .. it's confusing _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=821_
1.0
cursor is blinking when selecting text - _From [zouabi.m...@gmail.com](https://code.google.com/u/107578137700464460751/) on November 15, 2012 08:47:47_ Required information! OS version: Windows 7 x64 ConEmu version: 121109 *Bug description* The cursor is blinking at the end of the selected text .. it's confusing _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=821_
priority
cursor is blinking when selecting text from on november required information os version windows conemu version bug description the cursor is blinking at the end of the selected text it s confusing original issue
1
266,458
8,367,955,498
IssuesEvent
2018-10-04 13:39:34
strapi/strapi
https://api.github.com/repos/strapi/strapi
closed
Count route responds 404 *only* when should return 0
Hacktoberfest priority: medium status: confirmed type: bug 🐛
**Informations - **Node.js version:**Node v10.4.1 - **npm version:** npm 6.1.0 - **Strapi version:** 3.0.0-alpha.12.6 - **Database:** 10.1.32-MariaDB (myqsl 5.6.36 / PHP 5.6.36 from XAMPP for OSX) - **Operating system:** mac os high sierra 10.13.4 **What is the current behavior?** When I run a count request with filters, and the expected resoult is greater equal than 1, It responses is the correct number, but when should respond with a 0, I get a 404 **Steps to reproduce the problem** Create some entity, fill some data, and run a count request with some filters For example I have my invoice entity <img width="746" alt="screen shot 2018-06-26 at 11 24 26" src="https://user-images.githubusercontent.com/12142386/41918837-8e551dc2-7933-11e8-9ba5-5cb6b6fcce27.png"> With this data <img width="946" alt="screen shot 2018-06-26 at 11 24 15" src="https://user-images.githubusercontent.com/12142386/41918878-9f345a36-7933-11e8-97d2-c0647a8c7dd8.png"> The "found something count" works great <img width="909" alt="screen shot 2018-06-26 at 11 23 50" src="https://user-images.githubusercontent.com/12142386/41918894-a9a38d02-7933-11e8-9157-15799f0f57a5.png"> but the "should return 0" returns a 404 <img width="906" alt="screen shot 2018-06-26 at 11 24 02" src="https://user-images.githubusercontent.com/12142386/41918935-bbf33bd8-7933-11e8-9412-d5d53dc0f0fc.png"> **What is the expected behavior?** Is this a bug or a feature? When the count ammount is 0, I think it should return a 0, its more accurate than a 404 related with https://github.com/strapi/strapi/issues/1344 maybe?
1.0
Count route responds 404 *only* when should return 0 - **Informations - **Node.js version:**Node v10.4.1 - **npm version:** npm 6.1.0 - **Strapi version:** 3.0.0-alpha.12.6 - **Database:** 10.1.32-MariaDB (myqsl 5.6.36 / PHP 5.6.36 from XAMPP for OSX) - **Operating system:** mac os high sierra 10.13.4 **What is the current behavior?** When I run a count request with filters, and the expected resoult is greater equal than 1, It responses is the correct number, but when should respond with a 0, I get a 404 **Steps to reproduce the problem** Create some entity, fill some data, and run a count request with some filters For example I have my invoice entity <img width="746" alt="screen shot 2018-06-26 at 11 24 26" src="https://user-images.githubusercontent.com/12142386/41918837-8e551dc2-7933-11e8-9ba5-5cb6b6fcce27.png"> With this data <img width="946" alt="screen shot 2018-06-26 at 11 24 15" src="https://user-images.githubusercontent.com/12142386/41918878-9f345a36-7933-11e8-97d2-c0647a8c7dd8.png"> The "found something count" works great <img width="909" alt="screen shot 2018-06-26 at 11 23 50" src="https://user-images.githubusercontent.com/12142386/41918894-a9a38d02-7933-11e8-9157-15799f0f57a5.png"> but the "should return 0" returns a 404 <img width="906" alt="screen shot 2018-06-26 at 11 24 02" src="https://user-images.githubusercontent.com/12142386/41918935-bbf33bd8-7933-11e8-9412-d5d53dc0f0fc.png"> **What is the expected behavior?** Is this a bug or a feature? When the count ammount is 0, I think it should return a 0, its more accurate than a 404 related with https://github.com/strapi/strapi/issues/1344 maybe?
priority
count route responds only when should return informations node js version node npm version npm strapi version alpha database mariadb myqsl php from xampp for osx operating system mac os high sierra what is the current behavior when i run a count request with filters and the expected resoult is greater equal than it responses is the correct number but when should respond with a i get a steps to reproduce the problem create some entity fill some data and run a count request with some filters for example i have my invoice entity img width alt screen shot at src with this data img width alt screen shot at src the found something count works great img width alt screen shot at src but the should return returns a img width alt screen shot at src what is the expected behavior is this a bug or a feature when the count ammount is i think it should return a its more accurate than a related with maybe
1
727,837
25,048,244,292
IssuesEvent
2022-11-05 14:47:49
AY2223S1-CS2103T-T09-1/tp
https://api.github.com/repos/AY2223S1-CS2103T-T09-1/tp
closed
[PE-D][Tester D] [Command Bug] Editing Client After View Switches UI Back to Full List
priority.Medium type.FunctionalBug
3. Running "edit m/client ..." after "view 1" causes the UI to switch back to the list view of all the clients. If this was the expected behaviour, it might be better to stay at the current view as it will be more intuitive for the user. For example, a user might "view 1", and then identify several areas in the client, transaction, and remarks they might want to edit. Staying in the same view will allow the user to edit all three without having to "view 1" again. Also, since editing transactions and remarks does not switch back to the list view, this will be more consistent for the user. <!--session: 1666940951846-0b9c0cb4-61b9-459e-8611-32d0e90368f5--><!--Version: Web v3.4.4--> ------------- Labels: `severity.Low` `type.FunctionalityBug` original: junweimoo/ped#3
1.0
[PE-D][Tester D] [Command Bug] Editing Client After View Switches UI Back to Full List - 3. Running "edit m/client ..." after "view 1" causes the UI to switch back to the list view of all the clients. If this was the expected behaviour, it might be better to stay at the current view as it will be more intuitive for the user. For example, a user might "view 1", and then identify several areas in the client, transaction, and remarks they might want to edit. Staying in the same view will allow the user to edit all three without having to "view 1" again. Also, since editing transactions and remarks does not switch back to the list view, this will be more consistent for the user. <!--session: 1666940951846-0b9c0cb4-61b9-459e-8611-32d0e90368f5--><!--Version: Web v3.4.4--> ------------- Labels: `severity.Low` `type.FunctionalityBug` original: junweimoo/ped#3
priority
editing client after view switches ui back to full list running edit m client after view causes the ui to switch back to the list view of all the clients if this was the expected behaviour it might be better to stay at the current view as it will be more intuitive for the user for example a user might view and then identify several areas in the client transaction and remarks they might want to edit staying in the same view will allow the user to edit all three without having to view again also since editing transactions and remarks does not switch back to the list view this will be more consistent for the user labels severity low type functionalitybug original junweimoo ped
1
306,750
9,403,589,661
IssuesEvent
2019-04-09 02:06:54
cuappdev/acai-ios
https://api.github.com/repos/cuappdev/acai-ios
closed
Quantity cell plus/minus buttons are too difficult to press
Priority: Medium Status: Available Type: Bug
**Describe the bug** The button frames are too small and are difficult to press. **Expected behavior** One should be able to tap anywhere on that side inside the frame to activate the button.
1.0
Quantity cell plus/minus buttons are too difficult to press - **Describe the bug** The button frames are too small and are difficult to press. **Expected behavior** One should be able to tap anywhere on that side inside the frame to activate the button.
priority
quantity cell plus minus buttons are too difficult to press describe the bug the button frames are too small and are difficult to press expected behavior one should be able to tap anywhere on that side inside the frame to activate the button
1
417,197
12,156,836,148
IssuesEvent
2020-04-25 19:04:44
chef/chef
https://api.github.com/repos/chef/chef
closed
Add git resource option to not checkout to new branch
Focus: SCM Resources Priority: Medium Status: Sustaining Backlog Type: Breaking Change Type: Bug
The `git` resource checks out code to a new branch ("deploy", by default). In my organization, this doesn't seem to provide any benefit, and actually causes causes quite a bit of confusion. We have various teams and tools that log onto machines expecting to muck with the git checkout, and get confused at this random branch that's not tracking any upstream repo, and doesn't match any project ticket numbers. Since in my circumstance - and I imagine many others\* - it makes sense to have 'git branch' reflect whatever was placed into the "revision" parameter, I'd like the `git` resource to have a parameter enabling this behavior. I.e., if `revision` is set to `master`, `git branch` should say "master", and the repository should be set to track origin/master, from which it was originally cloned (but still respect `action`). If `revision` is set to `e7f4630`, `git branch` should say "(detached from e7f4630)". \* I actually can't determine the benefit of the deploy branch in any circumstance, but I'm assuming the person who coded the behavior knew of one.
1.0
Add git resource option to not checkout to new branch - The `git` resource checks out code to a new branch ("deploy", by default). In my organization, this doesn't seem to provide any benefit, and actually causes causes quite a bit of confusion. We have various teams and tools that log onto machines expecting to muck with the git checkout, and get confused at this random branch that's not tracking any upstream repo, and doesn't match any project ticket numbers. Since in my circumstance - and I imagine many others\* - it makes sense to have 'git branch' reflect whatever was placed into the "revision" parameter, I'd like the `git` resource to have a parameter enabling this behavior. I.e., if `revision` is set to `master`, `git branch` should say "master", and the repository should be set to track origin/master, from which it was originally cloned (but still respect `action`). If `revision` is set to `e7f4630`, `git branch` should say "(detached from e7f4630)". \* I actually can't determine the benefit of the deploy branch in any circumstance, but I'm assuming the person who coded the behavior knew of one.
priority
add git resource option to not checkout to new branch the git resource checks out code to a new branch deploy by default in my organization this doesn t seem to provide any benefit and actually causes causes quite a bit of confusion we have various teams and tools that log onto machines expecting to muck with the git checkout and get confused at this random branch that s not tracking any upstream repo and doesn t match any project ticket numbers since in my circumstance and i imagine many others it makes sense to have git branch reflect whatever was placed into the revision parameter i d like the git resource to have a parameter enabling this behavior i e if revision is set to master git branch should say master and the repository should be set to track origin master from which it was originally cloned but still respect action if revision is set to git branch should say detached from i actually can t determine the benefit of the deploy branch in any circumstance but i m assuming the person who coded the behavior knew of one
1
672,103
22,787,490,901
IssuesEvent
2022-07-09 13:36:35
grage03/prello
https://api.github.com/repos/grage03/prello
opened
Lazy load image
frontend medium priority
### Discussed in https://github.com/grage03/prello/discussions/203 <div type='discussions-op-text'> <sup>Originally posted by **grage03** July 9, 2022</sup> This task has been standing for a long time, but so far we have not had the opportunity to implement it, now, after completing [this](https://github.com/grage03/prello/issues/200) task, we can implement lazy loading of images and show a skeleton instead of an empty space. lazy loading should be set by prop</div>
1.0
Lazy load image - ### Discussed in https://github.com/grage03/prello/discussions/203 <div type='discussions-op-text'> <sup>Originally posted by **grage03** July 9, 2022</sup> This task has been standing for a long time, but so far we have not had the opportunity to implement it, now, after completing [this](https://github.com/grage03/prello/issues/200) task, we can implement lazy loading of images and show a skeleton instead of an empty space. lazy loading should be set by prop</div>
priority
lazy load image discussed in originally posted by july this task has been standing for a long time but so far we have not had the opportunity to implement it now after completing task we can implement lazy loading of images and show a skeleton instead of an empty space lazy loading should be set by prop
1
192,401
6,849,522,425
IssuesEvent
2017-11-13 22:24:31
Azure/acs-engine
https://api.github.com/repos/Azure/acs-engine
closed
ACS engine deploy only master kubernetes node
kind/bug orchestrator/k8s priority/P2 size/medium
<!-- Thanks for filing an issue! Before hitting the button, please answer these questions. It's helpful to search the existing GitHub issues first. It's likely that another user has already reported the issue you're facing, or it's a known issue that we're already aware of--> **Is this a request for help?**: YES **Is this an ISSUE or FEATURE REQUEST?** (choose one): ISSUE **What version of acs-engine?**: Version: v0.8.0 GitCommit: 79572455 GitTreeState: clean <!-- If this is a ISSUE, please: - Fill in as much of the template below as you can. If you leave out information, we can't help you as well. If this is a FEATURE REQUEST, please: - Describe *in detail* the feature/behavior/change you'd like to see. In both cases, be ready for followup questions, and please respond in a timely manner. If we can't reproduce a bug or think a feature already exists, we might close your issue. If we're wrong, PLEASE feel free to reopen it and explain why. --> **Orchestrator and version (e.g. Kubernetes, DC/OS, Swarm)** Kubernetes 1.8 **What happened**: Deployed the template attached below (censored). Even through successfully completed and I can see the right amount of VMs etc. When I run the `kubectl get nodes` I can see only the master node i.e. ``` $kubectl get nodes NAME STATUS ROLES AGE VERSION k8s-master-???-0 Ready master 44m v1.8.0 ``` --------- Template --------- > { > "apiVersion": "vlabs", > "properties": { > "orchestratorProfile": { > "orchestratorType": "Kubernetes", > "orchestratorRelease": "1.8", > "kubernetesConfig": { > "enableRbac": true, > "clusterSubnet": "10.0.0.0/22", > "nodeStatusUpdateFrequency": "1m", > "ctrlMgrNodeMonitorGracePeriod": "5m", > "ctrlMgrPodEvictionTimeout": "1m", > "ctrlMgrRouteReconciliationPeriod": "1m", > "cloudProviderBackoff": true, > "cloudProviderBackoffRetries": 6, > "cloudProviderBackoffJitter": 1, > "cloudProviderBackoffDuration": 6, > "cloudProviderBackoffExponent": 1.5, > "cloudProviderRateLimit": true, > "cloudProviderRateLimitQPS": 3, > "cloudProviderRateLimitBucket": 10 > } > }, > "masterProfile": { > "count": 1, > "dnsPrefix": "_???_", > "vmSize": "Standard_D2_v2", > "firstConsecutiveStaticIP": "10.0.0.1", > "storageProfile" : "ManagedDisks" > }, > "agentPoolProfiles": [ > { > "name": "agentpool", > "count": 3, > "vmSize": "Standard_A2_v2", > "storageProfile" : "ManagedDisks", > "availabilityProfile": "AvailabilitySet", > "customNodeLabels": { ... } > } > ], > "linuxProfile": { > "adminUsername": "_???_", > "ssh": { > "publicKeys": [ > { > "keyData": "_ssh-rsa ...???_ > } > ] > } > }, > "servicePrincipalProfile": { > "clientId": "_???_", > "secret": "_???_" > } > } > } **What you expected to happen**: When run the `kubectl get nodes` expected to see all master and agent nodes. **How to reproduce it** (as minimally and precisely as possible): Redeploy the template. **Anything else we need to know**:
1.0
ACS engine deploy only master kubernetes node - <!-- Thanks for filing an issue! Before hitting the button, please answer these questions. It's helpful to search the existing GitHub issues first. It's likely that another user has already reported the issue you're facing, or it's a known issue that we're already aware of--> **Is this a request for help?**: YES **Is this an ISSUE or FEATURE REQUEST?** (choose one): ISSUE **What version of acs-engine?**: Version: v0.8.0 GitCommit: 79572455 GitTreeState: clean <!-- If this is a ISSUE, please: - Fill in as much of the template below as you can. If you leave out information, we can't help you as well. If this is a FEATURE REQUEST, please: - Describe *in detail* the feature/behavior/change you'd like to see. In both cases, be ready for followup questions, and please respond in a timely manner. If we can't reproduce a bug or think a feature already exists, we might close your issue. If we're wrong, PLEASE feel free to reopen it and explain why. --> **Orchestrator and version (e.g. Kubernetes, DC/OS, Swarm)** Kubernetes 1.8 **What happened**: Deployed the template attached below (censored). Even through successfully completed and I can see the right amount of VMs etc. When I run the `kubectl get nodes` I can see only the master node i.e. ``` $kubectl get nodes NAME STATUS ROLES AGE VERSION k8s-master-???-0 Ready master 44m v1.8.0 ``` --------- Template --------- > { > "apiVersion": "vlabs", > "properties": { > "orchestratorProfile": { > "orchestratorType": "Kubernetes", > "orchestratorRelease": "1.8", > "kubernetesConfig": { > "enableRbac": true, > "clusterSubnet": "10.0.0.0/22", > "nodeStatusUpdateFrequency": "1m", > "ctrlMgrNodeMonitorGracePeriod": "5m", > "ctrlMgrPodEvictionTimeout": "1m", > "ctrlMgrRouteReconciliationPeriod": "1m", > "cloudProviderBackoff": true, > "cloudProviderBackoffRetries": 6, > "cloudProviderBackoffJitter": 1, > "cloudProviderBackoffDuration": 6, > "cloudProviderBackoffExponent": 1.5, > "cloudProviderRateLimit": true, > "cloudProviderRateLimitQPS": 3, > "cloudProviderRateLimitBucket": 10 > } > }, > "masterProfile": { > "count": 1, > "dnsPrefix": "_???_", > "vmSize": "Standard_D2_v2", > "firstConsecutiveStaticIP": "10.0.0.1", > "storageProfile" : "ManagedDisks" > }, > "agentPoolProfiles": [ > { > "name": "agentpool", > "count": 3, > "vmSize": "Standard_A2_v2", > "storageProfile" : "ManagedDisks", > "availabilityProfile": "AvailabilitySet", > "customNodeLabels": { ... } > } > ], > "linuxProfile": { > "adminUsername": "_???_", > "ssh": { > "publicKeys": [ > { > "keyData": "_ssh-rsa ...???_ > } > ] > } > }, > "servicePrincipalProfile": { > "clientId": "_???_", > "secret": "_???_" > } > } > } **What you expected to happen**: When run the `kubectl get nodes` expected to see all master and agent nodes. **How to reproduce it** (as minimally and precisely as possible): Redeploy the template. **Anything else we need to know**:
priority
acs engine deploy only master kubernetes node is this a request for help yes is this an issue or feature request choose one issue what version of acs engine version gitcommit gittreestate clean if this is a issue please fill in as much of the template below as you can if you leave out information we can t help you as well if this is a feature request please describe in detail the feature behavior change you d like to see in both cases be ready for followup questions and please respond in a timely manner if we can t reproduce a bug or think a feature already exists we might close your issue if we re wrong please feel free to reopen it and explain why orchestrator and version e g kubernetes dc os swarm kubernetes what happened deployed the template attached below censored even through successfully completed and i can see the right amount of vms etc when i run the kubectl get nodes i can see only the master node i e kubectl get nodes name status roles age version master ready master template apiversion vlabs properties orchestratorprofile orchestratortype kubernetes orchestratorrelease kubernetesconfig enablerbac true clustersubnet nodestatusupdatefrequency ctrlmgrnodemonitorgraceperiod ctrlmgrpodevictiontimeout ctrlmgrroutereconciliationperiod cloudproviderbackoff true cloudproviderbackoffretries cloudproviderbackoffjitter cloudproviderbackoffduration cloudproviderbackoffexponent cloudproviderratelimit true cloudproviderratelimitqps cloudproviderratelimitbucket masterprofile count dnsprefix vmsize standard firstconsecutivestaticip storageprofile manageddisks agentpoolprofiles name agentpool count vmsize standard storageprofile manageddisks availabilityprofile availabilityset customnodelabels linuxprofile adminusername ssh publickeys keydata ssh rsa serviceprincipalprofile clientid secret what you expected to happen when run the kubectl get nodes expected to see all master and agent nodes how to reproduce it as minimally and precisely as possible redeploy the template anything else we need to know
1
587,826
17,632,281,282
IssuesEvent
2021-08-19 09:27:55
cdk8s-team/cdk8s-cli
https://api.github.com/repos/cdk8s-team/cdk8s-cli
closed
cdk import doesn't include API level for `Spec`s schema
bug effort/medium priority/p0
### Description of the bug: imported `Spec`s also should have API levels. For example, `HorizontalPodAutoscalerSpec` have been changed from v1 ([v1](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.19/#horizontalpodautoscalerspec-v1-autoscaling), [v2beta2](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.19/#horizontalpodautoscalerspec-v2beta2-autoscaling)) I understand that V1 props doesn't have API level postfix. The generated class seems to be right. ```ts export interface KubeHorizontalPodAutoscalerProps { readonly metadata?: ObjectMeta; readonly spec?: HorizontalPodAutoscalerSpec; } ``` I expected that the spec should be `HorizontalPodAutoscalerSpecV2Beta2` for v2beta2, but cdk import generated this: ```ts export interface KubeHorizontalPodAutoscalerV2Beta2Props { readonly metadata?: ObjectMeta; readonly spec?: HorizontalPodAutoscalerSpec; } ``` Actually, `HorizontalPodAutoscalerSpec`'s comment says it is generated from v2beta2, not v1. ```ts /** * HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler. * * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec */ export interface HorizontalPodAutoscalerSpec { ``` There should be `HorizontalPodAutoscalerSpec`, `HorizontalPodAutoscalerSpecV2Beta1`, `HorizontalPodAutoscalerSpecV2Beta2`. ### Reproduction Steps: ```shell cdk import k8s ``` ### Error Log: No error logs ### Environment: - **Framework Version**: v1.0.0-beta.3 - **OS**: Windows 10, WSL 1, Ubuntu 20.10 ### Other: --- This is :bug: Bug Report
1.0
cdk import doesn't include API level for `Spec`s schema - ### Description of the bug: imported `Spec`s also should have API levels. For example, `HorizontalPodAutoscalerSpec` have been changed from v1 ([v1](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.19/#horizontalpodautoscalerspec-v1-autoscaling), [v2beta2](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.19/#horizontalpodautoscalerspec-v2beta2-autoscaling)) I understand that V1 props doesn't have API level postfix. The generated class seems to be right. ```ts export interface KubeHorizontalPodAutoscalerProps { readonly metadata?: ObjectMeta; readonly spec?: HorizontalPodAutoscalerSpec; } ``` I expected that the spec should be `HorizontalPodAutoscalerSpecV2Beta2` for v2beta2, but cdk import generated this: ```ts export interface KubeHorizontalPodAutoscalerV2Beta2Props { readonly metadata?: ObjectMeta; readonly spec?: HorizontalPodAutoscalerSpec; } ``` Actually, `HorizontalPodAutoscalerSpec`'s comment says it is generated from v2beta2, not v1. ```ts /** * HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler. * * @schema io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscalerSpec */ export interface HorizontalPodAutoscalerSpec { ``` There should be `HorizontalPodAutoscalerSpec`, `HorizontalPodAutoscalerSpecV2Beta1`, `HorizontalPodAutoscalerSpecV2Beta2`. ### Reproduction Steps: ```shell cdk import k8s ``` ### Error Log: No error logs ### Environment: - **Framework Version**: v1.0.0-beta.3 - **OS**: Windows 10, WSL 1, Ubuntu 20.10 ### Other: --- This is :bug: Bug Report
priority
cdk import doesn t include api level for spec s schema description of the bug imported spec s also should have api levels for example horizontalpodautoscalerspec have been changed from i understand that props doesn t have api level postfix the generated class seems to be right ts export interface kubehorizontalpodautoscalerprops readonly metadata objectmeta readonly spec horizontalpodautoscalerspec i expected that the spec should be for but cdk import generated this ts export interface readonly metadata objectmeta readonly spec horizontalpodautoscalerspec actually horizontalpodautoscalerspec s comment says it is generated from not ts horizontalpodautoscalerspec describes the desired functionality of the horizontalpodautoscaler schema io api autoscaling horizontalpodautoscalerspec export interface horizontalpodautoscalerspec there should be horizontalpodautoscalerspec reproduction steps shell cdk import error log no error logs environment framework version beta os windows wsl ubuntu other this is bug bug report
1
400,618
11,777,930,329
IssuesEvent
2020-03-16 15:32:49
PredictiveEcology/LandWeb
https://api.github.com/repos/PredictiveEcology/LandWeb
closed
explicitly output the current condition summaries
medium-priority
currently I've added a manual `saveRDS` call and dumped the CC objects into the global environment, but this should be made more robust
1.0
explicitly output the current condition summaries - currently I've added a manual `saveRDS` call and dumped the CC objects into the global environment, but this should be made more robust
priority
explicitly output the current condition summaries currently i ve added a manual saverds call and dumped the cc objects into the global environment but this should be made more robust
1
585,733
17,516,603,662
IssuesEvent
2021-08-11 07:20:53
ita-social-projects/TeachUA
https://api.github.com/repos/ita-social-projects/TeachUA
closed
[Редагувати профіль] Email field accepts digits in domain name
bug Priority: Medium
**Environment:** Windows 10, Google Chrome version 92.0.4515.107 **Reproducible:** always **Build found:** last commit **Preconditions** 1. Go to https://speak-ukrainian.org.ua/dev/ 2. Log in **Steps to reproduce** 1. Go to 'Мій профіль' page 2. Click on 'Редагувати профіль' 3. Fill the 'Email' field with 'trol101@456gmail.com' **Actual result** The 'Email' field accepts digits in domain name ![image](https://user-images.githubusercontent.com/87894920/128855953-482fbb9f-57fb-400f-9ace-b92376b0b64e.png) **Expected result** The 'Email' field does not accept digits in domain name ![image](https://user-images.githubusercontent.com/87894920/128856169-5e5b7b54-b5a4-4bde-9a2a-83243c69e02b.png) **User story and test case links** "User story #104
1.0
[Редагувати профіль] Email field accepts digits in domain name - **Environment:** Windows 10, Google Chrome version 92.0.4515.107 **Reproducible:** always **Build found:** last commit **Preconditions** 1. Go to https://speak-ukrainian.org.ua/dev/ 2. Log in **Steps to reproduce** 1. Go to 'Мій профіль' page 2. Click on 'Редагувати профіль' 3. Fill the 'Email' field with 'trol101@456gmail.com' **Actual result** The 'Email' field accepts digits in domain name ![image](https://user-images.githubusercontent.com/87894920/128855953-482fbb9f-57fb-400f-9ace-b92376b0b64e.png) **Expected result** The 'Email' field does not accept digits in domain name ![image](https://user-images.githubusercontent.com/87894920/128856169-5e5b7b54-b5a4-4bde-9a2a-83243c69e02b.png) **User story and test case links** "User story #104
priority
email field accepts digits in domain name environment windows google chrome version reproducible always build found last commit preconditions go to log in steps to reproduce go to мій профіль page click on редагувати профіль fill the email field with com actual result the email field accepts digits in domain name expected result the email field does not accept digits in domain name user story and test case links user story
1
69,378
3,298,018,695
IssuesEvent
2015-11-02 12:19:34
geotagx/geotagx-project-template
https://api.github.com/repos/geotagx/geotagx-project-template
closed
Add button to rotate photo
medium priority
UN-ASIGN photos are often upside down or sideways, Jeremy thought he could add a button to rotate them
1.0
Add button to rotate photo - UN-ASIGN photos are often upside down or sideways, Jeremy thought he could add a button to rotate them
priority
add button to rotate photo un asign photos are often upside down or sideways jeremy thought he could add a button to rotate them
1
317,093
9,660,807,798
IssuesEvent
2019-05-20 16:19:01
blackbaud/skyux2
https://api.github.com/repos/blackbaud/skyux2
closed
Demo > repeater > include example of sky-repeater-item-context-menu component
Priority: Medium
We received a request for to demonstrate `sky-repeater-item-context-menu` in the documentation. See Slack thread at https://blackbaud.slack.com/conversation/C3TQ4C0KG/p1550170704145100. (We can also expand the explanation of the component in the docs, but there are no public inputs or outputs to document at https://github.com/blackbaud/skyux-lists/blob/master/src/app/public/modules/repeater/repeater-item-context-menu.component.ts.)
1.0
Demo > repeater > include example of sky-repeater-item-context-menu component - We received a request for to demonstrate `sky-repeater-item-context-menu` in the documentation. See Slack thread at https://blackbaud.slack.com/conversation/C3TQ4C0KG/p1550170704145100. (We can also expand the explanation of the component in the docs, but there are no public inputs or outputs to document at https://github.com/blackbaud/skyux-lists/blob/master/src/app/public/modules/repeater/repeater-item-context-menu.component.ts.)
priority
demo repeater include example of sky repeater item context menu component we received a request for to demonstrate sky repeater item context menu in the documentation see slack thread at we can also expand the explanation of the component in the docs but there are no public inputs or outputs to document at
1