Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 844 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 12 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 248k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
209,581 | 7,177,489,070 | IssuesEvent | 2018-01-31 13:49:24 | hazelcast/hazelcast | https://api.github.com/repos/hazelcast/hazelcast | closed | 3.6 AbstractDiscoveryStrategy, get access to invoking Hazelcast instance? | Priority: Low Source: Community Team: Integration Type: Enhancement | I am writing a DiscoveryStrategy that extends from AbstractDiscoveryStrategy, and I need to get access to the Hazelcast instance that is invoking this... i.e. i'd like to include the hazelcast group name that this node is configured to be a member of so I can include it in where I am registering the node with
How can I get access to this?
In reference I am working on this discovery SPI impl and wanted this functionality there: https://github.com/bitsofinfo/hazelcast-consul-discovery-spi
| 1.0 | 3.6 AbstractDiscoveryStrategy, get access to invoking Hazelcast instance? - I am writing a DiscoveryStrategy that extends from AbstractDiscoveryStrategy, and I need to get access to the Hazelcast instance that is invoking this... i.e. i'd like to include the hazelcast group name that this node is configured to be a member of so I can include it in where I am registering the node with
How can I get access to this?
In reference I am working on this discovery SPI impl and wanted this functionality there: https://github.com/bitsofinfo/hazelcast-consul-discovery-spi
| priority | abstractdiscoverystrategy get access to invoking hazelcast instance i am writing a discoverystrategy that extends from abstractdiscoverystrategy and i need to get access to the hazelcast instance that is invoking this i e i d like to include the hazelcast group name that this node is configured to be a member of so i can include it in where i am registering the node with how can i get access to this in reference i am working on this discovery spi impl and wanted this functionality there | 1 |
605,058 | 18,724,025,736 | IssuesEvent | 2021-11-03 14:39:29 | AY2122S1-CS2113T-F14-1/tp | https://api.github.com/repos/AY2122S1-CS2113T-F14-1/tp | closed | [PE-D] Help list | priority.Low | The help list should either stay permanently in the main application menu, or we should be able to pull it up. As the commands are rather complicated and I found myself struggling to input the correct commands. Constantly having to type in "help" in between typing in commands.

<!--session: 1635497962365-606f930e-1a85-4828-bc90-d9509dee999d--><!--Version: Web v3.4.1-->
-------------
Labels: `type.FeatureFlaw` `severity.Low`
original: ChuaXiongWei/ped#1 | 1.0 | [PE-D] Help list - The help list should either stay permanently in the main application menu, or we should be able to pull it up. As the commands are rather complicated and I found myself struggling to input the correct commands. Constantly having to type in "help" in between typing in commands.

<!--session: 1635497962365-606f930e-1a85-4828-bc90-d9509dee999d--><!--Version: Web v3.4.1-->
-------------
Labels: `type.FeatureFlaw` `severity.Low`
original: ChuaXiongWei/ped#1 | priority | help list the help list should either stay permanently in the main application menu or we should be able to pull it up as the commands are rather complicated and i found myself struggling to input the correct commands constantly having to type in help in between typing in commands labels type featureflaw severity low original chuaxiongwei ped | 1 |
801,626 | 28,495,895,968 | IssuesEvent | 2023-04-18 14:11:21 | trimble-oss/website-modus.trimble.com | https://api.github.com/repos/trimble-oss/website-modus.trimble.com | closed | Bug: Color Scheme is always on dark mode | 1 bug priority:low dark-mode | ### Describe the issue
Noticed a bug on https://modus.trimble.com/. The [color-scheme CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme) is always on dark mode. it's not a major problem, it just means some OS level controls like the sidebars and autocomplete input form fields are dark.
### What operating system(s) are you seeing the problem on?
Windows
### What browser(s) are you seeing the problem on?
Microsoft Edge | 1.0 | Bug: Color Scheme is always on dark mode - ### Describe the issue
Noticed a bug on https://modus.trimble.com/. The [color-scheme CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme) is always on dark mode. it's not a major problem, it just means some OS level controls like the sidebars and autocomplete input form fields are dark.
### What operating system(s) are you seeing the problem on?
Windows
### What browser(s) are you seeing the problem on?
Microsoft Edge | priority | bug color scheme is always on dark mode describe the issue noticed a bug on the is always on dark mode it s not a major problem it just means some os level controls like the sidebars and autocomplete input form fields are dark what operating system s are you seeing the problem on windows what browser s are you seeing the problem on microsoft edge | 1 |
711,771 | 24,474,614,927 | IssuesEvent | 2022-10-08 02:38:08 | kubevela/kubevela | https://api.github.com/repos/kubevela/kubevela | closed | [Feature] Dispatch resource within a component sequentially | type/enhancement priority/important-soon needs more info area/controller area/appmodel area/workflow | **Is your feature request related to a problem? Please describe.**
In our scenario, we define several traits to generate `Custom Resource` for completing specific tasks.
- In some cases, trait-A need to dispatch before trait-B and workload.
- In k8s's case, when we modify pod parameter and configmap parameter, the cm should be dispatched before deployment.
So, the ability that dispatch resource within a component sequentially is necessary.
**Describe alternatives you've considered**
We want to add a field `inOrder` align with `dependsOn`, and serially dispatch resource between steps and dispatch resource within steps in parallel.
There is an example for `inOrder` as follows
```yaml
apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: fourierapp03
namespace: fourier
spec:
components:
- name: fourierapp03-comp-01
type: webservice
inOrder:
- step:
- config
- step:
- workload
- cpuscaler
properties:
image: nginx:latest
ports:
- expose: true
port: 80
protocol: TCP
imagePullPolicy: IfNotPresent
traits:
- type: cpuscaler
properties:
min: 1
max: 10
- type: config
properties:
refConfigs:
- name: fourierapp03-comp-01
encrypt: false
mountPath: /mount/test/cm/tomcat.yaml
policies:
- name: fourierapp03-comp-01
type: topology
properties:
clusters: [ "local" ]
namespace: fourier01
workflow:
steps:
- name: step-group
type: step-group
subSteps:
- name: fourierapp03-deploy-01
type: deploy
properties:
policies: [ "fourierapp03-comp-01" ]
``` | 1.0 | [Feature] Dispatch resource within a component sequentially - **Is your feature request related to a problem? Please describe.**
In our scenario, we define several traits to generate `Custom Resource` for completing specific tasks.
- In some cases, trait-A need to dispatch before trait-B and workload.
- In k8s's case, when we modify pod parameter and configmap parameter, the cm should be dispatched before deployment.
So, the ability that dispatch resource within a component sequentially is necessary.
**Describe alternatives you've considered**
We want to add a field `inOrder` align with `dependsOn`, and serially dispatch resource between steps and dispatch resource within steps in parallel.
There is an example for `inOrder` as follows
```yaml
apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: fourierapp03
namespace: fourier
spec:
components:
- name: fourierapp03-comp-01
type: webservice
inOrder:
- step:
- config
- step:
- workload
- cpuscaler
properties:
image: nginx:latest
ports:
- expose: true
port: 80
protocol: TCP
imagePullPolicy: IfNotPresent
traits:
- type: cpuscaler
properties:
min: 1
max: 10
- type: config
properties:
refConfigs:
- name: fourierapp03-comp-01
encrypt: false
mountPath: /mount/test/cm/tomcat.yaml
policies:
- name: fourierapp03-comp-01
type: topology
properties:
clusters: [ "local" ]
namespace: fourier01
workflow:
steps:
- name: step-group
type: step-group
subSteps:
- name: fourierapp03-deploy-01
type: deploy
properties:
policies: [ "fourierapp03-comp-01" ]
``` | priority | dispatch resource within a component sequentially is your feature request related to a problem please describe in our scenario we define several traits to generate custom resource for completing specific tasks in some cases trait a need to dispatch before trait b and workload in s case when we modify pod parameter and configmap parameter the cm should be dispatched before deployment so the ability that dispatch resource within a component sequentially is necessary describe alternatives you ve considered we want to add a field inorder align with dependson and serially dispatch resource between steps and dispatch resource within steps in parallel there is an example for inorder as follows yaml apiversion core oam dev kind application metadata name namespace fourier spec components name comp type webservice inorder step config step workload cpuscaler properties image nginx latest ports expose true port protocol tcp imagepullpolicy ifnotpresent traits type cpuscaler properties min max type config properties refconfigs name comp encrypt false mountpath mount test cm tomcat yaml policies name comp type topology properties clusters namespace workflow steps name step group type step group substeps name deploy type deploy properties policies | 1 |
799,977 | 28,321,580,666 | IssuesEvent | 2023-04-11 01:57:23 | chaotic-aur/packages | https://api.github.com/repos/chaotic-aur/packages | closed | [Request] waterfox-g-bin | request:new-pkg priority:low | ### Link to the package base(s) in the AUR
https://aur.archlinux.org/packages/waterfox-g-bin
### Utility this package has for you
I use it as an alternative to Firefox which blocks tracking mechanisms and does not collect any telemetry.
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
No, but for a few.
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [X] Yes
### Does the package's license allow redistributing it?
YES!
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
Older generations of Waterfox are already in chaotic-aur, but the most recent one isn't. See also #2134 | 1.0 | [Request] waterfox-g-bin - ### Link to the package base(s) in the AUR
https://aur.archlinux.org/packages/waterfox-g-bin
### Utility this package has for you
I use it as an alternative to Firefox which blocks tracking mechanisms and does not collect any telemetry.
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
No, but for a few.
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [X] Yes
### Does the package's license allow redistributing it?
YES!
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
Older generations of Waterfox are already in chaotic-aur, but the most recent one isn't. See also #2134 | priority | waterfox g bin link to the package base s in the aur utility this package has for you i use it as an alternative to firefox which blocks tracking mechanisms and does not collect any telemetry do you consider the package s to be useful for every chaotic aur user no but for a few do you consider the package to be useful for feature testing preview yes have you tested if the package builds in a clean chroot yes does the package s license allow redistributing it yes have you searched the issues to ensure this request is unique yes have you read the readme to ensure this package is not banned yes more information older generations of waterfox are already in chaotic aur but the most recent one isn t see also | 1 |
656,173 | 21,722,656,497 | IssuesEvent | 2022-05-11 03:00:11 | opensquare-network/collaboration | https://api.github.com/repos/opensquare-network/collaboration | opened | Fix identity display | UI priority:low | - Chain icon 14px
- Identity icon 12px
- Text horizontal alignment
Preview
<img width="640" alt="image" src="https://user-images.githubusercontent.com/59445675/167760107-36934712-9519-42a2-8847-d10257337a9c.png">
| 1.0 | Fix identity display - - Chain icon 14px
- Identity icon 12px
- Text horizontal alignment
Preview
<img width="640" alt="image" src="https://user-images.githubusercontent.com/59445675/167760107-36934712-9519-42a2-8847-d10257337a9c.png">
| priority | fix identity display chain icon identity icon text horizontal alignment preview img width alt image src | 1 |
328,166 | 9,990,429,527 | IssuesEvent | 2019-07-11 08:48:58 | d3jn/vizcache | https://api.github.com/repos/d3jn/vizcache | closed | Update README.md | priority:low | README file must provide more information about this package, it's purpose and basic usage. Formatting also needs to be improved. | 1.0 | Update README.md - README file must provide more information about this package, it's purpose and basic usage. Formatting also needs to be improved. | priority | update readme md readme file must provide more information about this package it s purpose and basic usage formatting also needs to be improved | 1 |
538,379 | 15,767,709,527 | IssuesEvent | 2021-03-31 16:23:20 | dmwm/WMCore | https://api.github.com/repos/dmwm/WMCore | opened | [py2py3] check the use of division | Has Internal Dependency Low Priority Python3 py3 potential bug | **Impact of the bug**
WMCore in general
**Describe the bug**
We have not observed any bug at the moment, but it is possible that this will create some problems.
During the modernization campaign, we made such changes:
```python
from __future__ import division
...
infoSSB[site]['slotsCPU'] *= self.t1SitesCores / 100
infoSSB[site]['slotsIO'] *= self.t1SitesCores / 100
infoSSB[site]['slotsCPU'] *= self.t1SitesCores // 100
infoSSB[site]['slotsIO'] *= self.t1SitesCores // 100
```
While we tried to be as transparennt as possible, there is a non-zero possibility that this breaks some interfaces. We should check at least
- [ ] `src/python/WMComponent/AgentStatusWatcher/ResourceControlUpdater.py`
- [ ] `src/python/WMComponent/JobArchiver/JobArchiverPoller.py`
**How to reproduce it**
Steps to reproduce the behavior:
**Expected behavior**
We should make sure that the changes to how py3 deals with division are as transparent as expected.
| 1.0 | [py2py3] check the use of division - **Impact of the bug**
WMCore in general
**Describe the bug**
We have not observed any bug at the moment, but it is possible that this will create some problems.
During the modernization campaign, we made such changes:
```python
from __future__ import division
...
infoSSB[site]['slotsCPU'] *= self.t1SitesCores / 100
infoSSB[site]['slotsIO'] *= self.t1SitesCores / 100
infoSSB[site]['slotsCPU'] *= self.t1SitesCores // 100
infoSSB[site]['slotsIO'] *= self.t1SitesCores // 100
```
While we tried to be as transparennt as possible, there is a non-zero possibility that this breaks some interfaces. We should check at least
- [ ] `src/python/WMComponent/AgentStatusWatcher/ResourceControlUpdater.py`
- [ ] `src/python/WMComponent/JobArchiver/JobArchiverPoller.py`
**How to reproduce it**
Steps to reproduce the behavior:
**Expected behavior**
We should make sure that the changes to how py3 deals with division are as transparent as expected.
| priority | check the use of division impact of the bug wmcore in general describe the bug we have not observed any bug at the moment but it is possible that this will create some problems during the modernization campaign we made such changes python from future import division infossb self infossb self infossb self infossb self while we tried to be as transparennt as possible there is a non zero possibility that this breaks some interfaces we should check at least src python wmcomponent agentstatuswatcher resourcecontrolupdater py src python wmcomponent jobarchiver jobarchiverpoller py how to reproduce it steps to reproduce the behavior expected behavior we should make sure that the changes to how deals with division are as transparent as expected | 1 |
148,855 | 5,697,402,426 | IssuesEvent | 2017-04-16 21:20:44 | Radarr/Radarr | https://api.github.com/repos/Radarr/Radarr | closed | Series reference when adding PMS connect | enhancement priority:low ui | Latest version; seeing option "Filter Series Tags" when adding Plex Media Server to Connect tab. | 1.0 | Series reference when adding PMS connect - Latest version; seeing option "Filter Series Tags" when adding Plex Media Server to Connect tab. | priority | series reference when adding pms connect latest version seeing option filter series tags when adding plex media server to connect tab | 1 |
96,675 | 3,971,791,776 | IssuesEvent | 2016-05-04 13:21:14 | OCHA-DAP/hdx-ckan | https://api.github.com/repos/OCHA-DAP/hdx-ckan | closed | Crisis page - Ebola map data processing | Cleanup/Configuration Priority-Low | The data for the Ebola map is hardcoded and hard to use. It would be easier to maintain if we could process the data from several datasets. | 1.0 | Crisis page - Ebola map data processing - The data for the Ebola map is hardcoded and hard to use. It would be easier to maintain if we could process the data from several datasets. | priority | crisis page ebola map data processing the data for the ebola map is hardcoded and hard to use it would be easier to maintain if we could process the data from several datasets | 1 |
69,700 | 3,310,302,528 | IssuesEvent | 2015-11-05 08:10:52 | gapt/gapt | https://api.github.com/repos/gapt/gapt | closed | Add Iterative Deepening as Search Strategy to ATP | Enhancement Imported Low priority | _From [Martin.R...@googlemail.com](https://code.google.com/u/113922991942493634983/) on January 19, 2011 18:44:43_
During a discussion about nondeterministic proof search, Tomer and me talked about having diffferent search strategies to reduce the state explosion problem of BFS.
This task should add a new trait formalizing A* Search, which does DFS up to a given bound, then explores different paths and after their exhaustion increases the bound.
_Original issue: http://code.google.com/p/gapt/issues/detail?id=104_ | 1.0 | Add Iterative Deepening as Search Strategy to ATP - _From [Martin.R...@googlemail.com](https://code.google.com/u/113922991942493634983/) on January 19, 2011 18:44:43_
During a discussion about nondeterministic proof search, Tomer and me talked about having diffferent search strategies to reduce the state explosion problem of BFS.
This task should add a new trait formalizing A* Search, which does DFS up to a given bound, then explores different paths and after their exhaustion increases the bound.
_Original issue: http://code.google.com/p/gapt/issues/detail?id=104_ | priority | add iterative deepening as search strategy to atp from on january during a discussion about nondeterministic proof search tomer and me talked about having diffferent search strategies to reduce the state explosion problem of bfs this task should add a new trait formalizing a search which does dfs up to a given bound then explores different paths and after their exhaustion increases the bound original issue | 1 |
606,147 | 18,755,864,482 | IssuesEvent | 2021-11-05 10:39:01 | web-ridge/react-native-paper-dates | https://api.github.com/repos/web-ridge/react-native-paper-dates | closed | Support for Arabic/Persian numbers in Calendar as day names + custom days per month / leapyear | enhancement help wanted Low priority | DoD:
- Uses native Javascript api's as much as possible Intl api's | 1.0 | Support for Arabic/Persian numbers in Calendar as day names + custom days per month / leapyear - DoD:
- Uses native Javascript api's as much as possible Intl api's | priority | support for arabic persian numbers in calendar as day names custom days per month leapyear dod uses native javascript api s as much as possible intl api s | 1 |
296,506 | 9,116,750,578 | IssuesEvent | 2019-02-22 09:52:11 | Xceptance/neodymium-library | https://api.github.com/repos/Xceptance/neodymium-library | closed | "After" step visible in Allure report | Low Priority bug doneInDevelop recheckedInDevelop update-dependency | The shutdown/after steps should not necessarily visible in Allure report.
see https://github.com/allure-framework/allure-java/issues/190
Example:

| 1.0 | "After" step visible in Allure report - The shutdown/after steps should not necessarily visible in Allure report.
see https://github.com/allure-framework/allure-java/issues/190
Example:

| priority | after step visible in allure report the shutdown after steps should not necessarily visible in allure report see example | 1 |
307,798 | 9,422,363,122 | IssuesEvent | 2019-04-11 09:11:52 | conan-io/conan | https://api.github.com/repos/conan-io/conan | closed | Conan uses abc.ABCMeta only in Pyhton 2-way | complex: low good first issue priority: low stage: review | Conan 1.13
I found that Conan uses Abstract classes this way:
```python
class Generator(object):
__metaclass__ = ABCMeta
```
This syntax is for Python 2 and has no effect in Python 3. Pylint will not issue any warning if some derived class doesn't implement some of abstract methods.
Internet wisdom suggests using `@six.add_metaclass(abc.ABCMeta)` to be compatible. | 1.0 | Conan uses abc.ABCMeta only in Pyhton 2-way - Conan 1.13
I found that Conan uses Abstract classes this way:
```python
class Generator(object):
__metaclass__ = ABCMeta
```
This syntax is for Python 2 and has no effect in Python 3. Pylint will not issue any warning if some derived class doesn't implement some of abstract methods.
Internet wisdom suggests using `@six.add_metaclass(abc.ABCMeta)` to be compatible. | priority | conan uses abc abcmeta only in pyhton way conan i found that conan uses abstract classes this way python class generator object metaclass abcmeta this syntax is for python and has no effect in python pylint will not issue any warning if some derived class doesn t implement some of abstract methods internet wisdom suggests using six add metaclass abc abcmeta to be compatible | 1 |
151,119 | 5,798,461,764 | IssuesEvent | 2017-05-03 01:53:33 | haganbmj/obs-websocket-js | https://api.github.com/repos/haganbmj/obs-websocket-js | closed | [API] Convert AuthHashing from a Class to a Function | enhancement low priority | <!--
Please fill out the following information when creating a new issue.
The more information you provide the easier it will be for someone (me) to assist.
Also, include some links/information about what you're working on if you'd like - always curious.
-->
**Is this a request for a new *feature* or a *bug* report?**
Enhancement
**General Description:**
What's the point of instantiating an AuthHashing object when it's only used for one function and currently the only entry point to Authenticate retrieves the salt/challenge each time meaning that it doesn't need to be stored anywhere.
| 1.0 | [API] Convert AuthHashing from a Class to a Function - <!--
Please fill out the following information when creating a new issue.
The more information you provide the easier it will be for someone (me) to assist.
Also, include some links/information about what you're working on if you'd like - always curious.
-->
**Is this a request for a new *feature* or a *bug* report?**
Enhancement
**General Description:**
What's the point of instantiating an AuthHashing object when it's only used for one function and currently the only entry point to Authenticate retrieves the salt/challenge each time meaning that it doesn't need to be stored anywhere.
| priority | convert authhashing from a class to a function please fill out the following information when creating a new issue the more information you provide the easier it will be for someone me to assist also include some links information about what you re working on if you d like always curious is this a request for a new feature or a bug report enhancement general description what s the point of instantiating an authhashing object when it s only used for one function and currently the only entry point to authenticate retrieves the salt challenge each time meaning that it doesn t need to be stored anywhere | 1 |
306,747 | 9,403,564,636 | IssuesEvent | 2019-04-09 02:00:19 | DarkPacks/SevTech-Ages | https://api.github.com/repos/DarkPacks/SevTech-Ages | closed | Nature Compass: Mod doesn't support extended Biome IDs [3.1.0] | Category: Mod Priority: Low Status: Known Limitation Status: PR Available |
## Bug Report
In the very beginning stage zero, im using Natures compass to find abyssal biomes. When i open it it says "doesn't support extended Biome IDs" as in title
## Expected Behaviour
I expect all biomes have name and full information
## Possible Solution
Some mod that adds biomes has an issue? Or natures compass
## Steps to Reproduce (for bugs)
Go to age zero
get natures compass and use it

