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
820,930
30,795,860,096
IssuesEvent
2023-07-31 19:49:49
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[YSQL] LIMIT clause queries used with yb_fetch_size_limit are slower than the default fetch configuration
kind/enhancement area/ysql priority/medium
Jira Link: [DB-7221](https://yugabyte.atlassian.net/browse/DB-7221) ### Description Consider the following query setup: ``` create table sample(k1 int, v1 int, primary key(k1 asc)); insert into sample select i,i from generate_series(1,1000000) i; yugabyte=# explain (analyze, dist) select * from sample limit 100...
1.0
[YSQL] LIMIT clause queries used with yb_fetch_size_limit are slower than the default fetch configuration - Jira Link: [DB-7221](https://yugabyte.atlassian.net/browse/DB-7221) ### Description Consider the following query setup: ``` create table sample(k1 int, v1 int, primary key(k1 asc)); insert into sample sele...
priority
limit clause queries used with yb fetch size limit are slower than the default fetch configuration jira link description consider the following query setup create table sample int int primary key asc insert into sample select i i from generate series i yugabyte explain anal...
1
380,365
11,259,556,086
IssuesEvent
2020-01-13 08:37:49
release-monitoring/anitya
https://api.github.com/repos/release-monitoring/anitya
closed
Add link to commit for GitHub project versions
Medium Priority easyfix enhancement
After implementation of GitHub API v4 I noticed that there is option to get commitUrl for each tag. This enhancement will make application more user friendly. Here is the list of things, that needs to be done in Anitya to make this work: - [x] Retrieve the commitUrl from GitHub for each tag `anitya/lib/backends/...
1.0
Add link to commit for GitHub project versions - After implementation of GitHub API v4 I noticed that there is option to get commitUrl for each tag. This enhancement will make application more user friendly. Here is the list of things, that needs to be done in Anitya to make this work: - [x] Retrieve the commitU...
priority
add link to commit for github project versions after implementation of github api i noticed that there is option to get commiturl for each tag this enhancement will make application more user friendly here is the list of things that needs to be done in anitya to make this work retrieve the commiturl ...
1
230,417
7,610,041,730
IssuesEvent
2018-05-01 05:14:01
Gensh/condemnation
https://api.github.com/repos/Gensh/condemnation
closed
Replace labeling system
Priority: Medium Status: Completed Type: Enhancement
The github labeling system is crap. I replaced the default labels with [sane ones](https://github.com/himynameisdave/git-labelmaker).
1.0
Replace labeling system - The github labeling system is crap. I replaced the default labels with [sane ones](https://github.com/himynameisdave/git-labelmaker).
priority
replace labeling system the github labeling system is crap i replaced the default labels with
1
482,913
13,915,663,597
IssuesEvent
2020-10-21 01:15:57
Ameelio/letters-mobile
https://api.github.com/repos/Ameelio/letters-mobile
closed
[I18N] If international user, use Ameelio virtual box
medium-priority
<!--- Provide a general summary of the issue in the Title above --> ## Expected Behavior - Add country picker and default it to US - If user picks a country other than the US, we don't ask them for a return address - Add 'C/O Ameelio' to user's first line on the backend if they are using an international address ...
1.0
[I18N] If international user, use Ameelio virtual box - <!--- Provide a general summary of the issue in the Title above --> ## Expected Behavior - Add country picker and default it to US - If user picks a country other than the US, we don't ask them for a return address - Add 'C/O Ameelio' to user's first line o...
priority
if international user use ameelio virtual box expected behavior add country picker and default it to us if user picks a country other than the us we don t ask them for a return address add c o ameelio to user s first line on the backend if they are using an international address current ...
1
285,679
8,768,120,377
IssuesEvent
2018-12-17 21:56:03
radical-cybertools/radical.entk
https://api.github.com/repos/radical-cybertools/radical.entk
closed
put heartbeat responder in different thread
layer:entk priority:medium type:enhancement
Currently the creation of the units and the logging messages block the heartbeat responder. Current solution is to increase the heartbeat interval. Keeping the responder outside of the main thread should be the correct solution.
1.0
put heartbeat responder in different thread - Currently the creation of the units and the logging messages block the heartbeat responder. Current solution is to increase the heartbeat interval. Keeping the responder outside of the main thread should be the correct solution.
priority
put heartbeat responder in different thread currently the creation of the units and the logging messages block the heartbeat responder current solution is to increase the heartbeat interval keeping the responder outside of the main thread should be the correct solution
1
412,077
12,035,016,559
IssuesEvent
2020-04-13 17:07:03
xournalpp/xournalpp
https://api.github.com/repos/xournalpp/xournalpp
opened
Mime type definitions should follow the Shared MIME-info specification on Linux
bug difficulty:easy packaging priority: medium
**Affects versions :** - OS: Linux (all) - Version of Xournal++: all versions including and older than `caa3a94` **Describe the bug** The mime types defined by Xournal++ use a deprecated format in the XDG desktop spec. **Expected behavior** The mime type files should be defined according to the [Shared MIM...
1.0
Mime type definitions should follow the Shared MIME-info specification on Linux - **Affects versions :** - OS: Linux (all) - Version of Xournal++: all versions including and older than `caa3a94` **Describe the bug** The mime types defined by Xournal++ use a deprecated format in the XDG desktop spec. **Expec...
priority
mime type definitions should follow the shared mime info specification on linux affects versions os linux all version of xournal all versions including and older than describe the bug the mime types defined by xournal use a deprecated format in the xdg desktop spec expected be...
1
745,286
25,978,229,076
IssuesEvent
2022-12-19 16:29:47
robotframework/robotframework
https://api.github.com/repos/robotframework/robotframework
opened
Add type information to the visitor API
enhancement priority: medium
Visitor methods currently look like ```python class SuiteVisitor: def visit_suite(self, suite): ... ``` but we should change them to ```python from robot.model import TestSuite class SuiteVisitor: def visit_suite(self, suite: TestSuite): ... ``` The main benefit is getting a...
1.0
Add type information to the visitor API - Visitor methods currently look like ```python class SuiteVisitor: def visit_suite(self, suite): ... ``` but we should change them to ```python from robot.model import TestSuite class SuiteVisitor: def visit_suite(self, suite: TestSuite): ...
priority
add type information to the visitor api visitor methods currently look like python class suitevisitor def visit suite self suite but we should change them to python from robot model import testsuite class suitevisitor def visit suite self suite testsuite ...
1
200,888
7,017,961,809
IssuesEvent
2017-12-21 11:43:19
tendermint/ethermint
https://api.github.com/repos/tendermint/ethermint
closed
Upgrade VENUS testnet to work with 0.5.0 and 0.11.1
Difficulty: Medium Priority: Critical Status: Available Type: DevOps
Upgrade the old VENUS testnet with a new one that will be gracefully upgraded and maintains state from now.
1.0
Upgrade VENUS testnet to work with 0.5.0 and 0.11.1 - Upgrade the old VENUS testnet with a new one that will be gracefully upgraded and maintains state from now.
priority
upgrade venus testnet to work with and upgrade the old venus testnet with a new one that will be gracefully upgraded and maintains state from now
1
540,766
15,816,955,073
IssuesEvent
2021-04-05 13:54:59
MattTheLegoman/RealmsInExile
https://api.github.com/repos/MattTheLegoman/RealmsInExile
opened
AI likes to spam Pelargir Mariner MaA
bug priority: medium
**From Discord:** Is the Dev Team aware of the Pelagir Marine Spam that Gondor is doing? Entirety of Gondor in my game. Talking about 10k Stacks of Pelagir Mariners after 100 years. Possibly due to very appealing stats with 50/30 Baseline and 100 Unit size (+ Skirmisher Cost and Upkeep which is by far better than AN...
1.0
AI likes to spam Pelargir Mariner MaA - **From Discord:** Is the Dev Team aware of the Pelagir Marine Spam that Gondor is doing? Entirety of Gondor in my game. Talking about 10k Stacks of Pelagir Mariners after 100 years. Possibly due to very appealing stats with 50/30 Baseline and 100 Unit size (+ Skirmisher Cost a...
priority
ai likes to spam pelargir mariner maa from discord is the dev team aware of the pelagir marine spam that gondor is doing entirety of gondor in my game talking about stacks of pelagir mariners after years possibly due to very appealing stats with baseline and unit size skirmisher cost and upkee...
1
249,132
7,953,881,140
IssuesEvent
2018-07-12 04:30:18
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Invisible bridge built too high - Now glitched out / Disappeared
Medium Priority Respond ASAP
From Steam: "Someone on our server built a bridge strait up until they clipped the ceiling of the world. They started from ground level and just layed bridges until they hit the “ceiling”. Once they hit said ceiling the entire bridge has disappeared yet still shows on the map. Is there a way that we can delete this ...
1.0
Invisible bridge built too high - Now glitched out / Disappeared - From Steam: "Someone on our server built a bridge strait up until they clipped the ceiling of the world. They started from ground level and just layed bridges until they hit the “ceiling”. Once they hit said ceiling the entire bridge has disappeared ...
priority
invisible bridge built too high now glitched out disappeared from steam someone on our server built a bridge strait up until they clipped the ceiling of the world they started from ground level and just layed bridges until they hit the “ceiling” once they hit said ceiling the entire bridge has disappeared ...
1
86,981
3,735,670,530
IssuesEvent
2016-03-08 13:14:42
igabriel85/IeAT-DICE-Repository
https://api.github.com/repos/igabriel85/IeAT-DICE-Repository
opened
Implement last valid state return resource
enhancement feature Medium Priority
Each microservice should store and be able to return the last valid JSON used to generate their respective configuration files.
1.0
Implement last valid state return resource - Each microservice should store and be able to return the last valid JSON used to generate their respective configuration files.
priority
implement last valid state return resource each microservice should store and be able to return the last valid json used to generate their respective configuration files
1
313,398
9,560,981,576
IssuesEvent
2019-05-03 21:18:55
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
closed
v9-gui: POTD sources can have rules
Priority: Medium Type: Bug
In old GUI, POTD source doesn't have authentication and administration rules because that didn't make sense. In new GUI, it's possible to set such kind of rules.
1.0
v9-gui: POTD sources can have rules - In old GUI, POTD source doesn't have authentication and administration rules because that didn't make sense. In new GUI, it's possible to set such kind of rules.
priority
gui potd sources can have rules in old gui potd source doesn t have authentication and administration rules because that didn t make sense in new gui it s possible to set such kind of rules
1
713,740
24,537,864,177
IssuesEvent
2022-10-11 22:55:15
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[YCQL] Create "null" Jsonb object only once
kind/enhancement priority/medium area/ycql
Jira Link: [DB-3669](https://yugabyte.atlassian.net/browse/DB-3669) ### Description Currently in `Executor::ColumnArgsToPB`, we create "null" Jsonb object upon every invocation of the method. This is wasteful. This issue creates "null" Jsonb object only once and references the static string in `Executor::ColumnAr...
1.0
[YCQL] Create "null" Jsonb object only once - Jira Link: [DB-3669](https://yugabyte.atlassian.net/browse/DB-3669) ### Description Currently in `Executor::ColumnArgsToPB`, we create "null" Jsonb object upon every invocation of the method. This is wasteful. This issue creates "null" Jsonb object only once and refer...
priority
create null jsonb object only once jira link description currently in executor columnargstopb we create null jsonb object upon every invocation of the method this is wasteful this issue creates null jsonb object only once and references the static string in executor columnargstopb
1
25,849
2,684,011,264
IssuesEvent
2015-03-28 15:29:09
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
closed
Ошибка в Loader.dll Far3Wrapp приводит к тому, что DirSyncW 0.33 - 100&#37; роняет Far 3.0 при работе под враппером в момент выхода из редактора
1 star bug imported Priority-Medium
_From [victo...@mail333.com](https://code.google.com/u/114732384912597087095/) on June 18, 2011 17:13:59_ Проблема выглядит в общем так: 1) запускаем Far 3.0 любой из старших версий с установленным враппером Far3wrapp (версия любая, основное тестирование начал в Far 3.0.2027 + Far3Wrapp 1.7), в меню плагинов вызыва...
1.0
Ошибка в Loader.dll Far3Wrapp приводит к тому, что DirSyncW 0.33 - 100&#37; роняет Far 3.0 при работе под враппером в момент выхода из редактора - _From [victo...@mail333.com](https://code.google.com/u/114732384912597087095/) on June 18, 2011 17:13:59_ Проблема выглядит в общем так: 1) запускаем Far 3.0 любой из ст...
priority
ошибка в loader dll приводит к тому что dirsyncw роняет far при работе под враппером в момент выхода из редактора from on june проблема выглядит в общем так запускаем far любой из старших версий с установленным враппером версия любая основное тестирование начал в fa...
1
77,594
3,507,170,774
IssuesEvent
2016-01-08 11:40:25
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
Disconecting players (BB #577)
migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** smoldar **Original Date:** 06.04.2014 16:44:42 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** closed **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/577 <hr> Players are disconected, if they receive a lot of...
1.0
Disconecting players (BB #577) - This issue was migrated from bitbucket. **Original Reporter:** smoldar **Original Date:** 06.04.2014 16:44:42 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** closed **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/577 <hr> Players are disc...
priority
disconecting players bb this issue was migrated from bitbucket original reporter smoldar original date gmt original priority major original type bug original state closed direct link players are disconected if they receive a lot of data more objects or other
1
23,932
2,664,809,641
IssuesEvent
2015-03-20 16:36:53
web2py/web2py
https://api.github.com/repos/web2py/web2py
closed
Rss feed
bug imported Priority-Medium
_From [dam..._at_gmail.com](https://code.google.com/u/101094302681590029076/) on January 25, 2015 19:51:23_ M. Di Pierro say: Please open a ticket and we will fix it soon. What steps will reproduce the problem? What string type pass for this work? file: gluon/serializers.py (from 25 Sep 2014) line: 182 def ...
1.0
Rss feed - _From [dam..._at_gmail.com](https://code.google.com/u/101094302681590029076/) on January 25, 2015 19:51:23_ M. Di Pierro say: Please open a ticket and we will fix it soon. What steps will reproduce the problem? What string type pass for this work? file: gluon/serializers.py (from 25 Sep 2014) line: 182 ...
priority
rss feed from on january m di pierro say please open a ticket and we will fix it soon what steps will reproduce the problem what string type pass for this work file gluon serializers py from sep line def safestr obj key default return str obj encode utf ...
1
735,617
25,406,861,313
IssuesEvent
2022-11-22 15:53:16
clt313/SuperballVR
https://api.github.com/repos/clt313/SuperballVR
closed
Implement hands asset
priority: medium
Add a hands asset to the game and replace the default hand controller with that asset. Was thinking: https://assetstore.unity.com/packages/3d/characters/stylized-simple-hands-221297
1.0
Implement hands asset - Add a hands asset to the game and replace the default hand controller with that asset. Was thinking: https://assetstore.unity.com/packages/3d/characters/stylized-simple-hands-221297
priority
implement hands asset add a hands asset to the game and replace the default hand controller with that asset was thinking
1
700,007
24,041,543,447
IssuesEvent
2022-09-16 02:39:29
Azordev/did-admin-panel
https://api.github.com/repos/Azordev/did-admin-panel
closed
Make Add Product Form Functional **Edit: Just add image**
EE-3 priority high skill-medium DEV Check QA check
**Is your feature request related to a problem? Please describe.** When I am in the product form, and I fill in all the fields, I get an error when saving. ### Acceptance Criteria - [ ] 'Nombre' and 'Precio' is obligatory - [ ] When an image is entered it is displayed - [ ] When you click save, the informatio...
1.0
Make Add Product Form Functional **Edit: Just add image** - **Is your feature request related to a problem? Please describe.** When I am in the product form, and I fill in all the fields, I get an error when saving. ### Acceptance Criteria - [ ] 'Nombre' and 'Precio' is obligatory - [ ] When an image is entere...
priority
make add product form functional edit just add image is your feature request related to a problem please describe when i am in the product form and i fill in all the fields i get an error when saving acceptance criteria nombre and precio is obligatory when an image is entered it...
1
22,245
2,648,468,574
IssuesEvent
2015-03-14 00:03:19
dhamp/eiskaltdcpp
https://api.github.com/repos/dhamp/eiskaltdcpp
opened
Вставка ника даблкликом
enhancement imported Priority-Medium
_From [uni...@gmail.com](https://code.google.com/u/101178445204139973213/) on December 13, 2010 18:49:44_ Версия - 2.1.2 (git) При даблклике по нику в чате, он вставляет ник даже если юзер уже ушел. _Original issue: http://code.google.com/p/eiskaltdc/issues/detail?id=879_
1.0
Вставка ника даблкликом - _From [uni...@gmail.com](https://code.google.com/u/101178445204139973213/) on December 13, 2010 18:49:44_ Версия - 2.1.2 (git) При даблклике по нику в чате, он вставляет ник даже если юзер уже ушел. _Original issue: http://code.google.com/p/eiskaltdc/issues/detail?id=879_
priority
вставка ника даблкликом from on december версия git при даблклике по нику в чате он вставляет ник даже если юзер уже ушел original issue
1
42,072
2,869,096,144
IssuesEvent
2015-06-05 23:18:13
dart-lang/test
https://api.github.com/repos/dart-lang/test
closed
unittest out of sync
bug Fixed Priority-Medium
<a href="https://github.com/stevemessick"><img src="https://avatars.githubusercontent.com/u/8518285?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [stevemessick](https://github.com/stevemessick)** _Originally opened as dart-lang/sdk#8031_ ---- **[user feedback]** solo_test fails at line 73...
1.0
unittest out of sync - <a href="https://github.com/stevemessick"><img src="https://avatars.githubusercontent.com/u/8518285?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [stevemessick](https://github.com/stevemessick)** _Originally opened as dart-lang/sdk#8031_ ---- **[user feedback]** sol...
priority
unittest out of sync issue by originally opened as dart lang sdk solo test fails at line of unittest dart unittest dart tests tests filter filterfunction nosuchmethod quot filter quot on the tests list this is the second nosuchmethod i ve encounter with lists in this ve...
1
100,669
4,102,541,800
IssuesEvent
2016-06-04 02:52:15
HabitRPG/habitrpg
https://api.github.com/repos/HabitRPG/habitrpg
closed
Reject button should always delete quest invitation (was: Keep getting invitations for an already completed quest)
help welcome now priority - medium
_edit by admin:_ The immediate problem described below has been fixed (the bad invitation no longer exists). **However we should change the reject button so that it always works, even if the invitation is for a quest or party that are no longer relevant. I.e., clicking the reject button should ALWAYS completely r...
1.0
Reject button should always delete quest invitation (was: Keep getting invitations for an already completed quest) - _edit by admin:_ The immediate problem described below has been fixed (the bad invitation no longer exists). **However we should change the reject button so that it always works, even if the invita...
priority
reject button should always delete quest invitation was keep getting invitations for an already completed quest edit by admin the immediate problem described below has been fixed the bad invitation no longer exists however we should change the reject button so that it always works even if the invita...
1
387,722
11,467,138,604
IssuesEvent
2020-02-08 02:24:20
MolSnoo/Alter-Ego
https://api.github.com/repos/MolSnoo/Alter-Ego
closed
Remake Player.die method
feature medium priority
New die function should update the Player sheet data using the new format.
1.0
Remake Player.die method - New die function should update the Player sheet data using the new format.
priority
remake player die method new die function should update the player sheet data using the new format
1
30,045
2,722,141,770
IssuesEvent
2015-04-14 00:21:05
CruxFramework/crux-smart-faces
https://api.github.com/repos/CruxFramework/crux-smart-faces
closed
Problem in the arrows of the RollingPanel component on the Firefox
bug imported Module-CruxSmartFaces Priority-Medium TargetVersion-5.3.0
_From [flavia.jesus@triggolabs.com](https://code.google.com/u/flavia.jesus@triggolabs.com/) on March 16, 2015 10:29:13_ The arrows of the RollingPanel component are reversed on the Firefox. _Original issue: http://code.google.com/p/crux-framework/issues/detail?id=624_
1.0
Problem in the arrows of the RollingPanel component on the Firefox - _From [flavia.jesus@triggolabs.com](https://code.google.com/u/flavia.jesus@triggolabs.com/) on March 16, 2015 10:29:13_ The arrows of the RollingPanel component are reversed on the Firefox. _Original issue: http://code.google.com/p/crux-framework/is...
priority
problem in the arrows of the rollingpanel component on the firefox from on march the arrows of the rollingpanel component are reversed on the firefox original issue
1
458,092
13,168,546,404
IssuesEvent
2020-08-11 12:19:28
clabe45/vidar
https://api.github.com/repos/clabe45/vidar
opened
Mask effect
priority:medium type:enhancement
This effect takes a "mask" layer as input, and multiply the transparency of every pixel in the target by the brightness of the mask pixel (white pixel = transparency doesn't change, black pixel = fully transparent). To utilize hardware accleration, you should subclass the `Shader` effect. Relevant code: [`Shad...
1.0
Mask effect - This effect takes a "mask" layer as input, and multiply the transparency of every pixel in the target by the brightness of the mask pixel (white pixel = transparency doesn't change, black pixel = fully transparent). To utilize hardware accleration, you should subclass the `Shader` effect. Relevant c...
priority
mask effect this effect takes a mask layer as input and multiply the transparency of every pixel in the target by the brightness of the mask pixel white pixel transparency doesn t change black pixel fully transparent to utilize hardware accleration you should subclass the shader effect relevant c...
1
34,160
2,775,880,517
IssuesEvent
2015-05-04 18:36:02
BirminghamConservatoire/IntegraLive
https://api.github.com/repos/BirminghamConservatoire/IntegraLive
closed
Test in Integra Live doesn't work in Module Creator
1.7 bug Module Creator priority medium
To reproduce: - Edit a module - Select "Test in Integra Live" Behaviour: - Integra Live opens but hangs at "Installing module..."
1.0
Test in Integra Live doesn't work in Module Creator - To reproduce: - Edit a module - Select "Test in Integra Live" Behaviour: - Integra Live opens but hangs at "Installing module..."
priority
test in integra live doesn t work in module creator to reproduce edit a module select test in integra live behaviour integra live opens but hangs at installing module
1
696,832
23,917,864,275
IssuesEvent
2022-09-09 14:13:01
Cotalker/documentation
https://api.github.com/repos/Cotalker/documentation
closed
Bug report: System bot is used instead of bot defined in the routine for global routines.
Bug report Bug medium priority
### Affected system Cotalker Web Application, Cotalker Api ### Affected system (other) Backend ### Affected environment Production, Staging, Development ### Affected environment (other) _No response_ ### App version 15.0.0 ### Details Estaba usando un bot global slash Command y nos dimos cuenta que usa como ...
1.0
Bug report: System bot is used instead of bot defined in the routine for global routines. - ### Affected system Cotalker Web Application, Cotalker Api ### Affected system (other) Backend ### Affected environment Production, Staging, Development ### Affected environment (other) _No response_ ### App version 15....
priority
bug report system bot is used instead of bot defined in the routine for global routines affected system cotalker web application cotalker api affected system other backend affected environment production staging development affected environment other no response app version ...
1
685,727
23,466,293,303
IssuesEvent
2022-08-16 17:05:32
onesoft-sudo/sudobot
https://api.github.com/repos/onesoft-sudo/sudobot
closed
Upgrade strategy of loading services
bug priority:medium important status:ready-for-fixing non-moderation style refactor
Upgrade strategy of loading services into the client class. Static => Dynamic
1.0
Upgrade strategy of loading services - Upgrade strategy of loading services into the client class. Static => Dynamic
priority
upgrade strategy of loading services upgrade strategy of loading services into the client class static dynamic
1
340,313
10,270,580,947
IssuesEvent
2019-08-23 12:02:30
salesagility/SuiteCRM
https://api.github.com/repos/salesagility/SuiteCRM
closed
New user password not being generated
Bug Fix Proposed Medium Priority Resolved: Next Release
<!--- Provide a general summary of the issue in the **Title** above --> <!--- Before you open an issue, please check if a similar issue already exists or has been closed before. ---> <!--- If you have discovered a security risk please report it by emailing security@suitecrm.com. This will be delivered to the product ...
1.0
New user password not being generated - <!--- Provide a general summary of the issue in the **Title** above --> <!--- Before you open an issue, please check if a similar issue already exists or has been closed before. ---> <!--- If you have discovered a security risk please report it by emailing security@suitecrm.com...
priority
new user password not being generated issue creating a new user does not generate a new password for the user and does not send a new account email this started happening to me when i upgraded from to expected behavior when a new user is created an email should be sent to th...
1
76,986
3,506,234,879
IssuesEvent
2016-01-08 04:57:07
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
Reset pet talents removes pet skill (BB #45)
Category: Miscellaneous migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** **Original Date:** 25.02.2010 11:44:47 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** invalid **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/45 <hr> After you reset pet talents, as a hunter, the pet loses ...
1.0
Reset pet talents removes pet skill (BB #45) - This issue was migrated from bitbucket. **Original Reporter:** **Original Date:** 25.02.2010 11:44:47 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** invalid **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/45 <hr> After you...
priority
reset pet talents removes pet skill bb this issue was migrated from bitbucket original reporter original date gmt original priority major original type bug original state invalid direct link after you reset pet talents as a hunter the pet loses his main attacki...
1
44,120
2,899,160,250
IssuesEvent
2015-06-17 09:34:10
greenlion/PHP-SQL-Parser
https://api.github.com/repos/greenlion/PHP-SQL-Parser
closed
Parser does not correctly parse a count(*) expression
bug imported Priority-Medium
_From [greenlion@gmail.com](https://code.google.com/u/greenlion@gmail.com/) on July 02, 2012 02:46:25_ What steps will reproduce the problem? 1. try to parse the following: select i1, count(*) cnt from test.s1 group by i1 2. You'll get the following, which has an incorrect 'base_expr' and the alias is missing. It...
1.0
Parser does not correctly parse a count(*) expression - _From [greenlion@gmail.com](https://code.google.com/u/greenlion@gmail.com/) on July 02, 2012 02:46:25_ What steps will reproduce the problem? 1. try to parse the following: select i1, count(*) cnt from test.s1 group by i1 2. You'll get the following, which ha...
priority
parser does not correctly parse a count expression from on july what steps will reproduce the problem try to parse the following select count cnt from test group by you ll get the following which has an incorrect base expr and the alias is missing it treats the alias as...
1
598,117
18,237,204,438
IssuesEvent
2021-10-01 08:29:14
TilBlechschmidt/WebGrid
https://api.github.com/repos/TilBlechschmidt/WebGrid
closed
Unable to create WebDriver session
Type: Bug Priority: Medium Status: In Progress
### 🐛 Bug description Default WebGrid with docker-compose can`t do ParallelSeleniumTest. ### 🦶 Reproduction steps Start WebGrid with docker-compose. Run in ParallelSeleniumTest : cargo run -- http://localhost:8080/ 1 ### 🎯 Expected behaviour ParallelSeleniumTest should pass. ### 📺 Screenshots I can ...
1.0
Unable to create WebDriver session - ### 🐛 Bug description Default WebGrid with docker-compose can`t do ParallelSeleniumTest. ### 🦶 Reproduction steps Start WebGrid with docker-compose. Run in ParallelSeleniumTest : cargo run -- http://localhost:8080/ 1 ### 🎯 Expected behaviour ParallelSeleniumTest shoul...
priority
unable to create webdriver session 🐛 bug description default webgrid with docker compose can t do parallelseleniumtest 🦶 reproduction steps start webgrid with docker compose run in parallelseleniumtest cargo run 🎯 expected behaviour parallelseleniumtest should pass 📺 scr...
1
230,973
7,622,012,418
IssuesEvent
2018-05-03 10:33:39
interactive-instruments/ldproxy
https://api.github.com/repos/interactive-instruments/ldproxy
closed
support WFS with HTTP basic auth
enhancement priority: medium progress: shipping
Is it possible to consume web feature services with simple http authentication? I managed to add a service which is protected by simple http authentication by adding the url like this: http://user:password@normalurl It would be beneficial if it would be possible to specify username and password through the web i...
1.0
support WFS with HTTP basic auth - Is it possible to consume web feature services with simple http authentication? I managed to add a service which is protected by simple http authentication by adding the url like this: http://user:password@normalurl It would be beneficial if it would be possible to specify user...
priority
support wfs with http basic auth is it possible to consume web feature services with simple http authentication i managed to add a service which is protected by simple http authentication by adding the url like this it would be beneficial if it would be possible to specify username and password through the...
1
178,722
6,617,891,456
IssuesEvent
2017-09-21 05:05:04
vmware/vic
https://api.github.com/repos/vmware/vic
opened
vic-machine: detect and address subnet segregation between VC and ESX hosts
area/ux component/vic-machine priority/medium
**Story** As a viadmin I want vic-machine to fully validate my deployment options against the infrastructure As a viadmin I follow VMware best practice and place vCenter and ESX hosts in separate subnets **Details** The `vic-machine create --management-network-gateway` supports specifying additional subnets that ...
1.0
vic-machine: detect and address subnet segregation between VC and ESX hosts - **Story** As a viadmin I want vic-machine to fully validate my deployment options against the infrastructure As a viadmin I follow VMware best practice and place vCenter and ESX hosts in separate subnets **Details** The `vic-machine cre...
priority
vic machine detect and address subnet segregation between vc and esx hosts story as a viadmin i want vic machine to fully validate my deployment options against the infrastructure as a viadmin i follow vmware best practice and place vcenter and esx hosts in separate subnets details the vic machine cre...
1
762,598
26,724,849,324
IssuesEvent
2023-01-29 15:37:25
frappe/erpnext
https://api.github.com/repos/frappe/erpnext
closed
Backdated stock recos when cancelled in mentioned case, shows wrong qty in stock ledger
bug frappe-support stock Medium Priority QA
### Information about bug Reference Issue - [26158](https://github.com/frappe/erpnext/pull/26158) While checking this PR (Case 3) when backdated reco 2 and 1 were posted on 1st and 4th respectively of the previous month, the stock ledger report and bin are showing correct qty as expected. But when I canceled the...
1.0
Backdated stock recos when cancelled in mentioned case, shows wrong qty in stock ledger - ### Information about bug Reference Issue - [26158](https://github.com/frappe/erpnext/pull/26158) While checking this PR (Case 3) when backdated reco 2 and 1 were posted on 1st and 4th respectively of the previous month, the s...
priority
backdated stock recos when cancelled in mentioned case shows wrong qty in stock ledger information about bug reference issue while checking this pr case when backdated reco and were posted on and respectively of the previous month the stock ledger report and bin are showing correct qty as ...
1
54,943
3,071,643,359
IssuesEvent
2015-08-19 13:20:48
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
ClickOnMenuItem SubMenu Scroll
bug imported Priority-Medium
_From [JoaRe...@gmail.com](https://code.google.com/u/112856617907425013321/) on December 17, 2010 05:36:45_ What steps will reproduce the problem? 1. Have so many Menu Options in your Activity, so that the SubMenu can be scrolled 2. Have a Menu Option "ABC" that is the last MenuOption to be added to the Menu 3. Call...
1.0
ClickOnMenuItem SubMenu Scroll - _From [JoaRe...@gmail.com](https://code.google.com/u/112856617907425013321/) on December 17, 2010 05:36:45_ What steps will reproduce the problem? 1. Have so many Menu Options in your Activity, so that the SubMenu can be scrolled 2. Have a Menu Option "ABC" that is the last MenuOption...
priority
clickonmenuitem submenu scroll from on december what steps will reproduce the problem have so many menu options in your activity so that the submenu can be scrolled have a menu option abc that is the last menuoption to be added to the menu call the function clickonmenuitem abc true...
1
398,133
11,738,231,172
IssuesEvent
2020-03-11 15:46:38
momentum-mod/game
https://api.github.com/repos/momentum-mod/game
closed
Skyboxes are culled when looking away with a high enough FOV
Blocked: Needs engine access Priority: Low Size: Medium Type: Bug
**Describe the bug** If FOV is set high enough, the skybox gets culled on the sides revealing the void. **To Reproduce** - Set `fov_desired` to a higher value like 120 - Load a map and look at the skybox **Expected behavior** The side faces show the void if looking away **Screenshots** This is taken wit...
1.0
Skyboxes are culled when looking away with a high enough FOV - **Describe the bug** If FOV is set high enough, the skybox gets culled on the sides revealing the void. **To Reproduce** - Set `fov_desired` to a higher value like 120 - Load a map and look at the skybox **Expected behavior** The side faces show...
priority
skyboxes are culled when looking away with a high enough fov describe the bug if fov is set high enough the skybox gets culled on the sides revealing the void to reproduce set fov desired to a higher value like load a map and look at the skybox expected behavior the side faces show t...
1
648,188
21,178,043,296
IssuesEvent
2022-04-08 03:43:03
UoaWDCC/NZCSA-Frontend
https://api.github.com/repos/UoaWDCC/NZCSA-Frontend
opened
[Forum] Search section of the search component
Status: Available Priority: Medium Type: Feature
**Describe the task that needs to be done.** Implement the search section of the search component. It will be uses for both desktop and small screen search component ![image](https://user-images.githubusercontent.com/66720955/162358278-0dfd4c6d-1561-47c9-b47e-f9dd3ea5a124.png) **Describe how a solution to your p...
1.0
[Forum] Search section of the search component - **Describe the task that needs to be done.** Implement the search section of the search component. It will be uses for both desktop and small screen search component ![image](https://user-images.githubusercontent.com/66720955/162358278-0dfd4c6d-1561-47c9-b47e-f9dd3ea5...
priority
search section of the search component describe the task that needs to be done implement the search section of the search component it will be uses for both desktop and small screen search component describe how a solution to your proposed task might look like and any alternatives considered ...
1
673,297
22,956,884,724
IssuesEvent
2022-07-19 12:23:54
ut-issl/s2e-core
https://api.github.com/repos/ut-issl/s2e-core
closed
Extend to other center bodies
priority::medium
## Overview Extend all features to select other bodies as the central body. ## Details At least, we need to update the following features - [ ] CelestialRotation - [x] Orbit - [x] Selecting method for central body We also need to check other features we need to extend for other center bodies. ## Conditio...
1.0
Extend to other center bodies - ## Overview Extend all features to select other bodies as the central body. ## Details At least, we need to update the following features - [ ] CelestialRotation - [x] Orbit - [x] Selecting method for central body We also need to check other features we need to extend for oth...
priority
extend to other center bodies overview extend all features to select other bodies as the central body details at least we need to update the following features celestialrotation orbit selecting method for central body we also need to check other features we need to extend for other cen...
1
355,157
10,576,933,645
IssuesEvent
2019-10-07 18:58:17
compodoc/compodoc
https://api.github.com/repos/compodoc/compodoc
closed
[BUG] Router can't paint lazy load module routes
Context : routing Priority: Medium Status: Accepted Time: ~3 hours Type: Bug wontfix
use "@compodoc/compodoc": "^1.1.3", ``` @NgModule({ declarations: [ AppComponent ], imports: [ HttpClientModule, BrowserModule, AppModuleRoutes, <--- router module GeneralModule, AuthModule, ], providers: [ { provide: HTTP_INTERCEPTORS, useClass: AppHttpIntercepto...
1.0
[BUG] Router can't paint lazy load module routes - use "@compodoc/compodoc": "^1.1.3", ``` @NgModule({ declarations: [ AppComponent ], imports: [ HttpClientModule, BrowserModule, AppModuleRoutes, <--- router module GeneralModule, AuthModule, ], providers: [ { prov...
priority
router can t paint lazy load module routes use compodoc compodoc ngmodule declarations appcomponent imports httpclientmodule browsermodule appmoduleroutes router module generalmodule authmodule providers provide ...
1
308,571
9,440,878,973
IssuesEvent
2019-04-14 21:07:13
CS2103-AY1819S2-T12-2/main
https://api.github.com/repos/CS2103-AY1819S2-T12-2/main
closed
As a user, I want to use a GUI to add and edit flashcards
priority.Medium type.Epic type.Story
With the addition of image support as stated in #32, it is nice to have a Graphical User Interface (GUI) to add and edit flashcards, as it makes editing flashcards much easier and less clunky. Some things to do: - [ ] Create an add / edit GUI _display_ to show the fields and properties of a flashcard in explicit de...
1.0
As a user, I want to use a GUI to add and edit flashcards - With the addition of image support as stated in #32, it is nice to have a Graphical User Interface (GUI) to add and edit flashcards, as it makes editing flashcards much easier and less clunky. Some things to do: - [ ] Create an add / edit GUI _display_ to ...
priority
as a user i want to use a gui to add and edit flashcards with the addition of image support as stated in it is nice to have a graphical user interface gui to add and edit flashcards as it makes editing flashcards much easier and less clunky some things to do create an add edit gui display to sho...
1
322,158
9,813,645,229
IssuesEvent
2019-06-13 08:28:45
Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth
https://api.github.com/repos/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth
closed
[LOCALIZATION] | COURTIER_FEMALE_CAP
:beetle: bug - localization :scroll: :grey_exclamation: priority medium
**Mod Version** b1b3770e **Please explain your issue in as much detail as possible:** COURTIER_FEMALE_CAP **Upload screenshots of the problem localization:** <details> ![image](https://user-images.githubusercontent.com/46576860/59415959-2fb95d00-8dcd-11e9-8538-dc690d1039ea.png) </details>
1.0
[LOCALIZATION] | COURTIER_FEMALE_CAP - **Mod Version** b1b3770e **Please explain your issue in as much detail as possible:** COURTIER_FEMALE_CAP **Upload screenshots of the problem localization:** <details> ![image](https://user-images.githubusercontent.com/46576860/59415959-2fb95d00-8dcd-11e9-8538-dc690d10...
priority
courtier female cap mod version please explain your issue in as much detail as possible courtier female cap upload screenshots of the problem localization
1
484,639
13,943,225,078
IssuesEvent
2020-10-22 22:35:10
SachaOropeza/AH64D-Project
https://api.github.com/repos/SachaOropeza/AH64D-Project
closed
Weapons may not be correctly synced between clients at times
bug medium priority
Multiplayer testing with one other player on a dedicated server. This issue occurred after a rough landing, where the aircraft was first 'healed' in Zeus, and then repaired/refueled through the arming menu. After the crash, the CPG player reported still having all missiles and nearly 1200 rounds of ammo on the WPN p...
1.0
Weapons may not be correctly synced between clients at times - Multiplayer testing with one other player on a dedicated server. This issue occurred after a rough landing, where the aircraft was first 'healed' in Zeus, and then repaired/refueled through the arming menu. After the crash, the CPG player reported still ...
priority
weapons may not be correctly synced between clients at times multiplayer testing with one other player on a dedicated server this issue occurred after a rough landing where the aircraft was first healed in zeus and then repaired refueled through the arming menu after the crash the cpg player reported still ...
1
106,903
4,287,479,950
IssuesEvent
2016-07-16 20:03:52
CascadesCarnivoreProject/Timelapse
https://api.github.com/repos/CascadesCarnivoreProject/Timelapse
closed
What to do when there are no images
Medium Priority fix
Timelapse could be placed in a state where there are no images: - when a template is opened but there are no images in that folder - when all images and their data are deleted by the user Currently, Timelapse does not handle this. For the meantime, I have put in a check in DeleteImages that does not allow the use...
1.0
What to do when there are no images - Timelapse could be placed in a state where there are no images: - when a template is opened but there are no images in that folder - when all images and their data are deleted by the user Currently, Timelapse does not handle this. For the meantime, I have put in a check in D...
priority
what to do when there are no images timelapse could be placed in a state where there are no images when a template is opened but there are no images in that folder when all images and their data are deleted by the user currently timelapse does not handle this for the meantime i have put in a check in d...
1
78,329
3,509,574,092
IssuesEvent
2016-01-08 23:33:19
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
[spell] Improved drain soul (BB #1102)
Category: Spells migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** Dikkedeur **Original Date:** 15.08.2015 07:08:46 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/1102 <hr> rev: c07fe354bafbd8c689bf67de1106c8c31ca1ef9...
1.0
[spell] Improved drain soul (BB #1102) - This issue was migrated from bitbucket. **Original Reporter:** Dikkedeur **Original Date:** 15.08.2015 07:08:46 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/1102 <hr> rev...
priority
improved drain soul bb this issue was migrated from bitbucket original reporter dikkedeur original date gmt original priority major original type bug original state resolved direct link rev tier affliction talent intended to restore of maximum mana up...
1
200,828
7,017,075,153
IssuesEvent
2017-12-21 08:03:44
JKGDevs/JediKnightGalaxies
https://api.github.com/repos/JKGDevs/JediKnightGalaxies
closed
Disintegration does not seem to function.
bug priority:medium
Thermal detonators do not seem to cause disintegration, despite their damage type (MOD_DISRUPTOR) being flagged as such. It's likely this extends to other weapons using this damage type.
1.0
Disintegration does not seem to function. - Thermal detonators do not seem to cause disintegration, despite their damage type (MOD_DISRUPTOR) being flagged as such. It's likely this extends to other weapons using this damage type.
priority
disintegration does not seem to function thermal detonators do not seem to cause disintegration despite their damage type mod disruptor being flagged as such it s likely this extends to other weapons using this damage type
1
557,022
16,498,796,571
IssuesEvent
2021-05-25 12:53:50
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
opened
GIPHY dropdown > Minor label update
feature: enhancement priority: medium
As per Giphy guideline, we need to do a minor text update. Simply rename text everywhere in dropdown from "Search GIFs" to "Search GIPHY": https://prnt.sc/13e9fzm Should be renamed in Activity Update, Activity Comment, Forum Discussion, Forum Reply, Private Message, etc. Make sure we consider this change in all...
1.0
GIPHY dropdown > Minor label update - As per Giphy guideline, we need to do a minor text update. Simply rename text everywhere in dropdown from "Search GIFs" to "Search GIPHY": https://prnt.sc/13e9fzm Should be renamed in Activity Update, Activity Comment, Forum Discussion, Forum Reply, Private Message, etc. Ma...
priority
giphy dropdown minor label update as per giphy guideline we need to do a minor text update simply rename text everywhere in dropdown from search gifs to search giphy should be renamed in activity update activity comment forum discussion forum reply private message etc make sure we consider th...
1
317,617
9,667,001,303
IssuesEvent
2019-05-21 12:16:34
sunpy/sunpy
https://api.github.com/repos/sunpy/sunpy
closed
Default output observer for solar_rotate_coordinate?
Bug(?) Effort Medium Package Novice Priority Low physics
Looking at `solar_rotate_coordinate` i am left to wonder if the default output observer should be the input observer (here: https://github.com/sunpy/sunpy/blob/master/sunpy/physics/differential_rotation.py#L100). It seems weird to default that to "earth" when I would expect a more natural assumption to be the locati...
1.0
Default output observer for solar_rotate_coordinate? - Looking at `solar_rotate_coordinate` i am left to wonder if the default output observer should be the input observer (here: https://github.com/sunpy/sunpy/blob/master/sunpy/physics/differential_rotation.py#L100). It seems weird to default that to "earth" when I ...
priority
default output observer for solar rotate coordinate looking at solar rotate coordinate i am left to wonder if the default output observer should be the input observer here it seems weird to default that to earth when i would expect a more natural assumption to be the location of the observer in the input ...
1
58,266
3,088,385,056
IssuesEvent
2015-08-25 16:18:54
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
Что за дата в автоапдейте?
bug imported Priority-Medium
_From [tula...@gmail.com](https://code.google.com/u/105646524624731219392/) on March 30, 2014 09:36:23_ САБЖ **Attachment:** [Снимок.PNG](http://code.google.com/p/flylinkdc/issues/detail?id=1448) _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1448_
1.0
Что за дата в автоапдейте? - _From [tula...@gmail.com](https://code.google.com/u/105646524624731219392/) on March 30, 2014 09:36:23_ САБЖ **Attachment:** [Снимок.PNG](http://code.google.com/p/flylinkdc/issues/detail?id=1448) _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1448_
priority
что за дата в автоапдейте from on march сабж attachment original issue
1
623,050
19,660,303,526
IssuesEvent
2022-01-10 16:22:22
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
closed
Bug in Follow and Unfollow Tex Label
bug priority-medium Stale
**Describe the bug** When I click on user that I am already following and to unfollow the text change to **Unfollow** but when I click on some other user to whom I am following or not following the first user where I have click previous to unfollow text change. Not sure it a bug or we have this feature. Please watch...
1.0
Bug in Follow and Unfollow Tex Label - **Describe the bug** When I click on user that I am already following and to unfollow the text change to **Unfollow** but when I click on some other user to whom I am following or not following the first user where I have click previous to unfollow text change. Not sure it a bug ...
priority
bug in follow and unfollow tex label describe the bug when i click on user that i am already following and to unfollow the text change to unfollow but when i click on some other user to whom i am following or not following the first user where i have click previous to unfollow text change not sure it a bug ...
1
800,008
28,322,720,247
IssuesEvent
2023-04-11 03:30:19
masastack/MASA.MC
https://api.github.com/repos/masastack/MASA.MC
closed
The message template cap is not in effect.
type/bug status/resolved severity/medium site/staging priority/p2
消息模板上限未生效。设置消息模板每日给同一用户最多发送一条,实际可成功发送两次 ![image](https://user-images.githubusercontent.com/95004531/230567441-28b2cc04-1224-4a4d-9257-0dc956fa8d02.png) ![image](https://user-images.githubusercontent.com/95004531/230567708-1e05a7ef-0b6b-45ef-a910-5b070731ea94.png)
1.0
The message template cap is not in effect. - 消息模板上限未生效。设置消息模板每日给同一用户最多发送一条,实际可成功发送两次 ![image](https://user-images.githubusercontent.com/95004531/230567441-28b2cc04-1224-4a4d-9257-0dc956fa8d02.png) ![image](https://user-images.githubusercontent.com/95004531/230567708-1e05a7ef-0b6b-45ef-a910-5b070731ea94.png)
priority
the message template cap is not in effect 消息模板上限未生效。设置消息模板每日给同一用户最多发送一条,实际可成功发送两次
1
502,998
14,577,173,696
IssuesEvent
2020-12-18 01:20:24
codidact/qpixel
https://api.github.com/repos/codidact/qpixel
closed
Hitting 'enter' while adding a link causes the draft to post (link doesn't capture the keystroke)
area: frontend complexity: easy priority: medium type: change request
https://software.codidact.com/questions/278393: > I'm merrily typing a post when I realize that it would be improve by linking a phrase. So, I copy the link, highlight the text, click the Link button in the GUI, and the dialog box comes up > > So far all is well. > > I hot key for paste and then hit [enter]. >...
1.0
Hitting 'enter' while adding a link causes the draft to post (link doesn't capture the keystroke) - https://software.codidact.com/questions/278393: > I'm merrily typing a post when I realize that it would be improve by linking a phrase. So, I copy the link, highlight the text, click the Link button in the GUI, and t...
priority
hitting enter while adding a link causes the draft to post link doesn t capture the keystroke i m merrily typing a post when i realize that it would be improve by linking a phrase so i copy the link highlight the text click the link button in the gui and the dialog box comes up so far all is we...
1
17,002
2,615,128,801
IssuesEvent
2015-03-01 05:58:13
chrsmith/google-api-java-client
https://api.github.com/repos/chrsmith/google-api-java-client
closed
com.google.apis:com.google.apis not in maven
auto-migrated Priority-Medium Type-Sample
``` Version of google-api-java-client (e.g. 1.5.0-beta)? v2-rev19-1.7.2-beta Java environment (e.g. Java 6, Android 2.3, App Engine)? Java 6 Describe the problem. BigQuery downloadable samples won't build in Maven/Nexus as described at http://stackoverflow.com/questions/11922658/accessing-java-bigquery-tools-in-mav ...
1.0
com.google.apis:com.google.apis not in maven - ``` Version of google-api-java-client (e.g. 1.5.0-beta)? v2-rev19-1.7.2-beta Java environment (e.g. Java 6, Android 2.3, App Engine)? Java 6 Describe the problem. BigQuery downloadable samples won't build in Maven/Nexus as described at http://stackoverflow.com/question...
priority
com google apis com google apis not in maven version of google api java client e g beta beta java environment e g java android app engine java describe the problem bigquery downloadable samples won t build in maven nexus as described at en with nexus how would you expect ...
1
456,137
13,145,924,653
IssuesEvent
2020-08-08 06:40:38
Travis-Med-AI/med-ai
https://api.github.com/repos/Travis-Med-AI/med-ai
closed
Create Pneumonia Model
Medium Priority runner
- Create a pneumonia model from the 3rd place winning solution for RSNA pneumonia challenge - Code is [here](https://github.com/pmcheng/rsna-pneumonia)
1.0
Create Pneumonia Model - - Create a pneumonia model from the 3rd place winning solution for RSNA pneumonia challenge - Code is [here](https://github.com/pmcheng/rsna-pneumonia)
priority
create pneumonia model create a pneumonia model from the place winning solution for rsna pneumonia challenge code is
1
55,188
3,072,378,980
IssuesEvent
2015-08-19 16:37:59
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
waitForText don't have wrapper with onlyVisible option
enhancement imported Priority-Medium
_From [sergey.t...@gmail.com](https://code.google.com/u/101343934896050059712/) on October 23, 2011 23:32:07_ Solo.waitForText don't have overload with onlyVisible option that Waiter class have. Should use reflection for now :( What version of the product are you using? On what operating system? version 2.5 _Origi...
1.0
waitForText don't have wrapper with onlyVisible option - _From [sergey.t...@gmail.com](https://code.google.com/u/101343934896050059712/) on October 23, 2011 23:32:07_ Solo.waitForText don't have overload with onlyVisible option that Waiter class have. Should use reflection for now :( What version of the product are...
priority
waitfortext don t have wrapper with onlyvisible option from on october solo waitfortext don t have overload with onlyvisible option that waiter class have should use reflection for now what version of the product are you using on what operating system version original issue
1
6,025
2,582,486,666
IssuesEvent
2015-02-15 09:12:48
dhowe/AdNauseam
https://api.github.com/repos/dhowe/AdNauseam
closed
Website: Add links to press page
Enhancement PRIORITY: Medium
On branch: gh-pages Update AdNauseam/press.html to include links for each item (use the first entry as example) http://localhost/jsw/AdNauseam/press.html
1.0
Website: Add links to press page - On branch: gh-pages Update AdNauseam/press.html to include links for each item (use the first entry as example) http://localhost/jsw/AdNauseam/press.html
priority
website add links to press page on branch gh pages update adnauseam press html to include links for each item use the first entry as example
1
263,864
8,302,691,450
IssuesEvent
2018-09-21 15:12:27
huridocs/uwazi
https://api.github.com/repos/huridocs/uwazi
closed
Full text search highlights when opening a document
Priority: Medium
Story: - perform a full text search, for example using "torture" on https://minorityforum.uwazi.io - I receive all cards that include this word, with highlights of the text - I open the document in the card - I do not see the highlights Expected behaviour: I see the highlights within the document
1.0
Full text search highlights when opening a document - Story: - perform a full text search, for example using "torture" on https://minorityforum.uwazi.io - I receive all cards that include this word, with highlights of the text - I open the document in the card - I do not see the highlights Expected behaviour:...
priority
full text search highlights when opening a document story perform a full text search for example using torture on i receive all cards that include this word with highlights of the text i open the document in the card i do not see the highlights expected behaviour i see the highlights within ...
1
807,487
30,005,439,605
IssuesEvent
2023-06-26 12:09:27
Field-Passer/newFieldPasser-BE
https://api.github.com/repos/Field-Passer/newFieldPasser-BE
closed
feat: 문의글 등록, 조회, 수정, 삭제 기능 구현
For: API Priority: Medium Status: In Progress Type: Feature
## Description(설명) 문의글 등록, 조회, 수정, 삭제 기능 구현하겠습니다. ## Tasks(New feature) - [x] 문의글 등록 - [x] 문의글 조회 - [x] 문의글 수정 - [x] 문의글 삭제 ## References
1.0
feat: 문의글 등록, 조회, 수정, 삭제 기능 구현 - ## Description(설명) 문의글 등록, 조회, 수정, 삭제 기능 구현하겠습니다. ## Tasks(New feature) - [x] 문의글 등록 - [x] 문의글 조회 - [x] 문의글 수정 - [x] 문의글 삭제 ## References
priority
feat 문의글 등록 조회 수정 삭제 기능 구현 description 설명 문의글 등록 조회 수정 삭제 기능 구현하겠습니다 tasks new feature 문의글 등록 문의글 조회 문의글 수정 문의글 삭제 references
1
316,500
9,648,452,717
IssuesEvent
2019-05-17 16:17:15
NCIOCPL/cgov-digital-platform
https://api.github.com/repos/NCIOCPL/cgov-digital-platform
opened
Add no index to the syndicated content html
Medium priority change request
Based on an email thread with Lakshmi and Kevin, we need to add a `<meta name="robots" content="noindex" />` tag to the syndicated content html (any content within under this URL: /publishedcontent/syndication/)
1.0
Add no index to the syndicated content html - Based on an email thread with Lakshmi and Kevin, we need to add a `<meta name="robots" content="noindex" />` tag to the syndicated content html (any content within under this URL: /publishedcontent/syndication/)
priority
add no index to the syndicated content html based on an email thread with lakshmi and kevin we need to add a tag to the syndicated content html any content within under this url publishedcontent syndication
1
455,243
13,113,878,090
IssuesEvent
2020-08-05 06:36:05
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Change default inventory scale
Category: UI Priority: Medium Status: Fixed Status: Reopen
This is what 100% scale looks like: ![image](https://user-images.githubusercontent.com/3536496/85632748-bd5c9900-b62c-11ea-8c1d-c25de75ad073.png) Rebalance it so new 100% = current 75%: ![image](https://user-images.githubusercontent.com/3536496/85632982-352ac380-b62d-11ea-8600-27b612d9aeb6.png) Change max and m...
1.0
Change default inventory scale - This is what 100% scale looks like: ![image](https://user-images.githubusercontent.com/3536496/85632748-bd5c9900-b62c-11ea-8c1d-c25de75ad073.png) Rebalance it so new 100% = current 75%: ![image](https://user-images.githubusercontent.com/3536496/85632982-352ac380-b62d-11ea-8600-27b6...
priority
change default inventory scale this is what scale looks like rebalance it so new current change max and min of scale range as well also reduce size of worldmarker text by
1
806,993
29,930,553,492
IssuesEvent
2023-06-22 09:10:28
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
[Coverity CID: 318810] Out-of-bounds access in subsys/bluetooth/mesh/provisioner.c
bug priority: medium area: Bluetooth Coverity area: Bluetooth Mesh
Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/ce3317d03e46e1a218af3e712383d9216c48a992/subsys/bluetooth/mesh/provisioner.c#L371 Category: Memory - corruptions Function: `send_confirm` Component: Bluetooth CID: [318810](https://scan9.scan.coverity.com/reports.htm#v29726/p129...
1.0
[Coverity CID: 318810] Out-of-bounds access in subsys/bluetooth/mesh/provisioner.c - Static code scan issues found in file: https://github.com/zephyrproject-rtos/zephyr/tree/ce3317d03e46e1a218af3e712383d9216c48a992/subsys/bluetooth/mesh/provisioner.c#L371 Category: Memory - corruptions Function: `send_confirm` Compo...
priority
out of bounds access in subsys bluetooth mesh provisioner c static code scan issues found in file category memory corruptions function send confirm component bluetooth cid details bt mesh prov link conf log err unable to generate confirma...
1
252,949
8,049,016,951
IssuesEvent
2018-08-01 08:48:40
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
ClientReceiveException TargetInvocationException (Server dump file)
Medium Priority
--BEGIN DUMP-- Dump Time 06/08/2018 22:32:27 Exception Exception: NullReferenceException Message:Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt. Source:Eco.Gameplay System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt. at Eco.Gameplay.Items.Toolb...
1.0
ClientReceiveException TargetInvocationException (Server dump file) - --BEGIN DUMP-- Dump Time 06/08/2018 22:32:27 Exception Exception: NullReferenceException Message:Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt. Source:Eco.Gameplay System.NullReferenceException: Der Objektverweis wurde ni...
priority
clientreceiveexception targetinvocationexception server dump file begin dump dump time exception exception nullreferenceexception message der objektverweis wurde nicht auf eine objektinstanz festgelegt source eco gameplay system nullreferenceexception der objektverweis wurde nicht auf ...
1
271,421
8,483,900,908
IssuesEvent
2018-10-25 23:32:00
pynocchio/pynocchio
https://api.github.com/repos/pynocchio/pynocchio
closed
Warning when recent comic not exist
Category: Backend Priority: Medium Stage: Backlog Type: Bug Type: Improvement
When user try open a recent file that not exist, a warning dialog is raised.
1.0
Warning when recent comic not exist - When user try open a recent file that not exist, a warning dialog is raised.
priority
warning when recent comic not exist when user try open a recent file that not exist a warning dialog is raised
1
774,671
27,206,073,283
IssuesEvent
2023-02-20 13:11:00
Puzzlepart/prosjektportalen365
https://api.github.com/repos/Puzzlepart/prosjektportalen365
closed
'Etikett' (GtTag) følger ikke med i nyopprettede prosjekter
bug priority: medium
### Beskriv feilen 'Etikett' (GtTag) følger ikke med i nyopprettede prosjekter. Kolonnen kommer heller ikke med i eksisterende prosjekter. ### Hvordan reprodusere feilen _No response_ ### Forventet oppførsel 'Etikett' (GtTag) skal følge med med i nyopprettede prosjekter. Kolonnen skal også inn i eksisterende prosj...
1.0
'Etikett' (GtTag) følger ikke med i nyopprettede prosjekter - ### Beskriv feilen 'Etikett' (GtTag) følger ikke med i nyopprettede prosjekter. Kolonnen kommer heller ikke med i eksisterende prosjekter. ### Hvordan reprodusere feilen _No response_ ### Forventet oppførsel 'Etikett' (GtTag) skal følge med med i nyoppr...
priority
etikett gttag følger ikke med i nyopprettede prosjekter beskriv feilen etikett gttag følger ikke med i nyopprettede prosjekter kolonnen kommer heller ikke med i eksisterende prosjekter hvordan reprodusere feilen no response forventet oppførsel etikett gttag skal følge med med i nyoppr...
1
84,273
3,656,063,346
IssuesEvent
2016-02-17 18:27:57
urbit/urbit
https://api.github.com/repos/urbit/urbit
closed
Putting face on wet gate crashes compiler
bug difficulty high hoon language priority medium type system
I've reproduced it twice now: 1) Log into sole in the browser (I'm using firefox btw, maybe that's the problem?) 2) Type: %- =+ n=0 |* [a=@] ?: =(+(n) a) n $(n +(n)) 10 3) Hang -- Burton
1.0
Putting face on wet gate crashes compiler - I've reproduced it twice now: 1) Log into sole in the browser (I'm using firefox btw, maybe that's the problem?) 2) Type: %- =+ n=0 |* [a=@] ?: =(+(n) a) n $(n +(n)) 10 3) Hang -- Burton
priority
putting face on wet gate crashes compiler i ve reproduced it twice now log into sole in the browser i m using firefox btw maybe that s the problem type n n a n n n hang burton
1
537,029
15,721,819,697
IssuesEvent
2021-03-29 04:10:49
avantifellows/plio-frontend
https://api.github.com/repos/avantifellows/plio-frontend
closed
Migrate all "refs" to store
enhancement priority : medium
**Describe the task** There is a requirement to use some methods and data properties in more than one component. Basically, sharing of data properties and methods across components. Currently this is being achieved by using the method of `$refs` [source](https://vueschool.io/articles/vuejs-tutorials/reusing-logic-in...
1.0
Migrate all "refs" to store - **Describe the task** There is a requirement to use some methods and data properties in more than one component. Basically, sharing of data properties and methods across components. Currently this is being achieved by using the method of `$refs` [source](https://vueschool.io/articles/vu...
priority
migrate all refs to store describe the task there is a requirement to use some methods and data properties in more than one component basically sharing of data properties and methods across components currently this is being achieved by using the method of refs this way passing information using ...
1
239,400
7,794,591,104
IssuesEvent
2018-06-08 03:37:18
Vhoyon/Discord-Bot
https://api.github.com/repos/Vhoyon/Discord-Bot
opened
Add a Parameter's Prefix setting to the settings command
Feature Request: Commands Priority: Medium
This prefix could take the form of `param_prefix`.
1.0
Add a Parameter's Prefix setting to the settings command - This prefix could take the form of `param_prefix`.
priority
add a parameter s prefix setting to the settings command this prefix could take the form of param prefix
1
76,965
3,506,233,016
IssuesEvent
2016-01-08 04:55:55
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
Resilience (BB #24)
migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** romseguy **Original Date:** 11.01.2010 06:17:48 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** invalid **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/24 <hr> Physical damages output is too high. I think it'...
1.0
Resilience (BB #24) - This issue was migrated from bitbucket. **Original Reporter:** romseguy **Original Date:** 11.01.2010 06:17:48 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** invalid **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/24 <hr> Physical damages output is...
priority
resilience bb this issue was migrated from bitbucket original reporter romseguy original date gmt original priority major original type bug original state invalid direct link physical damages output is too high i think it s a miscalculation from resilience i hav...
1
505,285
14,631,063,451
IssuesEvent
2020-12-23 19:03:32
reconhub/tasks
https://api.github.com/repos/reconhub/tasks
opened
R4epis: adding to {gtsummary} to simplify {epibuffet}
Complexity_Medium Priority_Medium
We would like to retire the tab_* functions in {epibuffet} in favour of using {gtsummar} functions. The only thing missing is {gtsummary} which we have implemented in epibuffet::tab_univariate is the possibility of producing stratified estimates (e.g. mantel hanszel odds ratios). It would be super helpful if someone co...
1.0
R4epis: adding to {gtsummary} to simplify {epibuffet} - We would like to retire the tab_* functions in {epibuffet} in favour of using {gtsummar} functions. The only thing missing is {gtsummary} which we have implemented in epibuffet::tab_univariate is the possibility of producing stratified estimates (e.g. mantel hans...
priority
adding to gtsummary to simplify epibuffet we would like to retire the tab functions in epibuffet in favour of using gtsummar functions the only thing missing is gtsummary which we have implemented in epibuffet tab univariate is the possibility of producing stratified estimates e g mantel hanszel o...
1
751,357
26,241,274,610
IssuesEvent
2023-01-05 11:43:19
Simon-Initiative/oli-torus
https://api.github.com/repos/Simon-Initiative/oli-torus
closed
Allow instructors to see students' responses on practice pages
Priority_3:_Medium Question_/_Need_Info
**Is your feature request related to a problem? Please describe.** As an instructor, I can see progress details for students at the page level. This only includes \# Attempts, \# Access, First Visited, and Last Visited. I can't see the students' responses to the practice questions, though. **Describe the solution y...
1.0
Allow instructors to see students' responses on practice pages - **Is your feature request related to a problem? Please describe.** As an instructor, I can see progress details for students at the page level. This only includes \# Attempts, \# Access, First Visited, and Last Visited. I can't see the students' response...
priority
allow instructors to see students responses on practice pages is your feature request related to a problem please describe as an instructor i can see progress details for students at the page level this only includes attempts access first visited and last visited i can t see the students response...
1
127,167
5,019,773,523
IssuesEvent
2016-12-14 12:56:39
RevivalPMMP/PureEntitiesX
https://api.github.com/repos/RevivalPMMP/PureEntitiesX
closed
range where no monster can spawn
Category: Bug Priority: Medium Status: Confirmed Status: Work in Progress
plz add thad mij spawn is full mobs or add that dont spawn with licht
1.0
range where no monster can spawn - plz add thad mij spawn is full mobs or add that dont spawn with licht
priority
range where no monster can spawn plz add thad mij spawn is full mobs or add that dont spawn with licht
1
765,175
26,835,975,051
IssuesEvent
2023-02-02 19:32:29
vscentrum/vsc-software-stack
https://api.github.com/repos/vscentrum/vsc-software-stack
opened
Phenoflow
difficulty: easy new priority: medium R site:ugent
* link to support ticket: [#2023020260000613](https://otrsdict.ugent.be/otrs/index.pl?Action=AgentTicketZoom;TicketID=108898) * website: https://github.com/rprops/Phenoflow_package * installation docs: https://github.com/rprops/Phenoflow_package/blob/master/README.md * toolchain: `foss/2022a` * easyblock to use: `R...
1.0
Phenoflow - * link to support ticket: [#2023020260000613](https://otrsdict.ugent.be/otrs/index.pl?Action=AgentTicketZoom;TicketID=108898) * website: https://github.com/rprops/Phenoflow_package * installation docs: https://github.com/rprops/Phenoflow_package/blob/master/README.md * toolchain: `foss/2022a` * easybloc...
priority
phenoflow link to support ticket website installation docs toolchain foss easyblock to use rpackage required dependencies see for flowfda see notes effort tbd
1
58,263
3,088,379,256
IssuesEvent
2015-08-25 16:17:15
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
Пропадает окно состояния
bug imported Priority-Medium
_From [focees...@gmail.com](https://code.google.com/u/106416907337607089205/) on March 14, 2014 22:40:22_ Использую: FlylinkDC++ r503 -beta40 Операционная система: Windows XP, Service Pack 3 Проблема: При сворачивании/разворачивании пропадает активное окно(где происходит загрузка и т.д.) но не всегда при сворачиван...
1.0
Пропадает окно состояния - _From [focees...@gmail.com](https://code.google.com/u/106416907337607089205/) on March 14, 2014 22:40:22_ Использую: FlylinkDC++ r503 -beta40 Операционная система: Windows XP, Service Pack 3 Проблема: При сворачивании/разворачивании пропадает активное окно(где происходит загрузка и т.д.) ...
priority
пропадает окно состояния from on march использую flylinkdc операционная система windows xp service pack проблема при сворачивании разворачивании пропадает активное окно где происходит загрузка и т д но не всегда при сворачивании и разворачивании чаше всего сделаешь на пол экрана и...
1
792,780
27,974,138,099
IssuesEvent
2023-03-25 11:19:58
SkriptLang/Skript
https://api.github.com/repos/SkriptLang/Skript
closed
Clean up build system
enhancement priority: medium core task
### Description Right now, our build scripts are a bit of a mess, they do work but there's a lot of inconsistencies and repeated code in them. I am creating this issue so I don't forget what needs a change and also to receive input on things we could potentially improve in the overall building system. As of now, th...
1.0
Clean up build system - ### Description Right now, our build scripts are a bit of a mess, they do work but there's a lot of inconsistencies and repeated code in them. I am creating this issue so I don't forget what needs a change and also to receive input on things we could potentially improve in the overall building ...
priority
clean up build system description right now our build scripts are a bit of a mess they do work but there s a lot of inconsistencies and repeated code in them i am creating this issue so i don t forget what needs a change and also to receive input on things we could potentially improve in the overall building ...
1
472,997
13,634,883,637
IssuesEvent
2020-09-25 01:12:38
itsmeow/betteranimalsplus
https://api.github.com/repos/itsmeow/betteranimalsplus
closed
Alpha 1.15.2 Mod incompatible Rosy's Placeable Items Mod
crash mc:1.14 mc:1.15 mod compat priority:medium
**Describe the bug** Game will not start when both mods are present. Error during the load_registries event phase value already present: bucket **To Reproduce** Start the game with ba+ and Rosy's Placeable Items Mod installed **Log output/error (if present)** https://pastebin.com/RsYCn5Ka **Screenshots**...
1.0
Alpha 1.15.2 Mod incompatible Rosy's Placeable Items Mod - **Describe the bug** Game will not start when both mods are present. Error during the load_registries event phase value already present: bucket **To Reproduce** Start the game with ba+ and Rosy's Placeable Items Mod installed **Log output/error (if p...
priority
alpha mod incompatible rosy s placeable items mod describe the bug game will not start when both mods are present error during the load registries event phase value already present bucket to reproduce start the game with ba and rosy s placeable items mod installed log output error if pr...
1
620,274
19,557,723,509
IssuesEvent
2022-01-03 12:06:20
medic/cht-core
https://api.github.com/repos/medic/cht-core
closed
Changing an offline user's password during replication will block them in loading error loop
Type: Bug Priority: 2 - Medium
**Describe the bug** We have no recovery mechanism for non-recoverable errors in our bootstrap mechanism, we assume that all errors are recoverable and we never treat cases of users being logged out or their auth tokens getting invalidated. **To Reproduce** Steps to reproduce the behavior: 1. Login as an offline...
1.0
Changing an offline user's password during replication will block them in loading error loop - **Describe the bug** We have no recovery mechanism for non-recoverable errors in our bootstrap mechanism, we assume that all errors are recoverable and we never treat cases of users being logged out or their auth tokens gett...
priority
changing an offline user s password during replication will block them in loading error loop describe the bug we have no recovery mechanism for non recoverable errors in our bootstrap mechanism we assume that all errors are recoverable and we never treat cases of users being logged out or their auth tokens gett...
1
357,564
10,608,442,480
IssuesEvent
2019-10-11 07:33:05
telerik/kendo-ui-core
https://api.github.com/repos/telerik/kendo-ui-core
opened
It is not possible the scroll the page on iOS 13 with groupable non scrollable grid
Bug C: Grid Kendo1 Priority 1 SEV: Medium
### Bug report Ticket ID 849039 ### Reproduction of the problem ![image](https://user-images.githubusercontent.com/10980842/66632459-33d97800-ec11-11e9-9645-dac6b69d4ed0.png) [Dojo](https://dojo.telerik.com/@bubblemaster/ICuDuvOL/2) ### Current behavior It is not possible to scroll the page when `scro...
1.0
It is not possible the scroll the page on iOS 13 with groupable non scrollable grid - ### Bug report Ticket ID 849039 ### Reproduction of the problem ![image](https://user-images.githubusercontent.com/10980842/66632459-33d97800-ec11-11e9-9645-dac6b69d4ed0.png) [Dojo](https://dojo.telerik.com/@bubblemaster/I...
priority
it is not possible the scroll the page on ios with groupable non scrollable grid bug report ticket id reproduction of the problem current behavior it is not possible to scroll the page when scrollable false and groupable true removing groupable or adding scrollable t...
1
81,064
3,587,215,271
IssuesEvent
2016-01-30 05:06:15
mash99/crypto-js
https://api.github.com/repos/mash99/crypto-js
closed
Support binary input types
auto-migrated Priority-Medium Type-Enhancement
``` What steps will reproduce the problem? 1. Use the javascript ArrayBuffer interface as the input to computing an md5checksum. What is the expected output? What do you see instead? I'd expect that the "update" interface can take either a string or typed arrays. Instead I get an error because the Uint32Array doesn'...
1.0
Support binary input types - ``` What steps will reproduce the problem? 1. Use the javascript ArrayBuffer interface as the input to computing an md5checksum. What is the expected output? What do you see instead? I'd expect that the "update" interface can take either a string or typed arrays. Instead I get an error b...
priority
support binary input types what steps will reproduce the problem use the javascript arraybuffer interface as the input to computing an what is the expected output what do you see instead i d expect that the update interface can take either a string or typed arrays instead i get an error because the...
1
112,634
4,535,249,740
IssuesEvent
2016-09-08 16:45:06
screwdriver-cd/screwdriver
https://api.github.com/repos/screwdriver-cd/screwdriver
opened
Successful jobs trigger next in workflow
priority/medium type/enhancement
When a build of the `main` job is completed, it should trigger the next job in the workflow with the same SHA.
1.0
Successful jobs trigger next in workflow - When a build of the `main` job is completed, it should trigger the next job in the workflow with the same SHA.
priority
successful jobs trigger next in workflow when a build of the main job is completed it should trigger the next job in the workflow with the same sha
1
294,480
9,024,562,382
IssuesEvent
2019-02-07 10:53:08
robotology-playground/wearables
https://api.github.com/repos/robotology-playground/wearables
closed
Develop a thrift file for serializing data of the IWear interface
complexity:medium component:msgs issue:status:in-progress priority:high type:enhancement
This thrift autogenerates the code for serializing the data contained into an `IWear` object.
1.0
Develop a thrift file for serializing data of the IWear interface - This thrift autogenerates the code for serializing the data contained into an `IWear` object.
priority
develop a thrift file for serializing data of the iwear interface this thrift autogenerates the code for serializing the data contained into an iwear object
1
177,681
6,586,431,021
IssuesEvent
2017-09-13 17:14:18
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Pipes blocking table?
Medium Priority
This table's work orders have stopped, but the status tab says it is okay. I'm guessing that it's blocked because the tank on it's pipes tab is full, but this isn't displayed in the UI anywhere, and the state is very confusing. This needs a status entry or something ![image](https://user-images.githubusercontent...
1.0
Pipes blocking table? - This table's work orders have stopped, but the status tab says it is okay. I'm guessing that it's blocked because the tank on it's pipes tab is full, but this isn't displayed in the UI anywhere, and the state is very confusing. This needs a status entry or something ![image](https://user-...
priority
pipes blocking table this table s work orders have stopped but the status tab says it is okay i m guessing that it s blocked because the tank on it s pipes tab is full but this isn t displayed in the ui anywhere and the state is very confusing this needs a status entry or something
1
243,912
7,868,248,005
IssuesEvent
2018-06-23 19:05:09
the-ethan-hunt/B.E.N.J.I.
https://api.github.com/repos/the-ethan-hunt/B.E.N.J.I.
closed
Make B.E.N.J.I. Compatible on win64 bit
Difficulty:Medium Priority: Medium enhancement
While trying to run BENJI , i'm unable to import wx on pycharm 64bit. Need a workaround.
1.0
Make B.E.N.J.I. Compatible on win64 bit - While trying to run BENJI , i'm unable to import wx on pycharm 64bit. Need a workaround.
priority
make b e n j i compatible on bit while trying to run benji i m unable to import wx on pycharm need a workaround
1
201,636
7,034,537,588
IssuesEvent
2017-12-27 17:22:17
DASSL/ClassDB
https://api.github.com/repos/DASSL/ClassDB
opened
Redundant query in log mgmt (E)
extra priority medium
The script [`addLogMgmt.sql`](https://github.com/DASSL/ClassDB/blob/05872e166a85db91d76e3d620d0c1b0ba20229ec/src/addLogMgmt.sql#L106-L127) unnecessarily contains essentially the same `SELECT` query twice. It seems the two `SELECT` queries can be replaced with a derived table or a `WITH` query.
1.0
Redundant query in log mgmt (E) - The script [`addLogMgmt.sql`](https://github.com/DASSL/ClassDB/blob/05872e166a85db91d76e3d620d0c1b0ba20229ec/src/addLogMgmt.sql#L106-L127) unnecessarily contains essentially the same `SELECT` query twice. It seems the two `SELECT` queries can be replaced with a derived table or a `W...
priority
redundant query in log mgmt e the script unnecessarily contains essentially the same select query twice it seems the two select queries can be replaced with a derived table or a with query
1
52,909
3,031,081,119
IssuesEvent
2015-08-04 20:50:15
MozillaHive/HiveCHI-rwm
https://api.github.com/repos/MozillaHive/HiveCHI-rwm
closed
Registration broken on current ride4 build at TOS page
bug Medium Priority
1. Receive error message when completing the registration by accepting the TOS; 2. Declining the TOS takes you to login instead of presenting some prompt to accept TOS to continue;
1.0
Registration broken on current ride4 build at TOS page - 1. Receive error message when completing the registration by accepting the TOS; 2. Declining the TOS takes you to login instead of presenting some prompt to accept TOS to continue;
priority
registration broken on current build at tos page receive error message when completing the registration by accepting the tos declining the tos takes you to login instead of presenting some prompt to accept tos to continue
1
415,882
12,136,455,416
IssuesEvent
2020-04-23 14:24:36
ChainSafe/gossamer
https://api.github.com/repos/ChainSafe/gossamer
closed
Add WS Support
Priority: 3 - Medium rpc
RPC calls are done via HTTP and WebSockets (WS) in Polkadot. WebSockets are used in the Polkadot RPC API to add subscription functionality. Adding WebSocket support should allow us to use all the Substrate/Polkadot tooling. To Do - [ ] Add WebSocket Support - [ ] Create Tasks for all 'subscribe' RPC calls: https://p...
1.0
Add WS Support - RPC calls are done via HTTP and WebSockets (WS) in Polkadot. WebSockets are used in the Polkadot RPC API to add subscription functionality. Adding WebSocket support should allow us to use all the Substrate/Polkadot tooling. To Do - [ ] Add WebSocket Support - [ ] Create Tasks for all 'subscribe' RPC...
priority
add ws support rpc calls are done via http and websockets ws in polkadot websockets are used in the polkadot rpc api to add subscription functionality adding websocket support should allow us to use all the substrate polkadot tooling to do add websocket support create tasks for all subscribe rpc cal...
1
409,463
11,962,940,452
IssuesEvent
2020-04-05 14:15:34
AY1920S2-CS2103T-W12-4/main
https://api.github.com/repos/AY1920S2-CS2103T-W12-4/main
closed
[PE-D] No error thrown when input is incorrect (?)
priority.High severity.Medium status.Ongoing type.Bug
Because there isn't an error message, not sure what is wrong which the input command ![Screenshot 2020-04-03 at 2.35.07 PM.png](https://raw.githubusercontent.com/jadetayy/ped/master/files/170bf456-d414-4a78-927f-5ea381a16a7d.png) ------------- Labels: `severity.Medium` `type.FeatureFlaw` original: jadetayy/ped#5
1.0
[PE-D] No error thrown when input is incorrect (?) - Because there isn't an error message, not sure what is wrong which the input command ![Screenshot 2020-04-03 at 2.35.07 PM.png](https://raw.githubusercontent.com/jadetayy/ped/master/files/170bf456-d414-4a78-927f-5ea381a16a7d.png) ------------- Labels: `severity.M...
priority
no error thrown when input is incorrect because there isn t an error message not sure what is wrong which the input command labels severity medium type featureflaw original jadetayy ped
1
636,930
20,613,704,930
IssuesEvent
2022-03-07 11:06:49
ooni/probe
https://api.github.com/repos/ooni/probe
opened
probe-engine: when the wcth times out, we mark tcp_connects and http_requests as timing out as well
bug priority/medium ooni/probe-engine
This was spotted in [measurements for www.tiktok.com](https://explorer.ooni.org/measurement/20220307T004424Z_webconnectivity_IT_30722_n1_f8yRbLeQGolsTG9s?input=https%3A%2F%2Fwww.tiktok.com%2F), which for some reason the legacy wcth has issues measuring and leads to a timeout: ``` resp = requests.post('https://wcth.oo...
1.0
probe-engine: when the wcth times out, we mark tcp_connects and http_requests as timing out as well - This was spotted in [measurements for www.tiktok.com](https://explorer.ooni.org/measurement/20220307T004424Z_webconnectivity_IT_30722_n1_f8yRbLeQGolsTG9s?input=https%3A%2F%2Fwww.tiktok.com%2F), which for some reason th...
priority
probe engine when the wcth times out we mark tcp connects and http requests as timing out as well this was spotted in which for some reason the legacy wcth has issues measuring and leads to a timeout resp requests post json http request tcp connect ...
1
1,831
2,520,581,295
IssuesEvent
2015-01-19 05:37:08
AtlasOfLivingAustralia/biocache-hubs
https://api.github.com/repos/AtlasOfLivingAustralia/biocache-hubs
closed
Non-occurrence data
priority-medium status-new type-enhancement
*migrated from:* https://code.google.com/p/ala/issues/detail?id=126 *date:* Thu Aug 8 16:37:39 2013 *author:* moyesyside --- Original Issue reported by Reported by john.t...@austmus.gov.au, May 1, 2012 - [https://code.google.com/p/ala-portal/issues/detail?id=229](https://code.google.com/p/ala-portal/issues/detail?i...
1.0
Non-occurrence data - *migrated from:* https://code.google.com/p/ala/issues/detail?id=126 *date:* Thu Aug 8 16:37:39 2013 *author:* moyesyside --- Original Issue reported by Reported by john.t...@austmus.gov.au, May 1, 2012 - [https://code.google.com/p/ala-portal/issues/detail?id=229](https://code.google.com/p/ala-...
priority
non occurrence data migrated from date thu aug author moyesyside original issue reported by reported by john t austmus gov au may reported by john tann austmus gov au may people have asked for access to associated data if it exists often a dataset is a set ...
1
260,273
8,205,844,992
IssuesEvent
2018-09-03 11:31:26
openshiftio/openshift.io
https://api.github.com/repos/openshiftio/openshift.io
closed
No license conflicts shown but no recommended license present
SEV3-medium area/analytics priority/P4 status/in-progress team/analytics team/analytics/insights team/analytics/integration type/bug
##### Issue Overview For some repositories on triggering stack analysis the recommended license is None but no license conflicts are reported. ##### Expected Behaviour There should either be license conflicts or a recommended stack license. ##### Current Behaviour There are no license conflicts or a reco...
1.0
No license conflicts shown but no recommended license present - ##### Issue Overview For some repositories on triggering stack analysis the recommended license is None but no license conflicts are reported. ##### Expected Behaviour There should either be license conflicts or a recommended stack license. ###...
priority
no license conflicts shown but no recommended license present issue overview for some repositories on triggering stack analysis the recommended license is none but no license conflicts are reported expected behaviour there should either be license conflicts or a recommended stack license ...
1
756,736
26,483,517,818
IssuesEvent
2023-01-17 16:16:15
system76/firmware-open
https://api.github.com/repos/system76/firmware-open
closed
TGL-U: Can't suspend with USB-C device connected
Medium Priority
I have a lemp10 lemur pro, I update the firmware few days ago. After the reboot and firmware installation, every time I put the laptop in sleep mode while it is connected to a USB-C hub (plugged with a monitor and mouse+keyboard) the fan starts spinning continuously after 10 seconds or so. When I resume and login, th...
1.0
TGL-U: Can't suspend with USB-C device connected - I have a lemp10 lemur pro, I update the firmware few days ago. After the reboot and firmware installation, every time I put the laptop in sleep mode while it is connected to a USB-C hub (plugged with a monitor and mouse+keyboard) the fan starts spinning continuously a...
priority
tgl u can t suspend with usb c device connected i have a lemur pro i update the firmware few days ago after the reboot and firmware installation every time i put the laptop in sleep mode while it is connected to a usb c hub plugged with a monitor and mouse keyboard the fan starts spinning continuously after ...
1
523,556
15,184,884,925
IssuesEvent
2021-02-15 10:11:01
AbsaOSS/enceladus
https://api.github.com/repos/AbsaOSS/enceladus
opened
Postgres DB API
feature priority: medium under discussion
## Background As part of migration of application data to PostgreSQL we should use DB as a service and therefore had an API layer for accessing the data. ## Feature Create the API for accessing the persisted data and modifying it.
1.0
Postgres DB API - ## Background As part of migration of application data to PostgreSQL we should use DB as a service and therefore had an API layer for accessing the data. ## Feature Create the API for accessing the persisted data and modifying it.
priority
postgres db api background as part of migration of application data to postgresql we should use db as a service and therefore had an api layer for accessing the data feature create the api for accessing the persisted data and modifying it
1
787,011
27,701,658,118
IssuesEvent
2023-03-14 08:29:16
TESTARtool/TESTAR_dev
https://api.github.com/repos/TESTARtool/TESTAR_dev
opened
Edit Protocol feature does not work with Java > 14
type: bug priority: medium status: not assigned
Java Nashorn Script Engine was included in the Java JDK from Java 8 to Java 14. This feature allows the execution of the Edit Protocol. However, it was removed from JDK 15 onwards. For this reason, if the user tries to use the GUI "Edit Protocol" feature, TESTAR throws an exception `Cannot invoke "javax.script...
1.0
Edit Protocol feature does not work with Java > 14 - Java Nashorn Script Engine was included in the Java JDK from Java 8 to Java 14. This feature allows the execution of the Edit Protocol. However, it was removed from JDK 15 onwards. For this reason, if the user tries to use the GUI "Edit Protocol" feature, TE...
priority
edit protocol feature does not work with java java nashorn script engine was included in the java jdk from java to java this feature allows the execution of the edit protocol however it was removed from jdk onwards for this reason if the user tries to use the gui edit protocol feature testa...
1
55,222
3,072,415,483
IssuesEvent
2015-08-19 16:48:54
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
Can't get TextView by its hint
enhancement imported Priority-Medium wontfix
_From [christia...@numberfour.eu](https://code.google.com/u/107041031306367312532/) on January 11, 2012 05:36:56_ What steps will reproduce the problem? 1. View view = this.solo.getText("Hint of the TextView or EditText"); What is the expected output? What do you see instead? I expect to get a pointer to the first Tex...
1.0
Can't get TextView by its hint - _From [christia...@numberfour.eu](https://code.google.com/u/107041031306367312532/) on January 11, 2012 05:36:56_ What steps will reproduce the problem? 1. View view = this.solo.getText("Hint of the TextView or EditText"); What is the expected output? What do you see instead? I expect ...
priority
can t get textview by its hint from on january what steps will reproduce the problem view view this solo gettext hint of the textview or edittext what is the expected output what do you see instead i expect to get a pointer to the first textview that has no text and the hint string hint...
1
3,006
2,535,461,693
IssuesEvent
2015-01-26 01:15:56
FiftyTwo/EdgeLibrary
https://api.github.com/repos/FiftyTwo/EdgeLibrary
closed
Pass Detection Does Not Work
Bug Priority: Medium
The following code needs to be run after the PossibleMoves dictionary is updated. However, this returns an error. ```C# if (PossibleMoves.Count == 0) { TopTeamTurn = !TopTeamTurn; TeamText = TopTeamTurn ? Config.TopTeamName + ": " : Config.BottomTeamName + ": "; StatusSprite.Text = TeamText + Config.Pa...
1.0
Pass Detection Does Not Work - The following code needs to be run after the PossibleMoves dictionary is updated. However, this returns an error. ```C# if (PossibleMoves.Count == 0) { TopTeamTurn = !TopTeamTurn; TeamText = TopTeamTurn ? Config.TopTeamName + ": " : Config.BottomTeamName + ": "; StatusSpr...
priority
pass detection does not work the following code needs to be run after the possiblemoves dictionary is updated however this returns an error c if possiblemoves count topteamturn topteamturn teamtext topteamturn config topteamname config bottomteamname statusspr...
1
32,143
2,744,138,938
IssuesEvent
2015-04-22 04:08:48
reingart/prueba
https://api.github.com/repos/reingart/prueba
closed
Error de dll en 64bits
auto-migrated Priority-Medium Type-Other
``` Hola, no sé si este issue ya se reportó pero no lo veo en la lista. Registré la ddl del pyafipws en un Windows Server 2008 r2 (64 bits) y cuando la aplicación llama al componente COM me tira el error del adjunto: Error al recuperar un generador de clases COM para el componente con CLSID {...} debido al siguien...
1.0
Error de dll en 64bits - ``` Hola, no sé si este issue ya se reportó pero no lo veo en la lista. Registré la ddl del pyafipws en un Windows Server 2008 r2 (64 bits) y cuando la aplicación llama al componente COM me tira el error del adjunto: Error al recuperar un generador de clases COM para el componente con CLSID...
priority
error de dll en hola no sé si este issue ya se reportó pero no lo veo en la lista registré la ddl del pyafipws en un windows server bits y cuando la aplicación llama al componente com me tira el error del adjunto error al recuperar un generador de clases com para el componente con clsid de...
1
538,233
15,765,321,259
IssuesEvent
2021-03-31 14:02:55
snowplow/snowplow-javascript-tracker
https://api.github.com/repos/snowplow/snowplow-javascript-tracker
closed
Split auto contexts into plugins
category:contexts priority:medium status:completed type:enhancement
To reduce the size of the base JS tracker, we want to split out the auto contexts into separate plugins that can be used as required. These will be injected into the tracker at initialisation and will be published on NPM too. We may want to also consider building a "fat" sp.js that is similar to the existing fea...
1.0
Split auto contexts into plugins - To reduce the size of the base JS tracker, we want to split out the auto contexts into separate plugins that can be used as required. These will be injected into the tracker at initialisation and will be published on NPM too. We may want to also consider building a "fat" sp.js ...
priority
split auto contexts into plugins to reduce the size of the base js tracker we want to split out the auto contexts into separate plugins that can be used as required these will be injected into the tracker at initialisation and will be published on npm too we may want to also consider building a fat sp js ...
1
81,834
3,595,440,506
IssuesEvent
2016-02-02 06:36:49
cs2103jan2016-t09-3j/main
https://api.github.com/repos/cs2103jan2016-t09-3j/main
opened
A user can edit tasks details
priority.medium type.story
... so that the user can update any changes in information of the task to be done.
1.0
A user can edit tasks details - ... so that the user can update any changes in information of the task to be done.
priority
a user can edit tasks details so that the user can update any changes in information of the task to be done
1
434,182
12,515,320,039
IssuesEvent
2020-06-03 07:27:09
canonical-web-and-design/build.snapcraft.io
https://api.github.com/repos/canonical-web-and-design/build.snapcraft.io
closed
Consistent UI for registering and changing snap name
Priority: Medium
Currently registering new name and changing registered name have a little bit different UI (one uses 'inline' input in the table, the other has an input inside of the dropdown). [As discussed in spec doc](https://docs.google.com/a/canonical.com/document/d/1koTwI3cRr2S2vj5zHKKbR7aWxLRfShDVq2gHQ29cDyU/edit?disco=AAAAA...
1.0
Consistent UI for registering and changing snap name - Currently registering new name and changing registered name have a little bit different UI (one uses 'inline' input in the table, the other has an input inside of the dropdown). [As discussed in spec doc](https://docs.google.com/a/canonical.com/document/d/1koTwI...
priority
consistent ui for registering and changing snap name currently registering new name and changing registered name have a little bit different ui one uses inline input in the table the other has an input inside of the dropdown by matthewpaulthomas however i do agree that it would be good for the init...
1
489,902
14,113,420,118
IssuesEvent
2020-11-07 11:09:40
AY2021S1-CS2113T-W11-2/tp
https://api.github.com/repos/AY2021S1-CS2113T-W11-2/tp
closed
[PE-D] Unable to add number of days of trip in the starting.
Priority.Medium severity.Medium
Trips are usually planned with the number of days beforehand. It might be better to add a function that allows people to add the number of days in the start. This way, you can also verify if the places being added are added on valid days. Also if a user just wants to monitor their budget the trip would show 0 days, if ...
1.0
[PE-D] Unable to add number of days of trip in the starting. - Trips are usually planned with the number of days beforehand. It might be better to add a function that allows people to add the number of days in the start. This way, you can also verify if the places being added are added on valid days. Also if a user jus...
priority
unable to add number of days of trip in the starting trips are usually planned with the number of days beforehand it might be better to add a function that allows people to add the number of days in the start this way you can also verify if the places being added are added on valid days also if a user just wan...
1
60,073
3,117,972,749
IssuesEvent
2015-09-04 07:30:52
MarcusWolschon/osmeditor4android
https://api.github.com/repos/MarcusWolschon/osmeditor4android
closed
Integration of notifications and potentially some further Android Wear support
Enhancement Medium Priority Work started
This already works as a PoC, however to be really useful the auto download code needs to be moved to the tracker service (right now it will only work if the main activity is actually running). Further better support for Android wear might make sense.
1.0
Integration of notifications and potentially some further Android Wear support - This already works as a PoC, however to be really useful the auto download code needs to be moved to the tracker service (right now it will only work if the main activity is actually running). Further better support for Android wear might ...
priority
integration of notifications and potentially some further android wear support this already works as a poc however to be really useful the auto download code needs to be moved to the tracker service right now it will only work if the main activity is actually running further better support for android wear might ...
1
181,941
6,665,551,992
IssuesEvent
2017-10-03 02:04:42
minio/minio
https://api.github.com/repos/minio/minio
closed
Disk http://minio1:9000/export is still unreachable - Physical & Overlay Networks Confict
priority: medium triage
<!--- Provide a general summary of the issue in the Title above --> ## Expected Behavior I setup a Docker Swarm network with 4 hosts. Then I deployed a 4 server Mini docker compose file (auto-generated from the minio.io website). It should have a swarm setup within a minute or two. ## Current Behavior Contain...
1.0
Disk http://minio1:9000/export is still unreachable - Physical & Overlay Networks Confict - <!--- Provide a general summary of the issue in the Title above --> ## Expected Behavior I setup a Docker Swarm network with 4 hosts. Then I deployed a 4 server Mini docker compose file (auto-generated from the minio.io web...
priority
disk is still unreachable physical overlay networks confict expected behavior i setup a docker swarm network with hosts then i deployed a server mini docker compose file auto generated from the minio io website it should have a swarm setup within a minute or two current behavior conta...
1