Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
957
labels
stringlengths
4
795
body
stringlengths
1
259k
index
stringclasses
12 values
text_combine
stringlengths
96
259k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
46,180
2,948,319,748
IssuesEvent
2015-07-06 01:28:02
Winetricks/winetricks
https://api.github.com/repos/Winetricks/winetricks
closed
Creating Wineprefixes
auto-migrated Priority-Medium Type-Enhancement
``` I love using winetricks, but I currently use a script to make a new prifix for unsupported games. I believe an option to create a new prefix would be a great idea. I'm still new to programming, and using git/svn. My script is attached, though it is not much in its current form. It's usage is simply to make a folder with the first argument and run wineconfig with the folder set as the prefix. ``` Original issue reported on code.google.com by `imperial.phantom@gmail.com` on 23 Apr 2012 at 5:14 Attachments: * [createPrefix](https://storage.googleapis.com/google-code-attachments/winetricks/issue-200/comment-0/createPrefix)
1.0
Creating Wineprefixes - ``` I love using winetricks, but I currently use a script to make a new prifix for unsupported games. I believe an option to create a new prefix would be a great idea. I'm still new to programming, and using git/svn. My script is attached, though it is not much in its current form. It's usage is simply to make a folder with the first argument and run wineconfig with the folder set as the prefix. ``` Original issue reported on code.google.com by `imperial.phantom@gmail.com` on 23 Apr 2012 at 5:14 Attachments: * [createPrefix](https://storage.googleapis.com/google-code-attachments/winetricks/issue-200/comment-0/createPrefix)
priority
creating wineprefixes i love using winetricks but i currently use a script to make a new prifix for unsupported games i believe an option to create a new prefix would be a great idea i m still new to programming and using git svn my script is attached though it is not much in its current form it s usage is simply to make a folder with the first argument and run wineconfig with the folder set as the prefix original issue reported on code google com by imperial phantom gmail com on apr at attachments
1
137,256
5,301,060,196
IssuesEvent
2017-02-10 08:12:44
opencaching/opencaching-pl
https://api.github.com/repos/opencaching/opencaching-pl
opened
Make use of US, CA and MX geographical data (requested by OCNA)
Component_Cache Component_CacheEdit Component_DataBase Component_Map Component_Search Priority_Medium Server_DB_Contents Type_Enhancement x_Help wanted
OCNA serves North America, that is USA, Canada and Mexico. Geographical data on these is split across several tables. IMHO there are two ways of handling it: 1. import OCNA specific code into OCPL-current and activate it only for OCNA node 2. process geographical data and convert it into nuts_codes and nuts_layer compatible data, then use existing code to handle it. 3. a combination of the above, given that US data may have more usable database fields and offer more features then just nuts data. I have compiled and attached what I believe is the relevant database contents for this geographical data. [ca_province.zip](https://github.com/opencaching/opencaching-pl/files/766045/ca_province.zip) [geographical_definitions.zip](https://github.com/opencaching/opencaching-pl/files/766044/geographical_definitions.zip) [mx_states.zip](https://github.com/opencaching/opencaching-pl/files/766046/mx_states.zip) [us_state_c.zip](https://github.com/opencaching/opencaching-pl/files/766047/us_state_c.zip)
1.0
Make use of US, CA and MX geographical data (requested by OCNA) - OCNA serves North America, that is USA, Canada and Mexico. Geographical data on these is split across several tables. IMHO there are two ways of handling it: 1. import OCNA specific code into OCPL-current and activate it only for OCNA node 2. process geographical data and convert it into nuts_codes and nuts_layer compatible data, then use existing code to handle it. 3. a combination of the above, given that US data may have more usable database fields and offer more features then just nuts data. I have compiled and attached what I believe is the relevant database contents for this geographical data. [ca_province.zip](https://github.com/opencaching/opencaching-pl/files/766045/ca_province.zip) [geographical_definitions.zip](https://github.com/opencaching/opencaching-pl/files/766044/geographical_definitions.zip) [mx_states.zip](https://github.com/opencaching/opencaching-pl/files/766046/mx_states.zip) [us_state_c.zip](https://github.com/opencaching/opencaching-pl/files/766047/us_state_c.zip)
priority
make use of us ca and mx geographical data requested by ocna ocna serves north america that is usa canada and mexico geographical data on these is split across several tables imho there are two ways of handling it import ocna specific code into ocpl current and activate it only for ocna node process geographical data and convert it into nuts codes and nuts layer compatible data then use existing code to handle it a combination of the above given that us data may have more usable database fields and offer more features then just nuts data i have compiled and attached what i believe is the relevant database contents for this geographical data
1
671,787
22,776,057,465
IssuesEvent
2022-07-08 14:34:04
phylum-dev/cli
https://api.github.com/repos/phylum-dev/cli
closed
Use default extension entry_point of `main.ts` when unspecified
enhancement medium priority extensions
Currently our extension manifest has the `entry_point` defined as a required field. However since most extensions are likely going to be created through our `phylum extension new` command and generally our documentation will be used for the cases where it is done manually, the entry point will most likely almost always be `main.ts`. Other ecosystems use the fact that entry points are usually always named the same way to simplify their manifest files and omit it by default. Rust for example uses `src/main.rs` and `src/lib.rs` without having to specify it explicitly. It should be trivial for us to do the same and it would clean up the manifest a little bit. The biggest reason **against** doing this is that it doesn't really provide much benefit for us. I'm not sure how much users are going to edit these files by hand and an extra line isn't exactly a major risk for configuration file bloat.
1.0
Use default extension entry_point of `main.ts` when unspecified - Currently our extension manifest has the `entry_point` defined as a required field. However since most extensions are likely going to be created through our `phylum extension new` command and generally our documentation will be used for the cases where it is done manually, the entry point will most likely almost always be `main.ts`. Other ecosystems use the fact that entry points are usually always named the same way to simplify their manifest files and omit it by default. Rust for example uses `src/main.rs` and `src/lib.rs` without having to specify it explicitly. It should be trivial for us to do the same and it would clean up the manifest a little bit. The biggest reason **against** doing this is that it doesn't really provide much benefit for us. I'm not sure how much users are going to edit these files by hand and an extra line isn't exactly a major risk for configuration file bloat.
priority
use default extension entry point of main ts when unspecified currently our extension manifest has the entry point defined as a required field however since most extensions are likely going to be created through our phylum extension new command and generally our documentation will be used for the cases where it is done manually the entry point will most likely almost always be main ts other ecosystems use the fact that entry points are usually always named the same way to simplify their manifest files and omit it by default rust for example uses src main rs and src lib rs without having to specify it explicitly it should be trivial for us to do the same and it would clean up the manifest a little bit the biggest reason against doing this is that it doesn t really provide much benefit for us i m not sure how much users are going to edit these files by hand and an extra line isn t exactly a major risk for configuration file bloat
1
526,087
15,279,974,289
IssuesEvent
2021-02-23 05:19:54
ZackHolmberg/COMP4350-Project
https://api.github.com/repos/ZackHolmberg/COMP4350-Project
opened
As a student, I want to have an option to deny a payment so that I don't accept funds I don't want
Priority: Low Risk: Medium Transactions User Story
**Acceptance Criteria:** _Scenario:_ Student denies a transaction. "Given I am on the home page And I receive a notification about an incoming transaction When I click the Deny button Then I do not receive that transaction amount" **Related Dev Tasks:** - [ ] 1
1.0
As a student, I want to have an option to deny a payment so that I don't accept funds I don't want - **Acceptance Criteria:** _Scenario:_ Student denies a transaction. "Given I am on the home page And I receive a notification about an incoming transaction When I click the Deny button Then I do not receive that transaction amount" **Related Dev Tasks:** - [ ] 1
priority
as a student i want to have an option to deny a payment so that i don t accept funds i don t want acceptance criteria scenario student denies a transaction given i am on the home page and i receive a notification about an incoming transaction when i click the deny button then i do not receive that transaction amount related dev tasks
1
326,894
9,962,172,949
IssuesEvent
2019-07-07 12:21:07
svof/svof
https://api.github.com/repos/svof/svof
closed
NDB Reconnecting
Possible fix included enhancement medium priority simple difficulty up for grabs
Plenty of people have an issue where their ndb gets disconnected because they close/cancel, or for a couple other odd reasons. These people are unable to use ndb functions until they restart mudlet, at current, which can be a pain depending on the circumstances. Below is a fairly simple bit of code that reconnects (only if you're not connected) that should be added into an alias (ndb recon|reconnect?), or perhaps even better, added as a function that's checked before executing any ndb function (adds few ms delay when it reconnects, imperceptible otherwise), though echoes would need to be removed in that case. ``` if tostring(db.__conn.namedb) == "SQLite3 connection (closed)" then db.__conn.namedb = nil end if db.__conn.namedb == nil then ndb.init() svo.echof("Manually reconnected to the Name Database. Cancelling honours-checking so you can resume without issue.") ndb.cancelhonors() else svo.echof("We're already connected to the Name Database.") end ```
1.0
NDB Reconnecting - Plenty of people have an issue where their ndb gets disconnected because they close/cancel, or for a couple other odd reasons. These people are unable to use ndb functions until they restart mudlet, at current, which can be a pain depending on the circumstances. Below is a fairly simple bit of code that reconnects (only if you're not connected) that should be added into an alias (ndb recon|reconnect?), or perhaps even better, added as a function that's checked before executing any ndb function (adds few ms delay when it reconnects, imperceptible otherwise), though echoes would need to be removed in that case. ``` if tostring(db.__conn.namedb) == "SQLite3 connection (closed)" then db.__conn.namedb = nil end if db.__conn.namedb == nil then ndb.init() svo.echof("Manually reconnected to the Name Database. Cancelling honours-checking so you can resume without issue.") ndb.cancelhonors() else svo.echof("We're already connected to the Name Database.") end ```
priority
ndb reconnecting plenty of people have an issue where their ndb gets disconnected because they close cancel or for a couple other odd reasons these people are unable to use ndb functions until they restart mudlet at current which can be a pain depending on the circumstances below is a fairly simple bit of code that reconnects only if you re not connected that should be added into an alias ndb recon reconnect or perhaps even better added as a function that s checked before executing any ndb function adds few ms delay when it reconnects imperceptible otherwise though echoes would need to be removed in that case if tostring db conn namedb connection closed then db conn namedb nil end if db conn namedb nil then ndb init svo echof manually reconnected to the name database cancelling honours checking so you can resume without issue ndb cancelhonors else svo echof we re already connected to the name database end
1
129,270
5,093,383,566
IssuesEvent
2017-01-03 05:32:08
BinPar/PPD
https://api.github.com/repos/BinPar/PPD
opened
BETA PPD: NO SE PUEDE ACCEDER A ESTE SITIO WEB
Priority: Medium
![image](https://cloud.githubusercontent.com/assets/22589031/21600530/25c59df8-d17e-11e6-9cf2-356854de684c.png) No puedo acceder a beta @CristianBinpar
1.0
BETA PPD: NO SE PUEDE ACCEDER A ESTE SITIO WEB - ![image](https://cloud.githubusercontent.com/assets/22589031/21600530/25c59df8-d17e-11e6-9cf2-356854de684c.png) No puedo acceder a beta @CristianBinpar
priority
beta ppd no se puede acceder a este sitio web no puedo acceder a beta cristianbinpar
1
539,819
15,795,497,313
IssuesEvent
2021-04-02 13:15:29
oslc-op/oslc-specs
https://api.github.com/repos/oslc-op/oslc-specs
closed
Normative statements in the core/shapes§terminology
Area: Core Core: Main Spec Kind: Normative Priority: Medium Status: Input needed Tag: Has PR
> A resource in which an explicit action has been performed to mark the resource as no longer active and may be removed from typical user interactions. As a consequence, an archived resource should be considered immutable. Why is this in the shapes part? Maybe it should be in part 1? Should those be conformance clauses? If so, should we move them (normative statements, not the definition itself) out of the terminology section?
1.0
Normative statements in the core/shapes§terminology - > A resource in which an explicit action has been performed to mark the resource as no longer active and may be removed from typical user interactions. As a consequence, an archived resource should be considered immutable. Why is this in the shapes part? Maybe it should be in part 1? Should those be conformance clauses? If so, should we move them (normative statements, not the definition itself) out of the terminology section?
priority
normative statements in the core shapes§terminology a resource in which an explicit action has been performed to mark the resource as no longer active and may be removed from typical user interactions as a consequence an archived resource should be considered immutable why is this in the shapes part maybe it should be in part should those be conformance clauses if so should we move them normative statements not the definition itself out of the terminology section
1
762,333
26,715,510,807
IssuesEvent
2023-01-28 13:00:41
kitabisa/teler
https://api.github.com/repos/kitabisa/teler
closed
[FEATURE] Follow/stream input logs
Status: Available Priority: Medium
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** ```bash $ teler -i /path/to/file.log --follow ``` Use https://github.com/kitabisa/tailpipe. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here.
1.0
[FEATURE] Follow/stream input logs - **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** ```bash $ teler -i /path/to/file.log --follow ``` Use https://github.com/kitabisa/tailpipe. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here.
priority
follow stream input logs is your feature request related to a problem please describe a clear and concise description of what the problem is ex i m always frustrated when describe the solution you d like bash teler i path to file log follow use describe alternatives you ve considered a clear and concise description of any alternative solutions or features you ve considered additional context add any other context or screenshots about the feature request here
1
816,506
30,601,281,059
IssuesEvent
2023-07-22 12:18:54
anuthapaliy/Coursework-Planner
https://api.github.com/repos/anuthapaliy/Coursework-Planner
opened
[TECH ED] Prepare for live session
🏕 Priority Mandatory Week 1 🐂 Size Medium :brain: Prep work 📅 Node
From Module-Node created by [Dedekind561](https://github.com/Dedekind561): CodeYourFuture/Module-Node#1 ### Link to the coursework [Node Week 1 playlist](https://www.youtube.com/playlist?list=PLozA7cloMbPi1HcSAUUEm7eWEzQk_PRw5) ### Why are we doing this? It is essential to start learning new concepts and ideas before Saturday's session. During the week, we expect you to get stuck and form questions about the new content so you can address misconceptions during Saturday's session. The prep work here will introduce you to the new concepts for the week. ### Maximum time in hours (Tech has max 16 per week total) 3 ### How to get help Share your blockers in your class channel https://syllabus.codeyourfuture.io/guides/asking-questions
1.0
[TECH ED] Prepare for live session - From Module-Node created by [Dedekind561](https://github.com/Dedekind561): CodeYourFuture/Module-Node#1 ### Link to the coursework [Node Week 1 playlist](https://www.youtube.com/playlist?list=PLozA7cloMbPi1HcSAUUEm7eWEzQk_PRw5) ### Why are we doing this? It is essential to start learning new concepts and ideas before Saturday's session. During the week, we expect you to get stuck and form questions about the new content so you can address misconceptions during Saturday's session. The prep work here will introduce you to the new concepts for the week. ### Maximum time in hours (Tech has max 16 per week total) 3 ### How to get help Share your blockers in your class channel https://syllabus.codeyourfuture.io/guides/asking-questions
priority
prepare for live session from module node created by codeyourfuture module node link to the coursework why are we doing this it is essential to start learning new concepts and ideas before saturday s session during the week we expect you to get stuck and form questions about the new content so you can address misconceptions during saturday s session the prep work here will introduce you to the new concepts for the week maximum time in hours tech has max per week total how to get help share your blockers in your class channel
1
453,712
13,087,513,892
IssuesEvent
2020-08-02 12:41:47
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
opened
Messages notification unclear when viewing on member profiles (highlighted messages change)
bug component: notifications priority: medium
**Describe the bug** When viewing message notifications, the message board shows highlighted for unread message. but when you view different member profile, the highlighted messages change **To Reproduce** Steps to reproduce the behavior: Issue can be replicated on demo 1. On Activity Page, click messages notifications and view drop down, notice the highlighted message 2. Open any member profile, click on messages notifications and view message drop down, notice the highlighted message changes 3. Open again other member profile, the highlighted message changes **Expected behavior** The highlighted message should show only the unread message and must not change on profile view **Screenshots** https://drive.google.com/file/d/1fexSU26Ur2l6qbzayPv1nmZHE3qPGISf/view?usp=sharing **Support ticket links** https://secure.helpscout.net/conversation/1240582417/85845
1.0
Messages notification unclear when viewing on member profiles (highlighted messages change) - **Describe the bug** When viewing message notifications, the message board shows highlighted for unread message. but when you view different member profile, the highlighted messages change **To Reproduce** Steps to reproduce the behavior: Issue can be replicated on demo 1. On Activity Page, click messages notifications and view drop down, notice the highlighted message 2. Open any member profile, click on messages notifications and view message drop down, notice the highlighted message changes 3. Open again other member profile, the highlighted message changes **Expected behavior** The highlighted message should show only the unread message and must not change on profile view **Screenshots** https://drive.google.com/file/d/1fexSU26Ur2l6qbzayPv1nmZHE3qPGISf/view?usp=sharing **Support ticket links** https://secure.helpscout.net/conversation/1240582417/85845
priority
messages notification unclear when viewing on member profiles highlighted messages change describe the bug when viewing message notifications the message board shows highlighted for unread message but when you view different member profile the highlighted messages change to reproduce steps to reproduce the behavior issue can be replicated on demo on activity page click messages notifications and view drop down notice the highlighted message open any member profile click on messages notifications and view message drop down notice the highlighted message changes open again other member profile the highlighted message changes expected behavior the highlighted message should show only the unread message and must not change on profile view screenshots support ticket links
1
278,016
8,635,065,246
IssuesEvent
2018-11-22 20:05:22
fgpv-vpgf/fgpv-vpgf
https://api.github.com/repos/fgpv-vpgf/fgpv-vpgf
closed
HTTPS and Service Wizard
bug-type: confusing priority: medium problem: bug
Appears that if ramp is running in https mode, if a user attempts to add a service based layer via the wizard, and the url is http, the wizard will error. Some ideas: * Add an additional check to wizard to detect if we are in https mode, and display a helpful message to user if they use an http url * Add some code that detects if we are in https mode, and auto-adds an `s` if an http url is passed in * Discover other trickery that allows an http url to be used
1.0
HTTPS and Service Wizard - Appears that if ramp is running in https mode, if a user attempts to add a service based layer via the wizard, and the url is http, the wizard will error. Some ideas: * Add an additional check to wizard to detect if we are in https mode, and display a helpful message to user if they use an http url * Add some code that detects if we are in https mode, and auto-adds an `s` if an http url is passed in * Discover other trickery that allows an http url to be used
priority
https and service wizard appears that if ramp is running in https mode if a user attempts to add a service based layer via the wizard and the url is http the wizard will error some ideas add an additional check to wizard to detect if we are in https mode and display a helpful message to user if they use an http url add some code that detects if we are in https mode and auto adds an s if an http url is passed in discover other trickery that allows an http url to be used
1
768,830
26,982,835,513
IssuesEvent
2023-02-09 14:17:13
projectdiscovery/asnmap
https://api.github.com/repos/projectdiscovery/asnmap
closed
RFE: add proxy support
Priority: Medium Status: Completed Type: Enhancement
For those who are connected to corporate networks with required proxy to access the Internet. ```console -p, -proxy list of proxy to use (comma separated or file input) ``` Should support: - http - socks5
1.0
RFE: add proxy support - For those who are connected to corporate networks with required proxy to access the Internet. ```console -p, -proxy list of proxy to use (comma separated or file input) ``` Should support: - http - socks5
priority
rfe add proxy support for those who are connected to corporate networks with required proxy to access the internet console p proxy list of proxy to use comma separated or file input should support http
1
514,500
14,940,103,985
IssuesEvent
2021-01-25 17:49:02
bounswe/bounswe2020group5
https://api.github.com/repos/bounswe/bounswe2020group5
closed
frontend/ cancel & update order
Priority: Medium Status: Completed Status: Needs Review frontend
- [x] Customers shall be able to cancel their orders from /orders page - [x] Vendors shall be able to update the status of orders
1.0
frontend/ cancel & update order - - [x] Customers shall be able to cancel their orders from /orders page - [x] Vendors shall be able to update the status of orders
priority
frontend cancel update order customers shall be able to cancel their orders from orders page vendors shall be able to update the status of orders
1
540,244
15,803,193,300
IssuesEvent
2021-04-03 13:17:14
drashland/website
https://api.github.com/repos/drashland/website
closed
Issue on Wocket /advanced-tutorials/creating-a-chat-app/part-1 page
Priority: Medium
## Summary Clicking breadcrumps result in a 404. If you notice the uri after clicking any of them, the hash is missing after `/v0.x/`. I think there's just a small typo somewhere that should be easily fixable ## Expected Behavior Clicking the breadcrumbs should redirect the user to that part of the tutorial
1.0
Issue on Wocket /advanced-tutorials/creating-a-chat-app/part-1 page - ## Summary Clicking breadcrumps result in a 404. If you notice the uri after clicking any of them, the hash is missing after `/v0.x/`. I think there's just a small typo somewhere that should be easily fixable ## Expected Behavior Clicking the breadcrumbs should redirect the user to that part of the tutorial
priority
issue on wocket advanced tutorials creating a chat app part page summary clicking breadcrumps result in a if you notice the uri after clicking any of them the hash is missing after x i think there s just a small typo somewhere that should be easily fixable expected behavior clicking the breadcrumbs should redirect the user to that part of the tutorial
1
57,239
3,081,250,748
IssuesEvent
2015-08-22 14:41:59
bitfighter/bitfighter
https://api.github.com/repos/bitfighter/bitfighter
opened
No more "Ping timed out" servers in game lobby
020 enhancement imported Priority-Medium
_From [corteocarl](https://code.google.com/u/corteocarl/) on September 06, 2014 17:36:00_ What new feature or enhancement would you like to request? To be able to get the server's name and description in the game lobby, even if it is ping timed out. How? Well, we could connect to the server momentarily to get the info, like when you connect to play on the server, or we can get it from http://bitfighter.org/bitfighterStatus.json , since they have this info _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=457_
1.0
No more "Ping timed out" servers in game lobby - _From [corteocarl](https://code.google.com/u/corteocarl/) on September 06, 2014 17:36:00_ What new feature or enhancement would you like to request? To be able to get the server's name and description in the game lobby, even if it is ping timed out. How? Well, we could connect to the server momentarily to get the info, like when you connect to play on the server, or we can get it from http://bitfighter.org/bitfighterStatus.json , since they have this info _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=457_
priority
no more ping timed out servers in game lobby from on september what new feature or enhancement would you like to request to be able to get the server s name and description in the game lobby even if it is ping timed out how well we could connect to the server momentarily to get the info like when you connect to play on the server or we can get it from since they have this info original issue
1
481,344
13,884,296,191
IssuesEvent
2020-10-18 15:35:58
utm-cssc/website
https://api.github.com/repos/utm-cssc/website
closed
🛠️ Refactor: Voting System Unit Testing and Polish
Domain: Dev Experience Priority: Medium Role: Software Engineer
# Code Refactor Task proposal ### Motivation 🏁 Create unit tests to ensure the vote form has no bug and properly display all errors for the user and clean up any unnecessary code. Ensure the code is easily readable and understandable for other developers.
1.0
🛠️ Refactor: Voting System Unit Testing and Polish - # Code Refactor Task proposal ### Motivation 🏁 Create unit tests to ensure the vote form has no bug and properly display all errors for the user and clean up any unnecessary code. Ensure the code is easily readable and understandable for other developers.
priority
🛠️ refactor voting system unit testing and polish code refactor task proposal motivation 🏁 create unit tests to ensure the vote form has no bug and properly display all errors for the user and clean up any unnecessary code ensure the code is easily readable and understandable for other developers
1
186,040
6,732,986,588
IssuesEvent
2017-10-18 13:30:22
geosolutions-it/decat_geonode
https://api.github.com/repos/geosolutions-it/decat_geonode
closed
Warning on COP editing
frontend in progress Priority: Medium
Warning a user that a new Impact Assessment is going to be created. (check on linked maps lock statuses)
1.0
Warning on COP editing - Warning a user that a new Impact Assessment is going to be created. (check on linked maps lock statuses)
priority
warning on cop editing warning a user that a new impact assessment is going to be created check on linked maps lock statuses
1
224,025
7,465,823,266
IssuesEvent
2018-04-02 07:19:04
samurailens/teedknow-issue-tracker
https://api.github.com/repos/samurailens/teedknow-issue-tracker
closed
With same email id user is able to create multiple accounts (Trainer, Organizer and Student)
Priority: Medium
1. Launch the application -> Click on My Accounts - >Click on Login as a Trainer ->login with gmail id 2. Sign out from Trainer 3. Click on My Accounts - >Click on Organization Admin login->login with gmail id Issue - Notice that with same gmail id, user is able to login to application.
1.0
With same email id user is able to create multiple accounts (Trainer, Organizer and Student) - 1. Launch the application -> Click on My Accounts - >Click on Login as a Trainer ->login with gmail id 2. Sign out from Trainer 3. Click on My Accounts - >Click on Organization Admin login->login with gmail id Issue - Notice that with same gmail id, user is able to login to application.
priority
with same email id user is able to create multiple accounts trainer organizer and student launch the application click on my accounts click on login as a trainer login with gmail id sign out from trainer click on my accounts click on organization admin login login with gmail id issue notice that with same gmail id user is able to login to application
1
142,862
5,478,089,112
IssuesEvent
2017-03-12 15:02:34
mreishman/Log-Hog
https://api.github.com/repos/mreishman/Log-Hog
opened
Reset / Disable update notification
enhancement Priority - 3 - Medium
- [ ] Reset update notification - resets update status - [ ] Disable update notification
1.0
Reset / Disable update notification - - [ ] Reset update notification - resets update status - [ ] Disable update notification
priority
reset disable update notification reset update notification resets update status disable update notification
1
582,184
17,355,159,739
IssuesEvent
2021-07-29 13:38:39
status-im/status-desktop
https://api.github.com/repos/status-im/status-desktop
closed
Limit community types to only Require approval
Communities bug priority 2: medium
Community type should be limited to Require Approval only. It was done before here https://github.com/status-im/status-desktop/pull/2565 and got gone for some reason <img width="1012" alt="Screenshot 2021-07-28 at 16 40 45" src="https://user-images.githubusercontent.com/82375995/127332427-34a2f968-a683-424a-87cb-6b247433fb29.png"> Expected: Selection for this drop-down is locked, Require Approval option is defaulted ![image](https://user-images.githubusercontent.com/82375995/127332656-ca252cf2-12d3-4784-9149-358cba788a38.png)
1.0
Limit community types to only Require approval - Community type should be limited to Require Approval only. It was done before here https://github.com/status-im/status-desktop/pull/2565 and got gone for some reason <img width="1012" alt="Screenshot 2021-07-28 at 16 40 45" src="https://user-images.githubusercontent.com/82375995/127332427-34a2f968-a683-424a-87cb-6b247433fb29.png"> Expected: Selection for this drop-down is locked, Require Approval option is defaulted ![image](https://user-images.githubusercontent.com/82375995/127332656-ca252cf2-12d3-4784-9149-358cba788a38.png)
priority
limit community types to only require approval community type should be limited to require approval only it was done before here and got gone for some reason img width alt screenshot at src expected selection for this drop down is locked require approval option is defaulted
1
107,627
4,312,149,553
IssuesEvent
2016-07-22 03:08:31
hook/champions
https://api.github.com/repos/hook/champions
closed
Print / export / share my teams
Priority: Medium Type: Enhancement Type: Question
Hey guys, love the app! One of the things I would like to be able to do is print, export, or email my teams to myself. Sometimes I make these teams at home, and as I'm out an about, I have a few minutes, but don't remember my teams. Also, have you thought about a mobile app (can of worms I'm sure).
1.0
Print / export / share my teams - Hey guys, love the app! One of the things I would like to be able to do is print, export, or email my teams to myself. Sometimes I make these teams at home, and as I'm out an about, I have a few minutes, but don't remember my teams. Also, have you thought about a mobile app (can of worms I'm sure).
priority
print export share my teams hey guys love the app one of the things i would like to be able to do is print export or email my teams to myself sometimes i make these teams at home and as i m out an about i have a few minutes but don t remember my teams also have you thought about a mobile app can of worms i m sure
1
591,982
17,867,219,463
IssuesEvent
2021-09-06 10:57:35
azerothcore/azerothcore-wotlk
https://api.github.com/repos/azerothcore/azerothcore-wotlk
opened
Dismounting from a flight (Westfall -> Stormwind) can make palyers fall through the floor
Priority-Medium ChromieCraft Generic
### What client do you play on? enUS ### Faction - [X] Alliance - [ ] Horde ### Content Phase: - [X] Generic - [ ] 1-19 - [ ] 20-29 - [ ] 30-39 - [ ] 40-49 - [ ] 50-59 ### Current Behaviour Upon taking a flight from Westfall to Stormwind I found myself falling thru the floor and onto the ground underneath Stormwind ![Screenshot_2](https://user-images.githubusercontent.com/89442337/132097901-c059cc2d-e78d-4ed2-84c5-e59990a8b9eb.png) ### Expected Blizzlike Behaviour I expect not to fall thru the floor ### Source _No response_ ### Steps to reproduce the problem Take a flight from Westfall to Stormwind ### Extra Notes I was playing on 4G mobile connection, there's a very slight possibility it might be related to that, but, I wasn't the only player that fell thru. ### AC rev. hash/commit https://github.com/chromiecraft/azerothcore-wotlk/commit/595bb6adccbabc714469f3935541978283b8bdfb ### Operating system Ubuntu 20.04 ### Modules - [mod-ah-bot](https://github.com/azerothcore/mod-ah-bot) - [mod-cfbg](https://github.com/azerothcore/mod-cfbg) - [mod-chromie-xp](https://github.com/azerothcore/mod-chromie-xp) - [mod-desertion-warnings](https://github.com/azerothcore/mod-desertion-warnings) - [mod-duel-reset](https://github.com/azerothcore/mod-duel-reset) - [mod-eluna-lua-engine](https://github.com/azerothcore/mod-eluna-lua-engine) - [mod-ip-tracker](https://github.com/azerothcore/mod-ip-tracker) - [mod-low-level-arena](https://github.com/azerothcore/mod-low-level-arena) - [mod-multi-client-check](https://github.com/azerothcore/mod-multi-client-check) - [mod-pvp-titles](https://github.com/azerothcore/mod-pvp-titles) - [mod-pvpstats-announcer](https://github.com/azerothcore/mod-pvpstats-announcer) - [mod-queue-list-cache](https://github.com/azerothcore/mod-queue-list-cache) - [mod-server-auto-shutdown](https://github.com/azerothcore/mod-server-auto-shutdown) - [lua-carbon-copy](https://github.com/55Honey/Acore_CarbonCopy) - [lua-custom-corldboss](https://github.com/55Honey/Acore_CustomWorldboss) - [lua-level-up-reward](https://github.com/55Honey/Acore_LevelUpReward) - [lua-recruit-a-friend](https://github.com/55Honey/Acore_RecruitAFriend) - [lua-send-and-bind](https://github.com/55Honey/Acore_SendAndBind) - [lua-temp-announcements](https://github.com/55Honey/Acore_TempAnnouncements) - [lua-zonecheck](https://github.com/55Honey/acore_Zonecheck) ### Customizations None ### Server ChromieCraft It didn't happen to myself, because it happens so rarely, but I heard this now from multiple players. I'm not sure, if the flight from Sentinel Hill to Stormwind has anything to do with this issue, but it could be. I only ever heard of players falling through the floor upon dismounting from a flight in Stormwind and nowhere else. Maybe related to: https://github.com/azerothcore/azerothcore-wotlk/issues/5765
1.0
Dismounting from a flight (Westfall -> Stormwind) can make palyers fall through the floor - ### What client do you play on? enUS ### Faction - [X] Alliance - [ ] Horde ### Content Phase: - [X] Generic - [ ] 1-19 - [ ] 20-29 - [ ] 30-39 - [ ] 40-49 - [ ] 50-59 ### Current Behaviour Upon taking a flight from Westfall to Stormwind I found myself falling thru the floor and onto the ground underneath Stormwind ![Screenshot_2](https://user-images.githubusercontent.com/89442337/132097901-c059cc2d-e78d-4ed2-84c5-e59990a8b9eb.png) ### Expected Blizzlike Behaviour I expect not to fall thru the floor ### Source _No response_ ### Steps to reproduce the problem Take a flight from Westfall to Stormwind ### Extra Notes I was playing on 4G mobile connection, there's a very slight possibility it might be related to that, but, I wasn't the only player that fell thru. ### AC rev. hash/commit https://github.com/chromiecraft/azerothcore-wotlk/commit/595bb6adccbabc714469f3935541978283b8bdfb ### Operating system Ubuntu 20.04 ### Modules - [mod-ah-bot](https://github.com/azerothcore/mod-ah-bot) - [mod-cfbg](https://github.com/azerothcore/mod-cfbg) - [mod-chromie-xp](https://github.com/azerothcore/mod-chromie-xp) - [mod-desertion-warnings](https://github.com/azerothcore/mod-desertion-warnings) - [mod-duel-reset](https://github.com/azerothcore/mod-duel-reset) - [mod-eluna-lua-engine](https://github.com/azerothcore/mod-eluna-lua-engine) - [mod-ip-tracker](https://github.com/azerothcore/mod-ip-tracker) - [mod-low-level-arena](https://github.com/azerothcore/mod-low-level-arena) - [mod-multi-client-check](https://github.com/azerothcore/mod-multi-client-check) - [mod-pvp-titles](https://github.com/azerothcore/mod-pvp-titles) - [mod-pvpstats-announcer](https://github.com/azerothcore/mod-pvpstats-announcer) - [mod-queue-list-cache](https://github.com/azerothcore/mod-queue-list-cache) - [mod-server-auto-shutdown](https://github.com/azerothcore/mod-server-auto-shutdown) - [lua-carbon-copy](https://github.com/55Honey/Acore_CarbonCopy) - [lua-custom-corldboss](https://github.com/55Honey/Acore_CustomWorldboss) - [lua-level-up-reward](https://github.com/55Honey/Acore_LevelUpReward) - [lua-recruit-a-friend](https://github.com/55Honey/Acore_RecruitAFriend) - [lua-send-and-bind](https://github.com/55Honey/Acore_SendAndBind) - [lua-temp-announcements](https://github.com/55Honey/Acore_TempAnnouncements) - [lua-zonecheck](https://github.com/55Honey/acore_Zonecheck) ### Customizations None ### Server ChromieCraft It didn't happen to myself, because it happens so rarely, but I heard this now from multiple players. I'm not sure, if the flight from Sentinel Hill to Stormwind has anything to do with this issue, but it could be. I only ever heard of players falling through the floor upon dismounting from a flight in Stormwind and nowhere else. Maybe related to: https://github.com/azerothcore/azerothcore-wotlk/issues/5765
priority
dismounting from a flight westfall stormwind can make palyers fall through the floor what client do you play on enus faction alliance horde content phase generic current behaviour upon taking a flight from westfall to stormwind i found myself falling thru the floor and onto the ground underneath stormwind expected blizzlike behaviour i expect not to fall thru the floor source no response steps to reproduce the problem take a flight from westfall to stormwind extra notes i was playing on mobile connection there s a very slight possibility it might be related to that but i wasn t the only player that fell thru ac rev hash commit operating system ubuntu modules customizations none server chromiecraft it didn t happen to myself because it happens so rarely but i heard this now from multiple players i m not sure if the flight from sentinel hill to stormwind has anything to do with this issue but it could be i only ever heard of players falling through the floor upon dismounting from a flight in stormwind and nowhere else maybe related to
1
354,736
10,571,552,139
IssuesEvent
2019-10-07 07:27:50
hotosm/tasking-manager
https://api.github.com/repos/hotosm/tasking-manager
closed
Cannot execute migrations for staging deployment
Component: Backend Difficulty: Medium Priority: High Status: In Progress Type: Bug
Per chat with @dakotabenjamin and @thadk. Migration script returns the following error within staging server: ```ascii' codec can't decode byte 0xc3 in position 5067619: ordinal not in range(128)``` This error is present within migration file `migrations/versions/0eee8c1abd3a_.py", line 60`
1.0
Cannot execute migrations for staging deployment - Per chat with @dakotabenjamin and @thadk. Migration script returns the following error within staging server: ```ascii' codec can't decode byte 0xc3 in position 5067619: ordinal not in range(128)``` This error is present within migration file `migrations/versions/0eee8c1abd3a_.py", line 60`
priority
cannot execute migrations for staging deployment per chat with dakotabenjamin and thadk migration script returns the following error within staging server ascii codec can t decode byte in position ordinal not in range this error is present within migration file migrations versions py line
1
342,471
10,317,599,834
IssuesEvent
2019-08-30 13:07:13
pmem/issues
https://api.github.com/repos/pmem/issues
closed
Test: pmempool_transform/TEST18: SETUP (all/pmem/debug/memcheck)
Exposure: Medium OS: Linux Priority: 2 high Type: Bug
<!-- Before creating new issue, ensure that similar issue wasn't already created * Search: https://github.com/pmem/issues/issues Note that if you do not provide enough information to reproduce the issue, we may not be able to take action on your report. Remember this is just a minimal template. You can extend it with data you think may be useful. --> # ISSUE: <!-- fill the title of issue --> ## Environment Information - PMDK package version(s): 1.4.3-rc1 - OS(es) version(s): SLES 12.4 - ndctl version(s): 61.2 - kernel version(s): 4.12.14-95.29-default ## Please provide a reproduction of the bug: ``` ./RUNTESTS pmempool_transform -s TEST18 -m force-enable -t all ``` ## How often bug is revealed: (always, often, rare): always <!-- describe special circumstances in section above --> ``` ./RUNTESTS pmempool_transform -s TEST18 -m force-enable -t all pmempool_transform/TEST18: SETUP (all/pmem/debug/memcheck) pmempool_transform/TEST18 failed with Valgrind. See memcheck18.log. First 20 lines below. pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x80000000, 0x2f5c00000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x59e3e000, 0x214c3e000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x59e3e000, 0x214c3e000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x80000000, 0x1fae00000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x1bae00000, 0x1fae00000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x1fae00000, 0x3b5bff000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x1fae00000, 0x3b5bff000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x200000000, 0x37adff000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x33ae00000, 0x37adff000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x200000000, 0x37adff000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x80000000, 0x1fae00000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== pmempool_transform/TEST18 memcheck18.log ==31132== HEAP SUMMARY: pmempool_transform/TEST18 memcheck18.log ==31132== in use at exit: 0 bytes in 0 blocks pmempool_transform/TEST18 memcheck18.log ==31132== total heap usage: 1,148 allocs, 1,148 frees, 3,619,892 bytes allocated pmempool_transform/TEST18 memcheck18.log ==31132== pmempool_transform/TEST18 memcheck18.log ==31132== All heap blocks were freed -- no leaks are possible pmempool_transform/TEST18 memcheck18.log ==31132== pmempool_transform/TEST18 memcheck18.log ==31132== For counts of detected and suppressed errors, rerun with: -v pmempool_transform/TEST18 memcheck18.log ==31132== ERROR SUMMARY: 6 errors from 3 contexts (suppressed: 0 from 0) RUNTESTS: stopping: pmempool_transform/TEST18 failed, TEST=all FS=any BUILD=debug ``` <!-- fill this out --> ## Expected behavior: Test should pass. ## Details <!-- fill this out --> ## Additional information about Priority and Help Requested: Are you willing to submit a pull request with a proposed change? (Yes, No) <!-- check one if possible --> Requested priority: (Showstopper, High, Medium, Low) <!-- check one if possible -->
1.0
Test: pmempool_transform/TEST18: SETUP (all/pmem/debug/memcheck) - <!-- Before creating new issue, ensure that similar issue wasn't already created * Search: https://github.com/pmem/issues/issues Note that if you do not provide enough information to reproduce the issue, we may not be able to take action on your report. Remember this is just a minimal template. You can extend it with data you think may be useful. --> # ISSUE: <!-- fill the title of issue --> ## Environment Information - PMDK package version(s): 1.4.3-rc1 - OS(es) version(s): SLES 12.4 - ndctl version(s): 61.2 - kernel version(s): 4.12.14-95.29-default ## Please provide a reproduction of the bug: ``` ./RUNTESTS pmempool_transform -s TEST18 -m force-enable -t all ``` ## How often bug is revealed: (always, often, rare): always <!-- describe special circumstances in section above --> ``` ./RUNTESTS pmempool_transform -s TEST18 -m force-enable -t all pmempool_transform/TEST18: SETUP (all/pmem/debug/memcheck) pmempool_transform/TEST18 failed with Valgrind. See memcheck18.log. First 20 lines below. pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x80000000, 0x2f5c00000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x59e3e000, 0x214c3e000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x59e3e000, 0x214c3e000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x80000000, 0x1fae00000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x1bae00000, 0x1fae00000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x1fae00000, 0x3b5bff000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x1fae00000, 0x3b5bff000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x200000000, 0x37adff000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x33ae00000, 0x37adff000) (defined) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x200000000, 0x37adff000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== Warning: set address range perms: large range [0x80000000, 0x1fae00000) (noaccess) pmempool_transform/TEST18 memcheck18.log ==31132== pmempool_transform/TEST18 memcheck18.log ==31132== HEAP SUMMARY: pmempool_transform/TEST18 memcheck18.log ==31132== in use at exit: 0 bytes in 0 blocks pmempool_transform/TEST18 memcheck18.log ==31132== total heap usage: 1,148 allocs, 1,148 frees, 3,619,892 bytes allocated pmempool_transform/TEST18 memcheck18.log ==31132== pmempool_transform/TEST18 memcheck18.log ==31132== All heap blocks were freed -- no leaks are possible pmempool_transform/TEST18 memcheck18.log ==31132== pmempool_transform/TEST18 memcheck18.log ==31132== For counts of detected and suppressed errors, rerun with: -v pmempool_transform/TEST18 memcheck18.log ==31132== ERROR SUMMARY: 6 errors from 3 contexts (suppressed: 0 from 0) RUNTESTS: stopping: pmempool_transform/TEST18 failed, TEST=all FS=any BUILD=debug ``` <!-- fill this out --> ## Expected behavior: Test should pass. ## Details <!-- fill this out --> ## Additional information about Priority and Help Requested: Are you willing to submit a pull request with a proposed change? (Yes, No) <!-- check one if possible --> Requested priority: (Showstopper, High, Medium, Low) <!-- check one if possible -->
priority
test pmempool transform setup all pmem debug memcheck before creating new issue ensure that similar issue wasn t already created search note that if you do not provide enough information to reproduce the issue we may not be able to take action on your report remember this is just a minimal template you can extend it with data you think may be useful issue environment information pmdk package version s os es version s sles ndctl version s kernel version s default please provide a reproduction of the bug runtests pmempool transform s m force enable t all how often bug is revealed always often rare always runtests pmempool transform s m force enable t all pmempool transform setup all pmem debug memcheck pmempool transform failed with valgrind see log first lines below pmempool transform log warning set address range perms large range noaccess pmempool transform log warning set address range perms large range defined pmempool transform log warning set address range perms large range noaccess pmempool transform log warning set address range perms large range defined pmempool transform log warning set address range perms large range defined pmempool transform log warning set address range perms large range defined pmempool transform log warning set address range perms large range noaccess pmempool transform log warning set address range perms large range defined pmempool transform log warning set address range perms large range defined pmempool transform log warning set address range perms large range noaccess pmempool transform log warning set address range perms large range noaccess pmempool transform log pmempool transform log heap summary pmempool transform log in use at exit bytes in blocks pmempool transform log total heap usage allocs frees bytes allocated pmempool transform log pmempool transform log all heap blocks were freed no leaks are possible pmempool transform log pmempool transform log for counts of detected and suppressed errors rerun with v pmempool transform log error summary errors from contexts suppressed from runtests stopping pmempool transform failed test all fs any build debug expected behavior test should pass details additional information about priority and help requested are you willing to submit a pull request with a proposed change yes no requested priority showstopper high medium low
1
339,079
10,241,578,753
IssuesEvent
2019-08-20 01:01:47
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[studio] Log entry when a site is removed should have the site name
bug priority: medium
## Describe the bug The log entry when a site is removed does not have information about which site was removed. ## To Reproduce Steps to reproduce the behavior: 1. Create and remove a site from authorin 2. Go to `Audit` main menu 3. See logs of `CREATE` and `DELETE` operations ## Expected behavior The log entry when a site is removed shoudl have the site name value in the target field. ## Screenshots Log entry when site is deleted ![image](https://user-images.githubusercontent.com/6722074/62801283-a3f93f80-baa2-11e9-8751-853c74f41881.png) Log entry when site is created. Notice that here we add the site name in the target field. ![image](https://user-images.githubusercontent.com/6722074/62801319-bb382d00-baa2-11e9-9ac6-0deb25189b6d.png) ## Logs {{If applicable, attach the logs/stack trace (use https://gist.github.com).}} ## Specs ### Version ``` Studio Version Number: 3.1.1-SNAPSHOT-2613ef Build Number: 2613efd83d9d67e9d56c3e0ceaa458dabd20bf65 Build Date/Time: 08-05-2019 10:44:26 -0600 ``` ### OS {{What OS did you use to produce the bug.}} ### Browser {{What browser did you use to produce the bug.}} ## Additional context {{Add any other context about the problem here.}}
1.0
[studio] Log entry when a site is removed should have the site name - ## Describe the bug The log entry when a site is removed does not have information about which site was removed. ## To Reproduce Steps to reproduce the behavior: 1. Create and remove a site from authorin 2. Go to `Audit` main menu 3. See logs of `CREATE` and `DELETE` operations ## Expected behavior The log entry when a site is removed shoudl have the site name value in the target field. ## Screenshots Log entry when site is deleted ![image](https://user-images.githubusercontent.com/6722074/62801283-a3f93f80-baa2-11e9-8751-853c74f41881.png) Log entry when site is created. Notice that here we add the site name in the target field. ![image](https://user-images.githubusercontent.com/6722074/62801319-bb382d00-baa2-11e9-9ac6-0deb25189b6d.png) ## Logs {{If applicable, attach the logs/stack trace (use https://gist.github.com).}} ## Specs ### Version ``` Studio Version Number: 3.1.1-SNAPSHOT-2613ef Build Number: 2613efd83d9d67e9d56c3e0ceaa458dabd20bf65 Build Date/Time: 08-05-2019 10:44:26 -0600 ``` ### OS {{What OS did you use to produce the bug.}} ### Browser {{What browser did you use to produce the bug.}} ## Additional context {{Add any other context about the problem here.}}
priority
log entry when a site is removed should have the site name describe the bug the log entry when a site is removed does not have information about which site was removed to reproduce steps to reproduce the behavior create and remove a site from authorin go to audit main menu see logs of create and delete operations expected behavior the log entry when a site is removed shoudl have the site name value in the target field screenshots log entry when site is deleted log entry when site is created notice that here we add the site name in the target field logs if applicable attach the logs stack trace use specs version studio version number snapshot build number build date time os what os did you use to produce the bug browser what browser did you use to produce the bug additional context add any other context about the problem here
1
606,321
18,759,714,115
IssuesEvent
2021-11-05 15:07:06
CenterForOpenScience/osf.io
https://api.github.com/repos/CenterForOpenScience/osf.io
closed
[production] [bug] Not all Mendeley Folders and Subfolders displaying
enhancement discuss priority - medium community JIRA
User is experiencing problems with Mendeley. In add-on configuration, not all of her folders nor all of her subfolders are displaying to be selected: "I have been having some trouble with Mendeley/OSF integration. I've synced my account and created the access token for a project, but my OSF project does not update if I create a new folder in Mendeley and some of my sub-folders do not appear properly. I've ensured that my Mendeley account is up to date and I've tried de-authorizing, deleting the access token, and setting everything up again but I still cannot solve the problem. In addition to this, I know that the account is actually connected because if I change the name of a folder that does appear, the name updates properly. Do you have any suggestions?" @lyndsysimon has investigated and believes there is a caching issue - he can likely provide more detail about a possible cause/fix.
1.0
[production] [bug] Not all Mendeley Folders and Subfolders displaying - User is experiencing problems with Mendeley. In add-on configuration, not all of her folders nor all of her subfolders are displaying to be selected: "I have been having some trouble with Mendeley/OSF integration. I've synced my account and created the access token for a project, but my OSF project does not update if I create a new folder in Mendeley and some of my sub-folders do not appear properly. I've ensured that my Mendeley account is up to date and I've tried de-authorizing, deleting the access token, and setting everything up again but I still cannot solve the problem. In addition to this, I know that the account is actually connected because if I change the name of a folder that does appear, the name updates properly. Do you have any suggestions?" @lyndsysimon has investigated and believes there is a caching issue - he can likely provide more detail about a possible cause/fix.
priority
not all mendeley folders and subfolders displaying user is experiencing problems with mendeley in add on configuration not all of her folders nor all of her subfolders are displaying to be selected i have been having some trouble with mendeley osf integration i ve synced my account and created the access token for a project but my osf project does not update if i create a new folder in mendeley and some of my sub folders do not appear properly i ve ensured that my mendeley account is up to date and i ve tried de authorizing deleting the access token and setting everything up again but i still cannot solve the problem in addition to this i know that the account is actually connected because if i change the name of a folder that does appear the name updates properly do you have any suggestions lyndsysimon has investigated and believes there is a caching issue he can likely provide more detail about a possible cause fix
1
209,701
7,178,743,851
IssuesEvent
2018-01-31 17:22:50
vmware/vic-product
https://api.github.com/repos/vmware/vic-product
closed
Integration tests for VIC-OVA config changes: Harbor
component/harbor component/ova priority/medium team/lifecycle
@lcastellano commented on [Wed Apr 12 2017](https://github.com/vmware/vic/issues/4728) User Statement: New integration tests are needed to test the new configuration options for Harbor Details: Harbor will have new configuration options (e.g.TLS configuration), that need to have integration tests. Acceptance Criteria: VIC-OVA integration tests, positive and negative test cases.
1.0
Integration tests for VIC-OVA config changes: Harbor - @lcastellano commented on [Wed Apr 12 2017](https://github.com/vmware/vic/issues/4728) User Statement: New integration tests are needed to test the new configuration options for Harbor Details: Harbor will have new configuration options (e.g.TLS configuration), that need to have integration tests. Acceptance Criteria: VIC-OVA integration tests, positive and negative test cases.
priority
integration tests for vic ova config changes harbor lcastellano commented on user statement new integration tests are needed to test the new configuration options for harbor details harbor will have new configuration options e g tls configuration that need to have integration tests acceptance criteria vic ova integration tests positive and negative test cases
1
370,767
10,948,547,121
IssuesEvent
2019-11-26 09:07:22
bounswe/bounswe2019group4
https://api.github.com/repos/bounswe/bounswe2019group4
closed
Frontend Predictions
Front-End Priority: Medium Type: Development
User can predict the trading equipment's future value. Details about endpoints can be supplied from backend team or found in api doc.
1.0
Frontend Predictions - User can predict the trading equipment's future value. Details about endpoints can be supplied from backend team or found in api doc.
priority
frontend predictions user can predict the trading equipment s future value details about endpoints can be supplied from backend team or found in api doc
1
126,433
4,995,622,730
IssuesEvent
2016-12-09 10:48:05
serverless/serverless
https://api.github.com/repos/serverless/serverless
closed
Add support for directories in url of install command
exp/medium kind/enhancement priority/P2 status/accepted
# This is a Feature Proposal ## Description It would be great to have the possibility to point to a directory when installing a service through the `install` command (rather than only supporting the URL to the whole git repository). /cc @ac360
1.0
Add support for directories in url of install command - # This is a Feature Proposal ## Description It would be great to have the possibility to point to a directory when installing a service through the `install` command (rather than only supporting the URL to the whole git repository). /cc @ac360
priority
add support for directories in url of install command this is a feature proposal description it would be great to have the possibility to point to a directory when installing a service through the install command rather than only supporting the url to the whole git repository cc
1
26,568
2,684,874,975
IssuesEvent
2015-03-29 13:24:51
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
closed
windows+left/right does not move conemu anymore between multiple monitors
2–5 stars bug imported Priority-Medium
_From [benoit.a...@gmail.com](https://code.google.com/u/111463876722869658670/) on June 06, 2013 01:50:56_ Required information! OS version: Win7 x64 ConEmu version: 130604? *Bug description* windows+left/right can be used to snap conemu on monitor sides. However it is not able to move conemu windows between monitors anymore since last version *Steps to reproduction* 1. Open conemu on left monitor 2. Press windows+right, conemu takes right half of left monitor 3. Press windows+right, conemu stays where it is instead of moving and snapping to left half of right monitor _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=1090_
1.0
windows+left/right does not move conemu anymore between multiple monitors - _From [benoit.a...@gmail.com](https://code.google.com/u/111463876722869658670/) on June 06, 2013 01:50:56_ Required information! OS version: Win7 x64 ConEmu version: 130604? *Bug description* windows+left/right can be used to snap conemu on monitor sides. However it is not able to move conemu windows between monitors anymore since last version *Steps to reproduction* 1. Open conemu on left monitor 2. Press windows+right, conemu takes right half of left monitor 3. Press windows+right, conemu stays where it is instead of moving and snapping to left half of right monitor _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=1090_
priority
windows left right does not move conemu anymore between multiple monitors from on june required information os version conemu version bug description windows left right can be used to snap conemu on monitor sides however it is not able to move conemu windows between monitors anymore since last version steps to reproduction open conemu on left monitor press windows right conemu takes right half of left monitor press windows right conemu stays where it is instead of moving and snapping to left half of right monitor original issue
1
51,119
3,010,980,542
IssuesEvent
2015-07-28 15:41:29
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
closed
Configure Travis build
Priority: Medium task
We should configure a Travis build for MapStore 2. I would also like to see its badge as well as the Coveralls one on the front-page. See [this CKAN](https://github.com/ckan/ckanext-pages) plugin for an example.
1.0
Configure Travis build - We should configure a Travis build for MapStore 2. I would also like to see its badge as well as the Coveralls one on the front-page. See [this CKAN](https://github.com/ckan/ckanext-pages) plugin for an example.
priority
configure travis build we should configure a travis build for mapstore i would also like to see its badge as well as the coveralls one on the front page see plugin for an example
1
179,291
6,623,465,179
IssuesEvent
2017-09-22 07:20:45
policyMetrics/course
https://api.github.com/repos/policyMetrics/course
closed
Graphs for Roy Lecture
pb-roy priority-medium size-XL
We need a variety of graphs to illustrate the workings of the original Roy Model. I started to draft the lecture here: https://github.com/policyMetrics/sandbox/blob/master/lectures/generalized_roy/prototype.ipynb. Please include the code for the graphs here as well.
1.0
Graphs for Roy Lecture - We need a variety of graphs to illustrate the workings of the original Roy Model. I started to draft the lecture here: https://github.com/policyMetrics/sandbox/blob/master/lectures/generalized_roy/prototype.ipynb. Please include the code for the graphs here as well.
priority
graphs for roy lecture we need a variety of graphs to illustrate the workings of the original roy model i started to draft the lecture here please include the code for the graphs here as well
1
605,321
18,733,504,865
IssuesEvent
2021-11-04 02:25:05
AY2122S1-CS2103T-W13-2/tp
https://api.github.com/repos/AY2122S1-CS2103T-W13-2/tp
closed
[PE-D] Inconsistent edit command description
priority.Medium severity.Medium docs
![Screenshot 2021-10-29 at 5.14.50 PM.png](https://raw.githubusercontent.com/s7u4rt99/ped/main/files/b7e4bd91-38a4-4a87-b865-e054b58bac46.png) ![Screenshot 2021-10-29 at 5.14.59 PM.png](https://raw.githubusercontent.com/s7u4rt99/ped/main/files/dd3abd72-4f9a-4131-b809-0a1a9ff3a685.png) As you can see, the edit command on the UG and SPAM gives very different examples. The UG says that each field has to be wrapped in "" with a space after the flag (`edit "1" -n "damith"`) but the example SPAM gave did not use "" and also did not leave any space after the flag (`edit 1 -p91234567 -ejohndoe@example.com`). Perhaps it can be clearer which to use. <!--session: 1635494539368-6e4ca0fb-c787-43c4-a16e-48a16480861f--> <!--Version: Web v3.4.1--> ------------- Labels: `type.DocumentationBug` `severity.Medium` original: s7u4rt99/ped#10
1.0
[PE-D] Inconsistent edit command description - ![Screenshot 2021-10-29 at 5.14.50 PM.png](https://raw.githubusercontent.com/s7u4rt99/ped/main/files/b7e4bd91-38a4-4a87-b865-e054b58bac46.png) ![Screenshot 2021-10-29 at 5.14.59 PM.png](https://raw.githubusercontent.com/s7u4rt99/ped/main/files/dd3abd72-4f9a-4131-b809-0a1a9ff3a685.png) As you can see, the edit command on the UG and SPAM gives very different examples. The UG says that each field has to be wrapped in "" with a space after the flag (`edit "1" -n "damith"`) but the example SPAM gave did not use "" and also did not leave any space after the flag (`edit 1 -p91234567 -ejohndoe@example.com`). Perhaps it can be clearer which to use. <!--session: 1635494539368-6e4ca0fb-c787-43c4-a16e-48a16480861f--> <!--Version: Web v3.4.1--> ------------- Labels: `type.DocumentationBug` `severity.Medium` original: s7u4rt99/ped#10
priority
inconsistent edit command description as you can see the edit command on the ug and spam gives very different examples the ug says that each field has to be wrapped in with a space after the flag edit n damith but the example spam gave did not use and also did not leave any space after the flag edit ejohndoe example com perhaps it can be clearer which to use labels type documentationbug severity medium original ped
1
272,717
8,516,518,928
IssuesEvent
2018-11-01 03:10:21
openshiftio/openshift.io
https://api.github.com/repos/openshiftio/openshift.io
closed
Notification overlaps the icon which is closing the 'work items detail' form
SEV3-medium area/notifications area/planner priority/P3 team/planner team/ui type/bug
**Reproduction Steps:** * Go to the _Plan_ section and create a work item * Select the work item for update details * Update content of the work item **Expected result:** * the notification has not to overlap the close icon **Actual result:** * the notification overlaps the icon of close the _work items details_ form * also, the timeout of closing the notification is a too long **Build**: #1064 **Additional information:** * Related to the issue #2640 * See the attachment: ![notific-close-icon](https://user-images.githubusercontent.com/5408906/37512984-46d7e794-290c-11e8-8097-4778e6172447.png)
1.0
Notification overlaps the icon which is closing the 'work items detail' form - **Reproduction Steps:** * Go to the _Plan_ section and create a work item * Select the work item for update details * Update content of the work item **Expected result:** * the notification has not to overlap the close icon **Actual result:** * the notification overlaps the icon of close the _work items details_ form * also, the timeout of closing the notification is a too long **Build**: #1064 **Additional information:** * Related to the issue #2640 * See the attachment: ![notific-close-icon](https://user-images.githubusercontent.com/5408906/37512984-46d7e794-290c-11e8-8097-4778e6172447.png)
priority
notification overlaps the icon which is closing the work items detail form reproduction steps go to the plan section and create a work item select the work item for update details update content of the work item expected result the notification has not to overlap the close icon actual result the notification overlaps the icon of close the work items details form also the timeout of closing the notification is a too long build additional information related to the issue see the attachment
1
408,054
11,941,051,434
IssuesEvent
2020-04-02 17:45:25
MarcusWolschon/osmeditor4android
https://api.github.com/repos/MarcusWolschon/osmeditor4android
closed
Add data update function a la JOSM
Enhancement Medium Priority Moderate difficulty Usability
Currently if you have edited old (as in the data may have been modified on the servers) data there is no way to update the on device data short of uploading and re-downloading.
1.0
Add data update function a la JOSM - Currently if you have edited old (as in the data may have been modified on the servers) data there is no way to update the on device data short of uploading and re-downloading.
priority
add data update function a la josm currently if you have edited old as in the data may have been modified on the servers data there is no way to update the on device data short of uploading and re downloading
1
34,240
2,776,594,843
IssuesEvent
2015-05-04 22:42:56
umutafacan/bounswe2015group3
https://api.github.com/repos/umutafacan/bounswe2015group3
reopened
Test Cases part 1
auto-migrated Priority-Medium Type-Task
``` Test cases about events ``` Original issue reported on code.google.com by `burakyil...@gmail.com` on 28 Mar 2015 at 6:36
1.0
Test Cases part 1 - ``` Test cases about events ``` Original issue reported on code.google.com by `burakyil...@gmail.com` on 28 Mar 2015 at 6:36
priority
test cases part test cases about events original issue reported on code google com by burakyil gmail com on mar at
1
489,058
14,100,402,398
IssuesEvent
2020-11-06 04:04:57
vmware/singleton
https://api.github.com/repos/vmware/singleton
opened
[BUG] Microservices with no local source bundles should be able to use "latest" source messages from VIP service
area/java-client kind/bug priority/medium
**Describe the bug** Microservices with no local source bundles should be able to use "latest" source messages from VIP service for 1. fallback when requeste dlocale is not supported 2. for when new messages are added/updated in "messages_latest.json" but not yet added/updated in messages_<default>.json. The bug is that TranslationMessage.getMessage is not able to retrieve the "latest" messages and use it as source. **To Reproduce** See new test case TranslationMessageTest.testGetMessageNoLocalSource 1. Prepare the client app in such a way that offline mode is disabled, no local source bundle is available. 2. In VIP service, make sure messages_latest.json and messages_en.json exists. 3. Add a new message in messages_latest.json 4. Call TranslationMessage.getMessage(en, component, key) for the newly added message in step 3. 5. Notice that an exception will be thrown. 1. Prepare the client app in such a way that offline mode is disabled, no local source bundle is available. 2. In VIP service, make sure messages_latest.json and messages_en.json exists. 3. Update an existing message in messages_latest.json 4. Call TranslationMessage.getMessage(en, component, key) for the updated message in step 3. 5. Notice that the older value that is in messages_en.json will be returned. **Expected behavior** TranslationMessage.getMessage should return whatever is in messages_latest.json in VIP service.
1.0
[BUG] Microservices with no local source bundles should be able to use "latest" source messages from VIP service - **Describe the bug** Microservices with no local source bundles should be able to use "latest" source messages from VIP service for 1. fallback when requeste dlocale is not supported 2. for when new messages are added/updated in "messages_latest.json" but not yet added/updated in messages_<default>.json. The bug is that TranslationMessage.getMessage is not able to retrieve the "latest" messages and use it as source. **To Reproduce** See new test case TranslationMessageTest.testGetMessageNoLocalSource 1. Prepare the client app in such a way that offline mode is disabled, no local source bundle is available. 2. In VIP service, make sure messages_latest.json and messages_en.json exists. 3. Add a new message in messages_latest.json 4. Call TranslationMessage.getMessage(en, component, key) for the newly added message in step 3. 5. Notice that an exception will be thrown. 1. Prepare the client app in such a way that offline mode is disabled, no local source bundle is available. 2. In VIP service, make sure messages_latest.json and messages_en.json exists. 3. Update an existing message in messages_latest.json 4. Call TranslationMessage.getMessage(en, component, key) for the updated message in step 3. 5. Notice that the older value that is in messages_en.json will be returned. **Expected behavior** TranslationMessage.getMessage should return whatever is in messages_latest.json in VIP service.
priority
microservices with no local source bundles should be able to use latest source messages from vip service describe the bug microservices with no local source bundles should be able to use latest source messages from vip service for fallback when requeste dlocale is not supported for when new messages are added updated in messages latest json but not yet added updated in messages json the bug is that translationmessage getmessage is not able to retrieve the latest messages and use it as source to reproduce see new test case translationmessagetest testgetmessagenolocalsource prepare the client app in such a way that offline mode is disabled no local source bundle is available in vip service make sure messages latest json and messages en json exists add a new message in messages latest json call translationmessage getmessage en component key for the newly added message in step notice that an exception will be thrown prepare the client app in such a way that offline mode is disabled no local source bundle is available in vip service make sure messages latest json and messages en json exists update an existing message in messages latest json call translationmessage getmessage en component key for the updated message in step notice that the older value that is in messages en json will be returned expected behavior translationmessage getmessage should return whatever is in messages latest json in vip service
1
409,681
11,966,716,735
IssuesEvent
2020-04-06 04:31:26
AY1920S2-CS2103T-F11-2/main
https://api.github.com/repos/AY1920S2-CS2103T-F11-2/main
closed
[PE-D] Unable to view bottom people in windowed mode
priority.Medium
![image.png](https://raw.githubusercontent.com/gb3h/ped/master/files/d0b09a44-a6ca-4ff2-9d5a-012a4aa2c406.png) Unable to scroll down on the left bar. Index in this case goes up to 7, but the seventh person is not viewable. ------------- Labels: `severity.Medium` `type.FeatureFlaw` original: gb3h/ped#1
1.0
[PE-D] Unable to view bottom people in windowed mode - ![image.png](https://raw.githubusercontent.com/gb3h/ped/master/files/d0b09a44-a6ca-4ff2-9d5a-012a4aa2c406.png) Unable to scroll down on the left bar. Index in this case goes up to 7, but the seventh person is not viewable. ------------- Labels: `severity.Medium` `type.FeatureFlaw` original: gb3h/ped#1
priority
unable to view bottom people in windowed mode unable to scroll down on the left bar index in this case goes up to but the seventh person is not viewable labels severity medium type featureflaw original ped
1
286,444
8,788,342,796
IssuesEvent
2018-12-20 21:50:03
ngageoint/hootenanny
https://api.github.com/repos/ngageoint/hootenanny
opened
Add a command line switch to turn off adding UUID's in translations
Category: Core Category: Translation Priority: Medium Status: In Progress Type: Feature in progress
Yet Another Command Line Option.
1.0
Add a command line switch to turn off adding UUID's in translations - Yet Another Command Line Option.
priority
add a command line switch to turn off adding uuid s in translations yet another command line option
1
317,444
9,665,522,067
IssuesEvent
2019-05-21 08:43:05
lunavod/ponydays
https://api.github.com/repos/lunavod/ponydays
opened
Вернуть обновление комментариев по пришествии уведомлений
Priority: Medium Status: Pending Type: Bug
При появлении новых комментариев не вызывается эвент 'socket-new-comment', запускающий обновление комментариев.
1.0
Вернуть обновление комментариев по пришествии уведомлений - При появлении новых комментариев не вызывается эвент 'socket-new-comment', запускающий обновление комментариев.
priority
вернуть обновление комментариев по пришествии уведомлений при появлении новых комментариев не вызывается эвент socket new comment запускающий обновление комментариев
1
152,063
5,832,229,002
IssuesEvent
2017-05-08 21:17:12
vmware/vic
https://api.github.com/repos/vmware/vic
closed
Create a stub swagger-generated code for the VCS List-Cluster operation
area/kubernetes priority/medium product/vcs
*User Statement* As a developer in VIC, I need to have go code that implements List-Cluster of the swagger specification of the VCS *Acceptance Criteria* a swagger auto-generated code that implements a stub list-cluster
1.0
Create a stub swagger-generated code for the VCS List-Cluster operation - *User Statement* As a developer in VIC, I need to have go code that implements List-Cluster of the swagger specification of the VCS *Acceptance Criteria* a swagger auto-generated code that implements a stub list-cluster
priority
create a stub swagger generated code for the vcs list cluster operation user statement as a developer in vic i need to have go code that implements list cluster of the swagger specification of the vcs acceptance criteria a swagger auto generated code that implements a stub list cluster
1
26,033
2,684,119,705
IssuesEvent
2015-03-28 17:33:12
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
closed
scroll
1 star bug imported Priority-Medium
_From [doba...@gmail.com](https://code.google.com/u/117852905579940879149/) on June 19, 2012 05:06:09_ Required information! OS version: Win7 SP1 x64 ConEmu version: 120618 не работает скроллинг колесом мыши вверх **Attachment:** [ConEmu-input-4628.log](http://code.google.com/p/conemu-maximus5/issues/detail?id=603) _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=603_
1.0
scroll - _From [doba...@gmail.com](https://code.google.com/u/117852905579940879149/) on June 19, 2012 05:06:09_ Required information! OS version: Win7 SP1 x64 ConEmu version: 120618 не работает скроллинг колесом мыши вверх **Attachment:** [ConEmu-input-4628.log](http://code.google.com/p/conemu-maximus5/issues/detail?id=603) _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=603_
priority
scroll from on june required information os version conemu version не работает скроллинг колесом мыши вверх attachment original issue
1
278,218
8,638,193,705
IssuesEvent
2018-11-23 13:57:54
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
closed
Allow some configuration of layers added from catalog
Priority: Medium enhancement
For example we should allow configuring: * tiling * tile size * format
1.0
Allow some configuration of layers added from catalog - For example we should allow configuring: * tiling * tile size * format
priority
allow some configuration of layers added from catalog for example we should allow configuring tiling tile size format
1
795,581
28,078,346,811
IssuesEvent
2023-03-30 02:56:33
AY2223S2-CS2103T-W15-2/tp
https://api.github.com/repos/AY2223S2-CS2103T-W15-2/tp
closed
Update DG - Implementation
type.Task priority.Medium
Add implementation details of noteworthy features under the Implementation section.
1.0
Update DG - Implementation - Add implementation details of noteworthy features under the Implementation section.
priority
update dg implementation add implementation details of noteworthy features under the implementation section
1
811,683
30,295,891,774
IssuesEvent
2023-07-09 21:09:43
VolmitSoftware/Iris
https://api.github.com/repos/VolmitSoftware/Iris
closed
100k+ entities for 80 tiles loaded (anyway very few tiles)
Bug Medium Priority
### Problem I don't really know what can i describe here beside of those entities.. Just watch the attached photo. The "world_normal' is the Iris world ![image](https://user-images.githubusercontent.com/86567732/205511989-4b0ee371-18f5-45ee-8cef-8b76bd138aec.png) ### Solution I tried MCA Selector and i filtered the chunks where are over 1k entities and this is what i found, but idk what can be there ![image](https://user-images.githubusercontent.com/86567732/205512092-00387d77-e3bc-47cf-99b0-4c848f0baa8b.png) ### Minecraft Version 1.19 ### Iris Version Iris v2.3.5-1.19.2 ### Log https://mclo.gs/r8o5dBG
1.0
100k+ entities for 80 tiles loaded (anyway very few tiles) - ### Problem I don't really know what can i describe here beside of those entities.. Just watch the attached photo. The "world_normal' is the Iris world ![image](https://user-images.githubusercontent.com/86567732/205511989-4b0ee371-18f5-45ee-8cef-8b76bd138aec.png) ### Solution I tried MCA Selector and i filtered the chunks where are over 1k entities and this is what i found, but idk what can be there ![image](https://user-images.githubusercontent.com/86567732/205512092-00387d77-e3bc-47cf-99b0-4c848f0baa8b.png) ### Minecraft Version 1.19 ### Iris Version Iris v2.3.5-1.19.2 ### Log https://mclo.gs/r8o5dBG
priority
entities for tiles loaded anyway very few tiles problem i don t really know what can i describe here beside of those entities just watch the attached photo the world normal is the iris world solution i tried mca selector and i filtered the chunks where are over entities and this is what i found but idk what can be there minecraft version iris version iris log
1
773,493
27,159,516,841
IssuesEvent
2023-02-17 10:39:57
renovatebot/renovate
https://api.github.com/repos/renovatebot/renovate
opened
Configure when release notes are fetched, defaulting to latest/laziest
type:feature priority-3-medium status:ready
### What would you like Renovate to be able to do? > Make it mandatory to configure which stage the notes are fetched at, defaulting to latest/laziest. [^quote-1] [^quote-1]: https://github.com/renovatebot/renovate/discussions/20451#discussioncomment-4998357 ### If you have any ideas on how this should be implemented, please tell us here. > Make `fetchReleaseNotes` an enum with values `off`, 'branch` or `pr`. [^quote-2] https://github.com/renovatebot/renovate/blob/0e47a1072ca4f3fa2eb1dba6a3178d93b7be2c79/lib/workers/repository/changelog/index.ts#L25-L37 Called from here: https://github.com/renovatebot/renovate/blob/0e47a1072ca4f3fa2eb1dba6a3178d93b7be2c79/lib/workers/repository/updates/branchify.ts#L75-L89 [^quote-2]: https://github.com/renovatebot/renovate/discussions/20451#discussioncomment-4998368 ### Is this a feature you are interested in implementing yourself? No
1.0
Configure when release notes are fetched, defaulting to latest/laziest - ### What would you like Renovate to be able to do? > Make it mandatory to configure which stage the notes are fetched at, defaulting to latest/laziest. [^quote-1] [^quote-1]: https://github.com/renovatebot/renovate/discussions/20451#discussioncomment-4998357 ### If you have any ideas on how this should be implemented, please tell us here. > Make `fetchReleaseNotes` an enum with values `off`, 'branch` or `pr`. [^quote-2] https://github.com/renovatebot/renovate/blob/0e47a1072ca4f3fa2eb1dba6a3178d93b7be2c79/lib/workers/repository/changelog/index.ts#L25-L37 Called from here: https://github.com/renovatebot/renovate/blob/0e47a1072ca4f3fa2eb1dba6a3178d93b7be2c79/lib/workers/repository/updates/branchify.ts#L75-L89 [^quote-2]: https://github.com/renovatebot/renovate/discussions/20451#discussioncomment-4998368 ### Is this a feature you are interested in implementing yourself? No
priority
configure when release notes are fetched defaulting to latest laziest what would you like renovate to be able to do make it mandatory to configure which stage the notes are fetched at defaulting to latest laziest if you have any ideas on how this should be implemented please tell us here make fetchreleasenotes an enum with values off branch or pr called from here is this a feature you are interested in implementing yourself no
1
374,171
11,081,307,362
IssuesEvent
2019-12-13 09:30:45
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
closed
Split MapStore2 build from Docker Image creation
Environment Internal Priority: Medium Task
Currently, Docker Image for MapStore is built right after MapStore build, as part of the same Jenkins Job. Would be nice to split this into two distinct jobs for quicker builds and separate email notifications in the event of a failure in either of the two steps
1.0
Split MapStore2 build from Docker Image creation - Currently, Docker Image for MapStore is built right after MapStore build, as part of the same Jenkins Job. Would be nice to split this into two distinct jobs for quicker builds and separate email notifications in the event of a failure in either of the two steps
priority
split build from docker image creation currently docker image for mapstore is built right after mapstore build as part of the same jenkins job would be nice to split this into two distinct jobs for quicker builds and separate email notifications in the event of a failure in either of the two steps
1
730,107
25,159,513,482
IssuesEvent
2022-11-10 15:49:06
ZTL-ARTCC/Current_Website
https://api.github.com/repos/ZTL-ARTCC/Current_Website
opened
Change tower solo cert functionality on roster edit view
medium priority
**Description** TA requests a change to the functionality of setting tower solo certs in the roster edit pages. It should be permissible for a training staff member to revoke a certification by selecting 'none' and saving the page. **Acceptance Criteria** - [ ] Changing a member's tower solo cert status from "Solo Certification" to "None" and saving results in the none status saved and reflected properly on the roster view. _Accepted By:_ **Dev Notes** **Working Branch** **PR** **QA Notes** **Deployment Notes**
1.0
Change tower solo cert functionality on roster edit view - **Description** TA requests a change to the functionality of setting tower solo certs in the roster edit pages. It should be permissible for a training staff member to revoke a certification by selecting 'none' and saving the page. **Acceptance Criteria** - [ ] Changing a member's tower solo cert status from "Solo Certification" to "None" and saving results in the none status saved and reflected properly on the roster view. _Accepted By:_ **Dev Notes** **Working Branch** **PR** **QA Notes** **Deployment Notes**
priority
change tower solo cert functionality on roster edit view description ta requests a change to the functionality of setting tower solo certs in the roster edit pages it should be permissible for a training staff member to revoke a certification by selecting none and saving the page acceptance criteria changing a member s tower solo cert status from solo certification to none and saving results in the none status saved and reflected properly on the roster view accepted by dev notes working branch pr qa notes deployment notes
1
105,818
4,242,229,657
IssuesEvent
2016-07-06 18:48:10
blacklocus/anvil
https://api.github.com/repos/blacklocus/anvil
reopened
better default display name
priority-medium
Often in practice the metric *name* is the same across many series added to the same board. Often dimensions are the only part of the metric identifier that differs. Concatenate all identifiers of a metric and then default the displayed name to portion of that string which is unique (differentiable) from all other such series identifiers (new behavior). If that produces no string, fallback to the plain *name* field (existing behavior).
1.0
better default display name - Often in practice the metric *name* is the same across many series added to the same board. Often dimensions are the only part of the metric identifier that differs. Concatenate all identifiers of a metric and then default the displayed name to portion of that string which is unique (differentiable) from all other such series identifiers (new behavior). If that produces no string, fallback to the plain *name* field (existing behavior).
priority
better default display name often in practice the metric name is the same across many series added to the same board often dimensions are the only part of the metric identifier that differs concatenate all identifiers of a metric and then default the displayed name to portion of that string which is unique differentiable from all other such series identifiers new behavior if that produces no string fallback to the plain name field existing behavior
1
66,950
3,264,467,206
IssuesEvent
2015-10-22 11:57:12
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
opened
Add builtin-roots option to SecurityContext constructor
Library-IO Priority-Medium Type-Enhancement
We should expose a way to construct new SecurityContext objects that contain the built-in CA roots that SecurityContext.defaultContext contains. If people want to modify this context, they should be able to create a new one which can be modified independently of the global one. Adding client certificates is an example of a modification people would want to do to this context.
1.0
Add builtin-roots option to SecurityContext constructor - We should expose a way to construct new SecurityContext objects that contain the built-in CA roots that SecurityContext.defaultContext contains. If people want to modify this context, they should be able to create a new one which can be modified independently of the global one. Adding client certificates is an example of a modification people would want to do to this context.
priority
add builtin roots option to securitycontext constructor we should expose a way to construct new securitycontext objects that contain the built in ca roots that securitycontext defaultcontext contains if people want to modify this context they should be able to create a new one which can be modified independently of the global one adding client certificates is an example of a modification people would want to do to this context
1
398,575
11,741,890,506
IssuesEvent
2020-03-11 22:57:24
thaliawww/concrexit
https://api.github.com/repos/thaliawww/concrexit
closed
Maak commissies waarvan lidmaatschap permanent is mogelijk.
priority: medium
In GitLab by @lscholten on Jan 11, 2017, 21:41 Komt voort uit discussie in #280 Copy-paste van discussie: >**Luuk**: Alle oud-bestuur mailinglijsten zijn leeg >**Joost**: Ik vind het semantisch gek om een lidmaatschap van zo'n groep te laten verlopen; je bent nu immers ook nog altijd bestuur1314. Een zelfde argument geldt voor mentoren'11, lijkt me. > **Luuk**: Daar ben ik het denk ik wel mee eens. Misschien is het handig om een flag toe te voegen aan commissies dat het een 'tot in het einde der tijden' commissie is. Dit kan wat applicatielogica makkelijker maken, zoals afdwingen dat die lidmaatschappen nooit mogen verlopen etc. Ook voor displayen in je profiel is dat misschien nuttig > **Joost**: Dat klinkt zinvol inderdaad. Op dit moment behandelen we die mentorgroepen al 'bijzonder' op de profielen, maar besturen niet (terwijl dat eigenlijk ook wel logisch is om te doen, lijkt me). Het concept 'tot in het einde der tijden'-commissie lijkt me daar een mooie generalisatie van, en het toevoegen van een boolean of een commissie zo'n commissie is lijkt de meest eenvoudige manier om dat te realiseren (ipv een complex inheritance-ding met onvoorziene gevolgen).
1.0
Maak commissies waarvan lidmaatschap permanent is mogelijk. - In GitLab by @lscholten on Jan 11, 2017, 21:41 Komt voort uit discussie in #280 Copy-paste van discussie: >**Luuk**: Alle oud-bestuur mailinglijsten zijn leeg >**Joost**: Ik vind het semantisch gek om een lidmaatschap van zo'n groep te laten verlopen; je bent nu immers ook nog altijd bestuur1314. Een zelfde argument geldt voor mentoren'11, lijkt me. > **Luuk**: Daar ben ik het denk ik wel mee eens. Misschien is het handig om een flag toe te voegen aan commissies dat het een 'tot in het einde der tijden' commissie is. Dit kan wat applicatielogica makkelijker maken, zoals afdwingen dat die lidmaatschappen nooit mogen verlopen etc. Ook voor displayen in je profiel is dat misschien nuttig > **Joost**: Dat klinkt zinvol inderdaad. Op dit moment behandelen we die mentorgroepen al 'bijzonder' op de profielen, maar besturen niet (terwijl dat eigenlijk ook wel logisch is om te doen, lijkt me). Het concept 'tot in het einde der tijden'-commissie lijkt me daar een mooie generalisatie van, en het toevoegen van een boolean of een commissie zo'n commissie is lijkt de meest eenvoudige manier om dat te realiseren (ipv een complex inheritance-ding met onvoorziene gevolgen).
priority
maak commissies waarvan lidmaatschap permanent is mogelijk in gitlab by lscholten on jan komt voort uit discussie in copy paste van discussie luuk alle oud bestuur mailinglijsten zijn leeg joost ik vind het semantisch gek om een lidmaatschap van zo n groep te laten verlopen je bent nu immers ook nog altijd een zelfde argument geldt voor mentoren lijkt me luuk daar ben ik het denk ik wel mee eens misschien is het handig om een flag toe te voegen aan commissies dat het een tot in het einde der tijden commissie is dit kan wat applicatielogica makkelijker maken zoals afdwingen dat die lidmaatschappen nooit mogen verlopen etc ook voor displayen in je profiel is dat misschien nuttig joost dat klinkt zinvol inderdaad op dit moment behandelen we die mentorgroepen al bijzonder op de profielen maar besturen niet terwijl dat eigenlijk ook wel logisch is om te doen lijkt me het concept tot in het einde der tijden commissie lijkt me daar een mooie generalisatie van en het toevoegen van een boolean of een commissie zo n commissie is lijkt de meest eenvoudige manier om dat te realiseren ipv een complex inheritance ding met onvoorziene gevolgen
1
333,359
10,120,903,757
IssuesEvent
2019-07-31 14:37:10
open62541/open62541
https://api.github.com/repos/open62541/open62541
closed
Cannot add more than one reference (different types) between two objects
Component: Core Priority: Medium Status: Has PR Type: Bug
## Description I create two different NonHierarchical reference types `ref1Type` and `ref2Type`, then I create two object instances `obj1` and `obj2`. I add both references types from `obj1` to `obj2`, only the first one works: ``` obj1 ----- ref1Type ----> obj2 obj1 ----- ref2Type ----> obj2 ``` The result from `UA_Server_addReference` succeeds in both cases, but in UAExpert, only the first one added is visible. Also when using the server's browse service, it fails to find the second reference. Furthermore, if try to add again the second one, it claims to be repeated. I attach code to reproduce. ## Background Information / Reproduction Steps ```c #include <assert.h> #include <signal.h> #include "open62541.h" static UA_NodeId findReference(const UA_NodeId sourceId, const UA_NodeId refTypeId, const bool isForward, UA_Server * server) { UA_NodeId outNodeId = UA_NODEID_NULL; // make ua browse UA_BrowseDescription * bDesc = UA_BrowseDescription_new(); UA_NodeId_copy(&sourceId, &bDesc->nodeId); bDesc->browseDirection = isForward ? UA_BROWSEDIRECTION_FORWARD : UA_BROWSEDIRECTION_INVERSE; bDesc->includeSubtypes = true; bDesc->resultMask = UA_BROWSERESULTMASK_REFERENCETYPEID; // browse UA_BrowseResult bRes = UA_Server_browse(server, 0, bDesc); assert(bRes.statusCode == UA_STATUSCODE_GOOD); while (bRes.referencesSize > 0) { for (size_t i = 0; i < bRes.referencesSize; i++) { UA_ReferenceDescription rDesc = bRes.references[i]; if (UA_NodeId_equal(&rDesc.referenceTypeId, &refTypeId)) { outNodeId = rDesc.nodeId.nodeId; break; } } UA_BrowseResult_deleteMembers(&bRes); bRes = UA_Server_browseNext(server, true, &bRes.continuationPoint); } // cleanup UA_BrowseDescription_deleteMembers(bDesc); UA_BrowseDescription_delete(bDesc); UA_BrowseResult_deleteMembers(&bRes); // return return outNodeId; } static UA_NodeId registerRefType(const char * forwName, const char * invName, UA_Server * server) { UA_NodeId outNodeId; UA_QualifiedName browseName; browseName.namespaceIndex = 1; browseName.name = UA_STRING_ALLOC(forwName); // setup new ref type attributes UA_ReferenceTypeAttributes refattr = UA_ReferenceTypeAttributes_default; refattr.displayName = UA_LOCALIZEDTEXT((char*)(""), forwName); refattr.inverseName = UA_LOCALIZEDTEXT((char*)(""), invName ); UA_StatusCode st = UA_Server_addReferenceTypeNode( server, UA_NODEID_NULL, UA_NODEID_NUMERIC(0, UA_NS0ID_NONHIERARCHICALREFERENCES), UA_NODEID_NUMERIC(0, UA_NS0ID_HASSUBTYPE), browseName, refattr, NULL, &outNodeId ); assert(st == UA_STATUSCODE_GOOD); // clean up UA_QualifiedName_clear(&browseName); return outNodeId; } static UA_NodeId addObjInstance(const UA_NodeId parentNodeId, const char * dispName, UA_Server * server) { UA_NodeId outNodeId; UA_ObjectAttributes oAttr = UA_ObjectAttributes_default; oAttr.displayName = UA_LOCALIZEDTEXT("en-US", dispName); // add variable UA_QualifiedName browseName; browseName.namespaceIndex = 1; browseName.name = UA_STRING_ALLOC(dispName); // add instance UA_StatusCode st = UA_Server_addObjectNode(server, UA_NODEID_NULL, // reuested nodeid parentNodeId, // parent UA_NODEID_NUMERIC(0, UA_NS0ID_HASCOMPONENT), // parent relation with child browseName, UA_NODEID_NUMERIC(0, UA_NS0ID_BASEOBJECTTYPE), // type oAttr, (void*)"MyObjectInstance", // context &outNodeId); // new variable instance id assert(st == UA_STATUSCODE_GOOD); return outNodeId; } UA_Boolean running = true; static void stopHandler(int sign) { UA_LOG_INFO(UA_Log_Stdout, UA_LOGCATEGORY_SERVER, "received ctrl-c"); running = false; } int main(void) { UA_Server *server = UA_Server_new(); UA_ServerConfig_setDefault(UA_Server_getConfig(server)); UA_NodeId objectsNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER); // create two different reference types UA_NodeId ref1TypeId = registerRefType("HasRef1", "IsRefOf1", server); UA_NodeId ref2TypeId = registerRefType("HasRef2", "IsRefOf2", server); // create two different object instances UA_NodeId sourceId = addObjInstance(objectsNodeId, "obj1", server); UA_NodeId targetId = addObjInstance(objectsNodeId, "obj2", server); // connect them twice, one time per reference type UA_ExpandedNodeId targetExpId; targetExpId.nodeId = targetId; targetExpId.namespaceUri = UA_STRING_NULL; targetExpId.serverIndex = 0; UA_StatusCode st; st = UA_Server_addReference(server, sourceId, ref1TypeId, targetExpId, true); assert(st == UA_STATUSCODE_GOOD); st = UA_Server_addReference(server, sourceId, ref2TypeId, targetExpId, true); assert(st == UA_STATUSCODE_GOOD); // check references where added UA_NodeId targetCheckId; targetCheckId = findReference(sourceId, ref1TypeId, true, server); assert(UA_NodeId_equal(&targetCheckId, &targetId)); // BELOW FAILS ! targetCheckId = findReference(sourceId, ref2TypeId, true, server); assert(UA_NodeId_equal(&targetCheckId, &targetId)); // ALSO FAILS, CLAIMING TO BE REPEATED ! st = UA_Server_addReference(server, sourceId, ref2TypeId, targetExpId, true); assert(st == UA_STATUSCODE_GOOD); UA_StatusCode retval = UA_Server_run(server, &running); UA_Server_delete(server); return (int)retval; } ``` ## Checklist Please provide the following information: - [x] open62541 Version (release number or git tag): master - [x] Operating system: Windows - [x] Self-contained code example attached - [x] Critical issue
1.0
Cannot add more than one reference (different types) between two objects - ## Description I create two different NonHierarchical reference types `ref1Type` and `ref2Type`, then I create two object instances `obj1` and `obj2`. I add both references types from `obj1` to `obj2`, only the first one works: ``` obj1 ----- ref1Type ----> obj2 obj1 ----- ref2Type ----> obj2 ``` The result from `UA_Server_addReference` succeeds in both cases, but in UAExpert, only the first one added is visible. Also when using the server's browse service, it fails to find the second reference. Furthermore, if try to add again the second one, it claims to be repeated. I attach code to reproduce. ## Background Information / Reproduction Steps ```c #include <assert.h> #include <signal.h> #include "open62541.h" static UA_NodeId findReference(const UA_NodeId sourceId, const UA_NodeId refTypeId, const bool isForward, UA_Server * server) { UA_NodeId outNodeId = UA_NODEID_NULL; // make ua browse UA_BrowseDescription * bDesc = UA_BrowseDescription_new(); UA_NodeId_copy(&sourceId, &bDesc->nodeId); bDesc->browseDirection = isForward ? UA_BROWSEDIRECTION_FORWARD : UA_BROWSEDIRECTION_INVERSE; bDesc->includeSubtypes = true; bDesc->resultMask = UA_BROWSERESULTMASK_REFERENCETYPEID; // browse UA_BrowseResult bRes = UA_Server_browse(server, 0, bDesc); assert(bRes.statusCode == UA_STATUSCODE_GOOD); while (bRes.referencesSize > 0) { for (size_t i = 0; i < bRes.referencesSize; i++) { UA_ReferenceDescription rDesc = bRes.references[i]; if (UA_NodeId_equal(&rDesc.referenceTypeId, &refTypeId)) { outNodeId = rDesc.nodeId.nodeId; break; } } UA_BrowseResult_deleteMembers(&bRes); bRes = UA_Server_browseNext(server, true, &bRes.continuationPoint); } // cleanup UA_BrowseDescription_deleteMembers(bDesc); UA_BrowseDescription_delete(bDesc); UA_BrowseResult_deleteMembers(&bRes); // return return outNodeId; } static UA_NodeId registerRefType(const char * forwName, const char * invName, UA_Server * server) { UA_NodeId outNodeId; UA_QualifiedName browseName; browseName.namespaceIndex = 1; browseName.name = UA_STRING_ALLOC(forwName); // setup new ref type attributes UA_ReferenceTypeAttributes refattr = UA_ReferenceTypeAttributes_default; refattr.displayName = UA_LOCALIZEDTEXT((char*)(""), forwName); refattr.inverseName = UA_LOCALIZEDTEXT((char*)(""), invName ); UA_StatusCode st = UA_Server_addReferenceTypeNode( server, UA_NODEID_NULL, UA_NODEID_NUMERIC(0, UA_NS0ID_NONHIERARCHICALREFERENCES), UA_NODEID_NUMERIC(0, UA_NS0ID_HASSUBTYPE), browseName, refattr, NULL, &outNodeId ); assert(st == UA_STATUSCODE_GOOD); // clean up UA_QualifiedName_clear(&browseName); return outNodeId; } static UA_NodeId addObjInstance(const UA_NodeId parentNodeId, const char * dispName, UA_Server * server) { UA_NodeId outNodeId; UA_ObjectAttributes oAttr = UA_ObjectAttributes_default; oAttr.displayName = UA_LOCALIZEDTEXT("en-US", dispName); // add variable UA_QualifiedName browseName; browseName.namespaceIndex = 1; browseName.name = UA_STRING_ALLOC(dispName); // add instance UA_StatusCode st = UA_Server_addObjectNode(server, UA_NODEID_NULL, // reuested nodeid parentNodeId, // parent UA_NODEID_NUMERIC(0, UA_NS0ID_HASCOMPONENT), // parent relation with child browseName, UA_NODEID_NUMERIC(0, UA_NS0ID_BASEOBJECTTYPE), // type oAttr, (void*)"MyObjectInstance", // context &outNodeId); // new variable instance id assert(st == UA_STATUSCODE_GOOD); return outNodeId; } UA_Boolean running = true; static void stopHandler(int sign) { UA_LOG_INFO(UA_Log_Stdout, UA_LOGCATEGORY_SERVER, "received ctrl-c"); running = false; } int main(void) { UA_Server *server = UA_Server_new(); UA_ServerConfig_setDefault(UA_Server_getConfig(server)); UA_NodeId objectsNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER); // create two different reference types UA_NodeId ref1TypeId = registerRefType("HasRef1", "IsRefOf1", server); UA_NodeId ref2TypeId = registerRefType("HasRef2", "IsRefOf2", server); // create two different object instances UA_NodeId sourceId = addObjInstance(objectsNodeId, "obj1", server); UA_NodeId targetId = addObjInstance(objectsNodeId, "obj2", server); // connect them twice, one time per reference type UA_ExpandedNodeId targetExpId; targetExpId.nodeId = targetId; targetExpId.namespaceUri = UA_STRING_NULL; targetExpId.serverIndex = 0; UA_StatusCode st; st = UA_Server_addReference(server, sourceId, ref1TypeId, targetExpId, true); assert(st == UA_STATUSCODE_GOOD); st = UA_Server_addReference(server, sourceId, ref2TypeId, targetExpId, true); assert(st == UA_STATUSCODE_GOOD); // check references where added UA_NodeId targetCheckId; targetCheckId = findReference(sourceId, ref1TypeId, true, server); assert(UA_NodeId_equal(&targetCheckId, &targetId)); // BELOW FAILS ! targetCheckId = findReference(sourceId, ref2TypeId, true, server); assert(UA_NodeId_equal(&targetCheckId, &targetId)); // ALSO FAILS, CLAIMING TO BE REPEATED ! st = UA_Server_addReference(server, sourceId, ref2TypeId, targetExpId, true); assert(st == UA_STATUSCODE_GOOD); UA_StatusCode retval = UA_Server_run(server, &running); UA_Server_delete(server); return (int)retval; } ``` ## Checklist Please provide the following information: - [x] open62541 Version (release number or git tag): master - [x] Operating system: Windows - [x] Self-contained code example attached - [x] Critical issue
priority
cannot add more than one reference different types between two objects description i create two different nonhierarchical reference types and then i create two object instances and i add both references types from to only the first one works the result from ua server addreference succeeds in both cases but in uaexpert only the first one added is visible also when using the server s browse service it fails to find the second reference furthermore if try to add again the second one it claims to be repeated i attach code to reproduce background information reproduction steps c include include include h static ua nodeid findreference const ua nodeid sourceid const ua nodeid reftypeid const bool isforward ua server server ua nodeid outnodeid ua nodeid null make ua browse ua browsedescription bdesc ua browsedescription new ua nodeid copy sourceid bdesc nodeid bdesc browsedirection isforward ua browsedirection forward ua browsedirection inverse bdesc includesubtypes true bdesc resultmask ua browseresultmask referencetypeid browse ua browseresult bres ua server browse server bdesc assert bres statuscode ua statuscode good while bres referencessize for size t i i bres referencessize i ua referencedescription rdesc bres references if ua nodeid equal rdesc referencetypeid reftypeid outnodeid rdesc nodeid nodeid break ua browseresult deletemembers bres bres ua server browsenext server true bres continuationpoint cleanup ua browsedescription deletemembers bdesc ua browsedescription delete bdesc ua browseresult deletemembers bres return return outnodeid static ua nodeid registerreftype const char forwname const char invname ua server server ua nodeid outnodeid ua qualifiedname browsename browsename namespaceindex browsename name ua string alloc forwname setup new ref type attributes ua referencetypeattributes refattr ua referencetypeattributes default refattr displayname ua localizedtext char forwname refattr inversename ua localizedtext char invname ua statuscode st ua server addreferencetypenode server ua nodeid null ua nodeid numeric ua nonhierarchicalreferences ua nodeid numeric ua hassubtype browsename refattr null outnodeid assert st ua statuscode good clean up ua qualifiedname clear browsename return outnodeid static ua nodeid addobjinstance const ua nodeid parentnodeid const char dispname ua server server ua nodeid outnodeid ua objectattributes oattr ua objectattributes default oattr displayname ua localizedtext en us dispname add variable ua qualifiedname browsename browsename namespaceindex browsename name ua string alloc dispname add instance ua statuscode st ua server addobjectnode server ua nodeid null reuested nodeid parentnodeid parent ua nodeid numeric ua hascomponent parent relation with child browsename ua nodeid numeric ua baseobjecttype type oattr void myobjectinstance context outnodeid new variable instance id assert st ua statuscode good return outnodeid ua boolean running true static void stophandler int sign ua log info ua log stdout ua logcategory server received ctrl c running false int main void ua server server ua server new ua serverconfig setdefault ua server getconfig server ua nodeid objectsnodeid ua nodeid numeric ua objectsfolder create two different reference types ua nodeid registerreftype server ua nodeid registerreftype server create two different object instances ua nodeid sourceid addobjinstance objectsnodeid server ua nodeid targetid addobjinstance objectsnodeid server connect them twice one time per reference type ua expandednodeid targetexpid targetexpid nodeid targetid targetexpid namespaceuri ua string null targetexpid serverindex ua statuscode st st ua server addreference server sourceid targetexpid true assert st ua statuscode good st ua server addreference server sourceid targetexpid true assert st ua statuscode good check references where added ua nodeid targetcheckid targetcheckid findreference sourceid true server assert ua nodeid equal targetcheckid targetid below fails targetcheckid findreference sourceid true server assert ua nodeid equal targetcheckid targetid also fails claiming to be repeated st ua server addreference server sourceid targetexpid true assert st ua statuscode good ua statuscode retval ua server run server running ua server delete server return int retval checklist please provide the following information version release number or git tag master operating system windows self contained code example attached critical issue
1
270,279
8,453,944,185
IssuesEvent
2018-10-20 20:37:33
LetsEatCo/API
https://api.github.com/repos/LetsEatCo/API
opened
✨Delete Product
priority: medium 🚧 scope: api scope: routing status: accepted 👍 type: feature ✨
**Is your feature request related to a problem ? Please describe.** Stores cannot delete one of their product **Describe the solution you'd like** Implement a **DELETE** /stores/me/products/:uuid, **Describe alternatives you've considered** None **Additional context** None
1.0
✨Delete Product - **Is your feature request related to a problem ? Please describe.** Stores cannot delete one of their product **Describe the solution you'd like** Implement a **DELETE** /stores/me/products/:uuid, **Describe alternatives you've considered** None **Additional context** None
priority
✨delete product is your feature request related to a problem please describe stores cannot delete one of their product describe the solution you d like implement a delete stores me products uuid describe alternatives you ve considered none additional context none
1
437,277
12,566,571,465
IssuesEvent
2020-06-08 11:27:53
GilesStrong/lumin
https://api.github.com/repos/GilesStrong/lumin
opened
Change HEPAugFoldYielder to callback?
disruptive improvement investigation medium priority
## Current status `HEPAugFoldYielder` applied train-time and test-time data augmentaitons to HEP data (phi rotations, transverse & longitudinal flips). This is performed when loading the data since originally, this was the last point at which the feature names for the data were known to the model. Later changes to LUMIN, now mean that the model has a list of named features and how they map to the input features. This means that instead the data augmentation could be performed by a callback during training (similar to the suggestion of issue #68). ## Discussion It seems a bit strange that the choice of whether or not to augment the data is made by changing how the data is loaded from file. Specifying the choice as a callback make a bit more sense (to me). This also avoids complications once addition forms of augmentation are added, which may otherwise require their own`FoldYielder` classes, and we must then account for all possible combinations of different types of augmentation. Depending on the choices made in issue #50, this may reduce the efficiency of augmentation, but it's possible that augmenting the data inplace on device may actually be more efficient by since it could be done multithreaded. This would perhaps avoid the need to augment as a `pandas.DataFrame`, and maybe pre-cached rotation matrices could be used, in some part, to speed things up. Since the data is already on device, this would actually be quicker than loaded from disc, augmenting, and then loading to device; this is known to cause particular slow-down when working on GPU ## Possible change The callback would need to mimic the behaviour of `HEPAugFoldYielder`, i.e. provide random augmentation during training, and a choice of either set transformations during testing or random ones. It would need to be passed as a callback during training and prediction. Additionally, tests should be done to compare the speed and memory usage of the callback to `HEPAugFoldYielder`. If successful, this would depreciate `HEPAugFoldYielder`.
1.0
Change HEPAugFoldYielder to callback? - ## Current status `HEPAugFoldYielder` applied train-time and test-time data augmentaitons to HEP data (phi rotations, transverse & longitudinal flips). This is performed when loading the data since originally, this was the last point at which the feature names for the data were known to the model. Later changes to LUMIN, now mean that the model has a list of named features and how they map to the input features. This means that instead the data augmentation could be performed by a callback during training (similar to the suggestion of issue #68). ## Discussion It seems a bit strange that the choice of whether or not to augment the data is made by changing how the data is loaded from file. Specifying the choice as a callback make a bit more sense (to me). This also avoids complications once addition forms of augmentation are added, which may otherwise require their own`FoldYielder` classes, and we must then account for all possible combinations of different types of augmentation. Depending on the choices made in issue #50, this may reduce the efficiency of augmentation, but it's possible that augmenting the data inplace on device may actually be more efficient by since it could be done multithreaded. This would perhaps avoid the need to augment as a `pandas.DataFrame`, and maybe pre-cached rotation matrices could be used, in some part, to speed things up. Since the data is already on device, this would actually be quicker than loaded from disc, augmenting, and then loading to device; this is known to cause particular slow-down when working on GPU ## Possible change The callback would need to mimic the behaviour of `HEPAugFoldYielder`, i.e. provide random augmentation during training, and a choice of either set transformations during testing or random ones. It would need to be passed as a callback during training and prediction. Additionally, tests should be done to compare the speed and memory usage of the callback to `HEPAugFoldYielder`. If successful, this would depreciate `HEPAugFoldYielder`.
priority
change hepaugfoldyielder to callback current status hepaugfoldyielder applied train time and test time data augmentaitons to hep data phi rotations transverse longitudinal flips this is performed when loading the data since originally this was the last point at which the feature names for the data were known to the model later changes to lumin now mean that the model has a list of named features and how they map to the input features this means that instead the data augmentation could be performed by a callback during training similar to the suggestion of issue discussion it seems a bit strange that the choice of whether or not to augment the data is made by changing how the data is loaded from file specifying the choice as a callback make a bit more sense to me this also avoids complications once addition forms of augmentation are added which may otherwise require their own foldyielder classes and we must then account for all possible combinations of different types of augmentation depending on the choices made in issue this may reduce the efficiency of augmentation but it s possible that augmenting the data inplace on device may actually be more efficient by since it could be done multithreaded this would perhaps avoid the need to augment as a pandas dataframe and maybe pre cached rotation matrices could be used in some part to speed things up since the data is already on device this would actually be quicker than loaded from disc augmenting and then loading to device this is known to cause particular slow down when working on gpu possible change the callback would need to mimic the behaviour of hepaugfoldyielder i e provide random augmentation during training and a choice of either set transformations during testing or random ones it would need to be passed as a callback during training and prediction additionally tests should be done to compare the speed and memory usage of the callback to hepaugfoldyielder if successful this would depreciate hepaugfoldyielder
1
450,432
13,004,036,248
IssuesEvent
2020-07-24 08:08:36
OpenMined/KotlinSyft
https://api.github.com/repos/OpenMined/KotlinSyft
closed
Namespace static FL routes
Priority: 3 - Medium :unamused: Severity: 1 - Critical :fire: Status: Available :wave: Type: Improvement :chart_with_upwards_trend:
## What? Please, add prefix `/model_centric` to all the requests to grid. You can also get rid of the unnecessary `/federated` for all endpoints that have it as part of the url. Part of an effort to namespace static and dynamic API routes in PyGrid. #https://github.com/OpenMined/PyGrid/issues/600 Reference to PyGrid PR: https://github.com/OpenMined/PyGrid/pull/622
1.0
Namespace static FL routes - ## What? Please, add prefix `/model_centric` to all the requests to grid. You can also get rid of the unnecessary `/federated` for all endpoints that have it as part of the url. Part of an effort to namespace static and dynamic API routes in PyGrid. #https://github.com/OpenMined/PyGrid/issues/600 Reference to PyGrid PR: https://github.com/OpenMined/PyGrid/pull/622
priority
namespace static fl routes what please add prefix model centric to all the requests to grid you can also get rid of the unnecessary federated for all endpoints that have it as part of the url part of an effort to namespace static and dynamic api routes in pygrid reference to pygrid pr
1
326,743
9,960,554,714
IssuesEvent
2019-07-06 17:40:58
carbon-design-system/carbon
https://api.github.com/repos/carbon-design-system/carbon
closed
Multi-select filter dropdown - allow for disabled options
inactive priority: medium type: enhancement 💡
Use this template if you want to request a new feature, or a change to an existing feature. If you are reporting a bug or problem, please use the bug template instead. ### Summary I'm from the IBM Security design team and we have a use case for needing to be able to show disabled options in the dropdown. This is currently not built into the component. ### Justification We're using this component to search for and add items to a table. If an item a user is wanting to add happens to already be in the paginated table but is not visible on the first page, they need to be able to see that item when they search for it in the filterable dropdown but not select it. ![image](https://user-images.githubusercontent.com/10590403/58718459-2ecb0900-8393-11e9-8eb1-5671057f5c21.png) ### "Must have" functionality Allow for options in the dropdown to be disabled ### Specific timeline issues / requests The development team is currently working on the story that uses this component. _NB: The Carbon team will try to work with your timeline, but it's not guaranteed. The earlier you make a request in advance of a desired delivery date, the better!_ ### Available extra resources What resources do you have to assist this effort? _Carbon is a collaborative system. We encourage teams to build components and submit them for integration as either add-ons or core components._
1.0
Multi-select filter dropdown - allow for disabled options - Use this template if you want to request a new feature, or a change to an existing feature. If you are reporting a bug or problem, please use the bug template instead. ### Summary I'm from the IBM Security design team and we have a use case for needing to be able to show disabled options in the dropdown. This is currently not built into the component. ### Justification We're using this component to search for and add items to a table. If an item a user is wanting to add happens to already be in the paginated table but is not visible on the first page, they need to be able to see that item when they search for it in the filterable dropdown but not select it. ![image](https://user-images.githubusercontent.com/10590403/58718459-2ecb0900-8393-11e9-8eb1-5671057f5c21.png) ### "Must have" functionality Allow for options in the dropdown to be disabled ### Specific timeline issues / requests The development team is currently working on the story that uses this component. _NB: The Carbon team will try to work with your timeline, but it's not guaranteed. The earlier you make a request in advance of a desired delivery date, the better!_ ### Available extra resources What resources do you have to assist this effort? _Carbon is a collaborative system. We encourage teams to build components and submit them for integration as either add-ons or core components._
priority
multi select filter dropdown allow for disabled options use this template if you want to request a new feature or a change to an existing feature if you are reporting a bug or problem please use the bug template instead summary i m from the ibm security design team and we have a use case for needing to be able to show disabled options in the dropdown this is currently not built into the component justification we re using this component to search for and add items to a table if an item a user is wanting to add happens to already be in the paginated table but is not visible on the first page they need to be able to see that item when they search for it in the filterable dropdown but not select it must have functionality allow for options in the dropdown to be disabled specific timeline issues requests the development team is currently working on the story that uses this component nb the carbon team will try to work with your timeline but it s not guaranteed the earlier you make a request in advance of a desired delivery date the better available extra resources what resources do you have to assist this effort carbon is a collaborative system we encourage teams to build components and submit them for integration as either add ons or core components
1
27,822
2,696,429,156
IssuesEvent
2015-04-02 14:04:31
cs2103jan2015-f13-2j/main
https://api.github.com/repos/cs2103jan2015-f13-2j/main
closed
fileIO to store history of latest CRUD commands
issue.discussion priority.medium type.task
two ways to design our history storage. 1) store all past 10 commands in memory advantage : reduce I/O disadvantage : when program closed, command history is gone 2) store all past 10 commands in file advantage : able to load up command history after closing disadvantage : have to keep track of history file and perform I/O
1.0
fileIO to store history of latest CRUD commands - two ways to design our history storage. 1) store all past 10 commands in memory advantage : reduce I/O disadvantage : when program closed, command history is gone 2) store all past 10 commands in file advantage : able to load up command history after closing disadvantage : have to keep track of history file and perform I/O
priority
fileio to store history of latest crud commands two ways to design our history storage store all past commands in memory advantage reduce i o disadvantage when program closed command history is gone store all past commands in file advantage able to load up command history after closing disadvantage have to keep track of history file and perform i o
1
187,448
6,757,564,895
IssuesEvent
2017-10-24 11:18:07
RMUASD-Team1-2017/RMUASD
https://api.github.com/repos/RMUASD-Team1-2017/RMUASD
closed
Edit the load landing spot node in order to load the rallypoint file from QGroundControl.
Priority Medium
Change the loadLandingspot function in the path_planner in order to load the rally points file extracted from QGroundControl. JSON lib: https://github.com/nlohmann/json
1.0
Edit the load landing spot node in order to load the rallypoint file from QGroundControl. - Change the loadLandingspot function in the path_planner in order to load the rally points file extracted from QGroundControl. JSON lib: https://github.com/nlohmann/json
priority
edit the load landing spot node in order to load the rallypoint file from qgroundcontrol change the loadlandingspot function in the path planner in order to load the rally points file extracted from qgroundcontrol json lib
1
148,511
5,683,828,883
IssuesEvent
2017-04-13 13:42:10
diamm/diamm
https://api.github.com/repos/diamm/diamm
opened
Switch API output to JSON-LD
Component: Metadata Component: Web Application Priority: Medium Status: Waiting to be addressed Type: Enhancement
To-do: - [ ] `url` => `@id` - [ ] `@context` needs to be defined - [ ] DIAMM types (`https://www.diamm.ac.uk/Schema/[TYPE]`?) should be defined: -- [ ] Source -- [ ] Item -- [ ] Composition -- [ ] Person -- [ ] Image -- [ ] GeographicArea -- [ ] Archive -- [ ] Organization
1.0
Switch API output to JSON-LD - To-do: - [ ] `url` => `@id` - [ ] `@context` needs to be defined - [ ] DIAMM types (`https://www.diamm.ac.uk/Schema/[TYPE]`?) should be defined: -- [ ] Source -- [ ] Item -- [ ] Composition -- [ ] Person -- [ ] Image -- [ ] GeographicArea -- [ ] Archive -- [ ] Organization
priority
switch api output to json ld to do url id context needs to be defined diamm types should be defined source item composition person image geographicarea archive organization
1
264,816
8,319,888,385
IssuesEvent
2018-09-25 18:31:23
poanetwork/blockscout
https://api.github.com/repos/poanetwork/blockscout
closed
Duplication of the code that defines tabs in the Token page
enhancement in progress priority: medium team: developer
Related to https://github.com/poanetwork/blockscout/issues/706. As a developer, I want to have the code that creates the links to the tabs in the Token page in a single partial, so I can just load it in new tabs and update it in only one place when needed. This will make both working on existing tabs of the Token page and creating new features easier and faster. ### Tasks - [x] Token page; - [x] Move the tabs definition to a partial; - [x] Remove the tabs definition code; - [x] Load the tabs definition partial; - [x] Create a function to highlight the correct tab as active.
1.0
Duplication of the code that defines tabs in the Token page - Related to https://github.com/poanetwork/blockscout/issues/706. As a developer, I want to have the code that creates the links to the tabs in the Token page in a single partial, so I can just load it in new tabs and update it in only one place when needed. This will make both working on existing tabs of the Token page and creating new features easier and faster. ### Tasks - [x] Token page; - [x] Move the tabs definition to a partial; - [x] Remove the tabs definition code; - [x] Load the tabs definition partial; - [x] Create a function to highlight the correct tab as active.
priority
duplication of the code that defines tabs in the token page related to as a developer i want to have the code that creates the links to the tabs in the token page in a single partial so i can just load it in new tabs and update it in only one place when needed this will make both working on existing tabs of the token page and creating new features easier and faster tasks token page move the tabs definition to a partial remove the tabs definition code load the tabs definition partial create a function to highlight the correct tab as active
1
647,317
21,098,633,799
IssuesEvent
2022-04-04 12:45:01
ibissource/frank-flow
https://api.github.com/repos/ibissource/frank-flow
opened
Hide palette when the file doesn't contain a Flow.
feature priority:medium work:light
**Is your feature request related to a problem? Please describe.** Items can be added to a non-flow file. **Describe the solution you'd like** Hide palette. **Describe alternatives you've considered** Block palette. **Additional context** #449
1.0
Hide palette when the file doesn't contain a Flow. - **Is your feature request related to a problem? Please describe.** Items can be added to a non-flow file. **Describe the solution you'd like** Hide palette. **Describe alternatives you've considered** Block palette. **Additional context** #449
priority
hide palette when the file doesn t contain a flow is your feature request related to a problem please describe items can be added to a non flow file describe the solution you d like hide palette describe alternatives you ve considered block palette additional context
1
374,406
11,089,304,152
IssuesEvent
2019-12-14 17:32:35
bounswe/bounswe2019group4
https://api.github.com/repos/bounswe/bounswe2019group4
closed
Backend feature profit loss
Back-End Priority: Medium Type: Development
According to our requirements, trader users shall observe their amount of profit or loss according to their investments. Information about profit/loss might be given in the endpoint of the main investment page which is GET /investments
1.0
Backend feature profit loss - According to our requirements, trader users shall observe their amount of profit or loss according to their investments. Information about profit/loss might be given in the endpoint of the main investment page which is GET /investments
priority
backend feature profit loss according to our requirements trader users shall observe their amount of profit or loss according to their investments information about profit loss might be given in the endpoint of the main investment page which is get investments
1
104,974
4,227,131,942
IssuesEvent
2016-07-02 23:52:47
rathena/rathena
https://api.github.com/repos/rathena/rathena
closed
Abnormal Instance IdleTimeOut
bug:core mode:prerenewal mode:renewal priority:medium server:map
Githash: https://github.com/rathena/rathena/commit/0d43d26fb9dfe5f871f3719e83bd633c748fb0d9 Mode: Renewal (dunno if also happens in pre-re, but maybe). Whenever a party members disconects, the instance timer switches from LimitTime to IdleTimeOut for every member on the party, thus causing the instance to be destroyed before LimitTime was reached. How to replicate: Make a party with at least 2 members. Create the instance. Access. Disconnect one of them.
1.0
Abnormal Instance IdleTimeOut - Githash: https://github.com/rathena/rathena/commit/0d43d26fb9dfe5f871f3719e83bd633c748fb0d9 Mode: Renewal (dunno if also happens in pre-re, but maybe). Whenever a party members disconects, the instance timer switches from LimitTime to IdleTimeOut for every member on the party, thus causing the instance to be destroyed before LimitTime was reached. How to replicate: Make a party with at least 2 members. Create the instance. Access. Disconnect one of them.
priority
abnormal instance idletimeout githash mode renewal dunno if also happens in pre re but maybe whenever a party members disconects the instance timer switches from limittime to idletimeout for every member on the party thus causing the instance to be destroyed before limittime was reached how to replicate make a party with at least members create the instance access disconnect one of them
1
17,115
2,615,131,196
IssuesEvent
2015-03-01 06:01:11
chrsmith/google-api-java-client
https://api.github.com/repos/chrsmith/google-api-java-client
closed
Should use supportsMediaDownload flag from Discovery to determine if a method supports media download
auto-migrated Component-Media Milestone-Version1.14.0 Priority-Medium Type-Enhancement
``` For example: - drive v2: drive.files.get has no supportsMediaDownload, so the Java client *SHOULD NOT* have media download methods in the class ...Drive.Files.Get (but it does!) - adsense v1.1: adsense.reports.generate has supportsMediaDownload, so the Java client *SHOULD* have media download methods in the class ...Adsense.Requests.Generate (but it doesn't!) ``` Original issue reported on code.google.com by `dar...@google.com` on 15 Jan 2013 at 4:05
1.0
Should use supportsMediaDownload flag from Discovery to determine if a method supports media download - ``` For example: - drive v2: drive.files.get has no supportsMediaDownload, so the Java client *SHOULD NOT* have media download methods in the class ...Drive.Files.Get (but it does!) - adsense v1.1: adsense.reports.generate has supportsMediaDownload, so the Java client *SHOULD* have media download methods in the class ...Adsense.Requests.Generate (but it doesn't!) ``` Original issue reported on code.google.com by `dar...@google.com` on 15 Jan 2013 at 4:05
priority
should use supportsmediadownload flag from discovery to determine if a method supports media download for example drive drive files get has no supportsmediadownload so the java client should not have media download methods in the class drive files get but it does adsense adsense reports generate has supportsmediadownload so the java client should have media download methods in the class adsense requests generate but it doesn t original issue reported on code google com by dar google com on jan at
1
47,107
2,972,328,874
IssuesEvent
2015-07-14 13:13:26
CCAFS/ccafs-ap
https://api.github.com/repos/CCAFS/ccafs-ap
reopened
Make log for project_partner_contributions
enhancement Priority-Medium Section-Planning
Currently we are not tracking changes on the Contributions of 2-level Partners to PPA Partners.
1.0
Make log for project_partner_contributions - Currently we are not tracking changes on the Contributions of 2-level Partners to PPA Partners.
priority
make log for project partner contributions currently we are not tracking changes on the contributions of level partners to ppa partners
1
312,277
9,545,356,564
IssuesEvent
2019-05-01 16:48:40
aol/moloch
https://api.github.com/repos/aol/moloch
closed
Allow count stats to be cleared
enhancement medium priority v2.0 viewer
Allow count stats to be cleared and reset for as long as you are on that page. It doesn't actually clear on the server or for other users. If you leave that tab you'll have to reset again. If you have the same window open multiple times times they would have different values. * Stats that support this feature would have a new boolean in their definition. (ES Nodes->Write Tasks Rejected, Write Tasks Completed are two examples) * New button in column UI that lets clear the stat * When the button is pressed save the current real values from the server and now subtract those values before display. * if a value from the server is less then the saved value, reset that saved value to 0. (means the server reset that value)
1.0
Allow count stats to be cleared - Allow count stats to be cleared and reset for as long as you are on that page. It doesn't actually clear on the server or for other users. If you leave that tab you'll have to reset again. If you have the same window open multiple times times they would have different values. * Stats that support this feature would have a new boolean in their definition. (ES Nodes->Write Tasks Rejected, Write Tasks Completed are two examples) * New button in column UI that lets clear the stat * When the button is pressed save the current real values from the server and now subtract those values before display. * if a value from the server is less then the saved value, reset that saved value to 0. (means the server reset that value)
priority
allow count stats to be cleared allow count stats to be cleared and reset for as long as you are on that page it doesn t actually clear on the server or for other users if you leave that tab you ll have to reset again if you have the same window open multiple times times they would have different values stats that support this feature would have a new boolean in their definition es nodes write tasks rejected write tasks completed are two examples new button in column ui that lets clear the stat when the button is pressed save the current real values from the server and now subtract those values before display if a value from the server is less then the saved value reset that saved value to means the server reset that value
1
53,460
3,040,517,362
IssuesEvent
2015-08-07 15:48:25
jpchanson/BeSeenium
https://api.github.com/repos/jpchanson/BeSeenium
closed
connect web interface to URL gymnastics
Core functionality Medium Priority
devise an easy way for non-coders to include and change html gui and interact with the output from the server.
1.0
connect web interface to URL gymnastics - devise an easy way for non-coders to include and change html gui and interact with the output from the server.
priority
connect web interface to url gymnastics devise an easy way for non coders to include and change html gui and interact with the output from the server
1
273,718
8,551,977,132
IssuesEvent
2018-11-07 19:38:25
Vhoyon/Vramework
https://api.github.com/repos/Vhoyon/Vramework
closed
Update FastClasspathScanner dependency (is now named classgraph)
!Priority: Medium good first issue ~dependencies
https://github.com/classgraph/classgraph ```xml <dependency> <groupId>io.github.lukehutch</groupId> <artifactId>fast-classpath-scanner</artifactId> <version>2.19.0</version> </dependency> ``` This depency is very old and should be changed to this : ```xml <dependency> <groupId>io.github.classgraph</groupId> <artifactId>classgraph</artifactId> <version>LATEST</version> </dependency> ``` (note that `LATEST` should be changed to an actual version, such as `4.2.9`, the latest version as I'm writing this issue) [This wiki on porting FastClasspathScanner to ClassGraph might be useful](https://github.com/classgraph/classgraph/wiki/Porting-FastClasspathScanner-code-to-ClassGraph)
1.0
Update FastClasspathScanner dependency (is now named classgraph) - https://github.com/classgraph/classgraph ```xml <dependency> <groupId>io.github.lukehutch</groupId> <artifactId>fast-classpath-scanner</artifactId> <version>2.19.0</version> </dependency> ``` This depency is very old and should be changed to this : ```xml <dependency> <groupId>io.github.classgraph</groupId> <artifactId>classgraph</artifactId> <version>LATEST</version> </dependency> ``` (note that `LATEST` should be changed to an actual version, such as `4.2.9`, the latest version as I'm writing this issue) [This wiki on porting FastClasspathScanner to ClassGraph might be useful](https://github.com/classgraph/classgraph/wiki/Porting-FastClasspathScanner-code-to-ClassGraph)
priority
update fastclasspathscanner dependency is now named classgraph xml io github lukehutch fast classpath scanner this depency is very old and should be changed to this xml io github classgraph classgraph latest note that latest should be changed to an actual version such as the latest version as i m writing this issue
1
401,585
11,795,181,459
IssuesEvent
2020-03-18 08:25:59
thaliawww/concrexit
https://api.github.com/repos/thaliawww/concrexit
closed
Login page visible when logged-in
bug easy and fun priority: medium
In GitLab by @se-bastiaan on Dec 5, 2019, 13:13 ### One-sentence description Login page visible when logged-in ### Current behaviour / Reproducing the bug 1. You can visit the login page (and probably other pages related to it) while authenticated ### Expected behaviour The page should redirect to home or something.
1.0
Login page visible when logged-in - In GitLab by @se-bastiaan on Dec 5, 2019, 13:13 ### One-sentence description Login page visible when logged-in ### Current behaviour / Reproducing the bug 1. You can visit the login page (and probably other pages related to it) while authenticated ### Expected behaviour The page should redirect to home or something.
priority
login page visible when logged in in gitlab by se bastiaan on dec one sentence description login page visible when logged in current behaviour reproducing the bug you can visit the login page and probably other pages related to it while authenticated expected behaviour the page should redirect to home or something
1
787,199
27,710,046,295
IssuesEvent
2023-03-14 13:44:45
hashicorp/terraform-cdk
https://api.github.com/repos/hashicorp/terraform-cdk
closed
Convert: Add case handling for special resource names (like e.g. `scaleway_object`)
enhancement priority/important-soon feature/convert size/medium
<!--- 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 other comments that do not add relevant new information or questions, 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 In https://github.com/hashicorp/terraform-cdk/pull/2138 we fixed this for the code generation, let's ensure convert knows about this and generates valid code using `ObjectResource` instead of `Object` in these cases. <!--- Please leave a helpful description of the feature request here. ---> <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> ### 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? --->
1.0
Convert: Add case handling for special resource names (like e.g. `scaleway_object`) - <!--- 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 other comments that do not add relevant new information or questions, 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 In https://github.com/hashicorp/terraform-cdk/pull/2138 we fixed this for the code generation, let's ensure convert knows about this and generates valid code using `ObjectResource` instead of `Object` in these cases. <!--- Please leave a helpful description of the feature request here. ---> <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> ### 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? --->
priority
convert add case handling for special resource names like e g scaleway object 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 other comments that do not add relevant new information or questions 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 in we fixed this for the code generation let s ensure convert knows about this and generates valid code using objectresource instead of object in these cases 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
620,926
19,573,224,365
IssuesEvent
2022-01-04 12:34:41
space-wizards/space-station-14
https://api.github.com/repos/space-wizards/space-station-14
closed
Make windows anchorable
Priority: 3-Not Required Type: Feature Difficulty: 2-Medium
I'm not exactly sure how eris handles it in regards to re-anchoring (does it need a low-wall?) and the sprite change, code is here https://github.com/discordia-space/CEV-Eris/blob/604fb7ab7b314f119167f0a640e355a984c14b67/code/game/objects/structures/window.dm Also anchorable needs support for setting do_after via yaml + Anchoring toolquality should probably be renamed to wrenching (given screwdrivers unanchor windows).
1.0
Make windows anchorable - I'm not exactly sure how eris handles it in regards to re-anchoring (does it need a low-wall?) and the sprite change, code is here https://github.com/discordia-space/CEV-Eris/blob/604fb7ab7b314f119167f0a640e355a984c14b67/code/game/objects/structures/window.dm Also anchorable needs support for setting do_after via yaml + Anchoring toolquality should probably be renamed to wrenching (given screwdrivers unanchor windows).
priority
make windows anchorable i m not exactly sure how eris handles it in regards to re anchoring does it need a low wall and the sprite change code is here also anchorable needs support for setting do after via yaml anchoring toolquality should probably be renamed to wrenching given screwdrivers unanchor windows
1
238,187
7,776,074,174
IssuesEvent
2018-06-05 06:41:19
adobe/brackets
https://api.github.com/repos/adobe/brackets
closed
[Brackets Auto Update ] Error should not be shown to user on failing to clean up the updateTemp folder after Autoupdate
medium priority
Description [Brackets Auto Update ] No error should be shown to user on failing to clean up the updateTemp folder after Autoupdate Steps to Reproduce 1. Install Brackets 1.13 2. Launch Brackets 3. Go to Help->Check for Updates 4. Click Get it now 5. Disconnect internet after download reaches above say 15% 6. Wait for sometime 7. Reconnect Internet 8. Press F5 (Relead Brackets with Extensions) Or This error can also be simulated by making the updateTemp folder readonly Expected behavior: We should not shown this error to user as there is no user action involved here. Also user has no idea about what the update directory is. Ideally we should just log this error in Console and also log a failure to the Analytics Server. Actual behavior: User is shown the below "Cleanup failed! Update directory could not be cleaned" Versions Win/Mac Release 1.13.0 17657 ![cleanupfailure](https://user-images.githubusercontent.com/23053850/39302778-74294b86-4971-11e8-95de-5b95dfc000e0.png)
1.0
[Brackets Auto Update ] Error should not be shown to user on failing to clean up the updateTemp folder after Autoupdate - Description [Brackets Auto Update ] No error should be shown to user on failing to clean up the updateTemp folder after Autoupdate Steps to Reproduce 1. Install Brackets 1.13 2. Launch Brackets 3. Go to Help->Check for Updates 4. Click Get it now 5. Disconnect internet after download reaches above say 15% 6. Wait for sometime 7. Reconnect Internet 8. Press F5 (Relead Brackets with Extensions) Or This error can also be simulated by making the updateTemp folder readonly Expected behavior: We should not shown this error to user as there is no user action involved here. Also user has no idea about what the update directory is. Ideally we should just log this error in Console and also log a failure to the Analytics Server. Actual behavior: User is shown the below "Cleanup failed! Update directory could not be cleaned" Versions Win/Mac Release 1.13.0 17657 ![cleanupfailure](https://user-images.githubusercontent.com/23053850/39302778-74294b86-4971-11e8-95de-5b95dfc000e0.png)
priority
error should not be shown to user on failing to clean up the updatetemp folder after autoupdate description no error should be shown to user on failing to clean up the updatetemp folder after autoupdate steps to reproduce install brackets launch brackets go to help check for updates click get it now disconnect internet after download reaches above say wait for sometime reconnect internet press relead brackets with extensions or this error can also be simulated by making the updatetemp folder readonly expected behavior we should not shown this error to user as there is no user action involved here also user has no idea about what the update directory is ideally we should just log this error in console and also log a failure to the analytics server actual behavior user is shown the below cleanup failed update directory could not be cleaned versions win mac release
1
636,413
20,599,621,646
IssuesEvent
2022-03-06 03:08:54
AY2122S2-CS2113T-T10-1/tp
https://api.github.com/repos/AY2122S2-CS2113T-T10-1/tp
opened
As a user who wishes to prepare ahead
type.Story priority.Medium
... so that I can create a session before the day of activity itself
1.0
As a user who wishes to prepare ahead - ... so that I can create a session before the day of activity itself
priority
as a user who wishes to prepare ahead so that i can create a session before the day of activity itself
1
181,720
6,663,556,633
IssuesEvent
2017-10-02 16:50:18
ngageoint/hootenanny
https://api.github.com/repos/ngageoint/hootenanny
closed
AL060 (Dragons Teeth) is not translating correctly.
Category: Translation Priority: Medium Status: In Progress Type: Bug
Should be: "barrier=tank_trap" && "tank_trap=dragons_teeth" Fix this.
1.0
AL060 (Dragons Teeth) is not translating correctly. - Should be: "barrier=tank_trap" && "tank_trap=dragons_teeth" Fix this.
priority
dragons teeth is not translating correctly should be barrier tank trap tank trap dragons teeth fix this
1
719,547
24,763,487,926
IssuesEvent
2022-10-22 07:41:17
bounswe/bounswe2022group7
https://api.github.com/repos/bounswe/bounswe2022group7
closed
[BACKEND] Research on built-in authentication
Status: Not Yet Started Priority: High Type: Research Difficulty: Medium Target: Backend
@sabrimete mentioned in [meeting 2](https://github.com/bounswe/bounswe2022group7/wiki/BACKEND-Meeting-Notes-%232-20-10-2022) that he realized a library easing the authentication process for Kotlin whilst initializing code for backend. Research on this library and how to implement it in code is to be done. **Reviewer:** @demet47 **Due:** 22/10/2022 23.59
1.0
[BACKEND] Research on built-in authentication - @sabrimete mentioned in [meeting 2](https://github.com/bounswe/bounswe2022group7/wiki/BACKEND-Meeting-Notes-%232-20-10-2022) that he realized a library easing the authentication process for Kotlin whilst initializing code for backend. Research on this library and how to implement it in code is to be done. **Reviewer:** @demet47 **Due:** 22/10/2022 23.59
priority
research on built in authentication sabrimete mentioned in that he realized a library easing the authentication process for kotlin whilst initializing code for backend research on this library and how to implement it in code is to be done reviewer due
1
797,214
28,140,929,850
IssuesEvent
2023-04-01 23:29:00
NaomiProject/Naomi
https://api.github.com/repos/NaomiProject/Naomi
closed
Record voice and playback not working during initial setup
Status: In Progress Priority: Medium Type: Bug
<!--- Provide a general summary of the issue in the Title above --> ## Description <!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug --> During the initial setup process, there is an option to record your voice and play it back as part of the output device setup process. This allows users to test if their microphone is set up correctly, and preview how what they say might sound to Naomi. This appears to be broken. ## Expected Behavior <!--- Tell us what should happen --> After selecting an output device, if the user answers "yes" to the question "Would you like me to test your selection by recording your voice and playing it back to you?" They should be prompted to speak into the microphone. Then the VAD visualization should pop up to show the volume being received by the microphone. When a block of audio has been recorded, it gets played back so the user can verify that they can hear and understand their own words. ## Actual Behavior <!--- Tell us what happens instead --> Instead, the interface just moves on to the next question. ## Possible Fix <!--- Not obligatory, but suggest a fix or reason for the bug --> This is happening because I am using the "output" visualization to print the "Please speak into the mic" message. This visualization wants to print a timestamp before the output, because I am mostly using it to print the transcript of audio heard and said by Naomi. To get the timestamp, it is using the timezone setting, which is only set when setting up the "clock" plugin. Since this doesn't exist when you are first setting up Naomi, the visualization fails and knocks the user into the next question. The fix would be to pass a "timestamp=False" parameter to the function so it does not try to print a timestamp, and possibly just using the current system time instead of the timezone Naomi is using. ## Steps to Reproduce <!--- Provide a link to a live example, or an unambiguous set of steps to --> <!--- reproduce this bug. Include code to reproduce, if relevant --> 1. Fresh install of Naomi, or at least delete your profile.yml file. 2. Run Naomi with the --repopulate flag 3. After setting the input device, answer "yes" to the question "Would you like me to test your selection by recording your voice and playing it back to you?" 4. Observe that you are now being asked to select a voice activity detector plugin. ## Context <!--- How has this bug affected you? What were you trying to accomplish? --> I'm just trying to set up Naomi. It's not a major bug, just a little surprising. ## Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * Version used: Nightly * Environment name and version (e.g. PHP 5.4 on nginx 1.9.1): Python 3.9 * Server type and version: Dell laptop * Operating System and version: WSL Debian Bullseye
1.0
Record voice and playback not working during initial setup - <!--- Provide a general summary of the issue in the Title above --> ## Description <!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug --> During the initial setup process, there is an option to record your voice and play it back as part of the output device setup process. This allows users to test if their microphone is set up correctly, and preview how what they say might sound to Naomi. This appears to be broken. ## Expected Behavior <!--- Tell us what should happen --> After selecting an output device, if the user answers "yes" to the question "Would you like me to test your selection by recording your voice and playing it back to you?" They should be prompted to speak into the microphone. Then the VAD visualization should pop up to show the volume being received by the microphone. When a block of audio has been recorded, it gets played back so the user can verify that they can hear and understand their own words. ## Actual Behavior <!--- Tell us what happens instead --> Instead, the interface just moves on to the next question. ## Possible Fix <!--- Not obligatory, but suggest a fix or reason for the bug --> This is happening because I am using the "output" visualization to print the "Please speak into the mic" message. This visualization wants to print a timestamp before the output, because I am mostly using it to print the transcript of audio heard and said by Naomi. To get the timestamp, it is using the timezone setting, which is only set when setting up the "clock" plugin. Since this doesn't exist when you are first setting up Naomi, the visualization fails and knocks the user into the next question. The fix would be to pass a "timestamp=False" parameter to the function so it does not try to print a timestamp, and possibly just using the current system time instead of the timezone Naomi is using. ## Steps to Reproduce <!--- Provide a link to a live example, or an unambiguous set of steps to --> <!--- reproduce this bug. Include code to reproduce, if relevant --> 1. Fresh install of Naomi, or at least delete your profile.yml file. 2. Run Naomi with the --repopulate flag 3. After setting the input device, answer "yes" to the question "Would you like me to test your selection by recording your voice and playing it back to you?" 4. Observe that you are now being asked to select a voice activity detector plugin. ## Context <!--- How has this bug affected you? What were you trying to accomplish? --> I'm just trying to set up Naomi. It's not a major bug, just a little surprising. ## Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * Version used: Nightly * Environment name and version (e.g. PHP 5.4 on nginx 1.9.1): Python 3.9 * Server type and version: Dell laptop * Operating System and version: WSL Debian Bullseye
priority
record voice and playback not working during initial setup description during the initial setup process there is an option to record your voice and play it back as part of the output device setup process this allows users to test if their microphone is set up correctly and preview how what they say might sound to naomi this appears to be broken expected behavior after selecting an output device if the user answers yes to the question would you like me to test your selection by recording your voice and playing it back to you they should be prompted to speak into the microphone then the vad visualization should pop up to show the volume being received by the microphone when a block of audio has been recorded it gets played back so the user can verify that they can hear and understand their own words actual behavior instead the interface just moves on to the next question possible fix this is happening because i am using the output visualization to print the please speak into the mic message this visualization wants to print a timestamp before the output because i am mostly using it to print the transcript of audio heard and said by naomi to get the timestamp it is using the timezone setting which is only set when setting up the clock plugin since this doesn t exist when you are first setting up naomi the visualization fails and knocks the user into the next question the fix would be to pass a timestamp false parameter to the function so it does not try to print a timestamp and possibly just using the current system time instead of the timezone naomi is using steps to reproduce fresh install of naomi or at least delete your profile yml file run naomi with the repopulate flag after setting the input device answer yes to the question would you like me to test your selection by recording your voice and playing it back to you observe that you are now being asked to select a voice activity detector plugin context i m just trying to set up naomi it s not a major bug just a little surprising your environment version used nightly environment name and version e g php on nginx python server type and version dell laptop operating system and version wsl debian bullseye
1
502,344
14,544,685,996
IssuesEvent
2020-12-15 18:32:22
MikeVedsted/JoinMe
https://api.github.com/repos/MikeVedsted/JoinMe
opened
[FEAT] Add Sidebar component
Priority: Medium :zap: Status: Received :inbox_tray: Type: Enhancement :rocket:
**💡 I would really like to solve or include** Add a Sidebar for the event pages with buttons for my event, interested events, confirmed events, create event and any other necessary information about event. _Check the components division and naming in this figma file: https://www.figma.com/file/CZn7N02015QxKByVw9vRP1/JoinMe-Components?node-id=0%3A1_ **👶 How would a user describe this?** Here I can find all the different information about events that are not in the home page. **🏆 My dream solution would be** Just like Chiran’s layout on figma. **:2nd_place_medal: But I'd also consider it solved if** If it’s just a little bit similar to Chiran’s layout. **💭 If you were doing it, what would you do?** - Just add the button and have fun. **♻️ Additional context** It is required by all Event pages It requires button components **🚀 I'm ready for take off** Before submitting, please mark if you: - [x] Checked that this feature doesn't already exists - [x] Checked that a feature request doesn't already exists - [x] Went through the user flow, and understand the impact - [x] Made sure the request shows why it is important to users but doesn't exaggerate the value
1.0
[FEAT] Add Sidebar component - **💡 I would really like to solve or include** Add a Sidebar for the event pages with buttons for my event, interested events, confirmed events, create event and any other necessary information about event. _Check the components division and naming in this figma file: https://www.figma.com/file/CZn7N02015QxKByVw9vRP1/JoinMe-Components?node-id=0%3A1_ **👶 How would a user describe this?** Here I can find all the different information about events that are not in the home page. **🏆 My dream solution would be** Just like Chiran’s layout on figma. **:2nd_place_medal: But I'd also consider it solved if** If it’s just a little bit similar to Chiran’s layout. **💭 If you were doing it, what would you do?** - Just add the button and have fun. **♻️ Additional context** It is required by all Event pages It requires button components **🚀 I'm ready for take off** Before submitting, please mark if you: - [x] Checked that this feature doesn't already exists - [x] Checked that a feature request doesn't already exists - [x] Went through the user flow, and understand the impact - [x] Made sure the request shows why it is important to users but doesn't exaggerate the value
priority
add sidebar component 💡 i would really like to solve or include add a sidebar for the event pages with buttons for my event interested events confirmed events create event and any other necessary information about event check the components division and naming in this figma file 👶 how would a user describe this here i can find all the different information about events that are not in the home page 🏆 my dream solution would be just like chiran’s layout on figma place medal but i d also consider it solved if if it’s just a little bit similar to chiran’s layout 💭 if you were doing it what would you do just add the button and have fun ♻️ additional context it is required by all event pages it requires button components 🚀 i m ready for take off before submitting please mark if you checked that this feature doesn t already exists checked that a feature request doesn t already exists went through the user flow and understand the impact made sure the request shows why it is important to users but doesn t exaggerate the value
1
778,603
27,321,932,319
IssuesEvent
2023-02-24 20:43:07
pdx-blurp/blurp-frontend
https://api.github.com/repos/pdx-blurp/blurp-frontend
opened
Map Page: Refactor Edge Modal
medium priority enhancement
Edge modal should now only display "Select Name" for first and second nodes. Everything else is moved into the Data sidebar.
1.0
Map Page: Refactor Edge Modal - Edge modal should now only display "Select Name" for first and second nodes. Everything else is moved into the Data sidebar.
priority
map page refactor edge modal edge modal should now only display select name for first and second nodes everything else is moved into the data sidebar
1
262,274
8,263,129,603
IssuesEvent
2018-09-14 00:26:43
conveyal/trimet-mod-otp
https://api.github.com/repos/conveyal/trimet-mod-otp
closed
checkmark icons need to be changed from red to green -- (was DESIGN: large mode buttons (and a bit of text))
medium priority
For this UI we propose large mashable buttons that are easy to identify and easy to tap/click, with room for text labels so that these somewhat ambiguous icons can be easily distinguished from one another at a glance. ![fat buttons](https://user-images.githubusercontent.com/64323/31257317-d6d616e4-a9ec-11e7-98b2-b1481ceb0a1b.png)
1.0
checkmark icons need to be changed from red to green -- (was DESIGN: large mode buttons (and a bit of text)) - For this UI we propose large mashable buttons that are easy to identify and easy to tap/click, with room for text labels so that these somewhat ambiguous icons can be easily distinguished from one another at a glance. ![fat buttons](https://user-images.githubusercontent.com/64323/31257317-d6d616e4-a9ec-11e7-98b2-b1481ceb0a1b.png)
priority
checkmark icons need to be changed from red to green was design large mode buttons and a bit of text for this ui we propose large mashable buttons that are easy to identify and easy to tap click with room for text labels so that these somewhat ambiguous icons can be easily distinguished from one another at a glance
1
620,766
19,569,435,332
IssuesEvent
2022-01-04 07:57:51
TASVideos/tasvideos
https://api.github.com/repos/TASVideos/tasvideos
closed
Missing images/files in wiki and forum posts
bug Priority: Medium
Various pages and posts that use content from `http://media.tasvideos.org/` are now broken; however there are a few instances where they still work. Broken examples: https://tasvideos.org/GameResources/DOS/Jetpack#NamingConventions https://tasvideos.org/Forum/Posts/119478#119478 https://tasvideos.org/Forum/Posts/81290#81290 (.avi files) Still working examples: https://tasvideos.org/Forum/Posts/184070#184070 https://tasvideos.org/1669S (seems everything under `http://media.tasvideos.org/autosnaps/` still exists) If this is just a problem where the URL path has changed, and the files still exist somewhere, I can fix up the wiki at the least. However I'm thinking that maybe the missing files weren't copied over during the migration from the old site?
1.0
Missing images/files in wiki and forum posts - Various pages and posts that use content from `http://media.tasvideos.org/` are now broken; however there are a few instances where they still work. Broken examples: https://tasvideos.org/GameResources/DOS/Jetpack#NamingConventions https://tasvideos.org/Forum/Posts/119478#119478 https://tasvideos.org/Forum/Posts/81290#81290 (.avi files) Still working examples: https://tasvideos.org/Forum/Posts/184070#184070 https://tasvideos.org/1669S (seems everything under `http://media.tasvideos.org/autosnaps/` still exists) If this is just a problem where the URL path has changed, and the files still exist somewhere, I can fix up the wiki at the least. However I'm thinking that maybe the missing files weren't copied over during the migration from the old site?
priority
missing images files in wiki and forum posts various pages and posts that use content from are now broken however there are a few instances where they still work broken examples avi files still working examples seems everything under still exists if this is just a problem where the url path has changed and the files still exist somewhere i can fix up the wiki at the least however i m thinking that maybe the missing files weren t copied over during the migration from the old site
1
255,548
8,125,370,188
IssuesEvent
2018-08-16 20:42:31
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Deed Sales and Object Ownership
Medium Priority
#### Version: 0.7.6.3 beta ### Actions Okay, so this is what me and another player did (player A and B) 1. Player A claims land and grant a second player (player B) access to that deed. 2. Place several objects on the deed, by either player (such as stockpiles and tables). These will carry the name of the owner of the deed, player A. 3. Player A puts the deed for sale at a **Real Estate Desk**. 4. Player B purchases the deed. ### Result Now **A** doesn't not have permission on the land (which I assume is intended, it's a good idea to wipe the *permitted players* list clear on selling a deed), this is good. The issue is that **A** still has ownership over all objects (stockpiles, tables, etc) placed prior to selling the deed. **A** is able to remove contents of those objects that are containers, rename the objects, or remove the objects entirely. ### Attempts to reproduce I've tried reproducing this with that player, but we've been unable to do so... We - Tried with B having and not having access to the deed prior to purchase - Tried with A and B placing the stockpile, before and after claiming the land it was on I'm at a loss, my only guesses at the moment are that it may have something to do with - the server restarting between claiming the land and selling it, or - the number of objects in the deed that was purchased Will try again soon.
1.0
Deed Sales and Object Ownership - #### Version: 0.7.6.3 beta ### Actions Okay, so this is what me and another player did (player A and B) 1. Player A claims land and grant a second player (player B) access to that deed. 2. Place several objects on the deed, by either player (such as stockpiles and tables). These will carry the name of the owner of the deed, player A. 3. Player A puts the deed for sale at a **Real Estate Desk**. 4. Player B purchases the deed. ### Result Now **A** doesn't not have permission on the land (which I assume is intended, it's a good idea to wipe the *permitted players* list clear on selling a deed), this is good. The issue is that **A** still has ownership over all objects (stockpiles, tables, etc) placed prior to selling the deed. **A** is able to remove contents of those objects that are containers, rename the objects, or remove the objects entirely. ### Attempts to reproduce I've tried reproducing this with that player, but we've been unable to do so... We - Tried with B having and not having access to the deed prior to purchase - Tried with A and B placing the stockpile, before and after claiming the land it was on I'm at a loss, my only guesses at the moment are that it may have something to do with - the server restarting between claiming the land and selling it, or - the number of objects in the deed that was purchased Will try again soon.
priority
deed sales and object ownership version beta actions okay so this is what me and another player did player a and b player a claims land and grant a second player player b access to that deed place several objects on the deed by either player such as stockpiles and tables these will carry the name of the owner of the deed player a player a puts the deed for sale at a real estate desk player b purchases the deed result now a doesn t not have permission on the land which i assume is intended it s a good idea to wipe the permitted players list clear on selling a deed this is good the issue is that a still has ownership over all objects stockpiles tables etc placed prior to selling the deed a is able to remove contents of those objects that are containers rename the objects or remove the objects entirely attempts to reproduce i ve tried reproducing this with that player but we ve been unable to do so we tried with b having and not having access to the deed prior to purchase tried with a and b placing the stockpile before and after claiming the land it was on i m at a loss my only guesses at the moment are that it may have something to do with the server restarting between claiming the land and selling it or the number of objects in the deed that was purchased will try again soon
1
173,564
6,527,823,605
IssuesEvent
2017-08-30 03:28:58
nylas-mail-lives/nylas-mail
https://api.github.com/repos/nylas-mail-lives/nylas-mail
opened
Some inline images are not showing/downloading and the transparent pixel is being shown
Priority: Medium Status: In Progress
this is particularly noticeable when the sender is using some specific platforms (i.e. Outlook, etc). best guess is the mime type isn't being handled properly. in the meantime, the only way to see the image is to open the email in another less-desirable email client
1.0
Some inline images are not showing/downloading and the transparent pixel is being shown - this is particularly noticeable when the sender is using some specific platforms (i.e. Outlook, etc). best guess is the mime type isn't being handled properly. in the meantime, the only way to see the image is to open the email in another less-desirable email client
priority
some inline images are not showing downloading and the transparent pixel is being shown this is particularly noticeable when the sender is using some specific platforms i e outlook etc best guess is the mime type isn t being handled properly in the meantime the only way to see the image is to open the email in another less desirable email client
1
464,635
13,336,916,093
IssuesEvent
2020-08-28 08:23:04
ooni/probe-engine
https://api.github.com/repos/ooni/probe-engine
closed
Where and how to document data quality incidents?
bug discuss effort/S priority/medium
This is sorta followup from https://github.com/ooni/probe-engine/issues/769. On this note @hellais is mentioning that there are a bunch of still open bugs in probe-legacy that it would be nice to include in this kind of analysis. See https://github.com/ooni/probe-legacy/issues.
1.0
Where and how to document data quality incidents? - This is sorta followup from https://github.com/ooni/probe-engine/issues/769. On this note @hellais is mentioning that there are a bunch of still open bugs in probe-legacy that it would be nice to include in this kind of analysis. See https://github.com/ooni/probe-legacy/issues.
priority
where and how to document data quality incidents this is sorta followup from on this note hellais is mentioning that there are a bunch of still open bugs in probe legacy that it would be nice to include in this kind of analysis see
1
57,220
3,081,249,456
IssuesEvent
2015-08-22 14:40:34
bitfighter/bitfighter
https://api.github.com/repos/bitfighter/bitfighter
opened
Move sfx definitions to the INI
019x 020 bug gci imported Priority-Medium
_From [watusim...@bitfighter.org](https://code.google.com/u/105427273526970468779/) on June 01, 2014 05:44:25_ It might be nice to move the sfx definitions to the INI file -- then we can get rid of the dual sfx profiles, and we can make it easier for people to experiment with new sounds. _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=441_
1.0
Move sfx definitions to the INI - _From [watusim...@bitfighter.org](https://code.google.com/u/105427273526970468779/) on June 01, 2014 05:44:25_ It might be nice to move the sfx definitions to the INI file -- then we can get rid of the dual sfx profiles, and we can make it easier for people to experiment with new sounds. _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=441_
priority
move sfx definitions to the ini from on june it might be nice to move the sfx definitions to the ini file then we can get rid of the dual sfx profiles and we can make it easier for people to experiment with new sounds original issue
1
770,881
27,059,153,034
IssuesEvent
2023-02-13 18:18:55
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[studio] Decryption of data does not honor the new lines in private keys
enhancement priority: medium CI validate
### Duplicates - [X] I have searched the existing issues ### Latest version - [X] The issue is in the latest released 4.0.x - [ ] The issue is in the latest released 3.1.x ### Describe the issue The encryption tool does not allow a user to use CDATA sections to preserve values that require whitespace (E.g. PPK/PEM keys) ### Steps to reproduce Steps: 1. Create a new site 2. Create a new private SSH Key (or use a default example found here: https://phpseclib.com/docs/rsa-keys) 3. Navigate to studio's Encryption Tool and use it to encrypt your private key 4. With the encrypted private key in your clipboard, navigate to Project Tools --> Configuration --> Engine Project Configuration 5. In this configuration file, use the following property and replace the insert-encrypted-key-here with what is stored in your clipboard `<privateKey encrypted="true">insert-encrypted-key-here</privateKey>` 6. Now create a new groovy script under `/scripts/rest` that we will use to print out the key. 7. Use the attached code to print out the key. ### Relevant log output ```shell Example log output: https://gist.github.com/AndyReiter/051e3d42d06463c9ba3c5aee7ad46c8d ``` ### Screenshots and/or videos Expected output format: ![image](https://user-images.githubusercontent.com/42217570/199816050-4e7ec72c-f92b-4c7c-b90f-d6ad1a3e40ce.png)
1.0
[studio] Decryption of data does not honor the new lines in private keys - ### Duplicates - [X] I have searched the existing issues ### Latest version - [X] The issue is in the latest released 4.0.x - [ ] The issue is in the latest released 3.1.x ### Describe the issue The encryption tool does not allow a user to use CDATA sections to preserve values that require whitespace (E.g. PPK/PEM keys) ### Steps to reproduce Steps: 1. Create a new site 2. Create a new private SSH Key (or use a default example found here: https://phpseclib.com/docs/rsa-keys) 3. Navigate to studio's Encryption Tool and use it to encrypt your private key 4. With the encrypted private key in your clipboard, navigate to Project Tools --> Configuration --> Engine Project Configuration 5. In this configuration file, use the following property and replace the insert-encrypted-key-here with what is stored in your clipboard `<privateKey encrypted="true">insert-encrypted-key-here</privateKey>` 6. Now create a new groovy script under `/scripts/rest` that we will use to print out the key. 7. Use the attached code to print out the key. ### Relevant log output ```shell Example log output: https://gist.github.com/AndyReiter/051e3d42d06463c9ba3c5aee7ad46c8d ``` ### Screenshots and/or videos Expected output format: ![image](https://user-images.githubusercontent.com/42217570/199816050-4e7ec72c-f92b-4c7c-b90f-d6ad1a3e40ce.png)
priority
decryption of data does not honor the new lines in private keys duplicates i have searched the existing issues latest version the issue is in the latest released x the issue is in the latest released x describe the issue the encryption tool does not allow a user to use cdata sections to preserve values that require whitespace e g ppk pem keys steps to reproduce steps create a new site create a new private ssh key or use a default example found here navigate to studio s encryption tool and use it to encrypt your private key with the encrypted private key in your clipboard navigate to project tools configuration engine project configuration in this configuration file use the following property and replace the insert encrypted key here with what is stored in your clipboard insert encrypted key here now create a new groovy script under scripts rest that we will use to print out the key use the attached code to print out the key relevant log output shell example log output screenshots and or videos expected output format
1
3,051
2,536,197,477
IssuesEvent
2015-01-26 11:51:51
olga-jane/prizm
https://api.github.com/repos/olga-jane/prizm
closed
values in "комплектующие изделия" aren`t limited
bug bug - UI Coding Construction Incoming inspection MEDIUM priority reported_by_students
go to "входной контроль и строительство" -> "новое комплектующие" you may enter string with unlimited length in fields "номер изделия" and "номер сертификата"
1.0
values in "комплектующие изделия" aren`t limited - go to "входной контроль и строительство" -> "новое комплектующие" you may enter string with unlimited length in fields "номер изделия" and "номер сертификата"
priority
values in комплектующие изделия aren t limited go to входной контроль и строительство новое комплектующие you may enter string with unlimited length in fields номер изделия and номер сертификата
1
713,967
24,545,209,751
IssuesEvent
2022-10-12 08:16:26
space-wizards/space-station-14
https://api.github.com/repos/space-wizards/space-station-14
closed
Gamehud cleanup issue (AKA Oldchat)
Priority: 1-Urgent Issue: Needs Cleanup Size: Very Large Difficulty: 2-Medium
What needs to happen: 1. Rip out GameHud and put it onto GameScreen as presenters (gamehud just duplicates GameScreen's job) 2. Once the above is done then add in support for oldchat For each UI (e.g. combat mode) that needs doing: - **Make a `CombatUI : Control, ICombatModeView`.** This handles all of the UI code like button presses or the likes. This also will probably need a reference to the presenter class. This will just be the UI control(s) ripped out of gamehud - **A presenter class needs to be made that handles the viewer <> Game code.** The presenter should be as general as possible and re-usable regardless of what the UI code looks like and is mainly concerned with passing on stuff like a button press to the relevant system. If the UI has a reference to the presenter then it can just call the presenter's method directly (e.g. if the targetingzone changes on the doll) - Any alternative layouts (e.g. horizontal alerts instead of vertical) should be its own UI that inherits the I<Something>View with the ability for the State to pass in which one it wants to use. - For situations where you may want to parent the CombatUI to another control then the presenter should be able to take that control in. This may end up changing in the distant future but it's still going to be significantly less CBT than the state of gamehud. - [ ] Combat panel - [ ] Top notifications - [ ] "Button bard" - [ ] Hands - [ ] Inventory (left side / right side / top) - [ ] Suspicion - [ ] Votes
1.0
Gamehud cleanup issue (AKA Oldchat) - What needs to happen: 1. Rip out GameHud and put it onto GameScreen as presenters (gamehud just duplicates GameScreen's job) 2. Once the above is done then add in support for oldchat For each UI (e.g. combat mode) that needs doing: - **Make a `CombatUI : Control, ICombatModeView`.** This handles all of the UI code like button presses or the likes. This also will probably need a reference to the presenter class. This will just be the UI control(s) ripped out of gamehud - **A presenter class needs to be made that handles the viewer <> Game code.** The presenter should be as general as possible and re-usable regardless of what the UI code looks like and is mainly concerned with passing on stuff like a button press to the relevant system. If the UI has a reference to the presenter then it can just call the presenter's method directly (e.g. if the targetingzone changes on the doll) - Any alternative layouts (e.g. horizontal alerts instead of vertical) should be its own UI that inherits the I<Something>View with the ability for the State to pass in which one it wants to use. - For situations where you may want to parent the CombatUI to another control then the presenter should be able to take that control in. This may end up changing in the distant future but it's still going to be significantly less CBT than the state of gamehud. - [ ] Combat panel - [ ] Top notifications - [ ] "Button bard" - [ ] Hands - [ ] Inventory (left side / right side / top) - [ ] Suspicion - [ ] Votes
priority
gamehud cleanup issue aka oldchat what needs to happen rip out gamehud and put it onto gamescreen as presenters gamehud just duplicates gamescreen s job once the above is done then add in support for oldchat for each ui e g combat mode that needs doing make a combatui control icombatmodeview this handles all of the ui code like button presses or the likes this also will probably need a reference to the presenter class this will just be the ui control s ripped out of gamehud a presenter class needs to be made that handles the viewer game code the presenter should be as general as possible and re usable regardless of what the ui code looks like and is mainly concerned with passing on stuff like a button press to the relevant system if the ui has a reference to the presenter then it can just call the presenter s method directly e g if the targetingzone changes on the doll any alternative layouts e g horizontal alerts instead of vertical should be its own ui that inherits the i view with the ability for the state to pass in which one it wants to use for situations where you may want to parent the combatui to another control then the presenter should be able to take that control in this may end up changing in the distant future but it s still going to be significantly less cbt than the state of gamehud combat panel top notifications button bard hands inventory left side right side top suspicion votes
1
451,789
13,041,489,116
IssuesEvent
2020-07-28 20:29:13
prysmaticlabs/prysm
https://api.github.com/repos/prysmaticlabs/prysm
closed
ETH1Data majority preference voting
Enhancement Help Wanted Priority: Medium
Follow up from #4002. Part of the honest validator guide recommends voting with the majority eth1data votes. See the write up for more context. https://hackmd.io/@prestonvanloon/H1rfsG5iH
1.0
ETH1Data majority preference voting - Follow up from #4002. Part of the honest validator guide recommends voting with the majority eth1data votes. See the write up for more context. https://hackmd.io/@prestonvanloon/H1rfsG5iH
priority
majority preference voting follow up from part of the honest validator guide recommends voting with the majority votes see the write up for more context
1
775,793
27,237,396,792
IssuesEvent
2023-02-21 17:19:45
azerothcore/azerothcore-wotlk
https://api.github.com/repos/azerothcore/azerothcore-wotlk
opened
Level 65 WotLK food heals too much.
Confirmed Priority-Medium 65-69
https://github.com/chromiecraft/chromiecraft/issues/5081 ### What client do you play on? enUS ### Faction Both ### Content Phase: 65-69 ### Current Behaviour Food that requires level 65 such as [Salted Venison](https://wowgaming.altervista.org/aowow/?item=33454), [Tundra Berries](https://wowgaming.altervista.org/aowow/?item=35949), and [Crusty Flatbread](https://wowgaming.altervista.org/aowow/?item=33449) heal roughly 10k more than they should over time period of 30 seconds. Approximate health gain over 30 seconds is 28k (including passive regen). Here are proofs with two different foods: https://user-images.githubusercontent.com/107246426/220288086-b7ebb970-89ca-4da5-bf81-912f352a7687.mp4 https://user-images.githubusercontent.com/107246426/220288621-0b82be36-191c-48a6-ab0d-f8f9c8fc2e94.mp4 ### Expected Blizzlike Behaviour Each of these foods (and several others that require 65) should provide this [buff](https://wowgaming.altervista.org/aowow/?spell=43180). It should heal 616 health per second over 30 seconds summing up to 18480 health. ### Source https://www.wowhead.com/wotlk/spell=43180/food https://wowgaming.altervista.org/aowow/?spell=43180 ### Steps to reproduce the problem 1. .additem 33454 2. Target self 3. .mod hp 30000 4. .damage 29999 5. Eat the food 6. Observe how you are nearly full hp after 30 seconds of eating with around 28k health instead of ~18k. ### Extra Notes Here is a list of items that gain the same buff while eating: https://wowgaming.altervista.org/aowow/?spell=43180#used-by-item ### AC rev. hash/commit https://github.com/chromiecraft/azerothcore-wotlk/commit/5b602508808a134e5df6051af7774952df00a7d0 ### Operating system Ubuntu 20.04 ### Modules - [mod-ah-bot](https://github.com/azerothcore/mod-ah-bot) - [mod-bg-item-reward](https://github.com/azerothcore/mod-bg-item-reward) - [mod-cfbg](https://github.com/azerothcore/mod-cfbg) - [mod-chat-transmitter](https://github.com/azerothcore/mod-chat-transmitter) - [mod-chromie-xp](https://github.com/azerothcore/mod-chromie-xp) - [mod-cta-switch](https://github.com/azerothcore/mod-cta-switch) - [mod-desertion-warnings](https://github.com/azerothcore/mod-desertion-warnings) - [mod-duel-reset](https://github.com/azerothcore/mod-duel-reset) - [mod-eluna](https://github.com/azerothcore/mod-eluna) - [mod-ip-tracker](https://github.com/azerothcore/mod-ip-tracker) - [mod-low-level-arena](https://github.com/azerothcore/mod-low-level-arena) - [mod-low-level-rbg](https://github.com/azerothcore/mod-low-level-rbg) - [mod-multi-client-check](https://github.com/azerothcore/mod-multi-client-check) - [mod-progression-system](https://github.com/azerothcore/mod-progression-system) - [mod-pvp-titles](https://github.com/azerothcore/mod-pvp-titles) - [mod-pvpstats-announcer](https://github.com/azerothcore/mod-pvpstats-announcer) - [mod-queue-list-cache](https://github.com/azerothcore/mod-queue-list-cache) - [mod-rdf-expansion](https://github.com/azerothcore/mod-rdf-expansion) - [mod-transmog](https://github.com/azerothcore/mod-transmog) - [mod-weekend-xp](https://github.com/azerothcore/mod-weekend-xp) - [mod-instanced-worldbosses](https://github.com/nyeriah/mod-instanced-worldbosses) - [mod-zone-difficulty](https://github.com/azerothcore/mod-zone-difficulty) - [lua-carbon-copy](https://github.com/55Honey/Acore_CarbonCopy) - [lua-exchange-npc](https://github.com/55Honey/Acore_ExchangeNpc) - [lua-event-scripts](https://github.com/55Honey/Acore_eventScripts) - [lua-level-up-reward](https://github.com/55Honey/Acore_LevelUpReward) - [lua-recruit-a-friend](https://github.com/55Honey/Acore_RecruitAFriend) - [lua-send-and-bind](https://github.com/55Honey/Acore_SendAndBind) - [lua-temp-announcements](https://github.com/55Honey/Acore_TempAnnouncements) - [lua-zonecheck](https://github.com/55Honey/acore_Zonecheck) ### Customizations None ### Server ChromieCraft
1.0
Level 65 WotLK food heals too much. - https://github.com/chromiecraft/chromiecraft/issues/5081 ### What client do you play on? enUS ### Faction Both ### Content Phase: 65-69 ### Current Behaviour Food that requires level 65 such as [Salted Venison](https://wowgaming.altervista.org/aowow/?item=33454), [Tundra Berries](https://wowgaming.altervista.org/aowow/?item=35949), and [Crusty Flatbread](https://wowgaming.altervista.org/aowow/?item=33449) heal roughly 10k more than they should over time period of 30 seconds. Approximate health gain over 30 seconds is 28k (including passive regen). Here are proofs with two different foods: https://user-images.githubusercontent.com/107246426/220288086-b7ebb970-89ca-4da5-bf81-912f352a7687.mp4 https://user-images.githubusercontent.com/107246426/220288621-0b82be36-191c-48a6-ab0d-f8f9c8fc2e94.mp4 ### Expected Blizzlike Behaviour Each of these foods (and several others that require 65) should provide this [buff](https://wowgaming.altervista.org/aowow/?spell=43180). It should heal 616 health per second over 30 seconds summing up to 18480 health. ### Source https://www.wowhead.com/wotlk/spell=43180/food https://wowgaming.altervista.org/aowow/?spell=43180 ### Steps to reproduce the problem 1. .additem 33454 2. Target self 3. .mod hp 30000 4. .damage 29999 5. Eat the food 6. Observe how you are nearly full hp after 30 seconds of eating with around 28k health instead of ~18k. ### Extra Notes Here is a list of items that gain the same buff while eating: https://wowgaming.altervista.org/aowow/?spell=43180#used-by-item ### AC rev. hash/commit https://github.com/chromiecraft/azerothcore-wotlk/commit/5b602508808a134e5df6051af7774952df00a7d0 ### Operating system Ubuntu 20.04 ### Modules - [mod-ah-bot](https://github.com/azerothcore/mod-ah-bot) - [mod-bg-item-reward](https://github.com/azerothcore/mod-bg-item-reward) - [mod-cfbg](https://github.com/azerothcore/mod-cfbg) - [mod-chat-transmitter](https://github.com/azerothcore/mod-chat-transmitter) - [mod-chromie-xp](https://github.com/azerothcore/mod-chromie-xp) - [mod-cta-switch](https://github.com/azerothcore/mod-cta-switch) - [mod-desertion-warnings](https://github.com/azerothcore/mod-desertion-warnings) - [mod-duel-reset](https://github.com/azerothcore/mod-duel-reset) - [mod-eluna](https://github.com/azerothcore/mod-eluna) - [mod-ip-tracker](https://github.com/azerothcore/mod-ip-tracker) - [mod-low-level-arena](https://github.com/azerothcore/mod-low-level-arena) - [mod-low-level-rbg](https://github.com/azerothcore/mod-low-level-rbg) - [mod-multi-client-check](https://github.com/azerothcore/mod-multi-client-check) - [mod-progression-system](https://github.com/azerothcore/mod-progression-system) - [mod-pvp-titles](https://github.com/azerothcore/mod-pvp-titles) - [mod-pvpstats-announcer](https://github.com/azerothcore/mod-pvpstats-announcer) - [mod-queue-list-cache](https://github.com/azerothcore/mod-queue-list-cache) - [mod-rdf-expansion](https://github.com/azerothcore/mod-rdf-expansion) - [mod-transmog](https://github.com/azerothcore/mod-transmog) - [mod-weekend-xp](https://github.com/azerothcore/mod-weekend-xp) - [mod-instanced-worldbosses](https://github.com/nyeriah/mod-instanced-worldbosses) - [mod-zone-difficulty](https://github.com/azerothcore/mod-zone-difficulty) - [lua-carbon-copy](https://github.com/55Honey/Acore_CarbonCopy) - [lua-exchange-npc](https://github.com/55Honey/Acore_ExchangeNpc) - [lua-event-scripts](https://github.com/55Honey/Acore_eventScripts) - [lua-level-up-reward](https://github.com/55Honey/Acore_LevelUpReward) - [lua-recruit-a-friend](https://github.com/55Honey/Acore_RecruitAFriend) - [lua-send-and-bind](https://github.com/55Honey/Acore_SendAndBind) - [lua-temp-announcements](https://github.com/55Honey/Acore_TempAnnouncements) - [lua-zonecheck](https://github.com/55Honey/acore_Zonecheck) ### Customizations None ### Server ChromieCraft
priority
level wotlk food heals too much what client do you play on enus faction both content phase current behaviour food that requires level such as and heal roughly more than they should over time period of seconds approximate health gain over seconds is including passive regen here are proofs with two different foods expected blizzlike behaviour each of these foods and several others that require should provide this it should heal health per second over seconds summing up to health source steps to reproduce the problem additem target self mod hp damage eat the food observe how you are nearly full hp after seconds of eating with around health instead of extra notes here is a list of items that gain the same buff while eating ac rev hash commit operating system ubuntu modules customizations none server chromiecraft
1
684,713
23,427,892,154
IssuesEvent
2022-08-14 17:11:02
IhsenBouallegue/hub-one
https://api.github.com/repos/IhsenBouallegue/hub-one
closed
dev: keep a changelog
enhancement priority-medium beginner-friendly
Changelogs are important to follow the releases of a software. This issue relates to #5 **Possible solution:** use an already existing package that handles changelogs.
1.0
dev: keep a changelog - Changelogs are important to follow the releases of a software. This issue relates to #5 **Possible solution:** use an already existing package that handles changelogs.
priority
dev keep a changelog changelogs are important to follow the releases of a software this issue relates to possible solution use an already existing package that handles changelogs
1
208,295
7,138,094,421
IssuesEvent
2018-01-23 13:24:57
Automattic/Edit-Flow
https://api.github.com/repos/Automattic/Edit-Flow
closed
Post cache isn't primed on calendar because posts_per_page = -1
Good first issue Module: Calendar Priority::Medium bug
See https://core.trac.wordpress.org/browser/tags/3.8/src/wp-includes/query.php#L2924 If we set it to a high upper bound, however, core will prime the post cache.
1.0
Post cache isn't primed on calendar because posts_per_page = -1 - See https://core.trac.wordpress.org/browser/tags/3.8/src/wp-includes/query.php#L2924 If we set it to a high upper bound, however, core will prime the post cache.
priority
post cache isn t primed on calendar because posts per page see if we set it to a high upper bound however core will prime the post cache
1
427,014
12,391,523,155
IssuesEvent
2020-05-20 12:38:25
ansible/awx
https://api.github.com/repos/ansible/awx
closed
Unable to select single credential row for deletion
component:ui_next priority:medium state:needs_devel type:bug
##### ISSUE TYPE - Bug Report ##### SUMMARY Unable to click on these boxes: <img width="1150" alt="Screen Shot 2020-05-20 at 8 31 13 AM" src="https://user-images.githubusercontent.com/9889020/82446276-5b7ca280-9a74-11ea-962b-838957865b0b.png"> Select all still works ##### STEPS TO REPRODUCE 1. Go to credentials list 2. Attempt to click on a row checkbox ##### EXPECTED RESULTS Checkbox is checked, delete button enabled ##### ACTUAL RESULTS Nothing happens
1.0
Unable to select single credential row for deletion - ##### ISSUE TYPE - Bug Report ##### SUMMARY Unable to click on these boxes: <img width="1150" alt="Screen Shot 2020-05-20 at 8 31 13 AM" src="https://user-images.githubusercontent.com/9889020/82446276-5b7ca280-9a74-11ea-962b-838957865b0b.png"> Select all still works ##### STEPS TO REPRODUCE 1. Go to credentials list 2. Attempt to click on a row checkbox ##### EXPECTED RESULTS Checkbox is checked, delete button enabled ##### ACTUAL RESULTS Nothing happens
priority
unable to select single credential row for deletion issue type bug report summary unable to click on these boxes img width alt screen shot at am src select all still works steps to reproduce go to credentials list attempt to click on a row checkbox expected results checkbox is checked delete button enabled actual results nothing happens
1
37,979
2,834,438,498
IssuesEvent
2015-05-26 04:42:54
ibus/ibus
https://api.github.com/repos/ibus/ibus
closed
[Feature Request]全局按键统计功能(global keypress statistic)
Component-ibus Priority-Medium Type-Enhancement
``` I am interesting to know the press frequence of each key of keyboard, I have search and ask, there is no good way to do this, I think only ibus could help me. My purpose is totally remap my keyboard include letters and symbols base on frequency of daily work. Another way is providing a hook to users via python, so I can write a hook and capture every keypress event, then count it and then rethrow it to ibus. ``` Original issue reported on code.google.com by `guileen` on 2010-10-02 09:44:50
1.0
[Feature Request]全局按键统计功能(global keypress statistic) - ``` I am interesting to know the press frequence of each key of keyboard, I have search and ask, there is no good way to do this, I think only ibus could help me. My purpose is totally remap my keyboard include letters and symbols base on frequency of daily work. Another way is providing a hook to users via python, so I can write a hook and capture every keypress event, then count it and then rethrow it to ibus. ``` Original issue reported on code.google.com by `guileen` on 2010-10-02 09:44:50
priority
全局按键统计功能 global keypress statistic i am interesting to know the press frequence of each key of keyboard i have search and ask there is no good way to do this i think only ibus could help me my purpose is totally remap my keyboard include letters and symbols base on frequency of daily work another way is providing a hook to users via python so i can write a hook and capture every keypress event then count it and then rethrow it to ibus original issue reported on code google com by guileen on
1
509,084
14,712,466,445
IssuesEvent
2021-01-05 08:59:24
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
closed
Some pages do not work when private network is enabled and WooCommerce plugin is active: User Specific issue
Type: Support can't reproduce priority: medium
**Describe the bug** Some pages do not work when a private network is enabled and WooCommerce plugin is active. **To Reproduce** Steps to reproduce the behavior: 1. Go to BuddyBoss settings and enable private network 2. visit member's profile page on the front end without logging in to the site 3. See error **Expected behavior** The pages should not be accessible when the private network is enabled. **Screenshots** - **Support ticket links** - https://secure.helpscout.net/conversation/1224116984/83124?folderId=3701247
1.0
Some pages do not work when private network is enabled and WooCommerce plugin is active: User Specific issue - **Describe the bug** Some pages do not work when a private network is enabled and WooCommerce plugin is active. **To Reproduce** Steps to reproduce the behavior: 1. Go to BuddyBoss settings and enable private network 2. visit member's profile page on the front end without logging in to the site 3. See error **Expected behavior** The pages should not be accessible when the private network is enabled. **Screenshots** - **Support ticket links** - https://secure.helpscout.net/conversation/1224116984/83124?folderId=3701247
priority
some pages do not work when private network is enabled and woocommerce plugin is active user specific issue describe the bug some pages do not work when a private network is enabled and woocommerce plugin is active to reproduce steps to reproduce the behavior go to buddyboss settings and enable private network visit member s profile page on the front end without logging in to the site see error expected behavior the pages should not be accessible when the private network is enabled screenshots support ticket links
1
127,082
5,013,340,783
IssuesEvent
2016-12-13 14:18:02
hpi-swt2/workshop-portal
https://api.github.com/repos/hpi-swt2/workshop-portal
closed
US_1.19: "Persönliche Informationen anlegen"- Button on "Mein Profil"
Medium Priority needs acceptance team-helene
**As** user **I want to** have a "Mein Profil" section as part of the User Drop down, that contains a "Persönliche Informationen anlegen"- Button if I dont have that yet, or show me what I already got. **in order to** have smooth navigation. - [ ] "Mein Profil" in Drop down - [ ] "Persönliche Informationen anlegen"- Button or overview of my personal data
1.0
US_1.19: "Persönliche Informationen anlegen"- Button on "Mein Profil" - **As** user **I want to** have a "Mein Profil" section as part of the User Drop down, that contains a "Persönliche Informationen anlegen"- Button if I dont have that yet, or show me what I already got. **in order to** have smooth navigation. - [ ] "Mein Profil" in Drop down - [ ] "Persönliche Informationen anlegen"- Button or overview of my personal data
priority
us persönliche informationen anlegen button on mein profil as user i want to have a mein profil section as part of the user drop down that contains a persönliche informationen anlegen button if i dont have that yet or show me what i already got in order to have smooth navigation mein profil in drop down persönliche informationen anlegen button or overview of my personal data
1
679,872
23,247,957,817
IssuesEvent
2022-08-03 22:32:54
space-wizards/space-station-14
https://api.github.com/repos/space-wizards/space-station-14
closed
The admin announcement UI button is broken.
Issue: Bug Priority: 2-Before Release Difficulty: 2-Medium Bug: Replicated
## Description Doesn't even open, spits an error in the console. **Reproduction** Run `announceui`
1.0
The admin announcement UI button is broken. - ## Description Doesn't even open, spits an error in the console. **Reproduction** Run `announceui`
priority
the admin announcement ui button is broken description doesn t even open spits an error in the console reproduction run announceui
1
786,087
27,634,069,596
IssuesEvent
2023-03-10 13:10:08
w3c/w3c-website
https://api.github.com/repos/w3c/w3c-website
closed
Incorrect heading structure
bug medium priority website accessibility
Location: [Group participants page](https://beta.w3.org/groups/wg/eowg/participants/) The participants page includes headings for the different participant groups and each participant name is also a heading. They are all marked up as `<h2>` so the visual heirarchy is not communicated correctly. <img width="585" alt="sample of heading structure" src="https://user-images.githubusercontent.com/2444840/223711008-66e709fa-7ee9-4f9c-8789-b24a0c8b0d7e.png"> Easy solution is to change the heading level of the participant names to be `<h3>`.
1.0
Incorrect heading structure - Location: [Group participants page](https://beta.w3.org/groups/wg/eowg/participants/) The participants page includes headings for the different participant groups and each participant name is also a heading. They are all marked up as `<h2>` so the visual heirarchy is not communicated correctly. <img width="585" alt="sample of heading structure" src="https://user-images.githubusercontent.com/2444840/223711008-66e709fa-7ee9-4f9c-8789-b24a0c8b0d7e.png"> Easy solution is to change the heading level of the participant names to be `<h3>`.
priority
incorrect heading structure location the participants page includes headings for the different participant groups and each participant name is also a heading they are all marked up as so the visual heirarchy is not communicated correctly img width alt sample of heading structure src easy solution is to change the heading level of the participant names to be
1
327,690
9,979,036,878
IssuesEvent
2019-07-09 21:30:09
ESGF/esgf-compute-wps
https://api.github.com/repos/ESGF/esgf-compute-wps
opened
Update helm documentation
area/kubernetes kind/task priority/high size/medium
Helm chart needs a little more details and needs to be updated for the new development changes.
1.0
Update helm documentation - Helm chart needs a little more details and needs to be updated for the new development changes.
priority
update helm documentation helm chart needs a little more details and needs to be updated for the new development changes
1
603,963
18,674,771,650
IssuesEvent
2021-10-31 11:18:21
AY2122S1-CS2103T-W13-3/tp
https://api.github.com/repos/AY2122S1-CS2103T-W13-3/tp
closed
[PE-D] Unintuitive date format
enhancement priority.Medium date
The date field is shown on the GUI as yyyy-mm-dd but is parsed as dd/mm/yy HH:mm I found this extremely unintuitive and as a first time user, I was constantly inputting the wrong format which the GUI suggests (yyyy-mm-dd) ![image.png](https://raw.githubusercontent.com/Chesterwongz/ped/main/files/f5674b1e-b8ee-4915-8dd5-cf7a5fc22542.png) <!--session: 1635494146572-d3878df4-261e-46ba-ad4d-a2e0bad2fffb--> <!--Version: Web v3.4.1--> ------------- Labels: `severity.Medium` `type.FeatureFlaw` original: Chesterwongz/ped#15
1.0
[PE-D] Unintuitive date format - The date field is shown on the GUI as yyyy-mm-dd but is parsed as dd/mm/yy HH:mm I found this extremely unintuitive and as a first time user, I was constantly inputting the wrong format which the GUI suggests (yyyy-mm-dd) ![image.png](https://raw.githubusercontent.com/Chesterwongz/ped/main/files/f5674b1e-b8ee-4915-8dd5-cf7a5fc22542.png) <!--session: 1635494146572-d3878df4-261e-46ba-ad4d-a2e0bad2fffb--> <!--Version: Web v3.4.1--> ------------- Labels: `severity.Medium` `type.FeatureFlaw` original: Chesterwongz/ped#15
priority
unintuitive date format the date field is shown on the gui as yyyy mm dd but is parsed as dd mm yy hh mm i found this extremely unintuitive and as a first time user i was constantly inputting the wrong format which the gui suggests yyyy mm dd labels severity medium type featureflaw original chesterwongz ped
1
821,629
30,829,239,936
IssuesEvent
2023-08-01 23:19:53
L483/community-standards-template
https://api.github.com/repos/L483/community-standards-template
closed
[Feature Change] switch-to-issue-forms
Type: Feature Change Priority: Medium Scope: Medium Status: Pending
### Problem/Motivation The visual separation between the issue form's preface and its first input field's heading could be more apparent. The preface should contain the "Information for contributors about label usage" section to make it less missable. Optional instructions make the issue form's preface lengthy. ### Solution Proposal Add a "Preface" heading at the start of the preface. Add a `---` separator at the end of the preface. Move the "Information for contributors about label usage" section into the preface. Put it into an HTML `<details>` element like so: <details> <button><summary><b>Click here for: Concise description</b></summary></button> The optional, lengthy content </details> Source code: ```html <details> <button><summary><b>Click here for: Concise description</b></summary></button> The optional, lengthy content </details> ``` Shorten the visual appearance of any other optional instructions in the same way. ### Impact It only works for issue forms and not for issue templates. Issue templates use plain markdown files, meaning instructions on how to use the template will appear as plain text when filling out an issue template. They can not be styled. ### Acceptance Criteria - [ ] Add a "How to use this issue form" heading at the start of the preface for each issue form - [ ] Add a `---` separator at the end of the preface for each issue form - [ ] "Information for contributors about label usage" - [ ] Move this section into the preface for each issue form - [ ] Apply the described `<details>` solution for each issue form - [ ] Apply the described `<details>` solution for all optional preface instructions for each issue form ### Further Information _No response_ ### Related Issues -original issue: #16
1.0
[Feature Change] switch-to-issue-forms - ### Problem/Motivation The visual separation between the issue form's preface and its first input field's heading could be more apparent. The preface should contain the "Information for contributors about label usage" section to make it less missable. Optional instructions make the issue form's preface lengthy. ### Solution Proposal Add a "Preface" heading at the start of the preface. Add a `---` separator at the end of the preface. Move the "Information for contributors about label usage" section into the preface. Put it into an HTML `<details>` element like so: <details> <button><summary><b>Click here for: Concise description</b></summary></button> The optional, lengthy content </details> Source code: ```html <details> <button><summary><b>Click here for: Concise description</b></summary></button> The optional, lengthy content </details> ``` Shorten the visual appearance of any other optional instructions in the same way. ### Impact It only works for issue forms and not for issue templates. Issue templates use plain markdown files, meaning instructions on how to use the template will appear as plain text when filling out an issue template. They can not be styled. ### Acceptance Criteria - [ ] Add a "How to use this issue form" heading at the start of the preface for each issue form - [ ] Add a `---` separator at the end of the preface for each issue form - [ ] "Information for contributors about label usage" - [ ] Move this section into the preface for each issue form - [ ] Apply the described `<details>` solution for each issue form - [ ] Apply the described `<details>` solution for all optional preface instructions for each issue form ### Further Information _No response_ ### Related Issues -original issue: #16
priority
switch to issue forms problem motivation the visual separation between the issue form s preface and its first input field s heading could be more apparent the preface should contain the information for contributors about label usage section to make it less missable optional instructions make the issue form s preface lengthy solution proposal add a preface heading at the start of the preface add a separator at the end of the preface move the information for contributors about label usage section into the preface put it into an html element like so click here for concise description the optional lengthy content source code html click here for concise description the optional lengthy content shorten the visual appearance of any other optional instructions in the same way impact it only works for issue forms and not for issue templates issue templates use plain markdown files meaning instructions on how to use the template will appear as plain text when filling out an issue template they can not be styled acceptance criteria add a how to use this issue form heading at the start of the preface for each issue form add a separator at the end of the preface for each issue form information for contributors about label usage move this section into the preface for each issue form apply the described solution for each issue form apply the described solution for all optional preface instructions for each issue form further information no response related issues original issue
1