## Logs
<!-- Twitch logs can be found in the installation directory for the Twitch App. Or click the ... button on SevTech and hit "Open Folder" -->
<!-- ATLauncher logs can be found in the installation directory. Or you can "Open Folder" from the launcher to view the instance. -->
<!-- Then upload the latest/crash logs to PasteBin or Gist. DON'T Upload them to GitHub -->
* Client/Server Log:
* Crash Log:
## Client Information
<!--- Include as many relevant details about the environment you experienced the bug in -->
<!-- Please tell us how much memory you have allocated to the game. For Twitch/ATLauncher look in the settings -->
* Modpack Version:
* Java Version:
* Launcher Used:
* Memory Allocated:
* Server/LAN/Single Player:
* Optifine Installed:
* Shaders Enabled:
## World Information
<!-- Please provide the version of the modpack that the world was created in if known. Rough estimates are OK -->
* Modpack Version world created in:
<!-- If there are any additional mods, please state them below -->
* Additional Content Installed:
<!--- Additional Information if you are using a server setup (DELETE THIS SECTION IF YOUR ISSUE IS CLIENT ONLY) -->
## Server Information
* Java Version:
* Operating System:
* Hoster/Hosting Solution:
* Sponge (Non-Vanilla Forge) Server:
| 1.0 | Nature Compass: Mod doesn't support extended Biome IDs [3.1.0] -
## Bug Report
In the very beginning stage zero, im using Natures compass to find abyssal biomes. When i open it it says "doesn't support extended Biome IDs" as in title
## Expected Behaviour
I expect all biomes have name and full information
## Possible Solution
Some mod that adds biomes has an issue? Or natures compass
## Steps to Reproduce (for bugs)
Go to age zero
get natures compass and use it

## Logs
<!-- Twitch logs can be found in the installation directory for the Twitch App. Or click the ... button on SevTech and hit "Open Folder" -->
<!-- ATLauncher logs can be found in the installation directory. Or you can "Open Folder" from the launcher to view the instance. -->
<!-- Then upload the latest/crash logs to PasteBin or Gist. DON'T Upload them to GitHub -->
* Client/Server Log:
* Crash Log:
## Client Information
<!--- Include as many relevant details about the environment you experienced the bug in -->
<!-- Please tell us how much memory you have allocated to the game. For Twitch/ATLauncher look in the settings -->
* Modpack Version:
* Java Version:
* Launcher Used:
* Memory Allocated:
* Server/LAN/Single Player:
* Optifine Installed:
* Shaders Enabled:
## World Information
<!-- Please provide the version of the modpack that the world was created in if known. Rough estimates are OK -->
* Modpack Version world created in:
<!-- If there are any additional mods, please state them below -->
* Additional Content Installed:
<!--- Additional Information if you are using a server setup (DELETE THIS SECTION IF YOUR ISSUE IS CLIENT ONLY) -->
## Server Information
* Java Version:
* Operating System:
* Hoster/Hosting Solution:
* Sponge (Non-Vanilla Forge) Server:
| priority | nature compass mod doesn t support extended biome ids bug report in the very beginning stage zero im using natures compass to find abyssal biomes when i open it it says doesn t support extended biome ids as in title expected behaviour i expect all biomes have name and full information possible solution some mod that adds biomes has an issue or natures compass steps to reproduce for bugs go to age zero get natures compass and use it logs client server log crash log client information modpack version java version launcher used memory allocated server lan single player optifine installed shaders enabled world information modpack version world created in additional content installed server information java version operating system hoster hosting solution sponge non vanilla forge server | 1 |
820,954 | 30,796,860,602 | IssuesEvent | 2023-07-31 20:37:26 | polyphony-chat/chorus | https://api.github.com/repos/polyphony-chat/chorus | closed | Doc comment improvements | Priority: Low Status: In Progress Type: Enhancement Difficulty: Easy | While types and names convey the most important information, often doc comments are helpful or necessary. The current ones still have some issues though:
- Many use `///`, but some use `/**`
- There has been some drift between comments and reality, such as in [`Channel::modify`](https://github.com/polyphony-chat/chorus/blob/40edc2c7feb7777cb75a6c84ce5fff4d20bda165/src/api/channels/channels.rs#LL58C7-L77C1)
- There's a lot of tautology: Often they just restate the types and names of the arguments & return value. For example:
```rust
/// Edits the permission overwrites for a channel.
///
/// # Arguments
///
/// * `user` - A mutable reference to a [`UserMeta`] instance.
/// * `channel_id` - A string slice representing the ID of the channel.
/// * `overwrite` - A [`PermissionOverwrite`] instance representing the new permission overwrites.
///
/// # Returns
///
/// This function returns a result that is either [`Ok(())`] if the request is successful, or an [`Err(ChorusLibError)`].
pub async fn edit_permissions(
user: &mut UserMeta,
channel_id: Snowflake,
overwrite: PermissionOverwrite,
) -> ChorusResult<()> {…
```
All of the information in the doc comment is a restatement of the types and names present. For that reason, function documentation in rust usually doesn't include an extra arguments section and instead refers to the arguments as needed when describing the function's behavior ([example](https://doc.rust-lang.org/nightly/src/core/option.rs.html#602)).
- Some functions/structs could do with more descriptions about semantics.
- Ideally there would be doctests (executable examples) as well as a higher-level overview and more examples. | 1.0 | Doc comment improvements - While types and names convey the most important information, often doc comments are helpful or necessary. The current ones still have some issues though:
- Many use `///`, but some use `/**`
- There has been some drift between comments and reality, such as in [`Channel::modify`](https://github.com/polyphony-chat/chorus/blob/40edc2c7feb7777cb75a6c84ce5fff4d20bda165/src/api/channels/channels.rs#LL58C7-L77C1)
- There's a lot of tautology: Often they just restate the types and names of the arguments & return value. For example:
```rust
/// Edits the permission overwrites for a channel.
///
/// # Arguments
///
/// * `user` - A mutable reference to a [`UserMeta`] instance.
/// * `channel_id` - A string slice representing the ID of the channel.
/// * `overwrite` - A [`PermissionOverwrite`] instance representing the new permission overwrites.
///
/// # Returns
///
/// This function returns a result that is either [`Ok(())`] if the request is successful, or an [`Err(ChorusLibError)`].
pub async fn edit_permissions(
user: &mut UserMeta,
channel_id: Snowflake,
overwrite: PermissionOverwrite,
) -> ChorusResult<()> {…
```
All of the information in the doc comment is a restatement of the types and names present. For that reason, function documentation in rust usually doesn't include an extra arguments section and instead refers to the arguments as needed when describing the function's behavior ([example](https://doc.rust-lang.org/nightly/src/core/option.rs.html#602)).
- Some functions/structs could do with more descriptions about semantics.
- Ideally there would be doctests (executable examples) as well as a higher-level overview and more examples. | priority | doc comment improvements while types and names convey the most important information often doc comments are helpful or necessary the current ones still have some issues though many use but some use there has been some drift between comments and reality such as in there s a lot of tautology often they just restate the types and names of the arguments return value for example rust edits the permission overwrites for a channel arguments user a mutable reference to a instance channel id a string slice representing the id of the channel overwrite a instance representing the new permission overwrites returns this function returns a result that is either if the request is successful or an pub async fn edit permissions user mut usermeta channel id snowflake overwrite permissionoverwrite chorusresult … all of the information in the doc comment is a restatement of the types and names present for that reason function documentation in rust usually doesn t include an extra arguments section and instead refers to the arguments as needed when describing the function s behavior some functions structs could do with more descriptions about semantics ideally there would be doctests executable examples as well as a higher level overview and more examples | 1 |
672,000 | 22,783,068,348 | IssuesEvent | 2022-07-08 22:53:54 | authzed/spicedb | https://api.github.com/repos/authzed/spicedb | closed | Add support for Application Default Credentials for Cloud Spanner datastore | hint/good first issue priority/3 low area/datastore | The Cloud Spanner driver currently [requires a service account JSON file](https://docs.authzed.com/spicedb/selecting-a-datastore#cloud-spanner-beta).
Another way to authenticate with Google services is using [Application Default Credentials](https://cloud.google.com/docs/authentication/production#automatically), which allows one to authenticate with cloud APIs without manually supplying a service account file (one use case is when running on a GCE instance with a linked service account).
The Go client libraries support Application Default Credentials out of the box -- they're used by default if no credentials are supplied: https://pkg.go.dev/cloud.google.com/go?utm_source=godoc#hdr-Authentication_and_Authorization
For instance, for this line:
https://github.com/authzed/spicedb/blob/42f730ab06c8b9ec90b74f2d390454083a925627/internal/datastore/spanner/spanner.go#L74
The equivalent code using Application Default Credentials would be:
```go
client, err := spanner.NewClient(context.Background(), database)
```
Is it possible to add support for using Application Default Credentials to connect to Cloud Spanner? I'm willing to write the PR. | 1.0 | Add support for Application Default Credentials for Cloud Spanner datastore - The Cloud Spanner driver currently [requires a service account JSON file](https://docs.authzed.com/spicedb/selecting-a-datastore#cloud-spanner-beta).
Another way to authenticate with Google services is using [Application Default Credentials](https://cloud.google.com/docs/authentication/production#automatically), which allows one to authenticate with cloud APIs without manually supplying a service account file (one use case is when running on a GCE instance with a linked service account).
The Go client libraries support Application Default Credentials out of the box -- they're used by default if no credentials are supplied: https://pkg.go.dev/cloud.google.com/go?utm_source=godoc#hdr-Authentication_and_Authorization
For instance, for this line:
https://github.com/authzed/spicedb/blob/42f730ab06c8b9ec90b74f2d390454083a925627/internal/datastore/spanner/spanner.go#L74
The equivalent code using Application Default Credentials would be:
```go
client, err := spanner.NewClient(context.Background(), database)
```
Is it possible to add support for using Application Default Credentials to connect to Cloud Spanner? I'm willing to write the PR. | priority | add support for application default credentials for cloud spanner datastore the cloud spanner driver currently another way to authenticate with google services is using which allows one to authenticate with cloud apis without manually supplying a service account file one use case is when running on a gce instance with a linked service account the go client libraries support application default credentials out of the box they re used by default if no credentials are supplied for instance for this line the equivalent code using application default credentials would be go client err spanner newclient context background database is it possible to add support for using application default credentials to connect to cloud spanner i m willing to write the pr | 1 |
537,892 | 15,756,430,851 | IssuesEvent | 2021-03-31 03:30:18 | Praful932/Kitabe | https://api.github.com/repos/Praful932/Kitabe | closed | Adding a Search Icon in the Search bar | GSSOC21 Level2 assigned enhancement good first issue priority:low ui/ux | **Is your feature request related to a problem? Please describe.**
No, my feature request is not related to any problem. It's about making the page more attractive.
**Describe the solution you'd like**
I want to add a "Search Icon" in the "Search Bar" to give a better look to the project.
**Are you willing to contribute to this issue?** [Yes/No]
Yes
**Describe alternatives you've considered**
As of now, I have no alternatives for this, I just want to add a "Search Icon" in the "Search Bar".
**Additional context**

@maneprajakta I want to contribute this as a part of GSSOC'21.Please assign this issue to me.
| 1.0 | Adding a Search Icon in the Search bar - **Is your feature request related to a problem? Please describe.**
No, my feature request is not related to any problem. It's about making the page more attractive.
**Describe the solution you'd like**
I want to add a "Search Icon" in the "Search Bar" to give a better look to the project.
**Are you willing to contribute to this issue?** [Yes/No]
Yes
**Describe alternatives you've considered**
As of now, I have no alternatives for this, I just want to add a "Search Icon" in the "Search Bar".
**Additional context**

@maneprajakta I want to contribute this as a part of GSSOC'21.Please assign this issue to me.
| priority | adding a search icon in the search bar is your feature request related to a problem please describe no my feature request is not related to any problem it s about making the page more attractive describe the solution you d like i want to add a search icon in the search bar to give a better look to the project are you willing to contribute to this issue yes describe alternatives you ve considered as of now i have no alternatives for this i just want to add a search icon in the search bar additional context maneprajakta i want to contribute this as a part of gssoc please assign this issue to me | 1 |
676,541 | 23,128,466,235 | IssuesEvent | 2022-07-28 08:15:16 | AlexHalbesleben/SmarterCalendar | https://api.github.com/repos/AlexHalbesleben/SmarterCalendar | closed | Tasks should have a description | enhancement medium-priority low-effort | Tasks should have a description, a text field in which the user can provide more detail about the task than is ideal to include in the task name. | 1.0 | Tasks should have a description - Tasks should have a description, a text field in which the user can provide more detail about the task than is ideal to include in the task name. | priority | tasks should have a description tasks should have a description a text field in which the user can provide more detail about the task than is ideal to include in the task name | 1 |
31,146 | 2,732,342,468 | IssuesEvent | 2015-04-17 04:44:39 | TruckMuncher/TruckMuncher-Web | https://api.github.com/repos/TruckMuncher/TruckMuncher-Web | opened | Focus on correct text field | enhancement priority:low | It would be nice if the mouse cursor defaulted to the `Item Name` field of the `Item Details` modal when editing menus. Right now, when I click the `Add Menu Item` button, I have to manually click into the `Item Name` field. | 1.0 | Focus on correct text field - It would be nice if the mouse cursor defaulted to the `Item Name` field of the `Item Details` modal when editing menus. Right now, when I click the `Add Menu Item` button, I have to manually click into the `Item Name` field. | priority | focus on correct text field it would be nice if the mouse cursor defaulted to the item name field of the item details modal when editing menus right now when i click the add menu item button i have to manually click into the item name field | 1 |
469,997 | 13,529,407,186 | IssuesEvent | 2020-09-15 18:14:47 | wp-media/wp-rocket | https://api.github.com/repos/wp-media/wp-rocket | closed | Updated WP_ROCKET_WP_VERSION_TESTED to 5.5.1 (or newer) | Module: dashboard priority: low type: enhancement | **Before submitting an issue please check that you’ve completed the following steps:**
- Made sure you’re on the latest version 👍
- Used the search feature to ensure that the bug hasn’t been reported before 👍
**Describe the issue**
- Right now it's set to `5.4.1` - https://github.com/wp-media/wp-rocket/blob/8f7f67b621e5085ccf6424a08a15ce636e4fbf2f/wp-rocket.php#L23
- We know it works with `5.5.1`
**Additional context**
A ticket related to this - https://secure.helpscout.net/conversation/1277592690/193388?folderId=273761
**Backlog Grooming (for WP Media dev team use only)**
- [ ] Reproduce the problem
- [ ] Identify the root cause
- [ ] Scope a solution
- [ ] Estimate the effort
| 1.0 | Updated WP_ROCKET_WP_VERSION_TESTED to 5.5.1 (or newer) - **Before submitting an issue please check that you’ve completed the following steps:**
- Made sure you’re on the latest version 👍
- Used the search feature to ensure that the bug hasn’t been reported before 👍
**Describe the issue**
- Right now it's set to `5.4.1` - https://github.com/wp-media/wp-rocket/blob/8f7f67b621e5085ccf6424a08a15ce636e4fbf2f/wp-rocket.php#L23
- We know it works with `5.5.1`
**Additional context**
A ticket related to this - https://secure.helpscout.net/conversation/1277592690/193388?folderId=273761
**Backlog Grooming (for WP Media dev team use only)**
- [ ] Reproduce the problem
- [ ] Identify the root cause
- [ ] Scope a solution
- [ ] Estimate the effort
| priority | updated wp rocket wp version tested to or newer before submitting an issue please check that you’ve completed the following steps made sure you’re on the latest version 👍 used the search feature to ensure that the bug hasn’t been reported before 👍 describe the issue right now it s set to we know it works with additional context a ticket related to this backlog grooming for wp media dev team use only reproduce the problem identify the root cause scope a solution estimate the effort | 1 |
432,361 | 12,492,004,897 | IssuesEvent | 2020-06-01 06:01:43 | RoboJackets/robocup-software | https://api.github.com/repos/RoboJackets/robocup-software | closed | Make Soccer Halt play and stop logging when paused | area / soccer area / ui exp / expert (3) priority / low status / ready type / enhancement | When looking back into the log history using soccer it continues to run plays and log in the background. When the pause button is activated Soccer should Halt play and stop logging to prevent keep the logs from continuing on when they run out of space while someone is trying to look at something. It will probably also be necessary to make it so that restarting play using the normal or force start buttons also restarts logging and pushes the user to the current frame. | 1.0 | Make Soccer Halt play and stop logging when paused - When looking back into the log history using soccer it continues to run plays and log in the background. When the pause button is activated Soccer should Halt play and stop logging to prevent keep the logs from continuing on when they run out of space while someone is trying to look at something. It will probably also be necessary to make it so that restarting play using the normal or force start buttons also restarts logging and pushes the user to the current frame. | priority | make soccer halt play and stop logging when paused when looking back into the log history using soccer it continues to run plays and log in the background when the pause button is activated soccer should halt play and stop logging to prevent keep the logs from continuing on when they run out of space while someone is trying to look at something it will probably also be necessary to make it so that restarting play using the normal or force start buttons also restarts logging and pushes the user to the current frame | 1 |
129,232 | 5,092,831,268 | IssuesEvent | 2017-01-03 00:01:18 | omf2097/openomf | https://api.github.com/repos/omf2097/openomf | closed | SDL2 Log | enhancement Low priority | Maybe we should switch over to SDL2 log, and try to use the components etc. ? It might make it easier to read and filter the logfile.
https://wiki.libsdl.org/CategoryLog
| 1.0 | SDL2 Log - Maybe we should switch over to SDL2 log, and try to use the components etc. ? It might make it easier to read and filter the logfile.
https://wiki.libsdl.org/CategoryLog
| priority | log maybe we should switch over to log and try to use the components etc it might make it easier to read and filter the logfile | 1 |
112,357 | 4,525,173,688 | IssuesEvent | 2016-09-07 03:09:23 | GluuFederation/oxTrust | https://api.github.com/repos/GluuFederation/oxTrust | opened | Throw an error/warning for orphaned Group members | Low priority | Due to some testing or failure of some sort, orphaned members may be left in a Group. In loading the Group, oxTrust GUI should not skip or ignore these members but instead should throw an error/warning.

| 1.0 | Throw an error/warning for orphaned Group members - Due to some testing or failure of some sort, orphaned members may be left in a Group. In loading the Group, oxTrust GUI should not skip or ignore these members but instead should throw an error/warning.

| priority | throw an error warning for orphaned group members due to some testing or failure of some sort orphaned members may be left in a group in loading the group oxtrust gui should not skip or ignore these members but instead should throw an error warning | 1 |
802,128 | 28,718,428,742 | IssuesEvent | 2023-04-28 00:14:54 | jj248/RealmsInExile | https://api.github.com/repos/jj248/RealmsInExile | closed | Dune Sea Mirage Event | good first issue lore priority: low events scripting | mirage event in dune sea where character either decides on investigating a spot in the desert or continouing on his/her journey. event is about 4-5 event windows long if you take the 'investigate' option.
Chance for the event to randomly fire yearly with any character that is located in the Dune Sea region.
To test the event just open console and type 'event harad.0018 - harad.0025'.
Currently a bug where the game crashes when the event window which causes a duel appears. | 1.0 | Dune Sea Mirage Event - mirage event in dune sea where character either decides on investigating a spot in the desert or continouing on his/her journey. event is about 4-5 event windows long if you take the 'investigate' option.
Chance for the event to randomly fire yearly with any character that is located in the Dune Sea region.
To test the event just open console and type 'event harad.0018 - harad.0025'.
Currently a bug where the game crashes when the event window which causes a duel appears. | priority | dune sea mirage event mirage event in dune sea where character either decides on investigating a spot in the desert or continouing on his her journey event is about event windows long if you take the investigate option chance for the event to randomly fire yearly with any character that is located in the dune sea region to test the event just open console and type event harad harad currently a bug where the game crashes when the event window which causes a duel appears | 1 |
39,318 | 2,853,498,263 | IssuesEvent | 2015-06-01 18:52:53 | duckduckgo/zeroclickinfo-spice | https://api.github.com/repos/duckduckgo/zeroclickinfo-spice | opened | NPM: Make sure we have dependencies to show before adding to InfoBox | Bug Low-Hanging Fruit Priority: Low | Looks like this module doesn't have any dependencies? Or potentially there's something else going on?

---
IA Page: https://duck.co/ia/npm | 1.0 | NPM: Make sure we have dependencies to show before adding to InfoBox - Looks like this module doesn't have any dependencies? Or potentially there's something else going on?

---
IA Page: https://duck.co/ia/npm | priority | npm make sure we have dependencies to show before adding to infobox looks like this module doesn t have any dependencies or potentially there s something else going on ia page | 1 |
430,284 | 12,450,727,425 | IssuesEvent | 2020-05-27 09:16:18 | ntop/ntopng | https://api.github.com/repos/ntop/ntopng | opened | ZMQ fields check possibly invalid | low-priority bug | ntopng now checks the fields received via ZMQ from nProbe, to make sure a minimum a minimum set of fields is present (`@NTOPNG@`).
Enforcing this check is not always possible as ntopng can work in `--collector-passthrough`. In this mode, there's no control over the fields and ntopng must not complain if it doesn't see the complete `@NTOPNG@`.
Given that nProbe now automatically starts with a default template `@NTOPNG@` when it connects to ntopng over ZMQ, it is requested to either remove this check, or reduce checked fields to just the 5-tuple, leaving out from the check then `L7_PROTO` and similar fields. | 1.0 | ZMQ fields check possibly invalid - ntopng now checks the fields received via ZMQ from nProbe, to make sure a minimum a minimum set of fields is present (`@NTOPNG@`).
Enforcing this check is not always possible as ntopng can work in `--collector-passthrough`. In this mode, there's no control over the fields and ntopng must not complain if it doesn't see the complete `@NTOPNG@`.
Given that nProbe now automatically starts with a default template `@NTOPNG@` when it connects to ntopng over ZMQ, it is requested to either remove this check, or reduce checked fields to just the 5-tuple, leaving out from the check then `L7_PROTO` and similar fields. | priority | zmq fields check possibly invalid ntopng now checks the fields received via zmq from nprobe to make sure a minimum a minimum set of fields is present ntopng enforcing this check is not always possible as ntopng can work in collector passthrough in this mode there s no control over the fields and ntopng must not complain if it doesn t see the complete ntopng given that nprobe now automatically starts with a default template ntopng when it connects to ntopng over zmq it is requested to either remove this check or reduce checked fields to just the tuple leaving out from the check then proto and similar fields | 1 |
84,060 | 3,653,052,497 | IssuesEvent | 2016-02-17 04:35:48 | neurodata/ndmg | https://api.github.com/repos/neurodata/ndmg | closed | architecture diagram of ndmg | low priority this week | we did this as a concept lucidchart. Let's update it and clarify what goes in each box.
assigning to @gkiar but joint effort with @willgray | 1.0 | architecture diagram of ndmg - we did this as a concept lucidchart. Let's update it and clarify what goes in each box.
assigning to @gkiar but joint effort with @willgray | priority | architecture diagram of ndmg we did this as a concept lucidchart let s update it and clarify what goes in each box assigning to gkiar but joint effort with willgray | 1 |
814,191 | 30,492,916,696 | IssuesEvent | 2023-07-18 08:55:07 | Nexus-Mods/NexusMods.App | https://api.github.com/repos/Nexus-Mods/NexusMods.App | opened | File is not an archive | meta-bug complexity-small priority-low status-ready | **Run**: https://github.com/Nexus-Mods/NexusMods.App/actions/runs/5585278928
**Stacktrace**:
```stacktrace
System.ArgumentException : File at /tmp/NexusMods.App-c8689f13-a1e7-44b9-a35b-6353f833f26f/b401cbbe-3bc2-4bfd-b333-1157a3f45e3b.tmp is not an archive! (Parameter 'path')
at NexusMods.Games.TestFramework.AGameTest`1.AnalyzeArchive(AbsolutePath path) in /home/runner/work/NexusMods.App/NexusMods.App/tests/Games/NexusMods.Games.TestFramework/AGameTest.cs:line 224
at NexusMods.Games.TestFramework.AModInstallerTest`2.GetPriorityFromInstaller(AbsolutePath path) in /home/runner/work/NexusMods.App/NexusMods.App/tests/Games/NexusMods.Games.TestFramework/AModInstallerTest.cs:line 71
at NexusMods.Games.StardewValley.Tests.Installers.SMAPIInstallerTests.Test_Priority_WithFiles() in /home/runner/work/NexusMods.App/NexusMods.App/tests/Games/NexusMods.Games.StardewValley.Tests/Installers/SMAPIInstallerTests.cs:line 31
at NexusMods.Games.StardewValley.Tests.Installers.SMAPIInstallerTests.Test_Priority_WithFiles() in /home/runner/work/NexusMods.App/NexusMods.App/tests/Games/NexusMods.Games.StardewValley.Tests/Installers/SMAPIInstallerTests.cs:line 32
````
**Code**:
https://github.com/Nexus-Mods/NexusMods.App/blob/e1455ec7aaef2faf3c8225cdbd3c158052496524/tests/Games/NexusMods.Games.StardewValley.Tests/Installers/SMAPIInstallerTests.cs#L18-L33 | 1.0 | File is not an archive - **Run**: https://github.com/Nexus-Mods/NexusMods.App/actions/runs/5585278928
**Stacktrace**:
```stacktrace
System.ArgumentException : File at /tmp/NexusMods.App-c8689f13-a1e7-44b9-a35b-6353f833f26f/b401cbbe-3bc2-4bfd-b333-1157a3f45e3b.tmp is not an archive! (Parameter 'path')
at NexusMods.Games.TestFramework.AGameTest`1.AnalyzeArchive(AbsolutePath path) in /home/runner/work/NexusMods.App/NexusMods.App/tests/Games/NexusMods.Games.TestFramework/AGameTest.cs:line 224
at NexusMods.Games.TestFramework.AModInstallerTest`2.GetPriorityFromInstaller(AbsolutePath path) in /home/runner/work/NexusMods.App/NexusMods.App/tests/Games/NexusMods.Games.TestFramework/AModInstallerTest.cs:line 71
at NexusMods.Games.StardewValley.Tests.Installers.SMAPIInstallerTests.Test_Priority_WithFiles() in /home/runner/work/NexusMods.App/NexusMods.App/tests/Games/NexusMods.Games.StardewValley.Tests/Installers/SMAPIInstallerTests.cs:line 31
at NexusMods.Games.StardewValley.Tests.Installers.SMAPIInstallerTests.Test_Priority_WithFiles() in /home/runner/work/NexusMods.App/NexusMods.App/tests/Games/NexusMods.Games.StardewValley.Tests/Installers/SMAPIInstallerTests.cs:line 32
````
**Code**:
https://github.com/Nexus-Mods/NexusMods.App/blob/e1455ec7aaef2faf3c8225cdbd3c158052496524/tests/Games/NexusMods.Games.StardewValley.Tests/Installers/SMAPIInstallerTests.cs#L18-L33 | priority | file is not an archive run stacktrace stacktrace system argumentexception file at tmp nexusmods app tmp is not an archive parameter path at nexusmods games testframework agametest analyzearchive absolutepath path in home runner work nexusmods app nexusmods app tests games nexusmods games testframework agametest cs line at nexusmods games testframework amodinstallertest getpriorityfrominstaller absolutepath path in home runner work nexusmods app nexusmods app tests games nexusmods games testframework amodinstallertest cs line at nexusmods games stardewvalley tests installers smapiinstallertests test priority withfiles in home runner work nexusmods app nexusmods app tests games nexusmods games stardewvalley tests installers smapiinstallertests cs line at nexusmods games stardewvalley tests installers smapiinstallertests test priority withfiles in home runner work nexusmods app nexusmods app tests games nexusmods games stardewvalley tests installers smapiinstallertests cs line code | 1 |
267,735 | 8,392,204,973 | IssuesEvent | 2018-10-09 16:57:13 | mrdavey/KhanaFramework | https://api.github.com/repos/mrdavey/KhanaFramework | opened | Leaderboard of token holders | Low priority Node React | ### Background
Currently a 'leaderboard' can be seen on Etherscan, however this is not well suited for what we want to encourage in communities.
### Solution
A leaderboard which shows the current top token holders, highest earners this week and month.
### Bounty
500 KHNA | 1.0 | Leaderboard of token holders - ### Background
Currently a 'leaderboard' can be seen on Etherscan, however this is not well suited for what we want to encourage in communities.
### Solution
A leaderboard which shows the current top token holders, highest earners this week and month.
### Bounty
500 KHNA | priority | leaderboard of token holders background currently a leaderboard can be seen on etherscan however this is not well suited for what we want to encourage in communities solution a leaderboard which shows the current top token holders highest earners this week and month bounty khna | 1 |
578,288 | 17,146,586,449 | IssuesEvent | 2021-07-13 15:11:19 | GoogleCloudPlatform/python-docs-samples | https://api.github.com/repos/GoogleCloudPlatform/python-docs-samples | closed | dataflow.run_template.main_test: test_run_template_http_data[test_run_template_data] failed | api: dataflow flakybot: flaky flakybot: issue priority: p1 samples type: bug | This test failed!
To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/master/packages/flakybot).
If I'm commenting on this issue too often, add the `flakybot: quiet` label and
I will stop commenting.
---
commit: b99df8d36109e4fe3e397bfd2cbacac06960340c
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/04adbd68-b90f-4a9c-8c6b-111c3d578d60), [Sponge](http://sponge2/04adbd68-b90f-4a9c-8c6b-111c3d578d60)
status: failed
<details><summary>Test output</summary><br><pre>Traceback (most recent call last):
File "/workspace/dataflow/run_template/main_test.py", line 176, in test_run_template_http_data
res = main.run_template(flask.request)
File "/workspace/dataflow/run_template/main.py", line 82, in run_template
parameters=parameters,
File "/workspace/dataflow/run_template/main.py", line 56, in run
response = request.execute()
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/googleapiclient/_helpers.py", line 134, in positional_wrapper
return wrapped(*args, **kwargs)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/googleapiclient/http.py", line 929, in execute
headers=self.headers,
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/googleapiclient/http.py", line 191, in _retry_request
resp, content = http.request(uri, method, *args, **kwargs)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google_auth_httplib2.py", line 209, in request
self.credentials.before_request(self._request, method, uri, request_headers)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/auth/credentials.py", line 133, in before_request
self.refresh(request)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/oauth2/service_account.py", line 408, in refresh
request, self._token_uri, assertion
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/oauth2/_client.py", line 193, in jwt_grant
response_data = _token_endpoint_request(request, token_uri, body)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/oauth2/_client.py", line 165, in _token_endpoint_request
_handle_error_response(response_data)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/oauth2/_client.py", line 60, in _handle_error_response
raise exceptions.RefreshError(error_details, response_data)
google.auth.exceptions.RefreshError: ('invalid_grant: Invalid JWT Signature.', {'error': 'invalid_grant', 'error_description': 'Invalid JWT Signature.'})</pre></details> | 1.0 | dataflow.run_template.main_test: test_run_template_http_data[test_run_template_data] failed - This test failed!
To configure my behavior, see [the Flaky Bot documentation](https://github.com/googleapis/repo-automation-bots/tree/master/packages/flakybot).
If I'm commenting on this issue too often, add the `flakybot: quiet` label and
I will stop commenting.
---
commit: b99df8d36109e4fe3e397bfd2cbacac06960340c
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/04adbd68-b90f-4a9c-8c6b-111c3d578d60), [Sponge](http://sponge2/04adbd68-b90f-4a9c-8c6b-111c3d578d60)
status: failed
<details><summary>Test output</summary><br><pre>Traceback (most recent call last):
File "/workspace/dataflow/run_template/main_test.py", line 176, in test_run_template_http_data
res = main.run_template(flask.request)
File "/workspace/dataflow/run_template/main.py", line 82, in run_template
parameters=parameters,
File "/workspace/dataflow/run_template/main.py", line 56, in run
response = request.execute()
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/googleapiclient/_helpers.py", line 134, in positional_wrapper
return wrapped(*args, **kwargs)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/googleapiclient/http.py", line 929, in execute
headers=self.headers,
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/googleapiclient/http.py", line 191, in _retry_request
resp, content = http.request(uri, method, *args, **kwargs)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google_auth_httplib2.py", line 209, in request
self.credentials.before_request(self._request, method, uri, request_headers)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/auth/credentials.py", line 133, in before_request
self.refresh(request)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/oauth2/service_account.py", line 408, in refresh
request, self._token_uri, assertion
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/oauth2/_client.py", line 193, in jwt_grant
response_data = _token_endpoint_request(request, token_uri, body)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/oauth2/_client.py", line 165, in _token_endpoint_request
_handle_error_response(response_data)
File "/workspace/dataflow/run_template/.nox/py-3-7/lib/python3.7/site-packages/google/oauth2/_client.py", line 60, in _handle_error_response
raise exceptions.RefreshError(error_details, response_data)
google.auth.exceptions.RefreshError: ('invalid_grant: Invalid JWT Signature.', {'error': 'invalid_grant', 'error_description': 'Invalid JWT Signature.'})</pre></details> | priority | dataflow run template main test test run template http data failed this test failed to configure my behavior see if i m commenting on this issue too often add the flakybot quiet label and i will stop commenting commit buildurl status failed test output traceback most recent call last file workspace dataflow run template main test py line in test run template http data res main run template flask request file workspace dataflow run template main py line in run template parameters parameters file workspace dataflow run template main py line in run response request execute file workspace dataflow run template nox py lib site packages googleapiclient helpers py line in positional wrapper return wrapped args kwargs file workspace dataflow run template nox py lib site packages googleapiclient http py line in execute headers self headers file workspace dataflow run template nox py lib site packages googleapiclient http py line in retry request resp content http request uri method args kwargs file workspace dataflow run template nox py lib site packages google auth py line in request self credentials before request self request method uri request headers file workspace dataflow run template nox py lib site packages google auth credentials py line in before request self refresh request file workspace dataflow run template nox py lib site packages google service account py line in refresh request self token uri assertion file workspace dataflow run template nox py lib site packages google client py line in jwt grant response data token endpoint request request token uri body file workspace dataflow run template nox py lib site packages google client py line in token endpoint request handle error response response data file workspace dataflow run template nox py lib site packages google client py line in handle error response raise exceptions refresherror error details response data google auth exceptions refresherror invalid grant invalid jwt signature error invalid grant error description invalid jwt signature | 1 |
683,765 | 23,393,817,515 | IssuesEvent | 2022-08-11 20:41:07 | WordPress/openverse-frontend | https://api.github.com/repos/WordPress/openverse-frontend | closed | Remove Sentry DSN from repository | 🟩 priority: low 🤖 aspect: dx 🔒 staff only 🧰 goal: internal improvement | ## Problem
<!-- Describe a problem solved by this feature; or delete the section entirely. -->
If someone configures their local environment correctly, they can send scary (and hard to discern) errors to Sentry that we can easily mistake for production issues. It's not likely that anyone is doing this intentionally (what do they stand to gain, other than trolling, I suppose) but it is easy to do accidentally.
## Description
<!-- Describe the feature and how it solves the problem. -->
Let's just remove the Sentry DSN from the repository. The environment variable can default to empty and Sentry just won't be enabled in that case. In production and staging we'll pass the Sentry DSN like we do any other secret. Let's go ahead and rotate the DSN as well once we deploy this change.
## Alternatives
Make it harder to accidentally (or intentionally) configure Sentry to run locally. Maybe Sentry has an optional password or something.
## Additional context
Marked as Staff only as it requires infrastructural changes to be completed.
## Implementation
<!-- Replace the [ ] with [x] to check the box. -->
- [ ] 🙋 I would be interested in implementing this feature.
| 1.0 | Remove Sentry DSN from repository - ## Problem
<!-- Describe a problem solved by this feature; or delete the section entirely. -->
If someone configures their local environment correctly, they can send scary (and hard to discern) errors to Sentry that we can easily mistake for production issues. It's not likely that anyone is doing this intentionally (what do they stand to gain, other than trolling, I suppose) but it is easy to do accidentally.
## Description
<!-- Describe the feature and how it solves the problem. -->
Let's just remove the Sentry DSN from the repository. The environment variable can default to empty and Sentry just won't be enabled in that case. In production and staging we'll pass the Sentry DSN like we do any other secret. Let's go ahead and rotate the DSN as well once we deploy this change.
## Alternatives
Make it harder to accidentally (or intentionally) configure Sentry to run locally. Maybe Sentry has an optional password or something.
## Additional context
Marked as Staff only as it requires infrastructural changes to be completed.
## Implementation
<!-- Replace the [ ] with [x] to check the box. -->
- [ ] 🙋 I would be interested in implementing this feature.
| priority | remove sentry dsn from repository problem if someone configures their local environment correctly they can send scary and hard to discern errors to sentry that we can easily mistake for production issues it s not likely that anyone is doing this intentionally what do they stand to gain other than trolling i suppose but it is easy to do accidentally description let s just remove the sentry dsn from the repository the environment variable can default to empty and sentry just won t be enabled in that case in production and staging we ll pass the sentry dsn like we do any other secret let s go ahead and rotate the dsn as well once we deploy this change alternatives make it harder to accidentally or intentionally configure sentry to run locally maybe sentry has an optional password or something additional context marked as staff only as it requires infrastructural changes to be completed implementation 🙋 i would be interested in implementing this feature | 1 |
827,091 | 31,724,660,274 | IssuesEvent | 2023-09-10 20:11:58 | WisconsinRobotics/WRover_Software | https://api.github.com/repos/WisconsinRobotics/WRover_Software | opened | ROS 2 Migration Plan | low-priority | # Rationale
The rover software should eventually be migrated to ROS 2 to take advantage of new feature and use actively developed libraries.
# Required Actions
- [ ] Research ROS 2 and how it differs from ROS 2
- [ ] Read the documentation for [Migrating from ROS 1 to ROS 2](https://docs.ros.org/en/iron/How-To-Guides/Migrating-from-ROS1.html)
- [ ] Develop a migration plan for switching rover software to ROS 2
| 1.0 | ROS 2 Migration Plan - # Rationale
The rover software should eventually be migrated to ROS 2 to take advantage of new feature and use actively developed libraries.
# Required Actions
- [ ] Research ROS 2 and how it differs from ROS 2
- [ ] Read the documentation for [Migrating from ROS 1 to ROS 2](https://docs.ros.org/en/iron/How-To-Guides/Migrating-from-ROS1.html)
- [ ] Develop a migration plan for switching rover software to ROS 2
| priority | ros migration plan rationale the rover software should eventually be migrated to ros to take advantage of new feature and use actively developed libraries required actions research ros and how it differs from ros read the documentation for develop a migration plan for switching rover software to ros | 1 |
492,723 | 14,218,731,128 | IssuesEvent | 2020-11-17 12:15:48 | olive-editor/olive | https://api.github.com/repos/olive-editor/olive | closed | [UI] Missing icon in about dialog | Low Priority User Interface | When downloading the latest portable Olive nightly for windows and opening the about dialog the default symbol for missing icon appears instead of the olive logo. As far as I remember the same issue was in the Linux AppImage. | 1.0 | [UI] Missing icon in about dialog - When downloading the latest portable Olive nightly for windows and opening the about dialog the default symbol for missing icon appears instead of the olive logo. As far as I remember the same issue was in the Linux AppImage. | priority | missing icon in about dialog when downloading the latest portable olive nightly for windows and opening the about dialog the default symbol for missing icon appears instead of the olive logo as far as i remember the same issue was in the linux appimage | 1 |
99,534 | 4,056,665,633 | IssuesEvent | 2016-05-24 19:24:19 | octobercms/october | https://api.github.com/repos/octobercms/october | closed | Richeditor removes all text that was inserted after pasting (ctrl+v) | Priority: Low Status: Completed Type: Bug | To reproduce:
1. Open a form with a richeditor
2. Type some text into it
3. Copy this text: blabla. And paste it into the document
4. Don't save the document yet (this would be the workaround until this gets fixed, saving immediately after pasting anything)
5. Type in more text after the pasted text
6. Save
7. Refresh the form
8. All text after the pasted text ("blabla") is gone!
I'm using the latest build and tested it on a Mac with all sorts of browsers
Edit: After pasting in the text and writing more text, you could also click the HTML button twice to see how the text disappears | 1.0 | Richeditor removes all text that was inserted after pasting (ctrl+v) - To reproduce:
1. Open a form with a richeditor
2. Type some text into it
3. Copy this text: blabla. And paste it into the document
4. Don't save the document yet (this would be the workaround until this gets fixed, saving immediately after pasting anything)
5. Type in more text after the pasted text
6. Save
7. Refresh the form
8. All text after the pasted text ("blabla") is gone!
I'm using the latest build and tested it on a Mac with all sorts of browsers
Edit: After pasting in the text and writing more text, you could also click the HTML button twice to see how the text disappears | priority | richeditor removes all text that was inserted after pasting ctrl v to reproduce open a form with a richeditor type some text into it copy this text blabla and paste it into the document don t save the document yet this would be the workaround until this gets fixed saving immediately after pasting anything type in more text after the pasted text save refresh the form all text after the pasted text blabla is gone i m using the latest build and tested it on a mac with all sorts of browsers edit after pasting in the text and writing more text you could also click the html button twice to see how the text disappears | 1 |
135,349 | 5,246,964,177 | IssuesEvent | 2017-02-01 11:20:56 | pmem/issues | https://api.github.com/repos/pmem/issues | closed | unit tests: obj_pmalloc_basic/TEST0: SETUP (all/pmem/debug/memcheck) fails | Exposure: Low OS: Linux Priority: 4 low Type: Bug | Found on revision: 27ac7ed4ef539adf64cd712aefe578ec61ec6c70
> obj_pmalloc_basic/TEST0: SETUP (all/pmem/debug/memcheck)
> obj_pmalloc_basic/TEST0: START: obj_pmalloc_basic
> obj_pmalloc_basic/TEST0 failed with Valgrind. See memcheck0.log. First 20 lines below.
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105==
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== HEAP SUMMARY:
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== in use at exit: 224 bytes in 2 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== total heap usage: 896,876 allocs, 716,854 frees, 99,969,283 bytes allocated
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105==
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== 224 bytes in 2 blocks are definitely lost in loss record 1 of 1
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== at 0x4C2DB90: malloc (vg_replace_malloc.c:296)
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== by 0x410144: redo_log_config_new (in /home/jenkins/workspace/all_unittest_memcheck/src/test/obj_pmalloc_basic/obj_pmalloc_basic)
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== by 0x4039A5: test_mock_pool_allocs (obj_pmalloc_basic.c:206)
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== by 0x403C1B: main (obj_pmalloc_basic.c:262)
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105==
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== LEAK SUMMARY:
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== definitely lost: 224 bytes in 2 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== indirectly lost: 0 bytes in 0 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== possibly lost: 0 bytes in 0 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== still reachable: 0 bytes in 0 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== suppressed: 0 bytes in 0 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105==
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== For counts of detected and suppressed errors, rerun with: -v
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
> RUNTESTS: stopping: obj_pmalloc_basic/TEST0 failed, TEST=all FS=pmem BUILD=debug | 1.0 | unit tests: obj_pmalloc_basic/TEST0: SETUP (all/pmem/debug/memcheck) fails - Found on revision: 27ac7ed4ef539adf64cd712aefe578ec61ec6c70
> obj_pmalloc_basic/TEST0: SETUP (all/pmem/debug/memcheck)
> obj_pmalloc_basic/TEST0: START: obj_pmalloc_basic
> obj_pmalloc_basic/TEST0 failed with Valgrind. See memcheck0.log. First 20 lines below.
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105==
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== HEAP SUMMARY:
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== in use at exit: 224 bytes in 2 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== total heap usage: 896,876 allocs, 716,854 frees, 99,969,283 bytes allocated
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105==
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== 224 bytes in 2 blocks are definitely lost in loss record 1 of 1
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== at 0x4C2DB90: malloc (vg_replace_malloc.c:296)
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== by 0x410144: redo_log_config_new (in /home/jenkins/workspace/all_unittest_memcheck/src/test/obj_pmalloc_basic/obj_pmalloc_basic)
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== by 0x4039A5: test_mock_pool_allocs (obj_pmalloc_basic.c:206)
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== by 0x403C1B: main (obj_pmalloc_basic.c:262)
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105==
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== LEAK SUMMARY:
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== definitely lost: 224 bytes in 2 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== indirectly lost: 0 bytes in 0 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== possibly lost: 0 bytes in 0 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== still reachable: 0 bytes in 0 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== suppressed: 0 bytes in 0 blocks
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105==
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== For counts of detected and suppressed errors, rerun with: -v
> obj_pmalloc_basic/TEST0 memcheck0.log ==13105== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
> RUNTESTS: stopping: obj_pmalloc_basic/TEST0 failed, TEST=all FS=pmem BUILD=debug | priority | unit tests obj pmalloc basic setup all pmem debug memcheck fails found on revision obj pmalloc basic setup all pmem debug memcheck obj pmalloc basic start obj pmalloc basic obj pmalloc basic failed with valgrind see log first lines below obj pmalloc basic log obj pmalloc basic log heap summary obj pmalloc basic log in use at exit bytes in blocks obj pmalloc basic log total heap usage allocs frees bytes allocated obj pmalloc basic log obj pmalloc basic log bytes in blocks are definitely lost in loss record of obj pmalloc basic log at malloc vg replace malloc c obj pmalloc basic log by redo log config new in home jenkins workspace all unittest memcheck src test obj pmalloc basic obj pmalloc basic obj pmalloc basic log by test mock pool allocs obj pmalloc basic c obj pmalloc basic log by main obj pmalloc basic c obj pmalloc basic log obj pmalloc basic log leak summary obj pmalloc basic log definitely lost bytes in blocks obj pmalloc basic log indirectly lost bytes in blocks obj pmalloc basic log possibly lost bytes in blocks obj pmalloc basic log still reachable bytes in blocks obj pmalloc basic log suppressed bytes in blocks obj pmalloc basic log obj pmalloc basic log for counts of detected and suppressed errors rerun with v obj pmalloc basic log error summary errors from contexts suppressed from runtests stopping obj pmalloc basic failed test all fs pmem build debug | 1 |
84,365 | 3,663,951,020 | IssuesEvent | 2016-02-19 09:23:32 | miracle091/transmission-remote-dotnet | https://api.github.com/repos/miracle091/transmission-remote-dotnet | closed | Explicit specification of destination directory | Milestone-Sometime Priority-Low Type-Enhancement | ```
If we initiate the command 'Add torrent with options' and then choose an
available torrent file, we rather typically get a form, similar to the one
shown at the attached picture.
It is clear from the picture that when the torrent was been created by its
seeder, the listed files were located in a folder named 'import export2'.
But let us suppose for a moment that in the correspondence with my personal
standards I'd like to download these files in a folder named
'Import-Export/VIDEO_TS' and then to seed them from this folder.
However, if I specify the path '/share/Video/Import-Export/VIDEO_TS' in the
field 'Alternate destination directory', after the start of the torrent the
files will be downloaded in the folder
'/share/Video/Import-Export/VIDEO_TS/import export2' rather than to the
desired folder. This means that your client (unlike, for example, uTorrent)
append the original folder name to the specified path BY DEFAULT.
Meanwhile, I think it would be very convenient (at least for some
capricious users ;-) ), if this can be made only OPTIONALLY, for example,
by a checkbox 'Append original folder name'.
Is this enhancement too difficult?
```
Original issue reported on code.google.com by `kostia.i...@gmail.com` on 21 Jan 2010 at 7:51
Attachments:
* [DestinationDirectory.png](https://storage.googleapis.com/google-code-attachments/transmission-remote-dotnet/issue-192/comment-0/DestinationDirectory.png)
| 1.0 | Explicit specification of destination directory - ```
If we initiate the command 'Add torrent with options' and then choose an
available torrent file, we rather typically get a form, similar to the one
shown at the attached picture.
It is clear from the picture that when the torrent was been created by its
seeder, the listed files were located in a folder named 'import export2'.
But let us suppose for a moment that in the correspondence with my personal
standards I'd like to download these files in a folder named
'Import-Export/VIDEO_TS' and then to seed them from this folder.
However, if I specify the path '/share/Video/Import-Export/VIDEO_TS' in the
field 'Alternate destination directory', after the start of the torrent the
files will be downloaded in the folder
'/share/Video/Import-Export/VIDEO_TS/import export2' rather than to the
desired folder. This means that your client (unlike, for example, uTorrent)
append the original folder name to the specified path BY DEFAULT.
Meanwhile, I think it would be very convenient (at least for some
capricious users ;-) ), if this can be made only OPTIONALLY, for example,
by a checkbox 'Append original folder name'.
Is this enhancement too difficult?
```
Original issue reported on code.google.com by `kostia.i...@gmail.com` on 21 Jan 2010 at 7:51
Attachments:
* [DestinationDirectory.png](https://storage.googleapis.com/google-code-attachments/transmission-remote-dotnet/issue-192/comment-0/DestinationDirectory.png)
| priority | explicit specification of destination directory if we initiate the command add torrent with options and then choose an available torrent file we rather typically get a form similar to the one shown at the attached picture it is clear from the picture that when the torrent was been created by its seeder the listed files were located in a folder named import but let us suppose for a moment that in the correspondence with my personal standards i d like to download these files in a folder named import export video ts and then to seed them from this folder however if i specify the path share video import export video ts in the field alternate destination directory after the start of the torrent the files will be downloaded in the folder share video import export video ts import rather than to the desired folder this means that your client unlike for example utorrent append the original folder name to the specified path by default meanwhile i think it would be very convenient at least for some capricious users if this can be made only optionally for example by a checkbox append original folder name is this enhancement too difficult original issue reported on code google com by kostia i gmail com on jan at attachments | 1 |
213,184 | 7,246,528,451 | IssuesEvent | 2018-02-14 21:59:47 | feathersjs-ecosystem/feathers-generator | https://api.github.com/repos/feathersjs-ecosystem/feathers-generator | closed | service updating | Priority: Low Status: Abandoned Status: Review Needed Type: Enhancement | ### overview
A generated service should be able to be updated. For example, I might generate a service with a memory model to prototype, but when I'm ready to go to production I may change to mongo. I should be able to update the `service.json` with minimal regression via cli.
### tasks
TBD | 1.0 | service updating - ### overview
A generated service should be able to be updated. For example, I might generate a service with a memory model to prototype, but when I'm ready to go to production I may change to mongo. I should be able to update the `service.json` with minimal regression via cli.
### tasks
TBD | priority | service updating overview a generated service should be able to be updated for example i might generate a service with a memory model to prototype but when i m ready to go to production i may change to mongo i should be able to update the service json with minimal regression via cli tasks tbd | 1 |
527,046 | 15,307,748,507 | IssuesEvent | 2021-02-24 21:22:11 | patternfly/patternfly-elements | https://api.github.com/repos/patternfly/patternfly-elements | closed | pfe-sass required dependency | bug priority: low | Adding pfe-sass as a devDependency of any component using pfe-sass to compile. This is important because when lerna looks at the dependency tree, if a component doesn't list it, it can lead to a race-condition where globbing is in process when another component's sass looks for it.
| 1.0 | pfe-sass required dependency - Adding pfe-sass as a devDependency of any component using pfe-sass to compile. This is important because when lerna looks at the dependency tree, if a component doesn't list it, it can lead to a race-condition where globbing is in process when another component's sass looks for it.
| priority | pfe sass required dependency adding pfe sass as a devdependency of any component using pfe sass to compile this is important because when lerna looks at the dependency tree if a component doesn t list it it can lead to a race condition where globbing is in process when another component s sass looks for it | 1 |
131,314 | 5,146,028,801 | IssuesEvent | 2017-01-12 23:26:29 | NucleusPowered/Nucleus | https://api.github.com/repos/NucleusPowered/Nucleus | closed | Add World Trimming | enhancement low priority | From #230:
> How about world trimming? Might seem far out already for nucleus though, but just putting the idea here XD like anything outside the world border can be deleted with a command so the server world file doesn't get too big.
| 1.0 | Add World Trimming - From #230:
> How about world trimming? Might seem far out already for nucleus though, but just putting the idea here XD like anything outside the world border can be deleted with a command so the server world file doesn't get too big.
| priority | add world trimming from how about world trimming might seem far out already for nucleus though but just putting the idea here xd like anything outside the world border can be deleted with a command so the server world file doesn t get too big | 1 |
824,007 | 31,079,926,094 | IssuesEvent | 2023-08-13 00:30:09 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | Intel CAVS 25: tests/subsys/input/api/ fails with multicore enabled | bug priority: low Stale platform: Intel ADSP area: Input | **Describe the bug**
After calling tests/subsys/input/api/ all other tests failing. For run other tests need to restart board.
67ccf6d this commit add tests that failing on cavs
**To Reproduce**
```
twister -W --hardware-map /home/ztest/cavs/cavs.map
--device-testing
-T tests/subsys/input/api/
-x=CONFIG_BOOT_DELAY=500
-v --no-skipped-report
```
**Expected behavior**
Tests pass.
**Logs and console output**
```
INFO - 1/2 intel_adsp_cavs25 tests/subsys/input/api/subsys.input.api.synchronous ERROR Device issue (Flash error?) (device 0.587s)
INFO - 2/2 intel_adsp_cavs25 tests/subsys/input/api/subsys.input.api.thread ERROR Device issue (Flash error?) (device 0.589s)
```
**Environment (please complete the following information):**
OS: Linux
Toolchain: Zephyr SDK
Latest main (419dda3)
| 1.0 | Intel CAVS 25: tests/subsys/input/api/ fails with multicore enabled - **Describe the bug**
After calling tests/subsys/input/api/ all other tests failing. For run other tests need to restart board.
67ccf6d this commit add tests that failing on cavs
**To Reproduce**
```
twister -W --hardware-map /home/ztest/cavs/cavs.map
--device-testing
-T tests/subsys/input/api/
-x=CONFIG_BOOT_DELAY=500
-v --no-skipped-report
```
**Expected behavior**
Tests pass.
**Logs and console output**
```
INFO - 1/2 intel_adsp_cavs25 tests/subsys/input/api/subsys.input.api.synchronous ERROR Device issue (Flash error?) (device 0.587s)
INFO - 2/2 intel_adsp_cavs25 tests/subsys/input/api/subsys.input.api.thread ERROR Device issue (Flash error?) (device 0.589s)
```
**Environment (please complete the following information):**
OS: Linux
Toolchain: Zephyr SDK
Latest main (419dda3)
| priority | intel cavs tests subsys input api fails with multicore enabled describe the bug after calling tests subsys input api all other tests failing for run other tests need to restart board this commit add tests that failing on cavs to reproduce twister w hardware map home ztest cavs cavs map device testing t tests subsys input api x config boot delay v no skipped report expected behavior tests pass logs and console output info intel adsp tests subsys input api subsys input api synchronous error device issue flash error device info intel adsp tests subsys input api subsys input api thread error device issue flash error device environment please complete the following information os linux toolchain zephyr sdk latest main | 1 |
84,757 | 3,671,123,872 | IssuesEvent | 2016-02-22 04:32:48 | Macainian/Django-Maced | https://api.github.com/repos/Macainian/Django-Maced | opened | Switch method for hiding to a better one (read description) | Bug Feature Low Priority | As found here: http://stackoverflow.com/questions/35536252/show-hide-html-element-best-approach/35536498?noredirect=1#comment58761993_35536498
It is better to do:
`.hidden {display:none}
$('#element_to_hide').addClass('hidden');// when we want to hide
$('#element_to_hide').removeClass('hidden'); // when we want to show` | 1.0 | Switch method for hiding to a better one (read description) - As found here: http://stackoverflow.com/questions/35536252/show-hide-html-element-best-approach/35536498?noredirect=1#comment58761993_35536498
It is better to do:
`.hidden {display:none}
$('#element_to_hide').addClass('hidden');// when we want to hide
$('#element_to_hide').removeClass('hidden'); // when we want to show` | priority | switch method for hiding to a better one read description as found here it is better to do hidden display none element to hide addclass hidden when we want to hide element to hide removeclass hidden when we want to show | 1 |
795,120 | 28,062,391,355 | IssuesEvent | 2023-03-29 13:25:28 | rism-digital/verovio | https://api.github.com/repos/rism-digital/verovio | closed | cross staff + tuplet number interaction | enhancement low priority | Here is an example where the tuplet number is colliding with the beam when the notes are placed on a different staff from their home staff (last beam):
<img width="402" alt="Screen Shot 2022-04-21 at 6 54 45 AM" src="https://user-images.githubusercontent.com/3487289/164473549-f833d262-04dd-419d-884e-4d02adee800c.png">
<details>
<summary>
Click to view MEI conversion
</summary>
```xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://music-encoding.org/schema/dev/mei-all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="https://music-encoding.org/schema/dev/mei-all.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<mei xmlns="http://www.music-encoding.org/ns/mei" meiversion="5.0.0-dev">
<meiHead>
<fileDesc>
<titleStmt>
<title>Piano Sonata no. 2 in A major</title>
</titleStmt>
<pubStmt />
</fileDesc>
<encodingDesc>
<appInfo>
<application isodate="2022-04-21T06:52:17" version="3.10.0-dev-c34d1d5-dirty">
<name>Verovio</name>
<p>Transcoded from Humdrum</p>
</application>
</appInfo>
</encodingDesc>
<workList>
<work>
<title xml:id="title-L3" analog="humdrum:OTL" type="main">Piano Sonata no. 2 in A major</title>
<composer analog="humdrum:COM" xml:id="person-L1">Beethoven, Ludwig van</composer>
<creation>
<date analog="humdrum:ODT">1794///-1795///</date>
</creation>
</work>
</workList>
</meiHead>
<music>
<body>
<mdiv xml:id="ml4f4oi">
<score xml:id="sims68t">
<scoreDef xml:id="sa2x1qw" midi.bpm="120.000000">
<pgHead xml:id="pyzcnl9">
<rend xml:id="rupu2bz" halign="center" valign="middle">
<rend xml:id="r14wuqk" fontsize="large">Piano Sonata no. 2 in A major</rend>
<lb xml:id="l58k0f6" />
<lb xml:id="lfi1kg" /> </rend>
<rend xml:id="rzfwcjw" halign="right" valign="bottom" fontsize="small">Ludwig van Beethoven</rend>
<rend xml:id="r8zxj59" halign="right" valign="bottom" fontsize="small">1770–1827</rend>
</pgHead>
<staffGrp xml:id="s5mk1jo" bar.thru="true" symbol="brace">
<staffDef xml:id="s8emf8k" n="1" lines="5">
<clef xml:id="clef-L12F2" shape="G" line="2" />
<keySig xml:id="keysig-L13F2" pname="a" mode="major" sig="3s" />
<meterSig xml:id="metersig-L15F2" count="2" unit="4" />
</staffDef>
<staffDef xml:id="sqn9svv" n="2" lines="5">
<clef xml:id="clef-L12F1" shape="F" line="4" />
<keySig xml:id="keysig-L13F1" pname="a" mode="major" sig="3s" />
<meterSig xml:id="metersig-L15F1" count="2" unit="4" />
</staffDef>
</staffGrp>
</scoreDef>
<section xml:id="section-L11F1">
<measure xml:id="measure-L1" n="32">
<staff xml:id="sxn9c9k" n="1">
<layer xml:id="layer-L11F2N1" n="1">
<chord xml:id="chord-L18F2" dur="4">
<note xml:id="note-L18F2S1" oct="5" pname="c" accid.ges="s" />
<note xml:id="note-L18F2S2" oct="5" pname="e" accid.ges="n" />
<note xml:id="note-L18F2S3" oct="5" pname="a" accid.ges="n" />
<artic xml:id="artic-L18F2" artic="stacciss" />
</chord>
<rest xml:id="rest-L24F2" dur="4" ploc="b" oloc="4" />
</layer>
</staff>
<staff xml:id="spu324e" n="2">
<layer xml:id="layer-L11F1N1" n="1">
<tuplet xml:id="tuplet-L18F1-L20F1" num="3" numbase="2" bracket.visible="false" num.format="count">
<beam xml:id="beam-L18F1-L20F1" type="placed">
<note xml:id="note-L18F1" dur="16" oct="2" pname="a" stem.dir="down" accid.ges="n" />
<note xml:id="note-L19F1" dur="16" oct="3" pname="c" stem.dir="down" accid.ges="s" />
<note xml:id="note-L20F1" dur="16" oct="3" pname="d" stem.dir="down" accid.ges="n" />
</beam>
</tuplet>
<tuplet xml:id="tuplet-L21F1-L23F1" num="3" numbase="2" bracket.visible="false" num.format="count">
<beam xml:id="beam-L21F1-L23F1">
<note xml:id="note-L21F1" dur="16" oct="3" pname="e" accid.ges="n" />
<note xml:id="note-L22F1" dur="16" oct="3" pname="f" accid.ges="s" />
<note xml:id="note-L23F1" dur="16" oct="3" pname="g" accid.ges="s" />
</beam>
</tuplet>
<tuplet xml:id="tuplet-L24F1-L26F1" num="3" numbase="2" bracket.visible="false" num.format="count">
<beam xml:id="beam-L24F1-L26F1">
<note xml:id="note-L24F1" dur="16" oct="3" pname="a" accid.ges="n" />
<note xml:id="note-L25F1" dur="16" oct="4" pname="c" accid.ges="s" />
<note xml:id="note-L26F1" dur="16" oct="4" pname="d" accid.ges="n" />
</beam>
</tuplet>
<tuplet xml:id="tuplet-L27F1-L29F1" num="3" numbase="2" bracket.visible="false" num.format="count">
<beam xml:id="beam-L27F1-L29F1" beam.with="above">
<note xml:id="note-L27F1" dur="16" staff="1" oct="4" pname="e" stem.dir="down" accid.ges="n" />
<note xml:id="note-L28F1" dur="16" staff="1" oct="4" pname="f" stem.dir="down" accid.ges="s" />
<note xml:id="note-L29F1" dur="16" staff="1" oct="4" pname="g" stem.dir="down" accid.ges="s" />
</beam>
</tuplet>
</layer>
</staff>
<dynam xml:id="dynam-L18F3" staff="1" tstamp="1.000000" vgrp="100">f</dynam>
</measure>
</section>
</score>
</mdiv>
</body>
</music>
</mei>
```
</details>
| 1.0 | cross staff + tuplet number interaction - Here is an example where the tuplet number is colliding with the beam when the notes are placed on a different staff from their home staff (last beam):
<img width="402" alt="Screen Shot 2022-04-21 at 6 54 45 AM" src="https://user-images.githubusercontent.com/3487289/164473549-f833d262-04dd-419d-884e-4d02adee800c.png">
<details>
<summary>
Click to view MEI conversion
</summary>
```xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://music-encoding.org/schema/dev/mei-all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="https://music-encoding.org/schema/dev/mei-all.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<mei xmlns="http://www.music-encoding.org/ns/mei" meiversion="5.0.0-dev">
<meiHead>
<fileDesc>
<titleStmt>
<title>Piano Sonata no. 2 in A major</title>
</titleStmt>
<pubStmt />
</fileDesc>
<encodingDesc>
<appInfo>
<application isodate="2022-04-21T06:52:17" version="3.10.0-dev-c34d1d5-dirty">
<name>Verovio</name>
<p>Transcoded from Humdrum</p>
</application>
</appInfo>
</encodingDesc>
<workList>
<work>
<title xml:id="title-L3" analog="humdrum:OTL" type="main">Piano Sonata no. 2 in A major</title>
<composer analog="humdrum:COM" xml:id="person-L1">Beethoven, Ludwig van</composer>
<creation>
<date analog="humdrum:ODT">1794///-1795///</date>
</creation>
</work>
</workList>
</meiHead>
<music>
<body>
<mdiv xml:id="ml4f4oi">
<score xml:id="sims68t">
<scoreDef xml:id="sa2x1qw" midi.bpm="120.000000">
<pgHead xml:id="pyzcnl9">
<rend xml:id="rupu2bz" halign="center" valign="middle">
<rend xml:id="r14wuqk" fontsize="large">Piano Sonata no. 2 in A major</rend>
<lb xml:id="l58k0f6" />
<lb xml:id="lfi1kg" /> </rend>
<rend xml:id="rzfwcjw" halign="right" valign="bottom" fontsize="small">Ludwig van Beethoven</rend>
<rend xml:id="r8zxj59" halign="right" valign="bottom" fontsize="small">1770–1827</rend>
</pgHead>
<staffGrp xml:id="s5mk1jo" bar.thru="true" symbol="brace">
<staffDef xml:id="s8emf8k" n="1" lines="5">
<clef xml:id="clef-L12F2" shape="G" line="2" />
<keySig xml:id="keysig-L13F2" pname="a" mode="major" sig="3s" />
<meterSig xml:id="metersig-L15F2" count="2" unit="4" />
</staffDef>
<staffDef xml:id="sqn9svv" n="2" lines="5">
<clef xml:id="clef-L12F1" shape="F" line="4" />
<keySig xml:id="keysig-L13F1" pname="a" mode="major" sig="3s" />
<meterSig xml:id="metersig-L15F1" count="2" unit="4" />
</staffDef>
</staffGrp>
</scoreDef>
<section xml:id="section-L11F1">
<measure xml:id="measure-L1" n="32">
<staff xml:id="sxn9c9k" n="1">
<layer xml:id="layer-L11F2N1" n="1">
<chord xml:id="chord-L18F2" dur="4">
<note xml:id="note-L18F2S1" oct="5" pname="c" accid.ges="s" />
<note xml:id="note-L18F2S2" oct="5" pname="e" accid.ges="n" />
<note xml:id="note-L18F2S3" oct="5" pname="a" accid.ges="n" />
<artic xml:id="artic-L18F2" artic="stacciss" />
</chord>
<rest xml:id="rest-L24F2" dur="4" ploc="b" oloc="4" />
</layer>
</staff>
<staff xml:id="spu324e" n="2">
<layer xml:id="layer-L11F1N1" n="1">
<tuplet xml:id="tuplet-L18F1-L20F1" num="3" numbase="2" bracket.visible="false" num.format="count">
<beam xml:id="beam-L18F1-L20F1" type="placed">
<note xml:id="note-L18F1" dur="16" oct="2" pname="a" stem.dir="down" accid.ges="n" />
<note xml:id="note-L19F1" dur="16" oct="3" pname="c" stem.dir="down" accid.ges="s" />
<note xml:id="note-L20F1" dur="16" oct="3" pname="d" stem.dir="down" accid.ges="n" />
</beam>
</tuplet>
<tuplet xml:id="tuplet-L21F1-L23F1" num="3" numbase="2" bracket.visible="false" num.format="count">
<beam xml:id="beam-L21F1-L23F1">
<note xml:id="note-L21F1" dur="16" oct="3" pname="e" accid.ges="n" />
<note xml:id="note-L22F1" dur="16" oct="3" pname="f" accid.ges="s" />
<note xml:id="note-L23F1" dur="16" oct="3" pname="g" accid.ges="s" />
</beam>
</tuplet>
<tuplet xml:id="tuplet-L24F1-L26F1" num="3" numbase="2" bracket.visible="false" num.format="count">
<beam xml:id="beam-L24F1-L26F1">
<note xml:id="note-L24F1" dur="16" oct="3" pname="a" accid.ges="n" />
<note xml:id="note-L25F1" dur="16" oct="4" pname="c" accid.ges="s" />
<note xml:id="note-L26F1" dur="16" oct="4" pname="d" accid.ges="n" />
</beam>
</tuplet>
<tuplet xml:id="tuplet-L27F1-L29F1" num="3" numbase="2" bracket.visible="false" num.format="count">
<beam xml:id="beam-L27F1-L29F1" beam.with="above">
<note xml:id="note-L27F1" dur="16" staff="1" oct="4" pname="e" stem.dir="down" accid.ges="n" />
<note xml:id="note-L28F1" dur="16" staff="1" oct="4" pname="f" stem.dir="down" accid.ges="s" />
<note xml:id="note-L29F1" dur="16" staff="1" oct="4" pname="g" stem.dir="down" accid.ges="s" />
</beam>
</tuplet>
</layer>
</staff>
<dynam xml:id="dynam-L18F3" staff="1" tstamp="1.000000" vgrp="100">f</dynam>
</measure>
</section>
</score>
</mdiv>
</body>
</music>
</mei>
```
</details>
| priority | cross staff tuplet number interaction here is an example where the tuplet number is colliding with the beam when the notes are placed on a different staff from their home staff last beam img width alt screen shot at am src click to view mei conversion xml xml model href type application xml schematypens xml model href type application xml schematypens piano sonata no in a major verovio transcoded from humdrum piano sonata no in a major beethoven ludwig van piano sonata no in a major ludwig van beethoven – f | 1 |
710,573 | 24,423,169,921 | IssuesEvent | 2022-10-05 22:39:15 | MattTheLegoman/RealmsInExile | https://api.github.com/repos/MattTheLegoman/RealmsInExile | closed | Extra game concepts/loredumps | help wanted localization lore priority: low | I would like to link the following as game concepts in my event localization:
- Imrazôr
- Dol Amroth
- Oiolarë trees
- Tol Aerhir
- Eithel Ulmo
- Ents (Also possible Entwives?) | 1.0 | Extra game concepts/loredumps - I would like to link the following as game concepts in my event localization:
- Imrazôr
- Dol Amroth
- Oiolarë trees
- Tol Aerhir
- Eithel Ulmo
- Ents (Also possible Entwives?) | priority | extra game concepts loredumps i would like to link the following as game concepts in my event localization imrazôr dol amroth oiolarë trees tol aerhir eithel ulmo ents also possible entwives | 1 |
439,567 | 12,683,920,899 | IssuesEvent | 2020-06-19 21:00:56 | sqlalchemy/sqlalchemy | https://api.github.com/repos/sqlalchemy/sqlalchemy | closed | get_sequence_names | fairly easy feature low priority reflection schema | **Migrated issue, originally created by Michael Bayer ([@zzzeek](https://github.com/zzzeek))**
one for the sprints
| 1.0 | get_sequence_names - **Migrated issue, originally created by Michael Bayer ([@zzzeek](https://github.com/zzzeek))**
one for the sprints
| priority | get sequence names migrated issue originally created by michael bayer one for the sprints | 1 |
236,320 | 7,748,394,778 | IssuesEvent | 2018-05-30 08:11:51 | Gloirin/m2gTest | https://api.github.com/repos/Gloirin/m2gTest | closed | 0002616:
Move Save Filters Button to Save Favorite | Timetracker bug low priority | **Reported by cweiss on 10 May 2010 15:46**
**Version:** Mialena (2010-03) Beta 1
Move Save Filters Button to Save Favorite Button in WestPanel
**Steps to reproduce:** https://pidoco.com/rabbit/invitation/ZvvZaNJ0lb8aqKQuo544Xr04pQ4ouSPfQnyTW886
left upper corner "Save view as new favorite"
| 1.0 | 0002616:
Move Save Filters Button to Save Favorite - **Reported by cweiss on 10 May 2010 15:46**
**Version:** Mialena (2010-03) Beta 1
Move Save Filters Button to Save Favorite Button in WestPanel
**Steps to reproduce:** https://pidoco.com/rabbit/invitation/ZvvZaNJ0lb8aqKQuo544Xr04pQ4ouSPfQnyTW886
left upper corner "Save view as new favorite"
| priority | move save filters button to save favorite reported by cweiss on may version mialena beta move save filters button to save favorite button in westpanel steps to reproduce left upper corner quot save view as new favorite quot | 1 |
490,711 | 14,139,043,303 | IssuesEvent | 2020-11-10 09:18:06 | ooni/backend | https://api.github.com/repos/ooni/backend | closed | AMS migration: assist and provide feedback (4/n) | effort/XS priority/low | Following up from https://github.com/ooni/backend/issues/456. These are the remaining task:
- [x] stop using ams-pg.ooni.org for integration testing and use ams-pg-test.ooni.org instead:
- [x] github.com/ooni/probe-engine
- [x] github.com/measurement-kit/measurement-kit (https://github.com/measurement-kit/measurement-kit/issues/1933)
- [x] github.com/ooni/e2etesting (https://github.com/ooni/e2etesting/pull/23) [❓]
- [x] github.com/ooni/probe-android
- [x] github.com/ooni/probe-ios
List above poised to shrink/grow as the time progresses. See also https://github.com/ooni/backend/issues/437. | 1.0 | AMS migration: assist and provide feedback (4/n) - Following up from https://github.com/ooni/backend/issues/456. These are the remaining task:
- [x] stop using ams-pg.ooni.org for integration testing and use ams-pg-test.ooni.org instead:
- [x] github.com/ooni/probe-engine
- [x] github.com/measurement-kit/measurement-kit (https://github.com/measurement-kit/measurement-kit/issues/1933)
- [x] github.com/ooni/e2etesting (https://github.com/ooni/e2etesting/pull/23) [❓]
- [x] github.com/ooni/probe-android
- [x] github.com/ooni/probe-ios
List above poised to shrink/grow as the time progresses. See also https://github.com/ooni/backend/issues/437. | priority | ams migration assist and provide feedback n following up from these are the remaining task stop using ams pg ooni org for integration testing and use ams pg test ooni org instead github com ooni probe engine github com measurement kit measurement kit github com ooni github com ooni probe android github com ooni probe ios list above poised to shrink grow as the time progresses see also | 1 |
181,837 | 6,664,556,032 | IssuesEvent | 2017-10-02 20:35:43 | Kirez/dat255 | https://api.github.com/repos/Kirez/dat255 | closed | Java implementation of a control system | enhancement low priority S3 | As developers we want to have software that regulates the velocity of the car based on input from the sensor, so that the speed will be more controllable.
DoD: The function returns a stable output when given values on a set interval. | 1.0 | Java implementation of a control system - As developers we want to have software that regulates the velocity of the car based on input from the sensor, so that the speed will be more controllable.
DoD: The function returns a stable output when given values on a set interval. | priority | java implementation of a control system as developers we want to have software that regulates the velocity of the car based on input from the sensor so that the speed will be more controllable dod the function returns a stable output when given values on a set interval | 1 |
314,725 | 9,602,086,674 | IssuesEvent | 2019-05-10 13:48:49 | redhat-developer-demos/knative-tutorial | https://api.github.com/repos/redhat-developer-demos/knative-tutorial | closed | Add codebox or tabs instead of OR | priority/low | currently there are may places where we do `(OR)` for showing two different code pieces. It better we have use better way like codebox/tabs to handle them.
Refer https://github.com/couchbase/docs-site | 1.0 | Add codebox or tabs instead of OR - currently there are may places where we do `(OR)` for showing two different code pieces. It better we have use better way like codebox/tabs to handle them.
Refer https://github.com/couchbase/docs-site | priority | add codebox or tabs instead of or currently there are may places where we do or for showing two different code pieces it better we have use better way like codebox tabs to handle them refer | 1 |
298,654 | 9,200,634,895 | IssuesEvent | 2019-03-07 17:31:39 | qissue-bot/QGIS | https://api.github.com/repos/qissue-bot/QGIS | closed | layer point (.shp) become invisible on qgis-0.8.0-win32-060724 | Category: Vectors Component: Affected QGIS version Component: Crashes QGIS or corrupts data Component: Easy fix? Component: Operating System Component: Pull Request or Patch supplied Component: Regression? Component: Resolution Priority: Low Project: QGIS Application Status: Closed Tracker: Bug report | ---
Author Name: **anonymous -** (anonymous -)
Original Redmine Issue: 219, https://issues.qgis.org/issues/219
Original Assignee: Gavin Macaulay -
---
layer points (.shp) seem be create but when we stop edition, points become invisible.
after the layer has been deleted, when we call new it, it will be layer polygons.
| 1.0 | layer point (.shp) become invisible on qgis-0.8.0-win32-060724 - ---
Author Name: **anonymous -** (anonymous -)
Original Redmine Issue: 219, https://issues.qgis.org/issues/219
Original Assignee: Gavin Macaulay -
---
layer points (.shp) seem be create but when we stop edition, points become invisible.
after the layer has been deleted, when we call new it, it will be layer polygons.
| priority | layer point shp become invisible on qgis author name anonymous anonymous original redmine issue original assignee gavin macaulay layer points shp seem be create but when we stop edition points become invisible after the layer has been deleted when we call new it it will be layer polygons | 1 |
163,224 | 6,194,105,192 | IssuesEvent | 2017-07-05 09:04:58 | leonsoft-kras/transmisson-remote-gui | https://api.github.com/repos/leonsoft-kras/transmisson-remote-gui | closed | MAC OS X not shutdown-ing .. hang on attempt to close transmisston remote gui | auto-migrated Priority-Low | ```
What steps will reproduce the problem?
1. Open transmission remote gui
2. Shut down MAC OS X Mavericks
3. .. process hangs at Transmission remote gui
(this happens when you keep the transmission open using the settings .. keep in
tray and minimise to tray) .. which btw .. should disappear from doc and appear
only in tray ..)
What is the expected output? What do you see instead?
- Shutdown and close Transmission automatically
What version of the product are you using? On what operating system?
- latest
Please provide any additional information below.
```
Original issue reported on code.google.com by `sbrig...@gmail.com` on 13 Oct 2014 at 9:07
| 1.0 | MAC OS X not shutdown-ing .. hang on attempt to close transmisston remote gui - ```
What steps will reproduce the problem?
1. Open transmission remote gui
2. Shut down MAC OS X Mavericks
3. .. process hangs at Transmission remote gui
(this happens when you keep the transmission open using the settings .. keep in
tray and minimise to tray) .. which btw .. should disappear from doc and appear
only in tray ..)
What is the expected output? What do you see instead?
- Shutdown and close Transmission automatically
What version of the product are you using? On what operating system?
- latest
Please provide any additional information below.
```
Original issue reported on code.google.com by `sbrig...@gmail.com` on 13 Oct 2014 at 9:07
| priority | mac os x not shutdown ing hang on attempt to close transmisston remote gui what steps will reproduce the problem open transmission remote gui shut down mac os x mavericks process hangs at transmission remote gui this happens when you keep the transmission open using the settings keep in tray and minimise to tray which btw should disappear from doc and appear only in tray what is the expected output what do you see instead shutdown and close transmission automatically what version of the product are you using on what operating system latest please provide any additional information below original issue reported on code google com by sbrig gmail com on oct at | 1 |
427,556 | 12,396,720,297 | IssuesEvent | 2020-05-20 21:05:02 | ArctosDB/arctos | https://api.github.com/repos/ArctosDB/arctos | opened | Consolidate edits to single-record taxon name/classification forms | Awaiting PG Display/Interface Function-Taxonomy/Identification Priority-Low | per #2682:
> Would you be willing to round all the single-record taxonomy form issues up in one place?
Taxonomy committee 2020-05-20: We'll start by mocking up our wish lists starting with the classification editing page. | 1.0 | Consolidate edits to single-record taxon name/classification forms - per #2682:
> Would you be willing to round all the single-record taxonomy form issues up in one place?
Taxonomy committee 2020-05-20: We'll start by mocking up our wish lists starting with the classification editing page. | priority | consolidate edits to single record taxon name classification forms per would you be willing to round all the single record taxonomy form issues up in one place taxonomy committee we ll start by mocking up our wish lists starting with the classification editing page | 1 |
746,792 | 26,046,249,470 | IssuesEvent | 2022-12-22 14:38:03 | exyleio/exyleio | https://api.github.com/repos/exyleio/exyleio | opened | Add player comparison tool | priority 3 - low area:website tag:game type:task | Add a X vs Y player stats comparison tool
- 1v1 result prediction
- stat diff | 1.0 | Add player comparison tool - Add a X vs Y player stats comparison tool
- 1v1 result prediction
- stat diff | priority | add player comparison tool add a x vs y player stats comparison tool result prediction stat diff | 1 |
609,995 | 18,891,650,560 | IssuesEvent | 2021-11-15 13:52:27 | lumian/grcentral | https://api.github.com/repos/lumian/grcentral | closed | Перевод на AJAX окна редактирования устройства | Type: Planned improvement Priority: Low | Необходимо перевести на AJAX как минимум модальное окно редактирования и создания устройства (подтягивать список моделей, список прошивок для закрепления только для этой модели).
Возможно, в каких-то еще окнах потребуется к моменту реализации данной issue. | 1.0 | Перевод на AJAX окна редактирования устройства - Необходимо перевести на AJAX как минимум модальное окно редактирования и создания устройства (подтягивать список моделей, список прошивок для закрепления только для этой модели).
Возможно, в каких-то еще окнах потребуется к моменту реализации данной issue. | priority | перевод на ajax окна редактирования устройства необходимо перевести на ajax как минимум модальное окно редактирования и создания устройства подтягивать список моделей список прошивок для закрепления только для этой модели возможно в каких то еще окнах потребуется к моменту реализации данной issue | 1 |
471,597 | 13,595,206,196 | IssuesEvent | 2020-09-22 02:21:01 | AtlasOfLivingAustralia/volunteer-portal | https://api.github.com/repos/AtlasOfLivingAustralia/volunteer-portal | closed | Current Expeditions section from notebook screen | Priority - low Status - to close? Type - new feature | It is a new feature and we'll leave it out from the new skin release.
| 1.0 | Current Expeditions section from notebook screen - It is a new feature and we'll leave it out from the new skin release.
| priority | current expeditions section from notebook screen it is a new feature and we ll leave it out from the new skin release | 1 |
529,380 | 15,387,558,314 | IssuesEvent | 2021-03-03 09:41:10 | mantidproject/mantid | https://api.github.com/repos/mantidproject/mantid | closed | LoadMask Reports Misleading Error For Non-Conform DetID List | Framework Low Priority Stale | This issue was originally [TRAC 9747](http://trac.mantidproject.org/mantid/ticket/9747)
A mask file with a trailing comma results in an error of
`Pixel w/ ID = 0 Cannot Be Located`
being reported to the results log. Currently the fix is to change this:
```
#!xml
`<?xml version="1.0"?>`
`<detector-masking>`
`<group>`
`<detids>`10,`</detids>`
`</group>`
`</detector-masking>`
```
to this:
```
#!xml
`<?xml version="1.0"?>`
`<detector-masking>`
`<group>`
`<detids>`10`</detids>`
`</group>`
`</detector-masking>`
```
But it would be nice to clear away this edge case when parsing the IDs.
| 1.0 | LoadMask Reports Misleading Error For Non-Conform DetID List - This issue was originally [TRAC 9747](http://trac.mantidproject.org/mantid/ticket/9747)
A mask file with a trailing comma results in an error of
`Pixel w/ ID = 0 Cannot Be Located`
being reported to the results log. Currently the fix is to change this:
```
#!xml
`<?xml version="1.0"?>`
`<detector-masking>`
`<group>`
`<detids>`10,`</detids>`
`</group>`
`</detector-masking>`
```
to this:
```
#!xml
`<?xml version="1.0"?>`
`<detector-masking>`
`<group>`
`<detids>`10`</detids>`
`</group>`
`</detector-masking>`
```
But it would be nice to clear away this edge case when parsing the IDs.
| priority | loadmask reports misleading error for non conform detid list this issue was originally a mask file with a trailing comma results in an error of pixel w id cannot be located being reported to the results log currently the fix is to change this xml to this xml but it would be nice to clear away this edge case when parsing the ids | 1 |
121,768 | 4,821,189,102 | IssuesEvent | 2016-11-05 06:34:14 | copperhead/bugtracker | https://api.github.com/repos/copperhead/bugtracker | closed | domain blacklisting | enhancement priority-low | - choice of blacklists
- updating blacklists
- user exceptions / additions
| 1.0 | domain blacklisting - - choice of blacklists
- updating blacklists
- user exceptions / additions
| priority | domain blacklisting choice of blacklists updating blacklists user exceptions additions | 1 |
488,485 | 14,078,423,101 | IssuesEvent | 2020-11-04 13:33:09 | peterwebster/henson | https://api.github.com/repos/peterwebster/henson | closed | Amend Stage 2 script to account for another <hi attribute combination | low priority | By chance I discover this in volume 15 <hi rend="i bold superscript underline">, meaning that there is a combination not accounted for in the Stage 2 script.
| 1.0 | Amend Stage 2 script to account for another <hi attribute combination - By chance I discover this in volume 15 <hi rend="i bold superscript underline">, meaning that there is a combination not accounted for in the Stage 2 script.
| priority | amend stage script to account for another meaning that there is a combination not accounted for in the stage script | 1 |
575,646 | 17,038,044,584 | IssuesEvent | 2021-07-05 09:42:58 | kecven/stady_scala_spark | https://api.github.com/repos/kecven/stady_scala_spark | opened | Least_Privilege_Violation @ bank-gateway/ [master] | priority: Low | http://localhost:8380/iast-ui/#!/project/869/scan/1638?rid=9293&vid=32
Scan Tag: 123
Severity: Low
Repository: stady_scala_spark
Branch: master | 1.0 | Least_Privilege_Violation @ bank-gateway/ [master] - http://localhost:8380/iast-ui/#!/project/869/scan/1638?rid=9293&vid=32
Scan Tag: 123
Severity: Low
Repository: stady_scala_spark
Branch: master | priority | least privilege violation bank gateway scan tag severity low repository stady scala spark branch master | 1 |
724,726 | 24,940,335,591 | IssuesEvent | 2022-10-31 18:22:35 | nim-lang/Nim | https://api.github.com/repos/nim-lang/Nim | closed | Proc Members in Json in the JS Backend | Low Priority Feature Javascript | ```nim
import karax/jjson
proc o2(param: JsonNode): cstring =
result = param["data"][0].getStr & "<br/>"
for i in param["data"][3]:
result = result & i[1].getStr & " : " & i[2].getStr & "<br/>"
var datacenterOption* = %*{
"backgroundColor": "#404a59",
"tooltip": {
"formatter": o2,
},
"geo": {
"roam": true,
"map": "world",
"emphasis": {
"label": {
"color": "#fff"
}
},
"scaleLimit": {
"min": 1,
"max": 10
},
},
"itemStyle": {
"areaColor": "#323c48",
"borderColor": "#404a59"
},
"emphasis": {
"itemStyle": {
"areaColor": "#2a333d"
}
},
"dataset": {
"source": datacenter,
},
"series": [
{
"emphasizes": {
"label": {
"formatter": "{@[0]}"
}
},
"type": "scatter",
"coordinateSystem": "geo",
"encode": {
"lng": 1,
"lat": 2
}
}
]
}
``` | 1.0 | Proc Members in Json in the JS Backend - ```nim
import karax/jjson
proc o2(param: JsonNode): cstring =
result = param["data"][0].getStr & "<br/>"
for i in param["data"][3]:
result = result & i[1].getStr & " : " & i[2].getStr & "<br/>"
var datacenterOption* = %*{
"backgroundColor": "#404a59",
"tooltip": {
"formatter": o2,
},
"geo": {
"roam": true,
"map": "world",
"emphasis": {
"label": {
"color": "#fff"
}
},
"scaleLimit": {
"min": 1,
"max": 10
},
},
"itemStyle": {
"areaColor": "#323c48",
"borderColor": "#404a59"
},
"emphasis": {
"itemStyle": {
"areaColor": "#2a333d"
}
},
"dataset": {
"source": datacenter,
},
"series": [
{
"emphasizes": {
"label": {
"formatter": "{@[0]}"
}
},
"type": "scatter",
"coordinateSystem": "geo",
"encode": {
"lng": 1,
"lat": 2
}
}
]
}
``` | priority | proc members in json in the js backend nim import karax jjson proc param jsonnode cstring result param getstr for i in param result result i getstr : i getstr var datacenteroption backgroundcolor tooltip formatter geo roam true map world emphasis label color fff scalelimit min max itemstyle areacolor bordercolor emphasis itemstyle areacolor dataset source datacenter series emphasizes label formatter type scatter coordinatesystem geo encode lng lat | 1 |
495,624 | 14,285,347,829 | IssuesEvent | 2020-11-23 13:48:02 | ooni/probe-engine | https://api.github.com/repos/ooni/probe-engine | opened | Start triaging data quality issues | effort/S priority/low | We have a bunch of issues related to measurement/data quality. I've applied the "triage" label to many of them but there are much more. I think the time is now ripe to reorganise all these issues and prepare for addressing them. | 1.0 | Start triaging data quality issues - We have a bunch of issues related to measurement/data quality. I've applied the "triage" label to many of them but there are much more. I think the time is now ripe to reorganise all these issues and prepare for addressing them. | priority | start triaging data quality issues we have a bunch of issues related to measurement data quality i ve applied the triage label to many of them but there are much more i think the time is now ripe to reorganise all these issues and prepare for addressing them | 1 |
221,237 | 7,374,877,866 | IssuesEvent | 2018-03-13 21:50:10 | bushwickfc/bfc-members | https://api.github.com/repos/bushwickfc/bfc-members | closed | Committee heads should be many to many | enhancement low priority | Currently committee heads are belongs_to member, it should use a join table or something similar
| 1.0 | Committee heads should be many to many - Currently committee heads are belongs_to member, it should use a join table or something similar
| priority | committee heads should be many to many currently committee heads are belongs to member it should use a join table or something similar | 1 |
500,036 | 14,484,885,185 | IssuesEvent | 2020-12-10 16:54:23 | atbcb/usab-uswds | https://api.github.com/repos/atbcb/usab-uswds | opened | animations swiper CSS | Low priority bug | under ADA guides/animations, the single swiper needs work
CSS for pagination is not working. if you use inspector the pagination buttons are there, but for some reason they are not showing up. Pagination is working for the homepage. They are using the same CSS styles, not sure why it is not working | 1.0 | animations swiper CSS - under ADA guides/animations, the single swiper needs work
CSS for pagination is not working. if you use inspector the pagination buttons are there, but for some reason they are not showing up. Pagination is working for the homepage. They are using the same CSS styles, not sure why it is not working | priority | animations swiper css under ada guides animations the single swiper needs work css for pagination is not working if you use inspector the pagination buttons are there but for some reason they are not showing up pagination is working for the homepage they are using the same css styles not sure why it is not working | 1 |
795,948 | 28,093,539,082 | IssuesEvent | 2023-03-30 14:26:23 | KDT3-Final-6/final-project-BE | https://api.github.com/repos/KDT3-Final-6/final-project-BE | closed | conf: build.gradle 변경 | Status: Completed Priority: Low For: Backend Type: Configuration | ## Description
test에 lombok 적용하고, 필요없는 디펜던시 삭제
## Tasks(Process)
- [x] build.gradle 변경
## References
| 1.0 | conf: build.gradle 변경 - ## Description
test에 lombok 적용하고, 필요없는 디펜던시 삭제
## Tasks(Process)
- [x] build.gradle 변경
## References
| priority | conf build gradle 변경 description test에 lombok 적용하고 필요없는 디펜던시 삭제 tasks process build gradle 변경 references | 1 |
36,505 | 2,800,276,017 | IssuesEvent | 2015-05-13 08:59:58 | OCHA-DAP/hdx-ckan | https://api.github.com/repos/OCHA-DAP/hdx-ckan | closed | Indicator Preview: txt files do not preivew | bug Priority-Low | The files seem to be ok (can be downloaded from the dataset page), but the preview is blank. May be related to #2484 | 1.0 | Indicator Preview: txt files do not preivew - The files seem to be ok (can be downloaded from the dataset page), but the preview is blank. May be related to #2484 | priority | indicator preview txt files do not preivew the files seem to be ok can be downloaded from the dataset page but the preview is blank may be related to | 1 |
513,746 | 14,926,222,025 | IssuesEvent | 2021-01-24 10:30:10 | meerk40t/meerk40t | https://api.github.com/repos/meerk40t/meerk40t | closed | Error reported at closing | Priority: Low Status: In Progress Work: Chaotic | System said to send this to you, so I am...
Saw this when I was closing down for the evening to work on some other things....

| 1.0 | Error reported at closing - System said to send this to you, so I am...
Saw this when I was closing down for the evening to work on some other things....

| priority | error reported at closing system said to send this to you so i am saw this when i was closing down for the evening to work on some other things | 1 |
827,543 | 31,777,929,087 | IssuesEvent | 2023-09-12 15:27:22 | viur-framework/viur-core | https://api.github.com/repos/viur-framework/viur-core | opened | `"self"` should be used explicitly as key in `/user/edit` and `/user/view` | Priority: Low refactoring | Currently the current user (`"self"`) is simply assumed without transmitting a key. However, this is too implicit and can quickly lead to problems in case of wrong payloads.
---
**Discussion started in #848:**
> We can also remove /user/edit/self completely, or make "self" a mandatory parameter, so that "/user/view" or "/user/edit" are not allowed without parameters.
_Originally posted by @phorward in https://github.com/viur-framework/viur-core/pull/848_
> I would prefer it if `"self"` had to be explicitly used as a key argument instead of implying it as a fallback. But if this was already the case before, we should keep it that way for now for compatibility reasons and change it in a later release.
_Originally posted by @sveneberth in https://github.com/viur-framework/viur-core/pull/848#pullrequestreview-1622190435_
| 1.0 | `"self"` should be used explicitly as key in `/user/edit` and `/user/view` - Currently the current user (`"self"`) is simply assumed without transmitting a key. However, this is too implicit and can quickly lead to problems in case of wrong payloads.
---
**Discussion started in #848:**
> We can also remove /user/edit/self completely, or make "self" a mandatory parameter, so that "/user/view" or "/user/edit" are not allowed without parameters.
_Originally posted by @phorward in https://github.com/viur-framework/viur-core/pull/848_
> I would prefer it if `"self"` had to be explicitly used as a key argument instead of implying it as a fallback. But if this was already the case before, we should keep it that way for now for compatibility reasons and change it in a later release.
_Originally posted by @sveneberth in https://github.com/viur-framework/viur-core/pull/848#pullrequestreview-1622190435_
| priority | self should be used explicitly as key in user edit and user view currently the current user self is simply assumed without transmitting a key however this is too implicit and can quickly lead to problems in case of wrong payloads discussion started in we can also remove user edit self completely or make self a mandatory parameter so that user view or user edit are not allowed without parameters originally posted by phorward in i would prefer it if self had to be explicitly used as a key argument instead of implying it as a fallback but if this was already the case before we should keep it that way for now for compatibility reasons and change it in a later release originally posted by sveneberth in | 1 |
222,121 | 7,428,383,962 | IssuesEvent | 2018-03-24 00:57:48 | jsonwebtoken/jsonwebtoken.github.io | https://api.github.com/repos/jsonwebtoken/jsonwebtoken.github.io | closed | Support Firefox in the Extension | enhancement extension low-priority stage-3 | Hi! I'm happy to take this, but which branch should I be working from? Looks like `chrome-extension`, but that's diverged a bit from `master` and currently has merge conflicts.
Suggestions?
| 1.0 | Support Firefox in the Extension - Hi! I'm happy to take this, but which branch should I be working from? Looks like `chrome-extension`, but that's diverged a bit from `master` and currently has merge conflicts.
Suggestions?
| priority | support firefox in the extension hi i m happy to take this but which branch should i be working from looks like chrome extension but that s diverged a bit from master and currently has merge conflicts suggestions | 1 |
639,795 | 20,766,243,416 | IssuesEvent | 2022-03-15 20:54:21 | mito-ds/monorepo | https://api.github.com/repos/mito-ds/monorepo | opened | Make Mito work with Jupyter Lab Desktop | type: mitosheet effort: 13 priority: low type: mitoinstaller | **Describe the bug**
Mito doesn't work in the [JupyterLab App](https://github.com/jupyterlab/jupyterlab-desktop).
Two users have reached out through Discord to tell us that this failed.
| 1.0 | Make Mito work with Jupyter Lab Desktop - **Describe the bug**
Mito doesn't work in the [JupyterLab App](https://github.com/jupyterlab/jupyterlab-desktop).
Two users have reached out through Discord to tell us that this failed.
| priority | make mito work with jupyter lab desktop describe the bug mito doesn t work in the two users have reached out through discord to tell us that this failed | 1 |
426,780 | 12,379,205,853 | IssuesEvent | 2020-05-19 12:05:42 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | opened | [0.9.0 staging-1554] Audio: no sound if someone is building a block | Category: Audio Fix Version: 0.9.0.0 Priority: Low | I can hear that someone is picking a block with a hammer, but I don't hear anything when someome is building a block with a hammer.
| 1.0 | [0.9.0 staging-1554] Audio: no sound if someone is building a block - I can hear that someone is picking a block with a hammer, but I don't hear anything when someome is building a block with a hammer.
| priority | audio no sound if someone is building a block i can hear that someone is picking a block with a hammer but i don t hear anything when someome is building a block with a hammer | 1 |
766,090 | 26,871,453,348 | IssuesEvent | 2023-02-04 14:16:56 | SlimeVR/SlimeVR-Server | https://api.github.com/repos/SlimeVR/SlimeVR-Server | closed | GUI detection of motion is not sensitive enough | Difficulty: Newbie Friendly Priority: Low Area: GUI Type: Enhancement | I think that the "motion" outline on the gui should:
1. Be binary, not brighter/darker depending on how much motion
2. Should be a lot more sensitive
I tend to find that its not sensitive enough, I have to *really* move the trackers when I do it. | 1.0 | GUI detection of motion is not sensitive enough - I think that the "motion" outline on the gui should:
1. Be binary, not brighter/darker depending on how much motion
2. Should be a lot more sensitive
I tend to find that its not sensitive enough, I have to *really* move the trackers when I do it. | priority | gui detection of motion is not sensitive enough i think that the motion outline on the gui should be binary not brighter darker depending on how much motion should be a lot more sensitive i tend to find that its not sensitive enough i have to really move the trackers when i do it | 1 |
122,208 | 4,828,335,073 | IssuesEvent | 2016-11-07 16:01:04 | CS2103AUG2016-T09-C2/main | https://api.github.com/repos/CS2103AUG2016-T09-C2/main | closed | As an advanced user, I want to assign custom command shortcuts | priority.low type.story | so that I can suit my preferences for better accessibility and convenience
| 1.0 | As an advanced user, I want to assign custom command shortcuts - so that I can suit my preferences for better accessibility and convenience
| priority | as an advanced user i want to assign custom command shortcuts so that i can suit my preferences for better accessibility and convenience | 1 |
104,167 | 4,197,450,075 | IssuesEvent | 2016-06-27 02:11:01 | girlcodeakl/mrgs | https://api.github.com/repos/girlcodeakl/mrgs | opened | Filter the feed | low priority | Can only be done once we have tags
We'll add a search box to the feed that lets you filter by tag.
### one
Add a search box - this will actually be a text input, just like the **text inputs** in our form. But don't put it in the form, put it somewhere near the top of the feed.
Change its class to `filter`
### two
We need to make a function that can filter our posts.
make a function that:
1. creates a variable `searchText` by getting the val() from our new filter input
2. loops over each of the children in `idea-box`, and does something. Here's the code to do that:
```javascript
$(".idea-box").children().each(function (number, post) {
//code in here will be run once for each post
});
```
3. for each post, we need to find the tag element, then check if the tag matches our search text. If it does not, we'll add a class `hidden` to our post. if it does not, we'll remove the class `hidden` (in caes a precious search added it.
4. Add a new css rule: `.hidden {display: none}`
5. Make this function run as you type in the filter box.
```javascript
$(".filter").on("keyup", filterFunction);
``` | 1.0 | Filter the feed - Can only be done once we have tags
We'll add a search box to the feed that lets you filter by tag.
### one
Add a search box - this will actually be a text input, just like the **text inputs** in our form. But don't put it in the form, put it somewhere near the top of the feed.
Change its class to `filter`
### two
We need to make a function that can filter our posts.
make a function that:
1. creates a variable `searchText` by getting the val() from our new filter input
2. loops over each of the children in `idea-box`, and does something. Here's the code to do that:
```javascript
$(".idea-box").children().each(function (number, post) {
//code in here will be run once for each post
});
```
3. for each post, we need to find the tag element, then check if the tag matches our search text. If it does not, we'll add a class `hidden` to our post. if it does not, we'll remove the class `hidden` (in caes a precious search added it.
4. Add a new css rule: `.hidden {display: none}`
5. Make this function run as you type in the filter box.
```javascript
$(".filter").on("keyup", filterFunction);
``` | priority | filter the feed can only be done once we have tags we ll add a search box to the feed that lets you filter by tag one add a search box this will actually be a text input just like the text inputs in our form but don t put it in the form put it somewhere near the top of the feed change its class to filter two we need to make a function that can filter our posts make a function that creates a variable searchtext by getting the val from our new filter input loops over each of the children in idea box and does something here s the code to do that javascript idea box children each function number post code in here will be run once for each post for each post we need to find the tag element then check if the tag matches our search text if it does not we ll add a class hidden to our post if it does not we ll remove the class hidden in caes a precious search added it add a new css rule hidden display none make this function run as you type in the filter box javascript filter on keyup filterfunction | 1 |
539,422 | 15,788,346,380 | IssuesEvent | 2021-04-01 20:39:00 | istopwg/ippsample | https://api.github.com/repos/istopwg/ippsample | closed | ipptool: Reusing the same random request-id for all requests | priority-low | From reading the "ipptoolfile" man page, ipptool is supposed to generate a new random request ID by default. In other words, including "REQUEST-ID random" in the .test file is the same as not having any "REQUEST-ID" statement in there at all.
Unfortunately, the default behavior seems to be to generate a random ID at startup, and then keep reusing that same ID over and over again. That causes some confusion in Wireshark, among other things...
I think the logic problem is with the lines 3143-3164 in ipptool.c, in the function "token_cb()". | 1.0 | ipptool: Reusing the same random request-id for all requests - From reading the "ipptoolfile" man page, ipptool is supposed to generate a new random request ID by default. In other words, including "REQUEST-ID random" in the .test file is the same as not having any "REQUEST-ID" statement in there at all.
Unfortunately, the default behavior seems to be to generate a random ID at startup, and then keep reusing that same ID over and over again. That causes some confusion in Wireshark, among other things...
I think the logic problem is with the lines 3143-3164 in ipptool.c, in the function "token_cb()". | priority | ipptool reusing the same random request id for all requests from reading the ipptoolfile man page ipptool is supposed to generate a new random request id by default in other words including request id random in the test file is the same as not having any request id statement in there at all unfortunately the default behavior seems to be to generate a random id at startup and then keep reusing that same id over and over again that causes some confusion in wireshark among other things i think the logic problem is with the lines in ipptool c in the function token cb | 1 |
717,239 | 24,667,368,686 | IssuesEvent | 2022-10-18 11:21:20 | trustwallet/wallet-core | https://api.github.com/repos/trustwallet/wallet-core | closed | [CodeGen]: Update new coin templates | bug priority:low size:small | Originally posted by @hewigovens in https://github.com/trustwallet/wallet-core/pull/2595#discussion_r983022657_
## Motivation
- [ ] Make Entry class final by default, 99% of the time Entry is the final class for new chain additions - (Ethereum have some exceptions)
- [ ] Update `../Data.h` in Address / Signer template
| 1.0 | [CodeGen]: Update new coin templates - Originally posted by @hewigovens in https://github.com/trustwallet/wallet-core/pull/2595#discussion_r983022657_
## Motivation
- [ ] Make Entry class final by default, 99% of the time Entry is the final class for new chain additions - (Ethereum have some exceptions)
- [ ] Update `../Data.h` in Address / Signer template
| priority | update new coin templates originally posted by hewigovens in motivation make entry class final by default of the time entry is the final class for new chain additions ethereum have some exceptions update data h in address signer template | 1 |
790,354 | 27,823,658,296 | IssuesEvent | 2023-03-19 14:20:26 | AY2223S2-CS2103T-W15-1/tp | https://api.github.com/repos/AY2223S2-CS2103T-W15-1/tp | closed | As a user with friends from different years, I want to be able to add year tags to a person | type.Story priority.Low | ...so that I can remember which year they are in | 1.0 | As a user with friends from different years, I want to be able to add year tags to a person - ...so that I can remember which year they are in | priority | as a user with friends from different years i want to be able to add year tags to a person so that i can remember which year they are in | 1 |
217,646 | 7,326,760,988 | IssuesEvent | 2018-03-04 00:11:50 | jasp-stats/jasp-desktop | https://api.github.com/repos/jasp-stats/jasp-desktop | closed | Minor issue regarding layout on EJs miserable laptop (Windows) | Layer: Core Priority 3: Low Type: Bug | In the Bayesian t-tests (independent and paired) the final "h" in "Cauchy prior width" drops off. Note: this is on my Windows laptop which is notorious for screwing things up. So it might not be a high priority. Damian improved the layout on Windows a lot but maybe he missed this one. See screenshot.

| 1.0 | Minor issue regarding layout on EJs miserable laptop (Windows) - In the Bayesian t-tests (independent and paired) the final "h" in "Cauchy prior width" drops off. Note: this is on my Windows laptop which is notorious for screwing things up. So it might not be a high priority. Damian improved the layout on Windows a lot but maybe he missed this one. See screenshot.

| priority | minor issue regarding layout on ejs miserable laptop windows in the bayesian t tests independent and paired the final h in cauchy prior width drops off note this is on my windows laptop which is notorious for screwing things up so it might not be a high priority damian improved the layout on windows a lot but maybe he missed this one see screenshot | 1 |
443,718 | 12,798,506,751 | IssuesEvent | 2020-07-02 14:01:52 | microsoft/terraform-provider-azuredevops | https://api.github.com/repos/microsoft/terraform-provider-azuredevops | closed | Terraform 0.13 - Add registry sourced provider support | new feature priority-low | <!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Description
Terraform 0.13 currently in beta adds support for registry sourced provider as per [this link](https://www.hashicorp.com/blog/adding-provider-source-to-hashicorp-terraform/).
As a [user](https://github.com/azure/caf-terraform-landingzones) of the terraform-provider-azuredevops, we'd love TF0.13 day 0 support for this feature, so that we can dynamically pull your provider.
### New or Affected Resource(s)
<!--- Please list the new or affected resources and data sources. --->
* none
### Potential Terraform Configuration
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
```hcl
terraform {
required_providers {
terraform-provider-azuredevops = {
source = "registry.terraform.io/microsoft/terraform-provider-azuredevops"
version = "x.y.0"
}
}
}
```
### References
<!---
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor blog posts or documentation?
https://www.hashicorp.com/blog/adding-provider-source-to-hashicorp-terraform/
--->
* #0000 | 1.0 | Terraform 0.13 - Add registry sourced provider support - <!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Description
Terraform 0.13 currently in beta adds support for registry sourced provider as per [this link](https://www.hashicorp.com/blog/adding-provider-source-to-hashicorp-terraform/).
As a [user](https://github.com/azure/caf-terraform-landingzones) of the terraform-provider-azuredevops, we'd love TF0.13 day 0 support for this feature, so that we can dynamically pull your provider.
### New or Affected Resource(s)
<!--- Please list the new or affected resources and data sources. --->
* none
### Potential Terraform Configuration
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
```hcl
terraform {
required_providers {
terraform-provider-azuredevops = {
source = "registry.terraform.io/microsoft/terraform-provider-azuredevops"
version = "x.y.0"
}
}
}
```
### References
<!---
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor blog posts or documentation?
https://www.hashicorp.com/blog/adding-provider-source-to-hashicorp-terraform/
--->
* #0000 | priority | terraform add registry sourced provider support community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or me too comments they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment description terraform currently in beta adds support for registry sourced provider as per as a of the terraform provider azuredevops we d love day support for this feature so that we can dynamically pull your provider new or affected resource s none potential terraform configuration hcl terraform required providers terraform provider azuredevops source registry terraform io microsoft terraform provider azuredevops version x y references information about referencing github issues are there any other github issues open or closed or pull requests that should be linked here vendor blog posts or documentation | 1 |
350,560 | 10,492,185,051 | IssuesEvent | 2019-09-25 12:48:30 | woocommerce/woocommerce-gateway-stripe | https://api.github.com/repos/woocommerce/woocommerce-gateway-stripe | closed | Undefined index: statement_descriptor when statement_descriptor is empty in settings | Priority: Low | #### Affected ticket(s)
#### What I expected
No notice when trying to checkout.
#### What happened instead
Message with Undefined index: statement_descriptor
#### Steps to reproduce the issue
Set statement descriptor to an empty value (not required/set in the form)
Activate debug of notice in wordpress.
How to not get the problem: write something in the statement_descriptor setting field.
Source:
https://github.com/woocommerce/woocommerce-gateway-stripe/blob/9bcd635e041c49401b74fb8e21ccfca7c596834f/includes/abstracts/abstract-wc-stripe-payment-gateway.php#L1040
Use of description, metadata, statement_descriptor and capture in $full_request array declared by the function generate_payment_request.
https://github.com/woocommerce/woocommerce-gateway-stripe/blob/9bcd635e041c49401b74fb8e21ccfca7c596834f/includes/abstracts/abstract-wc-stripe-payment-gateway.php#L333
generate_payment_request function always set indexes: currency, amount, description, expand[], metadata.
indexes: capture, statement_descriptor, customer and source are not always set.
Proposed solution:
$post_data['statement_descriptor'] = ''; // line 342.
$post_data['capture'] should also be set to remove a potential notice. | 1.0 | Undefined index: statement_descriptor when statement_descriptor is empty in settings - #### Affected ticket(s)
#### What I expected
No notice when trying to checkout.
#### What happened instead
Message with Undefined index: statement_descriptor
#### Steps to reproduce the issue
Set statement descriptor to an empty value (not required/set in the form)
Activate debug of notice in wordpress.
How to not get the problem: write something in the statement_descriptor setting field.
Source:
https://github.com/woocommerce/woocommerce-gateway-stripe/blob/9bcd635e041c49401b74fb8e21ccfca7c596834f/includes/abstracts/abstract-wc-stripe-payment-gateway.php#L1040
Use of description, metadata, statement_descriptor and capture in $full_request array declared by the function generate_payment_request.
https://github.com/woocommerce/woocommerce-gateway-stripe/blob/9bcd635e041c49401b74fb8e21ccfca7c596834f/includes/abstracts/abstract-wc-stripe-payment-gateway.php#L333
generate_payment_request function always set indexes: currency, amount, description, expand[], metadata.
indexes: capture, statement_descriptor, customer and source are not always set.
Proposed solution:
$post_data['statement_descriptor'] = ''; // line 342.
$post_data['capture'] should also be set to remove a potential notice. | priority | undefined index statement descriptor when statement descriptor is empty in settings affected ticket s what i expected no notice when trying to checkout what happened instead message with undefined index statement descriptor steps to reproduce the issue set statement descriptor to an empty value not required set in the form activate debug of notice in wordpress how to not get the problem write something in the statement descriptor setting field source use of description metadata statement descriptor and capture in full request array declared by the function generate payment request generate payment request function always set indexes currency amount description expand metadata indexes capture statement descriptor customer and source are not always set proposed solution post data line post data should also be set to remove a potential notice | 1 |
284,044 | 8,735,387,688 | IssuesEvent | 2018-12-11 16:40:12 | bitrockteam/signature | https://api.github.com/repos/bitrockteam/signature | opened | implement Amber Design System | Priority: Low Status: Available Type: Enhancement | - [ ] remove `normalize.css` & `skeleton` CSS libraries
- [ ] add the `@amber-ds/visual`package to the project
- [ ] refactor the codebase to implement the design system | 1.0 | implement Amber Design System - - [ ] remove `normalize.css` & `skeleton` CSS libraries
- [ ] add the `@amber-ds/visual`package to the project
- [ ] refactor the codebase to implement the design system | priority | implement amber design system remove normalize css skeleton css libraries add the amber ds visual package to the project refactor the codebase to implement the design system | 1 |
376,611 | 11,149,158,823 | IssuesEvent | 2019-12-23 17:42:30 | lbryio/lbry-sdk | https://api.github.com/repos/lbryio/lbry-sdk | opened | Duplicate logging of loaded accounts when using wallet_reconnect | area: wallet priority: low | If wallet connection is in progress and reconnect is called, the accounts look like they are loaded multiple times. I don't think they are, so this is low priority and @shyba wanted me to file.
```
2019-12-23 09:11:22,388 INFO lbry.dht.node:124: DHT node listening on UDP 0.0.0.0:4444
2019-12-23 09:11:25,735 WARNING torba.client.basenetwork:75: Wallet server (spv1.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:25,735 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv1.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:25,833 WARNING torba.client.basenetwork:75: Wallet server (spv1.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:25,833 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv1.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:28,811 WARNING torba.client.basenetwork:75: Wallet server (spv2.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:28,811 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv2.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:28,920 WARNING torba.client.basenetwork:75: Wallet server (spv2.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:28,920 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv2.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:30,053 WARNING torba.client.basenetwork:75: Wallet server (spv3.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:30,054 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv3.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:30,244 WARNING torba.client.basenetwork:75: Wallet server (spv3.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:30,245 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv3.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:33,162 INFO torba.client.basenetwork:193: Wallet client switching task stopped.
WALLET NOT STARTED ERRORS
2019-12-23 09:12:26,484 INFO torba.client.basenetwork:193: Wallet client switching task stopped.
2019-12-23 09:12:26,496 INFO torba.client.basedatabase:237: connecting to database: C:\Users\TheFerbguy\AppData\Local\lbry\lbryum\lbc_mainnet\blockchain.db
2019-12-23 09:13:59,116 WARNING torba.client.basenetwork:75: Wallet server (spv4.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:13:59,117 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv4.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:14:26,612 WARNING torba.client.basenetwork:75: Wallet server (spv3.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:14:26,612 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv3.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:14:27,531 WARNING torba.client.basenetwork:75: Wallet server (spv2.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:14:27,531 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv2.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:14:30,747 INFO torba.client.basenetwork:319: connected to spv8.lbry.com:50001
2019-12-23 09:14:30,747 INFO torba.client.basenetwork:178: Switching to SPV wallet server: spv8.lbry.com:50001
2019-12-23 09:14:30,954 INFO torba.client.basenetwork:182: Subscribed to headers: spv8.lbry.com:50001
2019-12-23 09:14:30,954 INFO torba.client.baseledger:297: Subscribing and updating accounts.
2019-12-23 09:14:31,156 INFO torba.client.baseledger:328: Headers sync: 687480 / 687480
2019-12-23 09:14:35,018 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,019 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,020 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,022 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,023 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,024 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,025 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,030 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,031 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,032 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,033 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,033 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,034 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,035 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,039 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,040 INFO lbry.extras.daemon.Components:335: start blob server
2019-12-23 09:14:35,040 INFO lbry.extras.daemon.Components:310: Starting the file manager
2019-12-23 09:14:35,040 INFO lbry.extras.daemon.Components:273: Started blob announcer
2019-12-23 09:14:35,041 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,041 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,042 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,044 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,047 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,047 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
``` | 1.0 | Duplicate logging of loaded accounts when using wallet_reconnect - If wallet connection is in progress and reconnect is called, the accounts look like they are loaded multiple times. I don't think they are, so this is low priority and @shyba wanted me to file.
```
2019-12-23 09:11:22,388 INFO lbry.dht.node:124: DHT node listening on UDP 0.0.0.0:4444
2019-12-23 09:11:25,735 WARNING torba.client.basenetwork:75: Wallet server (spv1.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:25,735 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv1.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:25,833 WARNING torba.client.basenetwork:75: Wallet server (spv1.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:25,833 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv1.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:28,811 WARNING torba.client.basenetwork:75: Wallet server (spv2.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:28,811 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv2.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:28,920 WARNING torba.client.basenetwork:75: Wallet server (spv2.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:28,920 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv2.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:30,053 WARNING torba.client.basenetwork:75: Wallet server (spv3.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:30,054 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv3.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:30,244 WARNING torba.client.basenetwork:75: Wallet server (spv3.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:11:30,245 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv3.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:11:33,162 INFO torba.client.basenetwork:193: Wallet client switching task stopped.
WALLET NOT STARTED ERRORS
2019-12-23 09:12:26,484 INFO torba.client.basenetwork:193: Wallet client switching task stopped.
2019-12-23 09:12:26,496 INFO torba.client.basedatabase:237: connecting to database: C:\Users\TheFerbguy\AppData\Local\lbry\lbryum\lbc_mainnet\blockchain.db
2019-12-23 09:13:59,116 WARNING torba.client.basenetwork:75: Wallet server (spv4.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:13:59,117 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv4.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:14:26,612 WARNING torba.client.basenetwork:75: Wallet server (spv3.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:14:26,612 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv3.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:14:27,531 WARNING torba.client.basenetwork:75: Wallet server (spv2.lbry.com:50001) returned an error. Code: 1 Message: unsupported protocol version: 2.0
2019-12-23 09:14:27,531 WARNING torba.client.basenetwork:102: Server error, ignoring for 1h: spv2.lbry.com:50001 -- unsupported protocol version: 2.0
2019-12-23 09:14:30,747 INFO torba.client.basenetwork:319: connected to spv8.lbry.com:50001
2019-12-23 09:14:30,747 INFO torba.client.basenetwork:178: Switching to SPV wallet server: spv8.lbry.com:50001
2019-12-23 09:14:30,954 INFO torba.client.basenetwork:182: Subscribed to headers: spv8.lbry.com:50001
2019-12-23 09:14:30,954 INFO torba.client.baseledger:297: Subscribing and updating accounts.
2019-12-23 09:14:31,156 INFO torba.client.baseledger:328: Headers sync: 687480 / 687480
2019-12-23 09:14:35,018 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,019 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,020 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,022 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,023 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,024 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,025 INFO lbry.wallet.ledger:129: Loaded account bL6f69PQR6fibbtnJfiuEL4FPQteFprp8K with 2373.063447 LBC, 95 receiving addresses (gap: 20), 29 change addresses (gap: 6), 2 channels, 2 certificates and 691 claims.
2019-12-23 09:14:35,030 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,031 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,032 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,033 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,033 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,034 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,035 INFO lbry.wallet.ledger:122: Loaded single key account bFvWU6gvk3HMs3FbWQy8641TAnAez87veo with 0.0 LBC. 0 channels, 1 certificates and 0 claims
2019-12-23 09:14:35,039 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,040 INFO lbry.extras.daemon.Components:335: start blob server
2019-12-23 09:14:35,040 INFO lbry.extras.daemon.Components:310: Starting the file manager
2019-12-23 09:14:35,040 INFO lbry.extras.daemon.Components:273: Started blob announcer
2019-12-23 09:14:35,041 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,041 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,042 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,044 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,047 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
2019-12-23 09:14:35,047 INFO lbry.wallet.ledger:122: Loaded single key account bNM3p3z8jhd5Tj5AcieX6nSDcP4QTEELtP with 313.0 LBC. 0 channels, 0 certificates and 0 claims
``` | priority | duplicate logging of loaded accounts when using wallet reconnect if wallet connection is in progress and reconnect is called the accounts look like they are loaded multiple times i don t think they are so this is low priority and shyba wanted me to file info lbry dht node dht node listening on udp warning torba client basenetwork wallet server lbry com returned an error code message unsupported protocol version warning torba client basenetwork server error ignoring for lbry com unsupported protocol version warning torba client basenetwork wallet server lbry com returned an error code message unsupported protocol version warning torba client basenetwork server error ignoring for lbry com unsupported protocol version warning torba client basenetwork wallet server lbry com returned an error code message unsupported protocol version warning torba client basenetwork server error ignoring for lbry com unsupported protocol version warning torba client basenetwork wallet server lbry com returned an error code message unsupported protocol version warning torba client basenetwork server error ignoring for lbry com unsupported protocol version warning torba client basenetwork wallet server lbry com returned an error code message unsupported protocol version warning torba client basenetwork server error ignoring for lbry com unsupported protocol version warning torba client basenetwork wallet server lbry com returned an error code message unsupported protocol version warning torba client basenetwork server error ignoring for lbry com unsupported protocol version info torba client basenetwork wallet client switching task stopped wallet not started errors info torba client basenetwork wallet client switching task stopped info torba client basedatabase connecting to database c users theferbguy appdata local lbry lbryum lbc mainnet blockchain db warning torba client basenetwork wallet server lbry com returned an error code message unsupported protocol version warning torba client basenetwork server error ignoring for lbry com unsupported protocol version warning torba client basenetwork wallet server lbry com returned an error code message unsupported protocol version warning torba client basenetwork server error ignoring for lbry com unsupported protocol version warning torba client basenetwork wallet server lbry com returned an error code message unsupported protocol version warning torba client basenetwork server error ignoring for lbry com unsupported protocol version info torba client basenetwork connected to lbry com info torba client basenetwork switching to spv wallet server lbry com info torba client basenetwork subscribed to headers lbry com info torba client baseledger subscribing and updating accounts info torba client baseledger headers sync info lbry wallet ledger loaded account with lbc receiving addresses gap change addresses gap channels certificates and claims info lbry wallet ledger loaded account with lbc receiving addresses gap change addresses gap channels certificates and claims info lbry wallet ledger loaded account with lbc receiving addresses gap change addresses gap channels certificates and claims info lbry wallet ledger loaded account with lbc receiving addresses gap change addresses gap channels certificates and claims info lbry wallet ledger loaded account with lbc receiving addresses gap change addresses gap channels certificates and claims info lbry wallet ledger loaded account with lbc receiving addresses gap change addresses gap channels certificates and claims info lbry wallet ledger loaded account with lbc receiving addresses gap change addresses gap channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry extras daemon components start blob server info lbry extras daemon components starting the file manager info lbry extras daemon components started blob announcer info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims info lbry wallet ledger loaded single key account with lbc channels certificates and claims | 1 |
198,570 | 6,974,170,676 | IssuesEvent | 2017-12-11 23:21:00 | NamelessMC/Nameless | https://api.github.com/repos/NamelessMC/Nameless | closed | Clans | enhancement module priority: low v2 | Clans on the site like hypixel did with guilds https://gyazo.com/8d29172e01ff040b55daec22bbaf7b87connected with api: https://www.spigotmc.org/resources/clans-for-party-and-friends-extended-for-bungeecord.13890/
And clan statics... Like how much kills in kitpvp... There is a API for it | 1.0 | Clans - Clans on the site like hypixel did with guilds https://gyazo.com/8d29172e01ff040b55daec22bbaf7b87connected with api: https://www.spigotmc.org/resources/clans-for-party-and-friends-extended-for-bungeecord.13890/
And clan statics... Like how much kills in kitpvp... There is a API for it | priority | clans clans on the site like hypixel did with guilds with api and clan statics like how much kills in kitpvp there is a api for it | 1 |
222,150 | 7,428,617,305 | IssuesEvent | 2018-03-24 03:47:08 | inaimathi/cl-notebook | https://api.github.com/repos/inaimathi/cl-notebook | opened | Port to the proper way of using SSEs | low-priority | Currently, we ignore the SSE event tag in favor of using an action field in the payload. We should probably stop that, although it's not strictly speaking hurting anything. | 1.0 | Port to the proper way of using SSEs - Currently, we ignore the SSE event tag in favor of using an action field in the payload. We should probably stop that, although it's not strictly speaking hurting anything. | priority | port to the proper way of using sses currently we ignore the sse event tag in favor of using an action field in the payload we should probably stop that although it s not strictly speaking hurting anything | 1 |
694,881 | 23,834,710,275 | IssuesEvent | 2022-09-06 03:55:19 | PlaceOS/user-interfaces | https://api.github.com/repos/PlaceOS/user-interfaces | closed | ngx-staff-app>Google Analytics: page navigation is not captured | Type: Enhancement Priority: Low focus: front end | Transferred from Jira: https://acaprojects.atlassian.net/browse/PTT-49
When Google Analytics was deployed for kpmg-staff-app (a recent fork of ngx-staff-app which does not have many customisations), url navigation is not captured past the /#/
For example, we want to see when the user navigates to /staff/#/explore and /staff/#/book and /staff/#/book/room.
But we can only see /staff:


What changes need to be made to ngx-staff-app OR google analytics settings to allow the user URL navigation (after /#/) to be recorded?
| 1.0 | ngx-staff-app>Google Analytics: page navigation is not captured - Transferred from Jira: https://acaprojects.atlassian.net/browse/PTT-49
When Google Analytics was deployed for kpmg-staff-app (a recent fork of ngx-staff-app which does not have many customisations), url navigation is not captured past the /#/
For example, we want to see when the user navigates to /staff/#/explore and /staff/#/book and /staff/#/book/room.
But we can only see /staff:


What changes need to be made to ngx-staff-app OR google analytics settings to allow the user URL navigation (after /#/) to be recorded?
| priority | ngx staff app google analytics page navigation is not captured transferred from jira when google analytics was deployed for kpmg staff app a recent fork of ngx staff app which does not have many customisations url navigation is not captured past the for example we want to see when the user navigates to staff explore and staff book and staff book room but we can only see staff what changes need to be made to ngx staff app or google analytics settings to allow the user url navigation after to be recorded | 1 |
122,912 | 4,847,050,787 | IssuesEvent | 2016-11-10 13:53:34 | odalic/odalic-ui | https://api.github.com/repos/odalic/odalic-ui | closed | Highlight the task that was just created when the table is displayed afterwards | angular css enhancement graphics priority: Low tasks | Even when I implement a stable task order on the server, it might be the case that the order will depend on the task name and not the time of creation. This might make it hard to spot the newly created task in the table when the table is displayed immediately after the creation, because the user cannot rely that it will appear at certain position (first row for example), but must look it up in the table by its name. | 1.0 | Highlight the task that was just created when the table is displayed afterwards - Even when I implement a stable task order on the server, it might be the case that the order will depend on the task name and not the time of creation. This might make it hard to spot the newly created task in the table when the table is displayed immediately after the creation, because the user cannot rely that it will appear at certain position (first row for example), but must look it up in the table by its name. | priority | highlight the task that was just created when the table is displayed afterwards even when i implement a stable task order on the server it might be the case that the order will depend on the task name and not the time of creation this might make it hard to spot the newly created task in the table when the table is displayed immediately after the creation because the user cannot rely that it will appear at certain position first row for example but must look it up in the table by its name | 1 |
695,723 | 23,869,990,226 | IssuesEvent | 2022-09-07 14:08:43 | Azordev/did-admin-panel | https://api.github.com/repos/Azordev/did-admin-panel | closed | CAMBIAR LA ALTURA DEL BOTÓN LOADING | EE-1 priority low DEV Check | ### EXPLANATION
Al entrar al admin de did encontramos que al darle clic en ingresar, notamos que la reacción del botón no es la mejor .
Esta de un tamaño y al pulsar para ingresar por primera ves crece la idea es que se quede en un lugar donde no suceda esto para que esto no siga sucediendo se debe cambiar la altura de este botón
### SCREENSHOTS
https://user-images.githubusercontent.com/111365000/188502110-c1f8886e-015b-4982-9152-374f2ccaa7ef.webm
### TASK TO DO
Cambiar la altura del botón ingresar
### HISTORIA DE USUARIO A REALIZAR
como usuario quiero que el botón ingresar tenga el espacio apropiado para que su reacción sea mas apropiada
### STEPS TO REPRODUCE
1 Admin panel DID
2 Usuario y contraseña clic a ingresar | 1.0 | CAMBIAR LA ALTURA DEL BOTÓN LOADING - ### EXPLANATION
Al entrar al admin de did encontramos que al darle clic en ingresar, notamos que la reacción del botón no es la mejor .
Esta de un tamaño y al pulsar para ingresar por primera ves crece la idea es que se quede en un lugar donde no suceda esto para que esto no siga sucediendo se debe cambiar la altura de este botón
### SCREENSHOTS
https://user-images.githubusercontent.com/111365000/188502110-c1f8886e-015b-4982-9152-374f2ccaa7ef.webm
### TASK TO DO
Cambiar la altura del botón ingresar
### HISTORIA DE USUARIO A REALIZAR
como usuario quiero que el botón ingresar tenga el espacio apropiado para que su reacción sea mas apropiada
### STEPS TO REPRODUCE
1 Admin panel DID
2 Usuario y contraseña clic a ingresar | priority | cambiar la altura del botón loading explanation al entrar al admin de did encontramos que al darle clic en ingresar notamos que la reacción del botón no es la mejor esta de un tamaño y al pulsar para ingresar por primera ves crece la idea es que se quede en un lugar donde no suceda esto para que esto no siga sucediendo se debe cambiar la altura de este botón screenshots task to do cambiar la altura del botón ingresar historia de usuario a realizar como usuario quiero que el botón ingresar tenga el espacio apropiado para que su reacción sea mas apropiada steps to reproduce admin panel did usuario y contraseña clic a ingresar | 1 |
525,966 | 15,269,748,791 | IssuesEvent | 2021-02-22 13:13:20 | AY2021S2-CS2103T-W13-2/tp | https://api.github.com/repos/AY2021S2-CS2103T-W13-2/tp | opened | Add readers in a queueing list | priority.Low type.Story | As an individual operating a private book loaning service who offers books of popular authors, I can easily keep track of readers who are on the waiting list, so that I can queue them up on a first come first serve basis. | 1.0 | Add readers in a queueing list - As an individual operating a private book loaning service who offers books of popular authors, I can easily keep track of readers who are on the waiting list, so that I can queue them up on a first come first serve basis. | priority | add readers in a queueing list as an individual operating a private book loaning service who offers books of popular authors i can easily keep track of readers who are on the waiting list so that i can queue them up on a first come first serve basis | 1 |
52,559 | 3,023,998,636 | IssuesEvent | 2015-08-02 04:23:14 | Baystation12/Baystation12 | https://api.github.com/repos/Baystation12/Baystation12 | closed | [DEV-FREEZE]Service Radio Key spriteless | priority: low sprites | Doesn't have a sprite on dev freeze, not sure about master or dev. | 1.0 | [DEV-FREEZE]Service Radio Key spriteless - Doesn't have a sprite on dev freeze, not sure about master or dev. | priority | service radio key spriteless doesn t have a sprite on dev freeze not sure about master or dev | 1 |
324,173 | 9,885,332,192 | IssuesEvent | 2019-06-25 02:03:16 | Thiago-Viotto/My-Series-App | https://api.github.com/repos/Thiago-Viotto/My-Series-App | opened | Alterar home para o logo | enhancement priority_low | ### Expected result
- Que quando o usuário clicar no logo, ele vai para a home e a página home deixe de existir. | 1.0 | Alterar home para o logo - ### Expected result
- Que quando o usuário clicar no logo, ele vai para a home e a página home deixe de existir. | priority | alterar home para o logo expected result que quando o usuário clicar no logo ele vai para a home e a página home deixe de existir | 1 |
338,513 | 10,230,235,096 | IssuesEvent | 2019-08-17 19:39:03 | gsbelarus/check-and-cash | https://api.github.com/repos/gsbelarus/check-and-cash | closed | Выгрузка чеков аннулирвоания в dbf | POSitive:Cash Priority-Low Severity - Minor | Добавить выгрузку чеков аннулирования в выгрузку во внешние файлы | 1.0 | Выгрузка чеков аннулирвоания в dbf - Добавить выгрузку чеков аннулирования в выгрузку во внешние файлы | priority | выгрузка чеков аннулирвоания в dbf добавить выгрузку чеков аннулирования в выгрузку во внешние файлы | 1 |
730,627 | 25,182,666,432 | IssuesEvent | 2022-11-11 15:01:58 | chaotic-aur/packages | https://api.github.com/repos/chaotic-aur/packages | closed | [Request] cura-bin | request:new-pkg priority:low | ### Link to the package(s) in the AUR
[cura-bin](https://aur.archlinux.org/packages/cura-bin)
### Utility this package has for you
This packages was previously on the official repos of archlinux, but it was dropped not so long ago.
It an awesome slicer for 3D printing!
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
No, but for a great amount.
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [X] Yes
### Does the package's license allow redistributing it?
No clue.
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
_No response_ | 1.0 | [Request] cura-bin - ### Link to the package(s) in the AUR
[cura-bin](https://aur.archlinux.org/packages/cura-bin)
### Utility this package has for you
This packages was previously on the official repos of archlinux, but it was dropped not so long ago.
It an awesome slicer for 3D printing!
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
No, but for a great amount.
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [X] Yes
### Does the package's license allow redistributing it?
No clue.
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
_No response_ | priority | cura bin link to the package s in the aur utility this package has for you this packages was previously on the official repos of archlinux but it was dropped not so long ago it an awesome slicer for printing do you consider the package s to be useful for every chaotic aur user no but for a great amount do you consider the package to be useful for feature testing preview yes have you tested if the package builds in a clean chroot yes does the package s license allow redistributing it no clue have you searched the issues to ensure this request is unique yes have you read the readme to ensure this package is not banned yes more information no response | 1 |
190,256 | 6,812,947,122 | IssuesEvent | 2017-11-06 06:51:40 | qutebrowser/qutebrowser | https://api.github.com/repos/qutebrowser/qutebrowser | closed | High DPI overview | priority: 2 - low | I'm trying to figure out how well qutebrowser works with High DPI displays, ~~without actually using one myself (yet)~~ :wink:
# OS X
Seems to work fine since b065d8efcd553ea36392b4c7b7043fbb829aa0e0 (see #1404)
# Windows / Linux
I've told people to set `QT_SCALE_FACTOR`/`QT_AUTO_SCREEN_SCALE_FACTOR`/`QT_DEVICE_PIXEL_RATIO` (deprecated in Qt 5.6). Maybe I should set the `Qt::AA_EnableHighDpiScaling` application attribute so that happens automatically?
People using qutebrowser on a high DPI screen - do you have one of those set? How well does it work?
---
Also see #1586.
| 1.0 | High DPI overview - I'm trying to figure out how well qutebrowser works with High DPI displays, ~~without actually using one myself (yet)~~ :wink:
# OS X
Seems to work fine since b065d8efcd553ea36392b4c7b7043fbb829aa0e0 (see #1404)
# Windows / Linux
I've told people to set `QT_SCALE_FACTOR`/`QT_AUTO_SCREEN_SCALE_FACTOR`/`QT_DEVICE_PIXEL_RATIO` (deprecated in Qt 5.6). Maybe I should set the `Qt::AA_EnableHighDpiScaling` application attribute so that happens automatically?
People using qutebrowser on a high DPI screen - do you have one of those set? How well does it work?
---
Also see #1586.
| priority | high dpi overview i m trying to figure out how well qutebrowser works with high dpi displays without actually using one myself yet wink os x seems to work fine since see windows linux i ve told people to set qt scale factor qt auto screen scale factor qt device pixel ratio deprecated in qt maybe i should set the qt aa enablehighdpiscaling application attribute so that happens automatically people using qutebrowser on a high dpi screen do you have one of those set how well does it work also see | 1 |
332,855 | 10,111,873,363 | IssuesEvent | 2019-07-30 13:39:44 | sul-cidr/noh | https://api.github.com/repos/sul-cidr/noh | closed | remembering the filter state in catalogs when going back | bug low priority | Currently clicking on a bread crumb link of a specific example reloads a fresh catalog with nothing checked. If the back button is used the catalog has the filter selections maintained but the content of the page does not reflect the filter. It loads all examples instead. | 1.0 | remembering the filter state in catalogs when going back - Currently clicking on a bread crumb link of a specific example reloads a fresh catalog with nothing checked. If the back button is used the catalog has the filter selections maintained but the content of the page does not reflect the filter. It loads all examples instead. | priority | remembering the filter state in catalogs when going back currently clicking on a bread crumb link of a specific example reloads a fresh catalog with nothing checked if the back button is used the catalog has the filter selections maintained but the content of the page does not reflect the filter it loads all examples instead | 1 |
792,028 | 27,884,975,284 | IssuesEvent | 2023-03-21 22:54:32 | Square789/PydayNightFunkin | https://api.github.com/repos/Square789/PydayNightFunkin | opened | Make GAME_DIMENSIONS less hardcoded | enhancement priority: low | This would require throwing references to the game all over the place and then notifying everything having this reference if the game dimensions ever were to actually change or designing the systems using the dimensions to use the reference all the time.
This is not too necessary for now as FNF is relatively hardcoded to always be 1280x720, but for stuff in `core` like cameras it may be cleaner. | 1.0 | Make GAME_DIMENSIONS less hardcoded - This would require throwing references to the game all over the place and then notifying everything having this reference if the game dimensions ever were to actually change or designing the systems using the dimensions to use the reference all the time.
This is not too necessary for now as FNF is relatively hardcoded to always be 1280x720, but for stuff in `core` like cameras it may be cleaner. | priority | make game dimensions less hardcoded this would require throwing references to the game all over the place and then notifying everything having this reference if the game dimensions ever were to actually change or designing the systems using the dimensions to use the reference all the time this is not too necessary for now as fnf is relatively hardcoded to always be but for stuff in core like cameras it may be cleaner | 1 |
382,628 | 11,309,406,650 | IssuesEvent | 2020-01-19 13:01:55 | avajs/ava | https://api.github.com/repos/avajs/ava | closed | Problem running benchmarks | assigned bug help wanted low priority question scope:tooling | As Per The `maintaining.md`, I ran
```bash
$ node bench/run && node bench/compare
```
But, the result was
```
fs.js:928
return binding.readdir(pathModule.toNamespacedPath(path), options.encoding);
^
Error: ENOENT: no such file or directory, scandir 'E:\Workspace\ava\bench\.results'
at Object.fs.readdirSync (fs.js:928:18)
at Object.<anonymous> (E:\Workspace\ava\bench\compare.js:7:16)
at Module._compile (module.js:649:30)
at Object.Module._extensions..js (module.js:660:10)
at Module.load (module.js:561:32)
at tryModuleLoad (module.js:501:12)
at Function.Module._load (module.js:493:3)
at Function.Module.runMain (module.js:690:10)
at startup (bootstrap_node.js:194:16)
at bootstrap_node.js:666:3
``` | 1.0 | Problem running benchmarks - As Per The `maintaining.md`, I ran
```bash
$ node bench/run && node bench/compare
```
But, the result was
```
fs.js:928
return binding.readdir(pathModule.toNamespacedPath(path), options.encoding);
^
Error: ENOENT: no such file or directory, scandir 'E:\Workspace\ava\bench\.results'
at Object.fs.readdirSync (fs.js:928:18)
at Object.<anonymous> (E:\Workspace\ava\bench\compare.js:7:16)
at Module._compile (module.js:649:30)
at Object.Module._extensions..js (module.js:660:10)
at Module.load (module.js:561:32)
at tryModuleLoad (module.js:501:12)
at Function.Module._load (module.js:493:3)
at Function.Module.runMain (module.js:690:10)
at startup (bootstrap_node.js:194:16)
at bootstrap_node.js:666:3
``` | priority | problem running benchmarks as per the maintaining md i ran bash node bench run node bench compare but the result was fs js return binding readdir pathmodule tonamespacedpath path options encoding error enoent no such file or directory scandir e workspace ava bench results at object fs readdirsync fs js at object e workspace ava bench compare js at module compile module js at object module extensions js module js at module load module js at trymoduleload module js at function module load module js at function module runmain module js at startup bootstrap node js at bootstrap node js | 1 |
170,458 | 6,444,881,152 | IssuesEvent | 2017-08-12 18:28:31 | tferreira/piggydime | https://api.github.com/repos/tferreira/piggydime | opened | [i18n] Add currencies and translate them in English/French | priority - low ui | Requires issue #60 to be done and closed.
We may be able to display the currency depending on the current browser language with a feature of `react-intl`
Currently we have no clue which currency are the accounts.
- We may want to be able to choose a currency for each account (or set it automatically by `react-intl` detection)
- We should display the currency on the left of all values `€12.10` or `$324.21`
- The user may want to let the currency field blank... so we need to let him choose this option and then we won't display anything.
We'll probably have to create a new column in the account table to store the currency (if it's not automatically defined). This means generating a migration file. | 1.0 | [i18n] Add currencies and translate them in English/French - Requires issue #60 to be done and closed.
We may be able to display the currency depending on the current browser language with a feature of `react-intl`
Currently we have no clue which currency are the accounts.
- We may want to be able to choose a currency for each account (or set it automatically by `react-intl` detection)
- We should display the currency on the left of all values `€12.10` or `$324.21`
- The user may want to let the currency field blank... so we need to let him choose this option and then we won't display anything.
We'll probably have to create a new column in the account table to store the currency (if it's not automatically defined). This means generating a migration file. | priority | add currencies and translate them in english french requires issue to be done and closed we may be able to display the currency depending on the current browser language with a feature of react intl currently we have no clue which currency are the accounts we may want to be able to choose a currency for each account or set it automatically by react intl detection we should display the currency on the left of all values € or the user may want to let the currency field blank so we need to let him choose this option and then we won t display anything we ll probably have to create a new column in the account table to store the currency if it s not automatically defined this means generating a migration file | 1 |
603,888 | 18,673,558,382 | IssuesEvent | 2021-10-31 06:23:55 | GSG-G10/udrive-car-rental | https://api.github.com/repos/GSG-G10/udrive-car-rental | closed | PUT /admin/cars/:carId (Optional) | Done BackEnd Route low-priority | ## Update Cars data
**Title**: `PUT /admin/cars/:carId`
**Description**
this endpoint for updating car data its protected and only admins can update it
**Protected**: `Yes`
**Required middlewares**: `isAuth`, `isAdmin`
---
**Response**:
Error :
```js
{
status : 401,
message : 'Unautorized'
}
```
Success
```js
{
status : 200,
data : {
id : 1,
name : 'BMW 3 Series',
brand : 'BMW',
type : 'Sedan',
image : 'image url',
doors : 4,
gearbox : 'auto',
price : 40,
seats : 5,
color: 'black'
}
}
```
---
**Request body**:
{
name : 'BMW 3 Series',
brand_id : 1,
type_id : 1,
image : 'image url',
doors : 4,
gearbox : 'auto',
price : 40,
seats : 5,
color: 'black'
}
**Validation**
{
name : [string],
brand_id : [number],
type_id : [number],
image : [string],
doors : [number],
gearbox : [string],
price : [number],
seats : [number],
color: [string]
}
---
**Tests**: test all potential cases for the route itself.
| 1.0 | PUT /admin/cars/:carId (Optional) - ## Update Cars data
**Title**: `PUT /admin/cars/:carId`
**Description**
this endpoint for updating car data its protected and only admins can update it
**Protected**: `Yes`
**Required middlewares**: `isAuth`, `isAdmin`
---
**Response**:
Error :
```js
{
status : 401,
message : 'Unautorized'
}
```
Success
```js
{
status : 200,
data : {
id : 1,
name : 'BMW 3 Series',
brand : 'BMW',
type : 'Sedan',
image : 'image url',
doors : 4,
gearbox : 'auto',
price : 40,
seats : 5,
color: 'black'
}
}
```
---
**Request body**:
{
name : 'BMW 3 Series',
brand_id : 1,
type_id : 1,
image : 'image url',
doors : 4,
gearbox : 'auto',
price : 40,
seats : 5,
color: 'black'
}
**Validation**
{
name : [string],
brand_id : [number],
type_id : [number],
image : [string],
doors : [number],
gearbox : [string],
price : [number],
seats : [number],
color: [string]
}
---
**Tests**: test all potential cases for the route itself.
| priority | put admin cars carid optional update cars data title put admin cars carid description this endpoint for updating car data its protected and only admins can update it protected yes required middlewares isauth isadmin response error js status message unautorized success js status data id name bmw series brand bmw type sedan image image url doors gearbox auto price seats color black request body name bmw series brand id type id image image url doors gearbox auto price seats color black validation name brand id type id image doors gearbox price seats color tests test all potential cases for the route itself | 1 |
384,619 | 11,395,427,267 | IssuesEvent | 2020-01-30 11:23:55 | woocommerce/woocommerce-gateway-paypal-express-checkout | https://api.github.com/repos/woocommerce/woocommerce-gateway-paypal-express-checkout | closed | Name and address fields marked as optional regardless of checkout option | Priority: Low [Type] Enhancement | When PayPal Express Checkout Plugin is enabled on my website, First Name, Last Name, and Address details are all marked as "(optional)", regardless of the checkout method (PayPal or Stripe).
In Settings, I am unable to check "Require Billing Address". Anytime I try and click "Save Changes", the page refreshes and the box is unchecked.
I would like to have First Name, Last Name, and Address required for all customers, regardless of whether they use PayPal or another checkout method. The regular PayPal plugin works flawlessly, but it does not provide PayPal Credit as a checkout option, which is what is forcing me to make PayPal Express Checkout work.
<img width="1494" alt="Screen Shot 2019-09-29 at 7 14 49 PM" src="https://user-images.githubusercontent.com/55966173/65845112-bf880600-e2ed-11e9-94d5-f18c88b74e11.png">
<img width="1170" alt="Screen Shot 2019-09-29 at 7 18 13 PM" src="https://user-images.githubusercontent.com/55966173/65845162-eb0af080-e2ed-11e9-813f-842566eaa7cb.png">
| 1.0 | Name and address fields marked as optional regardless of checkout option - When PayPal Express Checkout Plugin is enabled on my website, First Name, Last Name, and Address details are all marked as "(optional)", regardless of the checkout method (PayPal or Stripe).
In Settings, I am unable to check "Require Billing Address". Anytime I try and click "Save Changes", the page refreshes and the box is unchecked.
I would like to have First Name, Last Name, and Address required for all customers, regardless of whether they use PayPal or another checkout method. The regular PayPal plugin works flawlessly, but it does not provide PayPal Credit as a checkout option, which is what is forcing me to make PayPal Express Checkout work.
<img width="1494" alt="Screen Shot 2019-09-29 at 7 14 49 PM" src="https://user-images.githubusercontent.com/55966173/65845112-bf880600-e2ed-11e9-94d5-f18c88b74e11.png">
<img width="1170" alt="Screen Shot 2019-09-29 at 7 18 13 PM" src="https://user-images.githubusercontent.com/55966173/65845162-eb0af080-e2ed-11e9-813f-842566eaa7cb.png">
| priority | name and address fields marked as optional regardless of checkout option when paypal express checkout plugin is enabled on my website first name last name and address details are all marked as optional regardless of the checkout method paypal or stripe in settings i am unable to check require billing address anytime i try and click save changes the page refreshes and the box is unchecked i would like to have first name last name and address required for all customers regardless of whether they use paypal or another checkout method the regular paypal plugin works flawlessly but it does not provide paypal credit as a checkout option which is what is forcing me to make paypal express checkout work img width alt screen shot at pm src img width alt screen shot at pm src | 1 |
227,198 | 7,527,732,182 | IssuesEvent | 2018-04-13 18:07:40 | jens-maus/RaspberryMatic | https://api.github.com/repos/jens-maus/RaspberryMatic | closed | Feature Request: Support SPI displays | enhancement low priority wontfix | For controlling the status of the OS/showing the IP address RaspberryMatic should support SPI displays.
Currently FBTFT is already compiled as modules.
Missing are the TFT overlays (e.g. waveshare35a-overlay.dtb for Kuman SC06 3,5" display) and a way to switch the RaspberryMatic console to /dev/fb1 or the fbcopy tool as a daemon. | 1.0 | Feature Request: Support SPI displays - For controlling the status of the OS/showing the IP address RaspberryMatic should support SPI displays.
Currently FBTFT is already compiled as modules.
Missing are the TFT overlays (e.g. waveshare35a-overlay.dtb for Kuman SC06 3,5" display) and a way to switch the RaspberryMatic console to /dev/fb1 or the fbcopy tool as a daemon. | priority | feature request support spi displays for controlling the status of the os showing the ip address raspberrymatic should support spi displays currently fbtft is already compiled as modules missing are the tft overlays e g overlay dtb for kuman display and a way to switch the raspberrymatic console to dev or the fbcopy tool as a daemon | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.