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
855
labels
stringlengths
4
721
body
stringlengths
1
261k
index
stringclasses
13 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
240k
binary_label
int64
0
1
251,354
8,014,131,825
IssuesEvent
2018-07-25 04:40:35
maxmagee/chick-fil-a
https://api.github.com/repos/maxmagee/chick-fil-a
opened
Refactor Home Screen ScrollView
bug high priority
The way the scrollview is currently implemented, it covers up the 'Options' icon. Redesign it so it doesn't cover up the options screen but maintains the positioning of the login card.
1.0
Refactor Home Screen ScrollView - The way the scrollview is currently implemented, it covers up the 'Options' icon. Redesign it so it doesn't cover up the options screen but maintains the positioning of the login card.
priority
refactor home screen scrollview the way the scrollview is currently implemented it covers up the options icon redesign it so it doesn t cover up the options screen but maintains the positioning of the login card
1
617,069
19,341,251,537
IssuesEvent
2021-12-15 05:02:08
ut-issl/c2a-core
https://api.github.com/repos/ut-issl/c2a-core
closed
無名unionを消す,無名unionがC89 CIを通過してしまう
bug priority::high
## 概要 無名unionを消す,無名unionがC89 CIを通過してしまう ## 詳細 これ https://github.com/ut-issl/c2a-core/blob/8d6f9a4e92f362fdc997b0f4242adfecb74d57cd/CmdTlm/command_analyze.h#L36-L47 これを通過してしまった. https://github.com/ut-issl/c2a-core/blob/develop/.github/workflows/build_as_c89.yml ## close条件 - [x] 無名union部分は直す - [x] CIも改善する - [x] C89対応CIも通るようにする
1.0
無名unionを消す,無名unionがC89 CIを通過してしまう - ## 概要 無名unionを消す,無名unionがC89 CIを通過してしまう ## 詳細 これ https://github.com/ut-issl/c2a-core/blob/8d6f9a4e92f362fdc997b0f4242adfecb74d57cd/CmdTlm/command_analyze.h#L36-L47 これを通過してしまった. https://github.com/ut-issl/c2a-core/blob/develop/.github/workflows/build_as_c89.yml ## close条件 - [x] 無名union部分は直す - [x] CIも改善する - [x] C89対応CIも通るようにする
priority
無名unionを消す, ciを通過してしまう 概要 無名unionを消す, ciを通過してしまう 詳細 これ これを通過してしまった. close条件 無名union部分は直す ciも改善する
1
115,296
4,662,572,318
IssuesEvent
2016-10-05 04:51:41
CS2103AUG2016-W14-C4/main
https://api.github.com/repos/CS2103AUG2016-W14-C4/main
closed
Update AboutUs.md page
priority.high
From CS2103T module website: Update the AboutUs.md page. In particular, indicate which member is in charge of which component (i.e. UI, Logic, Storage, etc.).
1.0
Update AboutUs.md page - From CS2103T module website: Update the AboutUs.md page. In particular, indicate which member is in charge of which component (i.e. UI, Logic, Storage, etc.).
priority
update aboutus md page from module website update the aboutus md page in particular indicate which member is in charge of which component i e ui logic storage etc
1
785,776
27,624,806,424
IssuesEvent
2023-03-10 05:23:30
ballerina-platform/ballerina-lang
https://api.github.com/repos/ballerina-platform/ballerina-lang
closed
Compiler gives incorrect error related to var assignment
Type/Bug Priority/High Area/Compiler Team/CompilerFE Reason/EngineeringMistake Deferred
**Description:** <!-- Give a brief description of the bug --> Consider following example ```ballerina import ballerina/io; public function test() { string[] s = [x,x]; io:println(s); } var x = "str"; ``` above code segment outputs following error ```Compiling source balTest.bal ERROR [balTest.bal:(4:19,4:20)] incompatible types: expected 'string', found 'other' ERROR [balTest.bal:(4:21,4:22)] incompatible types: expected 'string', found 'other' error: compilation contains errors ``` But if we change the var assignment position as shown below, it is working as expected ```ballerina import ballerina/io; var x = "str"; public function test() { string[] s = [x,x]; io:println(s); } ```
1.0
Compiler gives incorrect error related to var assignment - **Description:** <!-- Give a brief description of the bug --> Consider following example ```ballerina import ballerina/io; public function test() { string[] s = [x,x]; io:println(s); } var x = "str"; ``` above code segment outputs following error ```Compiling source balTest.bal ERROR [balTest.bal:(4:19,4:20)] incompatible types: expected 'string', found 'other' ERROR [balTest.bal:(4:21,4:22)] incompatible types: expected 'string', found 'other' error: compilation contains errors ``` But if we change the var assignment position as shown below, it is working as expected ```ballerina import ballerina/io; var x = "str"; public function test() { string[] s = [x,x]; io:println(s); } ```
priority
compiler gives incorrect error related to var assignment description consider following example ballerina import ballerina io public function test string s io println s var x str above code segment outputs following error compiling source baltest bal error incompatible types expected string found other error incompatible types expected string found other error compilation contains errors but if we change the var assignment position as shown below it is working as expected ballerina import ballerina io var x str public function test string s io println s
1
698,723
23,990,210,067
IssuesEvent
2022-09-13 23:50:20
Automattic/woocommerce-payments
https://api.github.com/repos/Automattic/woocommerce-payments
closed
iDeal payment method not available for subscription product (with WooCommerce Subscriptions extension)
type: bug priority: high component: upe category: core component: wc subscriptions integration
### Describe the bug In 4617511-zen the user reports that while iDeal is enabled, it is not being displayed at checkout.. ### To Reproduce 1. Opt in to the new checkout experience (UPE). Install and activate WooCommerce Subscriptions and set up a subscription product. 2. Enable iDeal as a payment method 3. Assume that the store configuration is such that iDeal is available 4. Add a simple product to the cart to ensure that indeed, iDeal is available. 5. Add a subscription product to the cart. iDeal is no longer available. ### Screenshots ![see screen shot](https://d.pr/i/13kwvf+) ![see screen shot](https://d.pr/i/Bv66YJ+) ### Expected behavior Lacking any information to tell me otherwise, I expect that iDeal would be available. ### Desktop (please complete the following information): * OS: [e.g. iOS] * Browser [e.g. chrome, safari] * Version [e.g. 22] ### Smartphone (please complete the following information): * Device: [e.g. iPhone6] * OS: [e.g. iOS8.1] * Browser [e.g. stock browser, safari] * Version [e.g. 22] ### Additional context <details> ### WordPress Environment ### WordPress address (URL): https://www.esaresearchinstitute.com Site address (URL): https://www.esaresearchinstitute.com WC Version: 6.0.0 REST API Version: ✔ 6.0.0 WC Blocks Version: ✔ 6.3.3 Action Scheduler Version: ✔ 3.3.0 WC Admin Version: ✔ 2.9.4 Log Directory Writable: ✔ WP Version: 5.8.2 WP Multisite: – WP Memory Limit: 256 MB WP Debug Mode: – WP Cron: ✔ Language: en_US External object cache: – ### Server Environment ### Server Info: Apache PHP Version: 7.4.26 PHP Post Max Size: 516 MB PHP Time Limit: 30 PHP Max Input Vars: 1000 cURL Version: 7.80.0 OpenSSL/1.1.1l SUHOSIN Installed: – MySQL Version: 5.7.23-23 Max Upload Size: 512 MB Default Timezone is UTC: ✔ fsockopen/cURL: ✔ SoapClient: ✔ DOMDocument: ✔ GZip: ✔ Multibyte String: ✔ Remote Post: ✔ Remote Get: ✔ ### Database ### WC Database Version: 6.0.0 WC Database Prefix: 4RT_ Total Database Size: 56.70MB Database Data Size: 50.34MB Database Index Size: 6.36MB 4RT_woocommerce_sessions: Data: 0.13MB + Index: 0.02MB + Engine InnoDB 4RT_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_actionscheduler_actions: Data: 0.19MB + Index: 0.19MB + Engine InnoDB 4RT_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_actionscheduler_logs: Data: 0.11MB + Index: 0.13MB + Engine InnoDB 4RT_aioseo_cache: Data: 0.14MB + Index: 0.03MB + Engine InnoDB 4RT_aioseo_notifications: Data: 0.03MB + Index: 0.06MB + Engine InnoDB 4RT_aioseo_posts: Data: 0.11MB + Index: 0.02MB + Engine InnoDB 4RT_ce4wp_abandoned_checkout: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_ce4wp_contacts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB 4RT_gla_budget_recommendations: Data: 0.22MB + Index: 0.14MB + Engine InnoDB 4RT_gla_merchant_issues: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_gla_shipping_rates: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_mapping_to_external_entities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletter_templates: Data: 2.52MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_scheduled_tasks: Data: 0.05MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_scheduled_task_subscribers: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_sending_queues: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_statistics_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB 4RT_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_subscribers: Data: 0.02MB + Index: 0.13MB + Engine InnoDB 4RT_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_subscriber_segment: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_options: Data: 5.06MB + Index: 0.08MB + Engine InnoDB 4RT_postmeta: Data: 12.06MB + Index: 0.25MB + Engine InnoDB 4RT_posts: Data: 1.42MB + Index: 0.06MB + Engine InnoDB 4RT_tcb_api_error_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_td_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_td_groups: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_termmeta: Data: 0.09MB + Index: 0.03MB + Engine InnoDB 4RT_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_thrive_debug: Data: 1.52MB + Index: 0.00MB + Engine InnoDB 4RT_tva_bundles: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_ipn_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_orders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_order_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_transactions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_contacts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_contact_download: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_event_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_form_summary: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_tve_leads_form_variations: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_tve_leads_group_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_saved_group_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_split_test: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_split_test_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_usermeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB 4RT_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_wc_admin_notes: Data: 0.05MB + Index: 0.00MB + Engine InnoDB 4RT_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB 4RT_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_yaysmtp_email_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_actionscheduler_actions: Data: 0.05MB + Index: 0.13MB + Engine InnoDB staging_4RT_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_aioseo_cache: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_aioseo_notifications: Data: 0.03MB + Index: 0.06MB + Engine InnoDB staging_4RT_aioseo_posts: Data: 0.11MB + Index: 0.02MB + Engine InnoDB staging_4RT_ce4wp_abandoned_checkout: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_ce4wp_contacts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB staging_4RT_gla_budget_recommendations: Data: 0.22MB + Index: 0.14MB + Engine InnoDB staging_4RT_gla_merchant_issues: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_gla_shipping_rates: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_mapping_to_external_entities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletter_templates: Data: 2.52MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_scheduled_tasks: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_scheduled_task_subscribers: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_sending_queues: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_statistics_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB staging_4RT_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_subscribers: Data: 0.02MB + Index: 0.13MB + Engine InnoDB staging_4RT_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_subscriber_segment: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_options: Data: 4.30MB + Index: 0.09MB + Engine InnoDB staging_4RT_postmeta: Data: 13.52MB + Index: 0.33MB + Engine InnoDB staging_4RT_posts: Data: 1.52MB + Index: 0.06MB + Engine InnoDB staging_4RT_tcb_api_error_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_td_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_td_groups: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_termmeta: Data: 0.09MB + Index: 0.03MB + Engine InnoDB staging_4RT_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_thrive_debug: Data: 0.38MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_bundles: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_ipn_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_orders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_order_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_transactions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_contacts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_contact_download: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_event_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_tve_leads_form_summary: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_tve_leads_form_variations: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_tve_leads_group_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_saved_group_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_split_test: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_split_test_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_usermeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB staging_4RT_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine InnoDB staging_4RT_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB staging_4RT_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB ### Post Type Counts ### _tcb_form_settings: 6 attachment: 30 mailpoet_page: 1 nav_menu_item: 6 page: 19 post: 3 postman_sent_mail: 212 product: 4 revision: 34 shop_order: 21 shop_subscription: 2 tcb_content_template: 24 tcb_lightbox: 2 tcb_symbol: 19 thrive_demo_page: 1 thrive_demo_post: 1 thrive_layout: 15 thrive_section: 2 thrive_template: 32 thrive_typography: 3 tva_chapter: 1 tva_course_overview: 9 tva_course_type: 1 tva_lesson: 26 tva_module: 4 tva-acc-restriction: 2 tve_form_type: 1 tve_lead_group: 1 tve_notifications: 1 yaymail_template: 11 ### Security ### Secure connection (HTTPS): ✔ Hide errors from visitors: ✔ ### Active Plugins (27) ### All in One SEO: by All in One SEO Team – 4.1.5.3 Bluehost: by Bluehost – 2.8.5 Classic Editor: by WordPress Contributors – 1.6.2 Google Analytics for WordPress by MonsterInsights: by MonsterInsights – 8.3.0 Google Listings and Ads: by WooCommerce – 1.9.0 Jetpack: by Automattic – 10.4 Mailchimp for WooCommerce: by Mailchimp – 2.5.4 MailPoet 3 (New): by MailPoet – 3.75.1 OptinMonster: by OptinMonster Team – 2.6.9 Post SMTP: by Yehuda Hassine – 2.0.23 Thrive Apprentice: by <a href="https://thrivethemes.com">Thrive Themes</a> – 3.3.2 Thrive Leads: by <a href="https://thrivethemes.com">Thrive Themes</a> – 3.3.2 Thrive Product Manager: by Thrive Themes – 1.2.7 Thrive Architect: by <a href="http://www.thrivethemes.com">Thrive Themes</a> – 3.5.2 UpdraftPlus - Backup/Restore: by UpdraftPlus.Com DavidAnderson – 1.16.66 Direct Checkout for WooCommerce: by QuadLayers – 2.5.7 WooCommerce EU VAT Number: by WooCommerce – 2.4.1 WooCommerce Stripe Gateway: by WooCommerce – 5.9.0 WooCommerce Payments: by Automattic – 3.4.0 WooCommerce PayPal Payments: by WooCommerce – 1.6.3 WooCommerce PDF Invoices & Packing Slips: by Ewout Fernhout – 2.11.1 WooCommerce Shipping & Tax: by WooCommerce – 1.25.20 WooCommerce Subscriptions: by WooCommerce – 3.1.6 WooCommerce: by Automattic – 6.0.0 WPForms Lite: by WPForms – 1.7.1.2 YayMail - WooCommerce Email Customizer: by YayCommerce – 2.7.8 YaySMTP - Simple WP SMTP Mail: by YayCommerce – 2.0.1 ### Inactive Plugins (4) ### Akismet Anti-Spam: by Automattic – 4.2.1 Creative Mail by Constant Contact: by Constant Contact – 1.4.8 Hello Dolly: by Matt Mullenweg – 1.7.2 WooCommerce PayPal Checkout Gateway: by WooCommerce – 2.1.3 ### Dropin Plugins (2) ### db-error.php: db-error.php maintenance.php: maintenance.php ### Must Use Plugins (1) ### Endurance Page Cache: by Mike Hansen – 2.1.2 ### Settings ### API Enabled: – Force SSL: – Currency: EUR (€) Currency Position: left Thousand Separator: , Decimal Separator: . Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) simple (simple) subscription (subscription) variable (variable) variable subscription (variable-subscription) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: ✔ ### WC Pages ### Shop base: #5 - /shop/ Cart: #6 - /cart/ Checkout: #7 - /checkout/ My account: #8 - /my-account/ Terms and conditions: #184 - /terms-conditions/ ### Theme ### Name: Thrive Theme Builder Version: 3.3.2 Author URL: Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme WooCommerce Support: ✔ ### Templates ### Archive Template: Your theme has a woocommerce.php file you will not be able to override the woocommerce/archive-product.php custom template since woocommerce.php has priority over archive-product.php. This is intended to prevent display issues. Overrides: – ### Subscriptions ### WCS_DEBUG: ✔ No Subscriptions Mode: ✔ Live Subscriptions Live URL: https://www.esaresearchinstitute.com Subscription Statuses: wc-active: 1 wc-pending: 1 WooCommerce Account Connected: ✔ Yes Active Product Key: ✔ Yes Report Cache Enabled: ✔ Yes Cache Update Failures: ✔ 0 failure ### Store Setup ### Country / State: Netherlands ### Subscriptions by Payment Gateway ### Stripe: wc-active: 1 wc-pending: 1 ### Payment Gateway Support ### WooCommerce Payments: products refunds subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes subscription_payment_method_change subscription_payment_method_change_customer subscription_payment_method_change_admin multiple_subscriptions tokenization add_payment_method Stripe: products refunds tokenization add_payment_method subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes subscription_payment_method_change subscription_payment_method_change_customer subscription_payment_method_change_admin multiple_subscriptions PayPal: refunds products subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes subscription_payment_method_change subscription_payment_method_change_customer subscription_payment_method_change_admin multiple_subscriptions ### WooCommerce PayPal Payments ### Onboarded: ✔ Shop country code: NL WooCommerce currency supported: ✔ PayPal card processing available in country: – Pay Later messaging available in country: – Webhook status: – Vault enabled: ✔ Logging enabled: ✔ Reference Transactions: – Used PayPal Checkout plugin: ✔ ### WooCommerce Payments ### Version: 3.4.0 Connected to WPCOM: Yes Blog ID: 197300738 Account ID: acct_1Jcn752HTU9NtZN8 ### Action Scheduler ### Canceled: 5 Oldest: 2021-11-30 16:39:46 +0000 Newest: 2021-12-03 06:29:46 +0000 Complete: 520 Oldest: 2021-11-17 16:13:47 +0000 Newest: 2021-12-16 09:22:31 +0000 Pending: 10 Oldest: 2021-12-16 09:37:31 +0000 Newest: 2022-01-12 05:24:06 +0000 ### Status report information ### Generated at: 2021-12-16 09:27:44 +00:00 </details>
1.0
iDeal payment method not available for subscription product (with WooCommerce Subscriptions extension) - ### Describe the bug In 4617511-zen the user reports that while iDeal is enabled, it is not being displayed at checkout.. ### To Reproduce 1. Opt in to the new checkout experience (UPE). Install and activate WooCommerce Subscriptions and set up a subscription product. 2. Enable iDeal as a payment method 3. Assume that the store configuration is such that iDeal is available 4. Add a simple product to the cart to ensure that indeed, iDeal is available. 5. Add a subscription product to the cart. iDeal is no longer available. ### Screenshots ![see screen shot](https://d.pr/i/13kwvf+) ![see screen shot](https://d.pr/i/Bv66YJ+) ### Expected behavior Lacking any information to tell me otherwise, I expect that iDeal would be available. ### Desktop (please complete the following information): * OS: [e.g. iOS] * Browser [e.g. chrome, safari] * Version [e.g. 22] ### Smartphone (please complete the following information): * Device: [e.g. iPhone6] * OS: [e.g. iOS8.1] * Browser [e.g. stock browser, safari] * Version [e.g. 22] ### Additional context <details> ### WordPress Environment ### WordPress address (URL): https://www.esaresearchinstitute.com Site address (URL): https://www.esaresearchinstitute.com WC Version: 6.0.0 REST API Version: ✔ 6.0.0 WC Blocks Version: ✔ 6.3.3 Action Scheduler Version: ✔ 3.3.0 WC Admin Version: ✔ 2.9.4 Log Directory Writable: ✔ WP Version: 5.8.2 WP Multisite: – WP Memory Limit: 256 MB WP Debug Mode: – WP Cron: ✔ Language: en_US External object cache: – ### Server Environment ### Server Info: Apache PHP Version: 7.4.26 PHP Post Max Size: 516 MB PHP Time Limit: 30 PHP Max Input Vars: 1000 cURL Version: 7.80.0 OpenSSL/1.1.1l SUHOSIN Installed: – MySQL Version: 5.7.23-23 Max Upload Size: 512 MB Default Timezone is UTC: ✔ fsockopen/cURL: ✔ SoapClient: ✔ DOMDocument: ✔ GZip: ✔ Multibyte String: ✔ Remote Post: ✔ Remote Get: ✔ ### Database ### WC Database Version: 6.0.0 WC Database Prefix: 4RT_ Total Database Size: 56.70MB Database Data Size: 50.34MB Database Index Size: 6.36MB 4RT_woocommerce_sessions: Data: 0.13MB + Index: 0.02MB + Engine InnoDB 4RT_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_actionscheduler_actions: Data: 0.19MB + Index: 0.19MB + Engine InnoDB 4RT_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_actionscheduler_logs: Data: 0.11MB + Index: 0.13MB + Engine InnoDB 4RT_aioseo_cache: Data: 0.14MB + Index: 0.03MB + Engine InnoDB 4RT_aioseo_notifications: Data: 0.03MB + Index: 0.06MB + Engine InnoDB 4RT_aioseo_posts: Data: 0.11MB + Index: 0.02MB + Engine InnoDB 4RT_ce4wp_abandoned_checkout: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_ce4wp_contacts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB 4RT_gla_budget_recommendations: Data: 0.22MB + Index: 0.14MB + Engine InnoDB 4RT_gla_merchant_issues: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_gla_shipping_rates: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_mapping_to_external_entities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_newsletter_templates: Data: 2.52MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_scheduled_tasks: Data: 0.05MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_scheduled_task_subscribers: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_sending_queues: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_statistics_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB 4RT_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_subscribers: Data: 0.02MB + Index: 0.13MB + Engine InnoDB 4RT_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_subscriber_segment: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_options: Data: 5.06MB + Index: 0.08MB + Engine InnoDB 4RT_postmeta: Data: 12.06MB + Index: 0.25MB + Engine InnoDB 4RT_posts: Data: 1.42MB + Index: 0.06MB + Engine InnoDB 4RT_tcb_api_error_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_td_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_td_groups: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_termmeta: Data: 0.09MB + Index: 0.03MB + Engine InnoDB 4RT_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_thrive_debug: Data: 1.52MB + Index: 0.00MB + Engine InnoDB 4RT_tva_bundles: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_ipn_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_orders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_order_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tva_transactions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_contacts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_contact_download: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_event_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_form_summary: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_tve_leads_form_variations: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_tve_leads_group_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_saved_group_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_split_test: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_tve_leads_split_test_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_usermeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB 4RT_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_wc_admin_notes: Data: 0.05MB + Index: 0.00MB + Engine InnoDB 4RT_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB 4RT_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB 4RT_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB 4RT_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB 4RT_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB 4RT_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 4RT_yaysmtp_email_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_actionscheduler_actions: Data: 0.05MB + Index: 0.13MB + Engine InnoDB staging_4RT_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_aioseo_cache: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_aioseo_notifications: Data: 0.03MB + Index: 0.06MB + Engine InnoDB staging_4RT_aioseo_posts: Data: 0.11MB + Index: 0.02MB + Engine InnoDB staging_4RT_ce4wp_abandoned_checkout: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_ce4wp_contacts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB staging_4RT_gla_budget_recommendations: Data: 0.22MB + Index: 0.14MB + Engine InnoDB staging_4RT_gla_merchant_issues: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_gla_shipping_rates: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_mapping_to_external_entities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_newsletter_templates: Data: 2.52MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_scheduled_tasks: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_scheduled_task_subscribers: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_sending_queues: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_statistics_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB staging_4RT_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_subscribers: Data: 0.02MB + Index: 0.13MB + Engine InnoDB staging_4RT_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_subscriber_segment: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_options: Data: 4.30MB + Index: 0.09MB + Engine InnoDB staging_4RT_postmeta: Data: 13.52MB + Index: 0.33MB + Engine InnoDB staging_4RT_posts: Data: 1.52MB + Index: 0.06MB + Engine InnoDB staging_4RT_tcb_api_error_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_td_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_td_groups: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_termmeta: Data: 0.09MB + Index: 0.03MB + Engine InnoDB staging_4RT_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_thrive_debug: Data: 0.38MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_bundles: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_ipn_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_orders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_order_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tva_transactions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_contacts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_contact_download: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_event_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_tve_leads_form_summary: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_tve_leads_form_variations: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_tve_leads_group_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_saved_group_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_split_test: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_tve_leads_split_test_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_usermeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB staging_4RT_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine InnoDB staging_4RT_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB staging_4RT_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB staging_4RT_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB staging_4RT_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB staging_4RT_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB staging_4RT_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB staging_4RT_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB ### Post Type Counts ### _tcb_form_settings: 6 attachment: 30 mailpoet_page: 1 nav_menu_item: 6 page: 19 post: 3 postman_sent_mail: 212 product: 4 revision: 34 shop_order: 21 shop_subscription: 2 tcb_content_template: 24 tcb_lightbox: 2 tcb_symbol: 19 thrive_demo_page: 1 thrive_demo_post: 1 thrive_layout: 15 thrive_section: 2 thrive_template: 32 thrive_typography: 3 tva_chapter: 1 tva_course_overview: 9 tva_course_type: 1 tva_lesson: 26 tva_module: 4 tva-acc-restriction: 2 tve_form_type: 1 tve_lead_group: 1 tve_notifications: 1 yaymail_template: 11 ### Security ### Secure connection (HTTPS): ✔ Hide errors from visitors: ✔ ### Active Plugins (27) ### All in One SEO: by All in One SEO Team – 4.1.5.3 Bluehost: by Bluehost – 2.8.5 Classic Editor: by WordPress Contributors – 1.6.2 Google Analytics for WordPress by MonsterInsights: by MonsterInsights – 8.3.0 Google Listings and Ads: by WooCommerce – 1.9.0 Jetpack: by Automattic – 10.4 Mailchimp for WooCommerce: by Mailchimp – 2.5.4 MailPoet 3 (New): by MailPoet – 3.75.1 OptinMonster: by OptinMonster Team – 2.6.9 Post SMTP: by Yehuda Hassine – 2.0.23 Thrive Apprentice: by <a href="https://thrivethemes.com">Thrive Themes</a> – 3.3.2 Thrive Leads: by <a href="https://thrivethemes.com">Thrive Themes</a> – 3.3.2 Thrive Product Manager: by Thrive Themes – 1.2.7 Thrive Architect: by <a href="http://www.thrivethemes.com">Thrive Themes</a> – 3.5.2 UpdraftPlus - Backup/Restore: by UpdraftPlus.Com DavidAnderson – 1.16.66 Direct Checkout for WooCommerce: by QuadLayers – 2.5.7 WooCommerce EU VAT Number: by WooCommerce – 2.4.1 WooCommerce Stripe Gateway: by WooCommerce – 5.9.0 WooCommerce Payments: by Automattic – 3.4.0 WooCommerce PayPal Payments: by WooCommerce – 1.6.3 WooCommerce PDF Invoices & Packing Slips: by Ewout Fernhout – 2.11.1 WooCommerce Shipping & Tax: by WooCommerce – 1.25.20 WooCommerce Subscriptions: by WooCommerce – 3.1.6 WooCommerce: by Automattic – 6.0.0 WPForms Lite: by WPForms – 1.7.1.2 YayMail - WooCommerce Email Customizer: by YayCommerce – 2.7.8 YaySMTP - Simple WP SMTP Mail: by YayCommerce – 2.0.1 ### Inactive Plugins (4) ### Akismet Anti-Spam: by Automattic – 4.2.1 Creative Mail by Constant Contact: by Constant Contact – 1.4.8 Hello Dolly: by Matt Mullenweg – 1.7.2 WooCommerce PayPal Checkout Gateway: by WooCommerce – 2.1.3 ### Dropin Plugins (2) ### db-error.php: db-error.php maintenance.php: maintenance.php ### Must Use Plugins (1) ### Endurance Page Cache: by Mike Hansen – 2.1.2 ### Settings ### API Enabled: – Force SSL: – Currency: EUR (€) Currency Position: left Thousand Separator: , Decimal Separator: . Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) simple (simple) subscription (subscription) variable (variable) variable subscription (variable-subscription) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: ✔ ### WC Pages ### Shop base: #5 - /shop/ Cart: #6 - /cart/ Checkout: #7 - /checkout/ My account: #8 - /my-account/ Terms and conditions: #184 - /terms-conditions/ ### Theme ### Name: Thrive Theme Builder Version: 3.3.2 Author URL: Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme WooCommerce Support: ✔ ### Templates ### Archive Template: Your theme has a woocommerce.php file you will not be able to override the woocommerce/archive-product.php custom template since woocommerce.php has priority over archive-product.php. This is intended to prevent display issues. Overrides: – ### Subscriptions ### WCS_DEBUG: ✔ No Subscriptions Mode: ✔ Live Subscriptions Live URL: https://www.esaresearchinstitute.com Subscription Statuses: wc-active: 1 wc-pending: 1 WooCommerce Account Connected: ✔ Yes Active Product Key: ✔ Yes Report Cache Enabled: ✔ Yes Cache Update Failures: ✔ 0 failure ### Store Setup ### Country / State: Netherlands ### Subscriptions by Payment Gateway ### Stripe: wc-active: 1 wc-pending: 1 ### Payment Gateway Support ### WooCommerce Payments: products refunds subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes subscription_payment_method_change subscription_payment_method_change_customer subscription_payment_method_change_admin multiple_subscriptions tokenization add_payment_method Stripe: products refunds tokenization add_payment_method subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes subscription_payment_method_change subscription_payment_method_change_customer subscription_payment_method_change_admin multiple_subscriptions PayPal: refunds products subscriptions subscription_cancellation subscription_suspension subscription_reactivation subscription_amount_changes subscription_date_changes subscription_payment_method_change subscription_payment_method_change_customer subscription_payment_method_change_admin multiple_subscriptions ### WooCommerce PayPal Payments ### Onboarded: ✔ Shop country code: NL WooCommerce currency supported: ✔ PayPal card processing available in country: – Pay Later messaging available in country: – Webhook status: – Vault enabled: ✔ Logging enabled: ✔ Reference Transactions: – Used PayPal Checkout plugin: ✔ ### WooCommerce Payments ### Version: 3.4.0 Connected to WPCOM: Yes Blog ID: 197300738 Account ID: acct_1Jcn752HTU9NtZN8 ### Action Scheduler ### Canceled: 5 Oldest: 2021-11-30 16:39:46 +0000 Newest: 2021-12-03 06:29:46 +0000 Complete: 520 Oldest: 2021-11-17 16:13:47 +0000 Newest: 2021-12-16 09:22:31 +0000 Pending: 10 Oldest: 2021-12-16 09:37:31 +0000 Newest: 2022-01-12 05:24:06 +0000 ### Status report information ### Generated at: 2021-12-16 09:27:44 +00:00 </details>
priority
ideal payment method not available for subscription product with woocommerce subscriptions extension describe the bug in zen the user reports that while ideal is enabled it is not being displayed at checkout to reproduce opt in to the new checkout experience upe install and activate woocommerce subscriptions and set up a subscription product enable ideal as a payment method assume that the store configuration is such that ideal is available add a simple product to the cart to ensure that indeed ideal is available add a subscription product to the cart ideal is no longer available screenshots expected behavior lacking any information to tell me otherwise i expect that ideal would be available desktop please complete the following information os browser version smartphone please complete the following information device os browser version additional context wordpress environment wordpress address url site address url wc version rest api version ✔ wc blocks version ✔ action scheduler version ✔ wc admin version ✔ log directory writable ✔ wp version wp multisite – wp memory limit mb wp debug mode – wp cron ✔ language en us external object cache – server environment server info apache php version php post max size mb php time limit php max input vars curl version openssl suhosin installed – mysql version max upload size mb default timezone is utc ✔ fsockopen curl ✔ soapclient ✔ domdocument ✔ gzip ✔ multibyte string ✔ remote post ✔ remote get ✔ database wc database version wc database prefix total database size database data size database index size woocommerce sessions data index engine innodb woocommerce api keys data index engine innodb woocommerce attribute taxonomies data index engine innodb woocommerce downloadable product permissions data index engine innodb woocommerce order items data index engine innodb woocommerce order itemmeta data index engine innodb woocommerce tax rates data index engine innodb woocommerce tax rate locations data index engine innodb woocommerce shipping zones data index engine innodb woocommerce shipping zone locations data index engine innodb woocommerce shipping zone methods data index engine innodb woocommerce payment tokens data index engine innodb woocommerce payment tokenmeta data index engine innodb woocommerce log data index engine innodb actionscheduler actions data index engine innodb actionscheduler claims data index engine innodb actionscheduler groups data index engine innodb actionscheduler logs data index engine innodb aioseo cache data index engine innodb aioseo notifications data index engine innodb aioseo posts data index engine innodb abandoned checkout data index engine innodb contacts data index engine innodb commentmeta data index engine innodb comments data index engine innodb gla budget recommendations data index engine innodb gla merchant issues data index engine innodb gla shipping rates data index engine innodb gla shipping times data index engine innodb links data index engine innodb mailchimp carts data index engine innodb mailchimp jobs data index engine innodb mailpoet custom fields data index engine innodb mailpoet dynamic segment filters data index engine innodb mailpoet feature flags data index engine innodb mailpoet forms data index engine innodb mailpoet log data index engine innodb mailpoet mapping to external entities data index engine innodb mailpoet newsletters data index engine innodb mailpoet newsletter links data index engine innodb mailpoet newsletter option data index engine innodb mailpoet newsletter option fields data index engine innodb mailpoet newsletter posts data index engine innodb mailpoet newsletter segment data index engine innodb mailpoet newsletter templates data index engine innodb mailpoet scheduled tasks data index engine innodb mailpoet scheduled task subscribers data index engine innodb mailpoet segments data index engine innodb mailpoet sending queues data index engine innodb mailpoet settings data index engine innodb mailpoet statistics bounces data index engine innodb mailpoet statistics clicks data index engine innodb mailpoet statistics forms data index engine innodb mailpoet statistics newsletters data index engine innodb mailpoet statistics opens data index engine innodb mailpoet statistics unsubscribes data index engine innodb mailpoet statistics woocommerce purchases data index engine innodb mailpoet stats notifications data index engine innodb mailpoet subscribers data index engine innodb mailpoet subscriber custom field data index engine innodb mailpoet subscriber ips data index engine innodb mailpoet subscriber segment data index engine innodb mailpoet user agents data index engine innodb mailpoet user flags data index engine innodb options data index engine innodb postmeta data index engine innodb posts data index engine innodb tcb api error log data index engine innodb td fields data index engine innodb td groups data index engine innodb termmeta data index engine innodb terms data index engine innodb term relationships data index engine innodb term taxonomy data index engine innodb thrive debug data index engine innodb tva bundles data index engine innodb tva ipn log data index engine innodb tva orders data index engine innodb tva order items data index engine innodb tva tokens data index engine innodb tva transactions data index engine innodb tve leads contacts data index engine innodb tve leads contact download data index engine innodb tve leads event log data index engine innodb tve leads form summary data index engine innodb tve leads form variations data index engine innodb tve leads group options data index engine innodb tve leads saved group options data index engine innodb tve leads split test data index engine innodb tve leads split test items data index engine innodb usermeta data index engine innodb users data index engine innodb wcpdf invoice number data index engine innodb wc admin notes data index engine innodb wc admin note actions data index engine innodb wc category lookup data index engine innodb wc customer lookup data index engine innodb wc download log data index engine innodb wc order coupon lookup data index engine innodb wc order product lookup data index engine innodb wc order stats data index engine innodb wc order tax lookup data index engine innodb wc product meta lookup data index engine innodb wc rate limits data index engine innodb wc reserved stock data index engine innodb wc tax rate classes data index engine innodb wc webhooks data index engine innodb wpforms tasks meta data index engine innodb yaysmtp email logs data index engine innodb staging actionscheduler actions data index engine innodb staging actionscheduler claims data index engine innodb staging actionscheduler groups data index engine innodb staging actionscheduler logs data index engine innodb staging aioseo cache data index engine innodb staging aioseo notifications data index engine innodb staging aioseo posts data index engine innodb staging abandoned checkout data index engine innodb staging contacts data index engine innodb staging commentmeta data index engine innodb staging comments data index engine innodb staging gla budget recommendations data index engine innodb staging gla merchant issues data index engine innodb staging gla shipping rates data index engine innodb staging gla shipping times data index engine innodb staging links data index engine innodb staging mailchimp carts data index engine innodb staging mailchimp jobs data index engine innodb staging mailpoet custom fields data index engine innodb staging mailpoet dynamic segment filters data index engine innodb staging mailpoet feature flags data index engine innodb staging mailpoet forms data index engine innodb staging mailpoet log data index engine innodb staging mailpoet mapping to external entities data index engine innodb staging mailpoet newsletters data index engine innodb staging mailpoet newsletter links data index engine innodb staging mailpoet newsletter option data index engine innodb staging mailpoet newsletter option fields data index engine innodb staging mailpoet newsletter posts data index engine innodb staging mailpoet newsletter segment data index engine innodb staging mailpoet newsletter templates data index engine innodb staging mailpoet scheduled tasks data index engine innodb staging mailpoet scheduled task subscribers data index engine innodb staging mailpoet segments data index engine innodb staging mailpoet sending queues data index engine innodb staging mailpoet settings data index engine innodb staging mailpoet statistics bounces data index engine innodb staging mailpoet statistics clicks data index engine innodb staging mailpoet statistics forms data index engine innodb staging mailpoet statistics newsletters data index engine innodb staging mailpoet statistics opens data index engine innodb staging mailpoet statistics unsubscribes data index engine innodb staging mailpoet statistics woocommerce purchases data index engine innodb staging mailpoet stats notifications data index engine innodb staging mailpoet subscribers data index engine innodb staging mailpoet subscriber custom field data index engine innodb staging mailpoet subscriber ips data index engine innodb staging mailpoet subscriber segment data index engine innodb staging mailpoet user agents data index engine innodb staging mailpoet user flags data index engine innodb staging options data index engine innodb staging postmeta data index engine innodb staging posts data index engine innodb staging tcb api error log data index engine innodb staging td fields data index engine innodb staging td groups data index engine innodb staging termmeta data index engine innodb staging terms data index engine innodb staging term relationships data index engine innodb staging term taxonomy data index engine innodb staging thrive debug data index engine innodb staging tva bundles data index engine innodb staging tva ipn log data index engine innodb staging tva orders data index engine innodb staging tva order items data index engine innodb staging tva tokens data index engine innodb staging tva transactions data index engine innodb staging tve leads contacts data index engine innodb staging tve leads contact download data index engine innodb staging tve leads event log data index engine innodb staging tve leads form summary data index engine innodb staging tve leads form variations data index engine innodb staging tve leads group options data index engine innodb staging tve leads saved group options data index engine innodb staging tve leads split test data index engine innodb staging tve leads split test items data index engine innodb staging usermeta data index engine innodb staging users data index engine innodb staging wc admin notes data index engine innodb staging wc admin note actions data index engine innodb staging wc category lookup data index engine innodb staging wc customer lookup data index engine innodb staging wc download log data index engine innodb staging wc order coupon lookup data index engine innodb staging wc order product lookup data index engine innodb staging wc order stats data index engine innodb staging wc order tax lookup data index engine innodb staging wc product meta lookup data index engine innodb staging wc reserved stock data index engine innodb staging wc tax rate classes data index engine innodb staging wc webhooks data index engine innodb staging woocommerce api keys data index engine innodb staging woocommerce attribute taxonomies data index engine innodb staging woocommerce downloadable product permissions data index engine innodb staging woocommerce log data index engine innodb staging woocommerce order itemmeta data index engine innodb staging woocommerce order items data index engine innodb staging woocommerce payment tokenmeta data index engine innodb staging woocommerce payment tokens data index engine innodb staging woocommerce sessions data index engine innodb staging woocommerce shipping zones data index engine innodb staging woocommerce shipping zone locations data index engine innodb staging woocommerce shipping zone methods data index engine innodb staging woocommerce tax rates data index engine innodb staging woocommerce tax rate locations data index engine innodb staging wpforms tasks meta data index engine innodb post type counts tcb form settings attachment mailpoet page nav menu item page post postman sent mail product revision shop order shop subscription tcb content template tcb lightbox tcb symbol thrive demo page thrive demo post thrive layout thrive section thrive template thrive typography tva chapter tva course overview tva course type tva lesson tva module tva acc restriction tve form type tve lead group tve notifications yaymail template security secure connection https ✔ hide errors from visitors ✔ active plugins all in one seo by all in one seo team – bluehost by bluehost – classic editor by wordpress contributors – google analytics for wordpress by monsterinsights by monsterinsights – google listings and ads by woocommerce – jetpack by automattic – mailchimp for woocommerce by mailchimp – mailpoet new by mailpoet – optinmonster by optinmonster team – post smtp by yehuda hassine – thrive apprentice by – thrive leads by – thrive product manager by thrive themes – thrive architect by – updraftplus backup restore by updraftplus com davidanderson – direct checkout for woocommerce by quadlayers – woocommerce eu vat number by woocommerce – woocommerce stripe gateway by woocommerce – woocommerce payments by automattic – woocommerce paypal payments by woocommerce – woocommerce pdf invoices packing slips by ewout fernhout – woocommerce shipping tax by woocommerce – woocommerce subscriptions by woocommerce – woocommerce by automattic – wpforms lite by wpforms – yaymail woocommerce email customizer by yaycommerce – yaysmtp simple wp smtp mail by yaycommerce – inactive plugins akismet anti spam by automattic – creative mail by constant contact by constant contact – hello dolly by matt mullenweg – woocommerce paypal checkout gateway by woocommerce – dropin plugins db error php db error php maintenance php maintenance php must use plugins endurance page cache by mike hansen – settings api enabled – force ssl – currency eur € currency position left thousand separator decimal separator number of decimals taxonomies product types external external grouped grouped simple simple subscription subscription variable variable variable subscription variable subscription taxonomies product visibility exclude from catalog exclude from catalog exclude from search exclude from search featured featured outofstock outofstock rated rated rated rated rated rated rated rated rated rated connected to woocommerce com ✔ wc pages shop base shop cart cart checkout checkout my account my account terms and conditions terms conditions theme name thrive theme builder version author url child theme ❌ – if you are modifying woocommerce on a parent theme that you did not build personally we recommend using a child theme see how to create a child theme woocommerce support ✔ templates archive template your theme has a woocommerce php file you will not be able to override the woocommerce archive product php custom template since woocommerce php has priority over archive product php this is intended to prevent display issues overrides – subscriptions wcs debug ✔ no subscriptions mode ✔ live subscriptions live url subscription statuses wc active wc pending woocommerce account connected ✔ yes active product key ✔ yes report cache enabled ✔ yes cache update failures ✔ failure store setup country state netherlands subscriptions by payment gateway stripe wc active wc pending payment gateway support woocommerce payments products refunds subscriptions subscription cancellation subscription suspension subscription reactivation subscription amount changes subscription date changes subscription payment method change subscription payment method change customer subscription payment method change admin multiple subscriptions tokenization add payment method stripe products refunds tokenization add payment method subscriptions subscription cancellation subscription suspension subscription reactivation subscription amount changes subscription date changes subscription payment method change subscription payment method change customer subscription payment method change admin multiple subscriptions paypal refunds products subscriptions subscription cancellation subscription suspension subscription reactivation subscription amount changes subscription date changes subscription payment method change subscription payment method change customer subscription payment method change admin multiple subscriptions woocommerce paypal payments onboarded ✔ shop country code nl woocommerce currency supported ✔ paypal card processing available in country – pay later messaging available in country – webhook status – vault enabled ✔ logging enabled ✔ reference transactions – used paypal checkout plugin ✔ woocommerce payments version connected to wpcom yes blog id account id acct action scheduler canceled oldest newest complete oldest newest pending oldest newest status report information generated at
1
143,902
5,532,450,463
IssuesEvent
2017-03-21 10:39:29
franzenzenhofer/f19n-livetest-chrome-extension
https://api.github.com/repos/franzenzenhofer/f19n-livetest-chrome-extension
closed
floating panel is mini on tripadvisor
high-priority
![image](https://cloud.githubusercontent.com/assets/323190/18007143/12a60f5a-6ba3-11e6-9c02-517cac9c6f9f.png) is: mini panel should: panel should always be as long as possible within the viewport
1.0
floating panel is mini on tripadvisor - ![image](https://cloud.githubusercontent.com/assets/323190/18007143/12a60f5a-6ba3-11e6-9c02-517cac9c6f9f.png) is: mini panel should: panel should always be as long as possible within the viewport
priority
floating panel is mini on tripadvisor is mini panel should panel should always be as long as possible within the viewport
1
225,214
7,479,635,893
IssuesEvent
2018-04-04 15:06:46
Hyesu/ProjectKT
https://api.github.com/repos/Hyesu/ProjectKT
closed
맵 툴 1차 구현
bug priority:high tool
* 필수 - [x] Load 버튼 누르면 특정 stage 파일 읽어오기 - [x] Save 버튼 누르면 stage 파일에 저장하기 - [x] 오브젝트 선택해서 활성화하기 - [x] 오브젝트 드래그 앤 드랍으로 위치 이동하기 - [x] 오브젝트 크기 키우기(화살표 키로) - [x] 디테일 뷰 만들기: 오브젝트 값 설정하게 해줘야 함(타입, collision, AI, texture, eventScript, stringArg, numArg)
1.0
맵 툴 1차 구현 - * 필수 - [x] Load 버튼 누르면 특정 stage 파일 읽어오기 - [x] Save 버튼 누르면 stage 파일에 저장하기 - [x] 오브젝트 선택해서 활성화하기 - [x] 오브젝트 드래그 앤 드랍으로 위치 이동하기 - [x] 오브젝트 크기 키우기(화살표 키로) - [x] 디테일 뷰 만들기: 오브젝트 값 설정하게 해줘야 함(타입, collision, AI, texture, eventScript, stringArg, numArg)
priority
맵 툴 구현 필수 load 버튼 누르면 특정 stage 파일 읽어오기 save 버튼 누르면 stage 파일에 저장하기 오브젝트 선택해서 활성화하기 오브젝트 드래그 앤 드랍으로 위치 이동하기 오브젝트 크기 키우기 화살표 키로 디테일 뷰 만들기 오브젝트 값 설정하게 해줘야 함 타입 collision ai texture eventscript stringarg numarg
1
509,420
14,730,561,623
IssuesEvent
2021-01-06 13:25:10
woocommerce/woocommerce
https://api.github.com/repos/woocommerce/woocommerce
closed
stock_status JSON field gone from Products data at Woo 4.9.0
impact: high priority: high
**Prerequisites (mark completed items with an [x]):** - [X] I have have carried out troubleshooting steps and I believe I have found a bug. - [X] I have searched for similar bugs in both open and closed issues and cannot find a duplicate. **Describe the bug** When using the Jetpack Rest API Tunnel to request Products data through the `wc/v3/products` using a Woo site with the `4.9.0` version all Products JSON response now returns without the `stock_status` data field from the entire payload, as it is right now this is affecting the UI experience from both Android and iOS apps. **Expected behavior** The Products JSON data should describe the Stock status through the `stock_status` field **Actual behavior** All Products JSON data comes without any `stock_status` field or relatable information **Steps to reproduce the bug (We need to be able to reproduce the bug in order to fix it.)** Steps to reproduce the bug: 1. Make a `GET` request to `wc/v3/products` using the Jetpack Rest API Tunnel 2. Verify that the list returned at least one product 3. Verify that the `stock_status` JSON value is gone from the response **Screenshots** <img width="1744" alt="Screen Shot 2021-01-06 at 1 39 34 AM" src="https://user-images.githubusercontent.com/5920403/103729954-5ac35d00-4fc0-11eb-8a23-46226c33ac37.png"> **Isolating the problem (mark completed items with an [x]):** - [X] I have deactivated other plugins and confirmed this bug occurs when only WooCommerce plugin is active. - [X] This bug happens with a default WordPress theme active, or [Storefront](https://woocommerce.com/storefront/). - [X] I can reproduce this bug consistently using the steps above. **WordPress Environment** <details> ``` ` ### WordPress Environment ### WordPress address (URL): https://thomazlowerwoo.mystagingwebsite.com Site address (URL): https://thomazlowerwoo.mystagingwebsite.com WC Version: 4.9.0 REST API Version: ✔ 4.9.0 WC Blocks Version: ✔ 4.0.0 Action Scheduler Version: ✔ 3.1.6 WC Admin Version: ✔ 1.8.2 Log Directory Writable: ✔ WP Version: 5.6 WP Multisite: – WP Memory Limit: 256 MB WP Debug Mode: – WP Cron: ✔ Language: en_US External object cache: ✔ ### Server Environment ### Server Info: nginx PHP Version: 7.3.25 PHP Post Max Size: 2 GB PHP Time Limit: 1200 PHP Max Input Vars: 6144 cURL Version: 7.73.0 OpenSSL/1.1.1d SUHOSIN Installed: – MySQL Version: 5.5.5-10.3.23-MariaDB-log Max Upload Size: 2 GB Default Timezone is UTC: ✔ fsockopen/cURL: ✔ SoapClient: ✔ DOMDocument: ✔ GZip: ✔ Multibyte String: ✔ Remote Post: ✔ Remote Get: ✔ ### Database ### WC Database Version: 4.9.0 WC Database Prefix: wp_ Total Database Size: 3.57MB Database Data Size: 2.08MB Database Index Size: 1.49MB wp_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_actions: Data: 0.02MB + Index: 0.11MB + Engine InnoDB wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_options: Data: 1.08MB + Index: 0.06MB + Engine InnoDB wp_postmeta: Data: 0.14MB + Index: 0.11MB + Engine InnoDB wp_posts: Data: 0.06MB + Index: 0.06MB + Engine InnoDB wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_usermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB ### Post Type Counts ### attachment: 29 page: 6 post: 1 product: 20 product_variation: 7 shop_order: 10 ### Security ### Secure connection (HTTPS): ✔ Hide errors from visitors: ✔ ### Active Plugins (7) ### Akismet Anti-Spam: by Automattic – 4.1.7 WCS staging: by mb – 1.0 Jetpack by WordPress.com: by Automattic – 9.2.1 WooCommerce Beta Tester: by WooCommerce – 2.0.1 – Installed version not tested with active version of WooCommerce 4.0 WooCommerce Stripe Gateway: by WooCommerce – 4.5.0 WooCommerce Shipping & Tax: by Automattic – 1.25.0 (update to version 1.25.4 is available) WooCommerce: by Automattic – 4.9.0-rc.1 ### Inactive Plugins (2) ### WooCommerce Admin: by WooCommerce – 1.2.4 WP Downgrade | Specific Core Version: by Reisetiger – 1.2.1 ### Dropin Plugins (2) ### advanced-cache.php: advanced-cache.php object-cache.php: Memcached ### Settings ### API Enabled: – Force SSL: – Currency: USD ($) Currency Position: left Thousand Separator: . Decimal Separator: , Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) simple (simple) variable (variable) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: – ### WC Pages ### Shop base: #5 - /shop/ Cart: #6 - /cart/ Checkout: #7 - /checkout/ My account: #8 - /my-account/ Terms and conditions: ❌ Page not set ### Theme ### Name: Storefront Version: 2.5.7 (update to version 3.1.0 is available) Author URL: https://woocommerce.com/ Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme WooCommerce Support: ✔ ### Templates ### Overrides: – ### Action Scheduler ### Complete: 6 Oldest: 2020-12-08 23:12:17 +0000 Newest: 2021-01-05 17:23:44 +0000 Pending: 1 Oldest: 2021-01-06 15:42:28 +0000 Newest: 2021-01-06 15:42:28 +0000 ` ``` </details>
1.0
stock_status JSON field gone from Products data at Woo 4.9.0 - **Prerequisites (mark completed items with an [x]):** - [X] I have have carried out troubleshooting steps and I believe I have found a bug. - [X] I have searched for similar bugs in both open and closed issues and cannot find a duplicate. **Describe the bug** When using the Jetpack Rest API Tunnel to request Products data through the `wc/v3/products` using a Woo site with the `4.9.0` version all Products JSON response now returns without the `stock_status` data field from the entire payload, as it is right now this is affecting the UI experience from both Android and iOS apps. **Expected behavior** The Products JSON data should describe the Stock status through the `stock_status` field **Actual behavior** All Products JSON data comes without any `stock_status` field or relatable information **Steps to reproduce the bug (We need to be able to reproduce the bug in order to fix it.)** Steps to reproduce the bug: 1. Make a `GET` request to `wc/v3/products` using the Jetpack Rest API Tunnel 2. Verify that the list returned at least one product 3. Verify that the `stock_status` JSON value is gone from the response **Screenshots** <img width="1744" alt="Screen Shot 2021-01-06 at 1 39 34 AM" src="https://user-images.githubusercontent.com/5920403/103729954-5ac35d00-4fc0-11eb-8a23-46226c33ac37.png"> **Isolating the problem (mark completed items with an [x]):** - [X] I have deactivated other plugins and confirmed this bug occurs when only WooCommerce plugin is active. - [X] This bug happens with a default WordPress theme active, or [Storefront](https://woocommerce.com/storefront/). - [X] I can reproduce this bug consistently using the steps above. **WordPress Environment** <details> ``` ` ### WordPress Environment ### WordPress address (URL): https://thomazlowerwoo.mystagingwebsite.com Site address (URL): https://thomazlowerwoo.mystagingwebsite.com WC Version: 4.9.0 REST API Version: ✔ 4.9.0 WC Blocks Version: ✔ 4.0.0 Action Scheduler Version: ✔ 3.1.6 WC Admin Version: ✔ 1.8.2 Log Directory Writable: ✔ WP Version: 5.6 WP Multisite: – WP Memory Limit: 256 MB WP Debug Mode: – WP Cron: ✔ Language: en_US External object cache: ✔ ### Server Environment ### Server Info: nginx PHP Version: 7.3.25 PHP Post Max Size: 2 GB PHP Time Limit: 1200 PHP Max Input Vars: 6144 cURL Version: 7.73.0 OpenSSL/1.1.1d SUHOSIN Installed: – MySQL Version: 5.5.5-10.3.23-MariaDB-log Max Upload Size: 2 GB Default Timezone is UTC: ✔ fsockopen/cURL: ✔ SoapClient: ✔ DOMDocument: ✔ GZip: ✔ Multibyte String: ✔ Remote Post: ✔ Remote Get: ✔ ### Database ### WC Database Version: 4.9.0 WC Database Prefix: wp_ Total Database Size: 3.57MB Database Data Size: 2.08MB Database Index Size: 1.49MB wp_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_actions: Data: 0.02MB + Index: 0.11MB + Engine InnoDB wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_options: Data: 1.08MB + Index: 0.06MB + Engine InnoDB wp_postmeta: Data: 0.14MB + Index: 0.11MB + Engine InnoDB wp_posts: Data: 0.06MB + Index: 0.06MB + Engine InnoDB wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_usermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wp_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB ### Post Type Counts ### attachment: 29 page: 6 post: 1 product: 20 product_variation: 7 shop_order: 10 ### Security ### Secure connection (HTTPS): ✔ Hide errors from visitors: ✔ ### Active Plugins (7) ### Akismet Anti-Spam: by Automattic – 4.1.7 WCS staging: by mb – 1.0 Jetpack by WordPress.com: by Automattic – 9.2.1 WooCommerce Beta Tester: by WooCommerce – 2.0.1 – Installed version not tested with active version of WooCommerce 4.0 WooCommerce Stripe Gateway: by WooCommerce – 4.5.0 WooCommerce Shipping & Tax: by Automattic – 1.25.0 (update to version 1.25.4 is available) WooCommerce: by Automattic – 4.9.0-rc.1 ### Inactive Plugins (2) ### WooCommerce Admin: by WooCommerce – 1.2.4 WP Downgrade | Specific Core Version: by Reisetiger – 1.2.1 ### Dropin Plugins (2) ### advanced-cache.php: advanced-cache.php object-cache.php: Memcached ### Settings ### API Enabled: – Force SSL: – Currency: USD ($) Currency Position: left Thousand Separator: . Decimal Separator: , Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) simple (simple) variable (variable) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: – ### WC Pages ### Shop base: #5 - /shop/ Cart: #6 - /cart/ Checkout: #7 - /checkout/ My account: #8 - /my-account/ Terms and conditions: ❌ Page not set ### Theme ### Name: Storefront Version: 2.5.7 (update to version 3.1.0 is available) Author URL: https://woocommerce.com/ Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme WooCommerce Support: ✔ ### Templates ### Overrides: – ### Action Scheduler ### Complete: 6 Oldest: 2020-12-08 23:12:17 +0000 Newest: 2021-01-05 17:23:44 +0000 Pending: 1 Oldest: 2021-01-06 15:42:28 +0000 Newest: 2021-01-06 15:42:28 +0000 ` ``` </details>
priority
stock status json field gone from products data at woo prerequisites mark completed items with an i have have carried out troubleshooting steps and i believe i have found a bug i have searched for similar bugs in both open and closed issues and cannot find a duplicate describe the bug when using the jetpack rest api tunnel to request products data through the wc products using a woo site with the version all products json response now returns without the stock status data field from the entire payload as it is right now this is affecting the ui experience from both android and ios apps expected behavior the products json data should describe the stock status through the stock status field actual behavior all products json data comes without any stock status field or relatable information steps to reproduce the bug we need to be able to reproduce the bug in order to fix it steps to reproduce the bug make a get request to wc products using the jetpack rest api tunnel verify that the list returned at least one product verify that the stock status json value is gone from the response screenshots img width alt screen shot at am src isolating the problem mark completed items with an i have deactivated other plugins and confirmed this bug occurs when only woocommerce plugin is active this bug happens with a default wordpress theme active or i can reproduce this bug consistently using the steps above wordpress environment wordpress environment wordpress address url site address url wc version rest api version ✔ wc blocks version ✔ action scheduler version ✔ wc admin version ✔ log directory writable ✔ wp version wp multisite – wp memory limit mb wp debug mode – wp cron ✔ language en us external object cache ✔ server environment server info nginx php version php post max size gb php time limit php max input vars curl version openssl suhosin installed – mysql version mariadb log max upload size gb default timezone is utc ✔ fsockopen curl ✔ soapclient ✔ domdocument ✔ gzip ✔ multibyte string ✔ remote post ✔ remote get ✔ database wc database version wc database prefix wp total database size database data size database index size wp woocommerce sessions data index engine innodb wp woocommerce api keys data index engine innodb wp woocommerce attribute taxonomies data index engine innodb wp woocommerce downloadable product permissions data index engine innodb wp woocommerce order items data index engine innodb wp woocommerce order itemmeta data index engine innodb wp woocommerce tax rates data index engine innodb wp woocommerce tax rate locations data index engine innodb wp woocommerce shipping zones data index engine innodb wp woocommerce shipping zone locations data index engine innodb wp woocommerce shipping zone methods data index engine innodb wp woocommerce payment tokens data index engine innodb wp woocommerce payment tokenmeta data index engine innodb wp woocommerce log data index engine innodb wp actionscheduler actions data index engine innodb wp actionscheduler claims data index engine innodb wp actionscheduler groups data index engine innodb wp actionscheduler logs data index engine innodb wp commentmeta data index engine innodb wp comments data index engine innodb wp links data index engine innodb wp options data index engine innodb wp postmeta data index engine innodb wp posts data index engine innodb wp termmeta data index engine innodb wp terms data index engine innodb wp term relationships data index engine innodb wp term taxonomy data index engine innodb wp usermeta data index engine innodb wp users data index engine innodb wp wc admin notes data index engine innodb wp wc admin note actions data index engine innodb wp wc category lookup data index engine innodb wp wc customer lookup data index engine innodb wp wc download log data index engine innodb wp wc order coupon lookup data index engine innodb wp wc order product lookup data index engine innodb wp wc order stats data index engine innodb wp wc order tax lookup data index engine innodb wp wc product meta lookup data index engine innodb wp wc reserved stock data index engine innodb wp wc tax rate classes data index engine innodb wp wc webhooks data index engine innodb post type counts attachment page post product product variation shop order security secure connection https ✔ hide errors from visitors ✔ active plugins akismet anti spam by automattic – wcs staging by mb – jetpack by wordpress com by automattic – woocommerce beta tester by woocommerce – – installed version not tested with active version of woocommerce woocommerce stripe gateway by woocommerce – woocommerce shipping tax by automattic – update to version is available woocommerce by automattic – rc inactive plugins woocommerce admin by woocommerce – wp downgrade specific core version by reisetiger – dropin plugins advanced cache php advanced cache php object cache php memcached settings api enabled – force ssl – currency usd currency position left thousand separator decimal separator number of decimals taxonomies product types external external grouped grouped simple simple variable variable taxonomies product visibility exclude from catalog exclude from catalog exclude from search exclude from search featured featured outofstock outofstock rated rated rated rated rated rated rated rated rated rated connected to woocommerce com – wc pages shop base shop cart cart checkout checkout my account my account terms and conditions ❌ page not set theme name storefront version update to version is available author url child theme ❌ – if you are modifying woocommerce on a parent theme that you did not build personally we recommend using a child theme see how to create a child theme woocommerce support ✔ templates overrides – action scheduler complete oldest newest pending oldest newest
1
734,598
25,354,632,055
IssuesEvent
2022-11-20 07:10:27
renovatebot/renovate
https://api.github.com/repos/renovatebot/renovate
closed
Refactor parentSha/baseBranchSha logic in branch cache
priority-2-high type:refactor status:ready
### Describe the proposed change(s). I think this might be a simpler solution: - Remove parentSha altogether - Add new boolean field "pristine" which is set to `true` every time a *new commit* is made (including branch creation) but set to `false` whenever base or branch SHA is changed by the user (or some commit event we didn't do) Then for the purposes of merge confidence we will only include the data when `pristine=true`. Cc @Gabriel-Ladzaretti
1.0
Refactor parentSha/baseBranchSha logic in branch cache - ### Describe the proposed change(s). I think this might be a simpler solution: - Remove parentSha altogether - Add new boolean field "pristine" which is set to `true` every time a *new commit* is made (including branch creation) but set to `false` whenever base or branch SHA is changed by the user (or some commit event we didn't do) Then for the purposes of merge confidence we will only include the data when `pristine=true`. Cc @Gabriel-Ladzaretti
priority
refactor parentsha basebranchsha logic in branch cache describe the proposed change s i think this might be a simpler solution remove parentsha altogether add new boolean field pristine which is set to true every time a new commit is made including branch creation but set to false whenever base or branch sha is changed by the user or some commit event we didn t do then for the purposes of merge confidence we will only include the data when pristine true cc gabriel ladzaretti
1
337,606
10,219,688,259
IssuesEvent
2019-08-15 19:15:03
engelsystem/engelsystem
https://api.github.com/repos/engelsystem/engelsystem
closed
Create Multiple Shifts with Shift Change type ignores End Time
Priority: High Status: Available Type: Bug(fix)
When trying to create multiple shifts, the end time is ignored: Reproducing: Admin -> Create Shift Add A shift with Start Time: 2019-08-20 11:30 End Time: 2019-08-20 22:00 Check [X] Create multiple shifts with variable length Shift Change Hours: 14, 16, 18, 20 What should happen: 5 Shifts: 11:30-14:00 14:00-16:00 16:00-20:00 20:00-22:00 What happes instead: 5 Shifts: 11:30-14:00 14:00-16:00 16:00-20:00 **20:00-14:00** (Last Shift 20:00-14:00 ist not as expected...)
1.0
Create Multiple Shifts with Shift Change type ignores End Time - When trying to create multiple shifts, the end time is ignored: Reproducing: Admin -> Create Shift Add A shift with Start Time: 2019-08-20 11:30 End Time: 2019-08-20 22:00 Check [X] Create multiple shifts with variable length Shift Change Hours: 14, 16, 18, 20 What should happen: 5 Shifts: 11:30-14:00 14:00-16:00 16:00-20:00 20:00-22:00 What happes instead: 5 Shifts: 11:30-14:00 14:00-16:00 16:00-20:00 **20:00-14:00** (Last Shift 20:00-14:00 ist not as expected...)
priority
create multiple shifts with shift change type ignores end time when trying to create multiple shifts the end time is ignored reproducing admin create shift add a shift with start time end time check create multiple shifts with variable length shift change hours what should happen shifts what happes instead shifts last shift ist not as expected
1
313,198
9,558,203,024
IssuesEvent
2019-05-03 13:40:44
conan-io/conan
https://api.github.com/repos/conan-io/conan
closed
cppstd as a subsetting
complex: medium priority: high stage: review type: feature
We considered better to have the cppstd as a subsetting of every compiler: - If you don't specify the -s compiler.cppstd=XXX it won't change anything, because will come with a None default value. - We won't break anything, the global setting will be kept, but deprecated (comment at settings.yml and docs). - So any recipe could receive the subsetting and compile with a different version of the language automatically. - The reasons to do a first level setting was to not generate new binary IDS for C libraries that doesn't remove the subsetting. We consider more important to be "injectable" at any recipe. - Conan will fail if both are specified. - Conan will try internally to manage the value of the new one, copying from the old one if possible (to ease the code and future deprecation of the global setting) - Each compiler will have their own values, it has a lot of sense.
1.0
cppstd as a subsetting - We considered better to have the cppstd as a subsetting of every compiler: - If you don't specify the -s compiler.cppstd=XXX it won't change anything, because will come with a None default value. - We won't break anything, the global setting will be kept, but deprecated (comment at settings.yml and docs). - So any recipe could receive the subsetting and compile with a different version of the language automatically. - The reasons to do a first level setting was to not generate new binary IDS for C libraries that doesn't remove the subsetting. We consider more important to be "injectable" at any recipe. - Conan will fail if both are specified. - Conan will try internally to manage the value of the new one, copying from the old one if possible (to ease the code and future deprecation of the global setting) - Each compiler will have their own values, it has a lot of sense.
priority
cppstd as a subsetting we considered better to have the cppstd as a subsetting of every compiler if you don t specify the s compiler cppstd xxx it won t change anything because will come with a none default value we won t break anything the global setting will be kept but deprecated comment at settings yml and docs so any recipe could receive the subsetting and compile with a different version of the language automatically the reasons to do a first level setting was to not generate new binary ids for c libraries that doesn t remove the subsetting we consider more important to be injectable at any recipe conan will fail if both are specified conan will try internally to manage the value of the new one copying from the old one if possible to ease the code and future deprecation of the global setting each compiler will have their own values it has a lot of sense
1
566,564
16,824,501,880
IssuesEvent
2021-06-17 16:41:03
heyset/deskinar
https://api.github.com/repos/heyset/deskinar
opened
[Feature] Create thread card component
3 points high priority
In the main page, threads should be cards with the OP: * Author name * Text * Timestamp (relative if within the week) * Like button * A check showing if it's answered or not.
1.0
[Feature] Create thread card component - In the main page, threads should be cards with the OP: * Author name * Text * Timestamp (relative if within the week) * Like button * A check showing if it's answered or not.
priority
create thread card component in the main page threads should be cards with the op author name text timestamp relative if within the week like button a check showing if it s answered or not
1
552,151
16,196,185,171
IssuesEvent
2021-05-04 14:50:00
JohnXLivingston/peertube-plugin-livechat
https://api.github.com/repos/JohnXLivingston/peertube-plugin-livechat
opened
Builtin Prosody: ConverseJS don't get room information on first query
High priority Prosody bug
**Describe the bug** When using the Builtin Prosody, the first user opening a room don't get the room informations. It seems they are set too late, and ConverseJS keeps in cache what it get.
1.0
Builtin Prosody: ConverseJS don't get room information on first query - **Describe the bug** When using the Builtin Prosody, the first user opening a room don't get the room informations. It seems they are set too late, and ConverseJS keeps in cache what it get.
priority
builtin prosody conversejs don t get room information on first query describe the bug when using the builtin prosody the first user opening a room don t get the room informations it seems they are set too late and conversejs keeps in cache what it get
1
547,178
16,039,173,870
IssuesEvent
2021-04-22 04:49:58
thzidaan/Web-Scraper
https://api.github.com/repos/thzidaan/Web-Scraper
closed
[Dev Task] Create a spider for Amazon
Dev Task Priority (High) enhancement
**User Story** [Scraping Amazon](https://github.com/thzidaan/Web-Scraper/issues/4) **Details** Create a spider which is able to crawl information from the amazon website **Story Points** Story Point : 3
1.0
[Dev Task] Create a spider for Amazon - **User Story** [Scraping Amazon](https://github.com/thzidaan/Web-Scraper/issues/4) **Details** Create a spider which is able to crawl information from the amazon website **Story Points** Story Point : 3
priority
create a spider for amazon user story details create a spider which is able to crawl information from the amazon website story points story point
1
722,190
24,853,992,007
IssuesEvent
2022-10-26 23:16:13
portefaix/portefaix
https://api.github.com/repos/portefaix/portefaix
closed
Argo-CD : ServerSideApply
status/proposal priority/high kind/feature area/kubernetes size/m lifecycle/stale lifecycle/frozen
**Is your feature request related to a problem? Please describe.** Some configmap are too long : `Too long: must have at most 262144 bytes (retried 5 times)` **Describe the solution you'd like** Argo-CD applications must use ServerSideApply feature : https://github.com/argoproj/argo-cd/pull/9711 **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
Argo-CD : ServerSideApply - **Is your feature request related to a problem? Please describe.** Some configmap are too long : `Too long: must have at most 262144 bytes (retried 5 times)` **Describe the solution you'd like** Argo-CD applications must use ServerSideApply feature : https://github.com/argoproj/argo-cd/pull/9711 **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
argo cd serversideapply is your feature request related to a problem please describe some configmap are too long too long must have at most bytes retried times describe the solution you d like argo cd applications must use serversideapply feature 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
220,273
7,354,812,710
IssuesEvent
2018-03-09 08:44:19
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
It is required relevant information on GDPR compliancy in the documentation
2.2.0 Priority/Highest Severity/Blocker Type/Docs
**Description:** Currently, there is no any detail/content related to GDPR compliancy in the documentation[1] but we have already released GDPR compliance feature on apim2.1.0-update13 [1] https://docs.wso2.com/display/AM2xx/ **Affected Product Version:** wso2apim2.1.0-update13
1.0
It is required relevant information on GDPR compliancy in the documentation - **Description:** Currently, there is no any detail/content related to GDPR compliancy in the documentation[1] but we have already released GDPR compliance feature on apim2.1.0-update13 [1] https://docs.wso2.com/display/AM2xx/ **Affected Product Version:** wso2apim2.1.0-update13
priority
it is required relevant information on gdpr compliancy in the documentation description currently there is no any detail content related to gdpr compliancy in the documentation but we have already released gdpr compliance feature on affected product version
1
652,508
21,554,976,759
IssuesEvent
2022-04-30 08:50:04
bounswe/bounswe2022group3
https://api.github.com/repos/bounswe/bounswe2022group3
closed
Initial Setup for Frontend of Practice App
priority: high effort: high Set-up
We have decided that we will develop the frontend for the Practice App using Next.js. Next.js is React framework. Some of its advantages are: * File system routing * Built-in component-level CSS support (*.module.css) * Static Site Generation (SSG) and Server Side Rendering (SSR) support * Code splitting and Bundling * Fast refresh More details about Next.js can be found [here](https://nextjs.org/). I will use create-next-app to set up the initial project. I will then refactor it a little bit. I will also provide some details about how to make Next.js work locally. **Deadline:** 30.04.2022 @23.59
1.0
Initial Setup for Frontend of Practice App - We have decided that we will develop the frontend for the Practice App using Next.js. Next.js is React framework. Some of its advantages are: * File system routing * Built-in component-level CSS support (*.module.css) * Static Site Generation (SSG) and Server Side Rendering (SSR) support * Code splitting and Bundling * Fast refresh More details about Next.js can be found [here](https://nextjs.org/). I will use create-next-app to set up the initial project. I will then refactor it a little bit. I will also provide some details about how to make Next.js work locally. **Deadline:** 30.04.2022 @23.59
priority
initial setup for frontend of practice app we have decided that we will develop the frontend for the practice app using next js next js is react framework some of its advantages are file system routing built in component level css support module css static site generation ssg and server side rendering ssr support code splitting and bundling fast refresh more details about next js can be found i will use create next app to set up the initial project i will then refactor it a little bit i will also provide some details about how to make next js work locally deadline
1
34,376
2,777,283,282
IssuesEvent
2015-05-05 06:43:47
punongbayan-araullo/tickets
https://api.github.com/repos/punongbayan-araullo/tickets
opened
Ability to log or aggregate visits by Partners to Client profile. Visit related activities may also be logged from Pursuits
priority - high status - accepted system - clients type - enhancement
Ability to log or aggregate visits by Partners to Client profile. Visit related activities may also be logged from Pursuits
1.0
Ability to log or aggregate visits by Partners to Client profile. Visit related activities may also be logged from Pursuits - Ability to log or aggregate visits by Partners to Client profile. Visit related activities may also be logged from Pursuits
priority
ability to log or aggregate visits by partners to client profile visit related activities may also be logged from pursuits ability to log or aggregate visits by partners to client profile visit related activities may also be logged from pursuits
1
503,613
14,595,338,227
IssuesEvent
2020-12-20 11:00:08
amitsingh-007/bypass-links
https://api.github.com/repos/amitsingh-007/bypass-links
closed
Refactor code such that make seperate bundle for firebase and use it in content and bg scripts
Enhancement High Priority
https://stackoverflow.com/questions/18651620/multiple-js-files-in-chrome-extension-how-to-load-them
1.0
Refactor code such that make seperate bundle for firebase and use it in content and bg scripts - https://stackoverflow.com/questions/18651620/multiple-js-files-in-chrome-extension-how-to-load-them
priority
refactor code such that make seperate bundle for firebase and use it in content and bg scripts
1
480,472
13,852,722,167
IssuesEvent
2020-10-15 07:00:10
onaio/reveal-frontend
https://api.github.com/repos/onaio/reveal-frontend
closed
THAI LOCAL There are no other users shown when one clicks on the user filter
Priority: High bug
There are no other users shown when one clicks on the user filter ![image](https://user-images.githubusercontent.com/61143692/95622300-dc682500-0a7b-11eb-8856-af119621dfdb.png) superset user
1.0
THAI LOCAL There are no other users shown when one clicks on the user filter - There are no other users shown when one clicks on the user filter ![image](https://user-images.githubusercontent.com/61143692/95622300-dc682500-0a7b-11eb-8856-af119621dfdb.png) superset user
priority
thai local there are no other users shown when one clicks on the user filter there are no other users shown when one clicks on the user filter superset user
1
733,549
25,310,973,249
IssuesEvent
2022-11-17 17:24:41
brawnswanson/OptimalHealth
https://api.github.com/repos/brawnswanson/OptimalHealth
closed
Portion circles are too big and scroll goes beyond bottom of screen
bug Priority: High
Lookat either geometry reader to size things?
1.0
Portion circles are too big and scroll goes beyond bottom of screen - Lookat either geometry reader to size things?
priority
portion circles are too big and scroll goes beyond bottom of screen lookat either geometry reader to size things
1
759,916
26,618,489,710
IssuesEvent
2023-01-24 09:24:10
rpm-software-management/dnf5
https://api.github.com/repos/rpm-software-management/dnf5
closed
Add highlevel API for usage of "install_specs"
Priority: HIGH
dnf4 (`install_specs()` method of the `Base` class) has a feature on API that enables usage of so-called "install_specs" for transaction operations. Install spec is a string that describes any artifact the user wants to include into transaction: - rpm from repository - local rpm file - URL to rpm file - group, environmental group - module New API method should - accept install spec on the input - be able to parse install spec and decide whether the artifact is a package, a group, or a module - download required package from given URL (for downloading the https://github.com/rpm-software-management/dnf5/issues/203 functionality is required) - de-duplicate command line packages, inserting the same rpm file to libsolv pool should be avoided (would behave like multiple independent packages and possibly cause troubles) - all downloads for given transaction are performed once during goal resolution Implementation of this feature will enable us to move parsing of packages specified on the command line from client apps (dnf5, dnf5daemon-client) to the common place in the libdnf5 library.
1.0
Add highlevel API for usage of "install_specs" - dnf4 (`install_specs()` method of the `Base` class) has a feature on API that enables usage of so-called "install_specs" for transaction operations. Install spec is a string that describes any artifact the user wants to include into transaction: - rpm from repository - local rpm file - URL to rpm file - group, environmental group - module New API method should - accept install spec on the input - be able to parse install spec and decide whether the artifact is a package, a group, or a module - download required package from given URL (for downloading the https://github.com/rpm-software-management/dnf5/issues/203 functionality is required) - de-duplicate command line packages, inserting the same rpm file to libsolv pool should be avoided (would behave like multiple independent packages and possibly cause troubles) - all downloads for given transaction are performed once during goal resolution Implementation of this feature will enable us to move parsing of packages specified on the command line from client apps (dnf5, dnf5daemon-client) to the common place in the libdnf5 library.
priority
add highlevel api for usage of install specs install specs method of the base class has a feature on api that enables usage of so called install specs for transaction operations install spec is a string that describes any artifact the user wants to include into transaction rpm from repository local rpm file url to rpm file group environmental group module new api method should accept install spec on the input be able to parse install spec and decide whether the artifact is a package a group or a module download required package from given url for downloading the functionality is required de duplicate command line packages inserting the same rpm file to libsolv pool should be avoided would behave like multiple independent packages and possibly cause troubles all downloads for given transaction are performed once during goal resolution implementation of this feature will enable us to move parsing of packages specified on the command line from client apps client to the common place in the library
1
39,118
2,851,134,727
IssuesEvent
2015-06-01 02:48:48
afollestad/cabinet-issue-tracker
https://api.github.com/repos/afollestad/cabinet-issue-tracker
closed
Use new support design library's widgets
enhancement high priority in progress
https://developer.android.com/tools/support-library/index.html `NavigationView`: navigation drawer `FloatingActionButton`: Unfortunately doesn't have menu right now (I don't think), but we should keep an eye out for that. `Snackbar`: Perhaps we can use this for error messages or just to replace the `Toast`s `AppBarLayout`: Responds to scrolling (like how we already have implemented)
1.0
Use new support design library's widgets - https://developer.android.com/tools/support-library/index.html `NavigationView`: navigation drawer `FloatingActionButton`: Unfortunately doesn't have menu right now (I don't think), but we should keep an eye out for that. `Snackbar`: Perhaps we can use this for error messages or just to replace the `Toast`s `AppBarLayout`: Responds to scrolling (like how we already have implemented)
priority
use new support design library s widgets navigationview navigation drawer floatingactionbutton unfortunately doesn t have menu right now i don t think but we should keep an eye out for that snackbar perhaps we can use this for error messages or just to replace the toast s appbarlayout responds to scrolling like how we already have implemented
1
509,994
14,767,114,421
IssuesEvent
2021-01-10 04:39:28
fossasia/open-event-frontend
https://api.github.com/repos/fossasia/open-event-frontend
opened
Not able to create a speaker due to Error "Field may not be null"
Priority: High Priority: Urgent bug
Trying to create a speaker on next months Codeheat event shows an error message "Field may not be null" even though I filled in all fields. Compare https://eventyay.com/events/f4fc71b8/speakers/create ![Screenshot from 2021-01-10 05-38-24](https://user-images.githubusercontent.com/1583873/104114569-26280c00-5306-11eb-8581-1a56d44c823c.png)
2.0
Not able to create a speaker due to Error "Field may not be null" - Trying to create a speaker on next months Codeheat event shows an error message "Field may not be null" even though I filled in all fields. Compare https://eventyay.com/events/f4fc71b8/speakers/create ![Screenshot from 2021-01-10 05-38-24](https://user-images.githubusercontent.com/1583873/104114569-26280c00-5306-11eb-8581-1a56d44c823c.png)
priority
not able to create a speaker due to error field may not be null trying to create a speaker on next months codeheat event shows an error message field may not be null even though i filled in all fields compare
1
290,836
8,908,281,880
IssuesEvent
2019-01-18 00:06:33
nluedtke/linux_kernel_cves
https://api.github.com/repos/nluedtke/linux_kernel_cves
closed
Upgrade Webpack
Web Frontend high priority in progress
Upgrade webpack-dev-server to version 3.1.11 or later to fix vulnerable dependency.
1.0
Upgrade Webpack - Upgrade webpack-dev-server to version 3.1.11 or later to fix vulnerable dependency.
priority
upgrade webpack upgrade webpack dev server to version or later to fix vulnerable dependency
1
343,555
10,332,507,093
IssuesEvent
2019-09-03 00:32:07
HackGT/bolt
https://api.github.com/repos/HackGT/bolt
closed
Logout is broken
component / auth priority / high type / bug
When you click the logout button, you get the following error ```js TypeError: "listener" argument must be a function at ClientRequest.once (events.js:340:11) at new ClientRequest (_http_client.js:164:10) at Object.request (http.js:38:10) at Object.request (https.js:239:15) at exports.authRoutes.all (C:\Users\Evan\Documents\GitHub\bolt\server\build\auth\auth.js:97:19) at Layer.handle [as handle_request] (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\layer.js:95:5) at next (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\route.js:137:13) at Route.dispatch (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\route.js:112:3) at Layer.handle [as handle_request] (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\layer.js:95:5) at C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:281:22 at Function.process_params (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:335:12) at next (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:275:10) at Function.handle (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:174:3) at router (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:47:12) at Layer.handle [as handle_request] (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\layer.js:95:5) at trim_prefix (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:317:13)```
1.0
Logout is broken - When you click the logout button, you get the following error ```js TypeError: "listener" argument must be a function at ClientRequest.once (events.js:340:11) at new ClientRequest (_http_client.js:164:10) at Object.request (http.js:38:10) at Object.request (https.js:239:15) at exports.authRoutes.all (C:\Users\Evan\Documents\GitHub\bolt\server\build\auth\auth.js:97:19) at Layer.handle [as handle_request] (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\layer.js:95:5) at next (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\route.js:137:13) at Route.dispatch (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\route.js:112:3) at Layer.handle [as handle_request] (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\layer.js:95:5) at C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:281:22 at Function.process_params (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:335:12) at next (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:275:10) at Function.handle (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:174:3) at router (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:47:12) at Layer.handle [as handle_request] (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\layer.js:95:5) at trim_prefix (C:\Users\Evan\Documents\GitHub\bolt\server\node_modules\express\lib\router\index.js:317:13)```
priority
logout is broken when you click the logout button you get the following error js typeerror listener argument must be a function at clientrequest once events js at new clientrequest http client js at object request http js at object request https js at exports authroutes all c users evan documents github bolt server build auth auth js at layer handle c users evan documents github bolt server node modules express lib router layer js at next c users evan documents github bolt server node modules express lib router route js at route dispatch c users evan documents github bolt server node modules express lib router route js at layer handle c users evan documents github bolt server node modules express lib router layer js at c users evan documents github bolt server node modules express lib router index js at function process params c users evan documents github bolt server node modules express lib router index js at next c users evan documents github bolt server node modules express lib router index js at function handle c users evan documents github bolt server node modules express lib router index js at router c users evan documents github bolt server node modules express lib router index js at layer handle c users evan documents github bolt server node modules express lib router layer js at trim prefix c users evan documents github bolt server node modules express lib router index js
1
89,157
3,790,282,569
IssuesEvent
2016-03-21 20:54:27
phetsims/fraction-matcher
https://api.github.com/repos/phetsims/fraction-matcher
closed
Shapes are not correctly positioned in the match collection
priority:2-high type:bug type:performance
The position of representations (circles, squares, etc...) in their gray box will be incorrect if they are included in the last match of a perfectly scored level. This was seen to happen on Witten (iPad2 9.2.1), diSessa (iPad3 9.2.1), and Tycho (iPad2 0.3 Beta 6). I'm labeling this as a performance issue since the iPad Air 2 (Leibniz) does not show this problem. The Air blows the other iPads out of the water with its performance. There is a noticeable lag between pressing "OK" on the last match and when the reward cascade begins. During this lag is when the match animates towards the gray box and comes to rest incorrectly. ![20160315_122119](https://cloud.githubusercontent.com/assets/5863899/13789227/a9201858-eaa8-11e5-902a-d9a3746b1455.jpg) Zoomed: ![20160315_122130](https://cloud.githubusercontent.com/assets/5863899/13789233/ade548ae-eaa8-11e5-9a12-d327df1cd06d.jpg) Assigning to @ariel-phet to figure out who will deal with this. For phetsims/tasks/issues/541.
1.0
Shapes are not correctly positioned in the match collection - The position of representations (circles, squares, etc...) in their gray box will be incorrect if they are included in the last match of a perfectly scored level. This was seen to happen on Witten (iPad2 9.2.1), diSessa (iPad3 9.2.1), and Tycho (iPad2 0.3 Beta 6). I'm labeling this as a performance issue since the iPad Air 2 (Leibniz) does not show this problem. The Air blows the other iPads out of the water with its performance. There is a noticeable lag between pressing "OK" on the last match and when the reward cascade begins. During this lag is when the match animates towards the gray box and comes to rest incorrectly. ![20160315_122119](https://cloud.githubusercontent.com/assets/5863899/13789227/a9201858-eaa8-11e5-902a-d9a3746b1455.jpg) Zoomed: ![20160315_122130](https://cloud.githubusercontent.com/assets/5863899/13789233/ade548ae-eaa8-11e5-9a12-d327df1cd06d.jpg) Assigning to @ariel-phet to figure out who will deal with this. For phetsims/tasks/issues/541.
priority
shapes are not correctly positioned in the match collection the position of representations circles squares etc in their gray box will be incorrect if they are included in the last match of a perfectly scored level this was seen to happen on witten disessa and tycho beta i m labeling this as a performance issue since the ipad air leibniz does not show this problem the air blows the other ipads out of the water with its performance there is a noticeable lag between pressing ok on the last match and when the reward cascade begins during this lag is when the match animates towards the gray box and comes to rest incorrectly zoomed assigning to ariel phet to figure out who will deal with this for phetsims tasks issues
1
338,493
10,230,066,965
IssuesEvent
2019-08-17 18:03:43
simplitech/simpli-web-sdk
https://api.github.com/repos/simplitech/simpli-web-sdk
closed
input components should validate and validation and on schema should be a bind property instead of separate avj info
bug highpriority
selects are not currently validable
1.0
input components should validate and validation and on schema should be a bind property instead of separate avj info - selects are not currently validable
priority
input components should validate and validation and on schema should be a bind property instead of separate avj info selects are not currently validable
1
476,317
13,736,755,215
IssuesEvent
2020-10-05 12:15:00
wso2/streaming-integrator-tooling
https://api.github.com/repos/wso2/streaming-integrator-tooling
opened
ETL Wizard - Multiple ETL wizards simultaneously do not work
Priority/High Severity/Critical Type/Bug
**Description:** When multiple ETL wizards are opened, they are not working properly. **Affected Product Version:** SI-Tooling 1.1.0
1.0
ETL Wizard - Multiple ETL wizards simultaneously do not work - **Description:** When multiple ETL wizards are opened, they are not working properly. **Affected Product Version:** SI-Tooling 1.1.0
priority
etl wizard multiple etl wizards simultaneously do not work description when multiple etl wizards are opened they are not working properly affected product version si tooling
1
733,306
25,299,828,766
IssuesEvent
2022-11-17 09:52:40
software-mansion/starknet.py
https://api.github.com/repos/software-mansion/starknet.py
closed
Investigate if methods using token_address must be updated
question priority: high
It seems like something related to token address was changed in general config: perhaps methods like get_balance need updating. ![image](https://user-images.githubusercontent.com/52135326/200853878-9727f54c-d8ca-4384-b6c9-15448f7b3d71.png)
1.0
Investigate if methods using token_address must be updated - It seems like something related to token address was changed in general config: perhaps methods like get_balance need updating. ![image](https://user-images.githubusercontent.com/52135326/200853878-9727f54c-d8ca-4384-b6c9-15448f7b3d71.png)
priority
investigate if methods using token address must be updated it seems like something related to token address was changed in general config perhaps methods like get balance need updating
1
517,461
15,013,967,458
IssuesEvent
2021-02-01 05:39:45
TerriaJS/nationalmap
https://api.github.com/repos/TerriaJS/nationalmap
closed
NationalMap - Jan 2021 release (v8)
High priority
**HIGH PRIORITY:** - [ ] AREMI catalogue transfer to NatMap https://github.com/TerriaJS/aremi-natmap/issues/437 - Data transfer mapping is [HERE ](https://csiroau.sharepoint.com/:w:/r/sites/WebDataPlatformsgroup/Shared%20Documents/General/Terria/AREMI/Data/Decommissioning%20-%20data%20transfer%20to%20NatMap/AREMI%20data%20transfer%20to%20NatMap%20-%20mapping%20to%20catalogue.docx?d=w807583b6b8684cfa85cbc4fefa064729&csf=1&web=1&e=DqTrGg) V8 porting related issues for AREMI data: - Token implementation for WA services: https://github.com/TerriaJS/aremi-natmap/issues/437 - ISF data - investigate CSS custom sheets and vector data handling: https://github.com/TerriaJS/aremi-natmap/issues/439 - Traffic volumes - NSW transport API - https://github.com/TerriaJS/aremi-natmap/issues/440 - AEMO data - csv polling - feature info disappears after 1 cycle / polling - insert ticket https://github.com/terriajs/terriajs/issues/4768 **MEDIUM PRIORITY:** - [ ] Help page (under About) needs to be deleted - [ ] update some GA layers: https://github.com/TerriaJS/nationalmap/issues/986 - [ ] NationalMap catalogue https://github.com/TerriaJS/nationalmap/issues/985 - needs SDMX fixes and https://github.com/TerriaJS/terriajs/pull/5085 merged - [ ] YourDataYourRegions https://github.com/TerriaJS/terriajs/issues/4861 - [ ] CKAN support for data.gov.au - https://github.com/terriajs/nationalmap/issues/987 (show data with no filter) - [ ] MAGDA API support for data.gov.au - search? - [ ] MAGDA integration _ https://github.com/TerriaJS/nationalmap/issues/981 and https://github.com/TerriaJS/TerriaMap/issues/489 - [ ] GeoJSON - [ ] KML/KMZ - [ ] Boundaries: e.g. http://geoserver.nationalmap.nicta.com.au/admin_bnds_abs/ows - [ ] region mapping - [ ] vector tiles - [ ] csw https://github.com/TerriaJS/terriajs/issues/4693 **LOW PRIORITY** - [ ] NSW decimal issue: https://github.com/TerriaJS/nationalmap/issues/980 - [ ] Update Mobile black spot data position in catalogue - https://github.com/TerriaJS/nationalmap/issues/979
1.0
NationalMap - Jan 2021 release (v8) - **HIGH PRIORITY:** - [ ] AREMI catalogue transfer to NatMap https://github.com/TerriaJS/aremi-natmap/issues/437 - Data transfer mapping is [HERE ](https://csiroau.sharepoint.com/:w:/r/sites/WebDataPlatformsgroup/Shared%20Documents/General/Terria/AREMI/Data/Decommissioning%20-%20data%20transfer%20to%20NatMap/AREMI%20data%20transfer%20to%20NatMap%20-%20mapping%20to%20catalogue.docx?d=w807583b6b8684cfa85cbc4fefa064729&csf=1&web=1&e=DqTrGg) V8 porting related issues for AREMI data: - Token implementation for WA services: https://github.com/TerriaJS/aremi-natmap/issues/437 - ISF data - investigate CSS custom sheets and vector data handling: https://github.com/TerriaJS/aremi-natmap/issues/439 - Traffic volumes - NSW transport API - https://github.com/TerriaJS/aremi-natmap/issues/440 - AEMO data - csv polling - feature info disappears after 1 cycle / polling - insert ticket https://github.com/terriajs/terriajs/issues/4768 **MEDIUM PRIORITY:** - [ ] Help page (under About) needs to be deleted - [ ] update some GA layers: https://github.com/TerriaJS/nationalmap/issues/986 - [ ] NationalMap catalogue https://github.com/TerriaJS/nationalmap/issues/985 - needs SDMX fixes and https://github.com/TerriaJS/terriajs/pull/5085 merged - [ ] YourDataYourRegions https://github.com/TerriaJS/terriajs/issues/4861 - [ ] CKAN support for data.gov.au - https://github.com/terriajs/nationalmap/issues/987 (show data with no filter) - [ ] MAGDA API support for data.gov.au - search? - [ ] MAGDA integration _ https://github.com/TerriaJS/nationalmap/issues/981 and https://github.com/TerriaJS/TerriaMap/issues/489 - [ ] GeoJSON - [ ] KML/KMZ - [ ] Boundaries: e.g. http://geoserver.nationalmap.nicta.com.au/admin_bnds_abs/ows - [ ] region mapping - [ ] vector tiles - [ ] csw https://github.com/TerriaJS/terriajs/issues/4693 **LOW PRIORITY** - [ ] NSW decimal issue: https://github.com/TerriaJS/nationalmap/issues/980 - [ ] Update Mobile black spot data position in catalogue - https://github.com/TerriaJS/nationalmap/issues/979
priority
nationalmap jan release high priority aremi catalogue transfer to natmap data transfer mapping is porting related issues for aremi data token implementation for wa services isf data investigate css custom sheets and vector data handling traffic volumes nsw transport api aemo data csv polling feature info disappears after cycle polling insert ticket medium priority help page under about needs to be deleted update some ga layers nationalmap catalogue needs sdmx fixes and merged yourdatayourregions ckan support for data gov au show data with no filter magda api support for data gov au search magda integration and geojson kml kmz boundaries e g region mapping vector tiles csw low priority nsw decimal issue update mobile black spot data position in catalogue
1
631,357
20,151,151,704
IssuesEvent
2022-02-09 12:31:48
ita-social-projects/horondi_admin
https://api.github.com/repos/ita-social-projects/horondi_admin
closed
(SP:1)Material initial values don`t show on form
bug priority: high Admin
Steps to reproduce: 1) Go to https://horondi-admin-staging.azurewebsites.net/materials 2) Open material Actual result: ![image](https://user-images.githubusercontent.com/37375602/114228053-83bc0b00-997e-11eb-84c2-5ef46db94329.png) Expected result: Initial values should be shown in material form for each material
1.0
(SP:1)Material initial values don`t show on form - Steps to reproduce: 1) Go to https://horondi-admin-staging.azurewebsites.net/materials 2) Open material Actual result: ![image](https://user-images.githubusercontent.com/37375602/114228053-83bc0b00-997e-11eb-84c2-5ef46db94329.png) Expected result: Initial values should be shown in material form for each material
priority
sp material initial values don t show on form steps to reproduce go to open material actual result expected result initial values should be shown in material form for each material
1
171,995
6,497,755,605
IssuesEvent
2017-08-22 15:00:02
fossasia/susi_skill_cms
https://api.github.com/repos/fossasia/susi_skill_cms
closed
Follow web chat and use same icons in dropdown
bug Priority: High
![screenshot from 2017-08-02 14-21-26](https://user-images.githubusercontent.com/1583873/28873836-8c23ebc4-778f-11e7-9a33-514c1f60ae6c.png) Please implement and use the same icons.
1.0
Follow web chat and use same icons in dropdown - ![screenshot from 2017-08-02 14-21-26](https://user-images.githubusercontent.com/1583873/28873836-8c23ebc4-778f-11e7-9a33-514c1f60ae6c.png) Please implement and use the same icons.
priority
follow web chat and use same icons in dropdown please implement and use the same icons
1
250,292
7,974,832,021
IssuesEvent
2018-07-17 07:23:42
poanetwork/token-wizard
https://api.github.com/repos/poanetwork/token-wizard
reopened
(Bug) Contribution page:countdown timer has incorrect status after finalization
Step6-Contribute UI bug high priority migration to auth-os
Steps: 1. Create crowdsale with any parameter, ex. :Minted, 1 tier, duration 2 min, minCap 2. Wait until crowdsale ended 3. As an owner open manage page and finalize 4. Open contribution page and observe countdown timer. Expected result: -timer's status is "CROWDSALE HAS BEEN FINALIZED"" Actual result: -timer's status is "CROWDSALE HAS ENDED" If you are reporting a problem with Token Wizard, please include the following information: ### Which network did you use? (Mainnet, Kovan, Rinkeby, etc.) *localhost* ### If you were able to create it, what is the URL of your crowdsale? *n/a* ### Do you have screenshots showing the problem? <img width="1440" alt="screen shot 2018-07-11 at 00 08 37" src="https://user-images.githubusercontent.com/14067096/42556205-b78fd908-849f-11e8-9538-5f621802fc91.png"> ### Do you see errors in the dev console? If yes, please include a screenshot No ---
1.0
(Bug) Contribution page:countdown timer has incorrect status after finalization - Steps: 1. Create crowdsale with any parameter, ex. :Minted, 1 tier, duration 2 min, minCap 2. Wait until crowdsale ended 3. As an owner open manage page and finalize 4. Open contribution page and observe countdown timer. Expected result: -timer's status is "CROWDSALE HAS BEEN FINALIZED"" Actual result: -timer's status is "CROWDSALE HAS ENDED" If you are reporting a problem with Token Wizard, please include the following information: ### Which network did you use? (Mainnet, Kovan, Rinkeby, etc.) *localhost* ### If you were able to create it, what is the URL of your crowdsale? *n/a* ### Do you have screenshots showing the problem? <img width="1440" alt="screen shot 2018-07-11 at 00 08 37" src="https://user-images.githubusercontent.com/14067096/42556205-b78fd908-849f-11e8-9538-5f621802fc91.png"> ### Do you see errors in the dev console? If yes, please include a screenshot No ---
priority
bug contribution page countdown timer has incorrect status after finalization steps create crowdsale with any parameter ex minted tier duration min mincap wait until crowdsale ended as an owner open manage page and finalize open contribution page and observe countdown timer expected result timer s status is crowdsale has been finalized actual result timer s status is crowdsale has ended if you are reporting a problem with token wizard please include the following information which network did you use mainnet kovan rinkeby etc localhost if you were able to create it what is the url of your crowdsale n a do you have screenshots showing the problem img width alt screen shot at src do you see errors in the dev console if yes please include a screenshot no
1
211,444
7,201,170,222
IssuesEvent
2018-02-05 21:36:31
buttercup/buttercup-desktop
https://api.github.com/repos/buttercup/buttercup-desktop
closed
Use non-minified buttercup core library (speed issue)
Effort: Low Priority: High Status: Abandoned Type: Bug
The core currently has an issue with minification, in that the `buttercup-web.min.js` asset is much slower than the non-minified copy when it comes to crypto (locking/unlocking archives via `ArchiveManager`). Issue: buttercup/buttercup-core#199 Use the non-minified copy for now.
1.0
Use non-minified buttercup core library (speed issue) - The core currently has an issue with minification, in that the `buttercup-web.min.js` asset is much slower than the non-minified copy when it comes to crypto (locking/unlocking archives via `ArchiveManager`). Issue: buttercup/buttercup-core#199 Use the non-minified copy for now.
priority
use non minified buttercup core library speed issue the core currently has an issue with minification in that the buttercup web min js asset is much slower than the non minified copy when it comes to crypto locking unlocking archives via archivemanager issue buttercup buttercup core use the non minified copy for now
1
137,262
5,301,186,726
IssuesEvent
2017-02-10 08:43:54
Cadasta/cadasta-platform
https://api.github.com/repos/Cadasta/cadasta-platform
closed
API: unauthorizated users can edit organization
bug priority: high security
### Steps to reproduce the error __Anonymous User__ - Create an organization (name: 'Westeros') - Run `http PUT https://platform-staging.cadasta.org/api/v1/organizations/westeros/ name='Westeros (The Capital)'` OR __Non-org member__ - Create an organization (name: 'Westeros') - Run `http PUT https://platform-staging.cadasta.org/api/v1/organizations/westeros/ name='Westeros (The Capital)' AUTHORIZATION:'Token {token of non-org member}'` ### Actual behavior Returned JSON: ``` { ... "name": "Westeros (The Capital)", ... } ``` ### Expected behavior Permission denied.
1.0
API: unauthorizated users can edit organization - ### Steps to reproduce the error __Anonymous User__ - Create an organization (name: 'Westeros') - Run `http PUT https://platform-staging.cadasta.org/api/v1/organizations/westeros/ name='Westeros (The Capital)'` OR __Non-org member__ - Create an organization (name: 'Westeros') - Run `http PUT https://platform-staging.cadasta.org/api/v1/organizations/westeros/ name='Westeros (The Capital)' AUTHORIZATION:'Token {token of non-org member}'` ### Actual behavior Returned JSON: ``` { ... "name": "Westeros (The Capital)", ... } ``` ### Expected behavior Permission denied.
priority
api unauthorizated users can edit organization steps to reproduce the error anonymous user create an organization name westeros run http put name westeros the capital or non org member create an organization name westeros run http put name westeros the capital authorization token token of non org member actual behavior returned json name westeros the capital expected behavior permission denied
1
265,892
8,360,136,505
IssuesEvent
2018-10-03 10:30:24
lendingblock/aio-openapi
https://api.github.com/repos/lendingblock/aio-openapi
closed
Add search by column
high priority
We want to be able to search (postgres `ilike` style). Let's start with one column with intent to extend to multicolumn search
1.0
Add search by column - We want to be able to search (postgres `ilike` style). Let's start with one column with intent to extend to multicolumn search
priority
add search by column we want to be able to search postgres ilike style let s start with one column with intent to extend to multicolumn search
1
444,047
12,805,565,837
IssuesEvent
2020-07-03 07:47:14
acl-org/acl-2020-virtual-conference
https://api.github.com/repos/acl-org/acl-2020-virtual-conference
closed
Sponsors & Exhibitor page
priority:high
**Number of Volunteers**: 3 TODO (Updated after #41) - [x] Edit [sponsors.json](https://github.com/acl-org/acl-2020-virtual-conference-sitedata/blob/master/sponsors.json). The information below need to be provided by the sponsor. For demo purpose, just put some generic values. - [x] change the logos (needs to upload images to the folder `static/images/acl2020` - [x] add a `channel` field to record the RocketChat channel, currently set them to `example_sponsor` - [x] add a `description` field to record the sponsor descriptions - [x] add a `website` field to record the link to the external Sponsor's website - [x] add a `zoom_schedule` field (list) to record Zoom Room links and schedules for live QA sessions. - [x] add a `contact` field (list) to record contact person information. - [x] other, e.g., downloadable links - [x] Edit `main.py` [here](https://github.com/acl-org/acl-2020-virtual-conference/blob/ee76ec9dfa96812defbf60910aea8129f3db3f72/main.py#L36) to make sure the `sponsor` data is properly loaded. Note `site_data` stores the raw `sponsors.json`, whereas `by_uid["sponsors"]` record a uid-to-sponsor lookup dict. - [x] Edit [sponsors.html](https://github.com/acl-org/acl-2020-virtual-conference/blob/master/templates/sponsors.html) and `components.html` [here](https://github.com/acl-org/acl-2020-virtual-conference/blob/ee76ec9dfa96812defbf60910aea8129f3db3f72/templates/components.html#L228) to make sure the "Sponsors" page look nice. See [ICASSP 2020](https://2020.ieeeicassp-virtual.org/patron-exhibitor-virtual-space) for reference. - [x] Edit [sponsor.html](https://github.com/acl-org/acl-2020-virtual-conference/blob/master/templates/sponsor.html) to make sure the individual sponsor pages look nice. - [x] Should show the sponsor level. - [x] Should show the sponsor logo. - [x] It seems that the page is auto-focused on the RocketChat channel. Should disable this behavior. * It seems to work fine now??? Need more testing
1.0
Sponsors & Exhibitor page - **Number of Volunteers**: 3 TODO (Updated after #41) - [x] Edit [sponsors.json](https://github.com/acl-org/acl-2020-virtual-conference-sitedata/blob/master/sponsors.json). The information below need to be provided by the sponsor. For demo purpose, just put some generic values. - [x] change the logos (needs to upload images to the folder `static/images/acl2020` - [x] add a `channel` field to record the RocketChat channel, currently set them to `example_sponsor` - [x] add a `description` field to record the sponsor descriptions - [x] add a `website` field to record the link to the external Sponsor's website - [x] add a `zoom_schedule` field (list) to record Zoom Room links and schedules for live QA sessions. - [x] add a `contact` field (list) to record contact person information. - [x] other, e.g., downloadable links - [x] Edit `main.py` [here](https://github.com/acl-org/acl-2020-virtual-conference/blob/ee76ec9dfa96812defbf60910aea8129f3db3f72/main.py#L36) to make sure the `sponsor` data is properly loaded. Note `site_data` stores the raw `sponsors.json`, whereas `by_uid["sponsors"]` record a uid-to-sponsor lookup dict. - [x] Edit [sponsors.html](https://github.com/acl-org/acl-2020-virtual-conference/blob/master/templates/sponsors.html) and `components.html` [here](https://github.com/acl-org/acl-2020-virtual-conference/blob/ee76ec9dfa96812defbf60910aea8129f3db3f72/templates/components.html#L228) to make sure the "Sponsors" page look nice. See [ICASSP 2020](https://2020.ieeeicassp-virtual.org/patron-exhibitor-virtual-space) for reference. - [x] Edit [sponsor.html](https://github.com/acl-org/acl-2020-virtual-conference/blob/master/templates/sponsor.html) to make sure the individual sponsor pages look nice. - [x] Should show the sponsor level. - [x] Should show the sponsor logo. - [x] It seems that the page is auto-focused on the RocketChat channel. Should disable this behavior. * It seems to work fine now??? Need more testing
priority
sponsors exhibitor page number of volunteers todo updated after edit the information below need to be provided by the sponsor for demo purpose just put some generic values change the logos needs to upload images to the folder static images add a channel field to record the rocketchat channel currently set them to example sponsor add a description field to record the sponsor descriptions add a website field to record the link to the external sponsor s website add a zoom schedule field list to record zoom room links and schedules for live qa sessions add a contact field list to record contact person information other e g downloadable links edit main py to make sure the sponsor data is properly loaded note site data stores the raw sponsors json whereas by uid record a uid to sponsor lookup dict edit and components html to make sure the sponsors page look nice see for reference edit to make sure the individual sponsor pages look nice should show the sponsor level should show the sponsor logo it seems that the page is auto focused on the rocketchat channel should disable this behavior it seems to work fine now need more testing
1
254,190
8,071,026,813
IssuesEvent
2018-08-06 11:49:28
FlowzPlatform/Sprint-User-Story-Board
https://api.github.com/repos/FlowzPlatform/Sprint-User-Story-Board
closed
Uploader-[feature]-Image Upload
Epic High Priority uploader - Images upload
### SUMMARY: customer can upload his product images ---- ### Prerequisite: - R&D of HTML Folder upload Ref : https://www.aurigma.com/docs/us8/uploading-folders-in-other-platforms-iuf.htm#setClientSide -subscription module have add-ons ### User Story Description: As a supplier, i want upload product image file. product image will appear in product listing page ### Acceptance Criteria: 1. file size should be limited by purchase subscription 2. Image will be stored on cloudinary ###See [Wiki](https://github.com/FlowzPlatform/Sprint-User-Story-Board/wiki/%5BUploader%5D-:-Product-Images-Upload)
1.0
Uploader-[feature]-Image Upload - ### SUMMARY: customer can upload his product images ---- ### Prerequisite: - R&D of HTML Folder upload Ref : https://www.aurigma.com/docs/us8/uploading-folders-in-other-platforms-iuf.htm#setClientSide -subscription module have add-ons ### User Story Description: As a supplier, i want upload product image file. product image will appear in product listing page ### Acceptance Criteria: 1. file size should be limited by purchase subscription 2. Image will be stored on cloudinary ###See [Wiki](https://github.com/FlowzPlatform/Sprint-User-Story-Board/wiki/%5BUploader%5D-:-Product-Images-Upload)
priority
uploader image upload summary customer can upload his product images prerequisite r d of html folder upload ref subscription module have add ons user story description as a supplier i want upload product image file product image will appear in product listing page acceptance criteria file size should be limited by purchase subscription image will be stored on cloudinary see
1
107,716
4,314,369,732
IssuesEvent
2016-07-22 14:16:56
citusdata/citus
https://api.github.com/repos/citusdata/citus
opened
PurgeConnection may segfault when re-raising error
1-2 days priority:high
We recently made this change https://github.com/citusdata/citus/commit/16fc92bf6b95eed0ee7e7097572b4337a27f0573 However, there are various callers to ReportRemoteError that use it on connections that are not from the connection cache (e.g. COPY, master_modify_multiple_shards, DDL), and this will segfault if the connection cache hasn't been initialized, meaning the those callers may segfault whenever there is a remote error.
1.0
PurgeConnection may segfault when re-raising error - We recently made this change https://github.com/citusdata/citus/commit/16fc92bf6b95eed0ee7e7097572b4337a27f0573 However, there are various callers to ReportRemoteError that use it on connections that are not from the connection cache (e.g. COPY, master_modify_multiple_shards, DDL), and this will segfault if the connection cache hasn't been initialized, meaning the those callers may segfault whenever there is a remote error.
priority
purgeconnection may segfault when re raising error we recently made this change however there are various callers to reportremoteerror that use it on connections that are not from the connection cache e g copy master modify multiple shards ddl and this will segfault if the connection cache hasn t been initialized meaning the those callers may segfault whenever there is a remote error
1
674,601
23,058,837,469
IssuesEvent
2022-07-25 08:05:03
Raid-Training-Initiative/RTIBot
https://api.github.com/repos/Raid-Training-Initiative/RTIBot
closed
Slash Command: /managetrainingrequest
feature high priority slash commands
**Details:** * `/managetrainingrequest add <member> <wings> <comment>` adds a training request for the given `<member>`, with the `<wings>` being a comma-separated list of wings (use `8` for EoD strikes) and `<comment>` being a comment that shows up in the training request. * `/managetrainingrequest remove <user>` removes any training request of a given `<member>` **Current functionality:** * `TrainingRequestAddCommand` * `TrainingRequestRemoveCommand` **Notes:** * Ensure that there's validation on the `<member>` parameters (i.e. it accepts only Discord users). * Validation on the `<wings>` parameter to via regex would be nice. * No autocomplete needed. * Error messages should be ephemeral.
1.0
Slash Command: /managetrainingrequest - **Details:** * `/managetrainingrequest add <member> <wings> <comment>` adds a training request for the given `<member>`, with the `<wings>` being a comma-separated list of wings (use `8` for EoD strikes) and `<comment>` being a comment that shows up in the training request. * `/managetrainingrequest remove <user>` removes any training request of a given `<member>` **Current functionality:** * `TrainingRequestAddCommand` * `TrainingRequestRemoveCommand` **Notes:** * Ensure that there's validation on the `<member>` parameters (i.e. it accepts only Discord users). * Validation on the `<wings>` parameter to via regex would be nice. * No autocomplete needed. * Error messages should be ephemeral.
priority
slash command managetrainingrequest details managetrainingrequest add adds a training request for the given with the being a comma separated list of wings use for eod strikes and being a comment that shows up in the training request managetrainingrequest remove removes any training request of a given current functionality trainingrequestaddcommand trainingrequestremovecommand notes ensure that there s validation on the parameters i e it accepts only discord users validation on the parameter to via regex would be nice no autocomplete needed error messages should be ephemeral
1
543,535
15,883,452,096
IssuesEvent
2021-04-09 17:24:39
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
closed
[bug] [tests] cant run tests locally without setting the ENV variables
high priority module: ci triage review triaged
After the PR https://github.com/pytorch/pytorch/pull/55522, **cant run tests locally without setting the ENV variables** ``` $ pytest test/test_ops.py ======================================================================= test session starts ======================================================================== platform linux -- Python 3.8.6, pytest-6.1.2, py-1.9.0, pluggy-0.13.1 rootdir: /home/kshiteej/Pytorch/pytorch_opinfo, configfile: pytest.ini plugins: hypothesis-5.38.1 collected 0 items ========================================================================= warnings summary ========================================================================= ======================================================================= 2 warnings in 2.85s ======================================================================== ``` Works with ENV variable specified ``` PYTORCH_TESTING_DEVICE_ONLY_FOR="cpu" pytest test/test_ops.py ======================================================================= test session starts ======================================================================== platform linux -- Python 3.8.6, pytest-6.1.2, py-1.9.0, pluggy-0.13.1 rootdir: /home/kshiteej/Pytorch/pytorch_opinfo, configfile: pytest.ini plugins: hypothesis-5.38.1 collected 4443 items ``` cc @ezyang @gchanan @zou3519 @bdhirsh @jbschlosser @anjali411 @seemethere @malfet @walterddr @pytorch/pytorch-dev-infra
1.0
[bug] [tests] cant run tests locally without setting the ENV variables - After the PR https://github.com/pytorch/pytorch/pull/55522, **cant run tests locally without setting the ENV variables** ``` $ pytest test/test_ops.py ======================================================================= test session starts ======================================================================== platform linux -- Python 3.8.6, pytest-6.1.2, py-1.9.0, pluggy-0.13.1 rootdir: /home/kshiteej/Pytorch/pytorch_opinfo, configfile: pytest.ini plugins: hypothesis-5.38.1 collected 0 items ========================================================================= warnings summary ========================================================================= ======================================================================= 2 warnings in 2.85s ======================================================================== ``` Works with ENV variable specified ``` PYTORCH_TESTING_DEVICE_ONLY_FOR="cpu" pytest test/test_ops.py ======================================================================= test session starts ======================================================================== platform linux -- Python 3.8.6, pytest-6.1.2, py-1.9.0, pluggy-0.13.1 rootdir: /home/kshiteej/Pytorch/pytorch_opinfo, configfile: pytest.ini plugins: hypothesis-5.38.1 collected 4443 items ``` cc @ezyang @gchanan @zou3519 @bdhirsh @jbschlosser @anjali411 @seemethere @malfet @walterddr @pytorch/pytorch-dev-infra
priority
cant run tests locally without setting the env variables after the pr cant run tests locally without setting the env variables pytest test test ops py test session starts platform linux python pytest py pluggy rootdir home kshiteej pytorch pytorch opinfo configfile pytest ini plugins hypothesis collected items warnings summary warnings in works with env variable specified pytorch testing device only for cpu pytest test test ops py test session starts platform linux python pytest py pluggy rootdir home kshiteej pytorch pytorch opinfo configfile pytest ini plugins hypothesis collected items cc ezyang gchanan bdhirsh jbschlosser seemethere malfet walterddr pytorch pytorch dev infra
1
768,191
26,957,690,570
IssuesEvent
2023-02-08 15:57:17
biodiversitydata-se/biocollect
https://api.github.com/repos/biodiversitydata-se/biocollect
closed
When a new route is created and "sent in", give the person a note that "you have to wait"
2-High priority
When a new point count route is created, we as admin repeatedly get several notes by mail that a route is created. Not just one note. This is because the person who created the route doesn't understand that the route is in the system and the (s)he needs to wait for an OK from us. They therefore submit the route several times. It is in the instructions, but "not all read instructions".... We would like to have a function that, when the person has "sent in" the new route, says something like: "Stort tack! Din nya punktrutt är registrerad. Den skall nu godkännas av projektledningen. Du kommer att få ett mail när den är godkänd. Först då kan du rapportera data för rutten". We only need this function for point count routes. Åke
1.0
When a new route is created and "sent in", give the person a note that "you have to wait" - When a new point count route is created, we as admin repeatedly get several notes by mail that a route is created. Not just one note. This is because the person who created the route doesn't understand that the route is in the system and the (s)he needs to wait for an OK from us. They therefore submit the route several times. It is in the instructions, but "not all read instructions".... We would like to have a function that, when the person has "sent in" the new route, says something like: "Stort tack! Din nya punktrutt är registrerad. Den skall nu godkännas av projektledningen. Du kommer att få ett mail när den är godkänd. Först då kan du rapportera data för rutten". We only need this function for point count routes. Åke
priority
when a new route is created and sent in give the person a note that you have to wait when a new point count route is created we as admin repeatedly get several notes by mail that a route is created not just one note this is because the person who created the route doesn t understand that the route is in the system and the s he needs to wait for an ok from us they therefore submit the route several times it is in the instructions but not all read instructions we would like to have a function that when the person has sent in the new route says something like stort tack din nya punktrutt är registrerad den skall nu godkännas av projektledningen du kommer att få ett mail när den är godkänd först då kan du rapportera data för rutten we only need this function for point count routes åke
1
598,474
18,245,938,555
IssuesEvent
2021-10-01 18:24:03
AXeL-dev/youtube-viewer
https://api.github.com/repos/AXeL-dev/youtube-viewer
closed
Refactor channel selection
refactor high priority
Switching between channels can be done through routes for each selection/channel instead of filtering videos cache state by the current selected channel.
1.0
Refactor channel selection - Switching between channels can be done through routes for each selection/channel instead of filtering videos cache state by the current selected channel.
priority
refactor channel selection switching between channels can be done through routes for each selection channel instead of filtering videos cache state by the current selected channel
1
722,688
24,871,800,812
IssuesEvent
2022-10-27 15:44:18
windchime-yk/resources
https://api.github.com/repos/windchime-yk/resources
opened
`og-edge`によるOGP画像の動的配信
Type: Feature Priority: High
Deno環境移植の`vercel/og`として[og-edge](https://github.com/ascorbic/og-edge)がリリースされている。 サンプルを見る限りシンプルなので、deno_blog系のOGP画像を配信する機能を追加したい。
1.0
`og-edge`によるOGP画像の動的配信 - Deno環境移植の`vercel/og`として[og-edge](https://github.com/ascorbic/og-edge)がリリースされている。 サンプルを見る限りシンプルなので、deno_blog系のOGP画像を配信する機能を追加したい。
priority
og edge によるogp画像の動的配信 deno環境移植の vercel og として サンプルを見る限りシンプルなので、deno blog系のogp画像を配信する機能を追加したい。
1
822,796
30,885,220,174
IssuesEvent
2023-08-03 21:05:56
letehaha/budget-tracker-fe
https://api.github.com/repos/letehaha/budget-tracker-fe
closed
Update monobank balances history not by calculating it from income/expense, but by just reading "balance" property
type::enhancement repo: backend priority-0-highest
Currently, each Monobank's account balance history is calculated based on transaction movements, and it is calculated manually. Since the bank already providing us info about the account's balance "after" the tx, we actually just need to update the balance history for that account by just setting the `balance` value. The best option is to probably take the latest transaction's "balance" of the single date.
1.0
Update monobank balances history not by calculating it from income/expense, but by just reading "balance" property - Currently, each Monobank's account balance history is calculated based on transaction movements, and it is calculated manually. Since the bank already providing us info about the account's balance "after" the tx, we actually just need to update the balance history for that account by just setting the `balance` value. The best option is to probably take the latest transaction's "balance" of the single date.
priority
update monobank balances history not by calculating it from income expense but by just reading balance property currently each monobank s account balance history is calculated based on transaction movements and it is calculated manually since the bank already providing us info about the account s balance after the tx we actually just need to update the balance history for that account by just setting the balance value the best option is to probably take the latest transaction s balance of the single date
1
456,065
13,136,481,871
IssuesEvent
2020-08-07 06:13:30
grey-software/grey.software
https://api.github.com/repos/grey-software/grey.software
opened
Create a 'Why Donate' Page
Domain: User Experience Priority: High Type: Enhancement
We'll take the content from here: https://docs.google.com/document/d/1a9i6x5FKs_kFwD0VFWk-MdhQbDPulpLEJKiWYFTI5aI/edit?usp=sharing # Why should I donate? ## Overview In order to honor its mission, Grey Software is a not-for-profit organization. The organization was founded so that we orient ourselves towards creating a better world instead of richer shareholders. ## To Protect Your Freedoms "As our society grows more dependent on computers, the software we run is of critical importance to securing the future of a free society." With our lives increasingly governed by software written by corporations that monetize our data, it is more important than ever to protect our freedom to know what the software programs we run are doing. Grey Software creates open source software that anyone else can study and improve by looking into the source code. It holds us as an organization accountable for being ethical with the trust our users put in us. By donating, you help keep alive the dream of a future where humans use open source software that protects their freedoms. ## To Revolutionize Software Education The software education ecosystem we’re building encourages new, enthusiastic software developers to apprentice under maintainers on open source projects. This allows students to gain valuable experience while maintainers get enthusiastic developers and a source of income. We believe that a collaborative, education-driven environment such as this can advance software technology in a positive direction. By donating, you help fund the technical infrastructure needed to run our education programs, and provide the possibility of financial aid to students.
1.0
Create a 'Why Donate' Page - We'll take the content from here: https://docs.google.com/document/d/1a9i6x5FKs_kFwD0VFWk-MdhQbDPulpLEJKiWYFTI5aI/edit?usp=sharing # Why should I donate? ## Overview In order to honor its mission, Grey Software is a not-for-profit organization. The organization was founded so that we orient ourselves towards creating a better world instead of richer shareholders. ## To Protect Your Freedoms "As our society grows more dependent on computers, the software we run is of critical importance to securing the future of a free society." With our lives increasingly governed by software written by corporations that monetize our data, it is more important than ever to protect our freedom to know what the software programs we run are doing. Grey Software creates open source software that anyone else can study and improve by looking into the source code. It holds us as an organization accountable for being ethical with the trust our users put in us. By donating, you help keep alive the dream of a future where humans use open source software that protects their freedoms. ## To Revolutionize Software Education The software education ecosystem we’re building encourages new, enthusiastic software developers to apprentice under maintainers on open source projects. This allows students to gain valuable experience while maintainers get enthusiastic developers and a source of income. We believe that a collaborative, education-driven environment such as this can advance software technology in a positive direction. By donating, you help fund the technical infrastructure needed to run our education programs, and provide the possibility of financial aid to students.
priority
create a why donate page we ll take the content from here why should i donate overview in order to honor its mission grey software is a not for profit organization the organization was founded so that we orient ourselves towards creating a better world instead of richer shareholders to protect your freedoms as our society grows more dependent on computers the software we run is of critical importance to securing the future of a free society with our lives increasingly governed by software written by corporations that monetize our data it is more important than ever to protect our freedom to know what the software programs we run are doing grey software creates open source software that anyone else can study and improve by looking into the source code it holds us as an organization accountable for being ethical with the trust our users put in us by donating you help keep alive the dream of a future where humans use open source software that protects their freedoms to revolutionize software education the software education ecosystem we’re building encourages new enthusiastic software developers to apprentice under maintainers on open source projects this allows students to gain valuable experience while maintainers get enthusiastic developers and a source of income we believe that a collaborative education driven environment such as this can advance software technology in a positive direction by donating you help fund the technical infrastructure needed to run our education programs and provide the possibility of financial aid to students
1
643,413
20,956,857,009
IssuesEvent
2022-03-27 07:56:12
AY2122S2-CS2103-F09-2/tp
https://api.github.com/repos/AY2122S2-CS2103-F09-2/tp
opened
Modify findfriend
type.Story priority.High
Modify findfriend to split by argument, OR-based, substring for tags + substring for description
1.0
Modify findfriend - Modify findfriend to split by argument, OR-based, substring for tags + substring for description
priority
modify findfriend modify findfriend to split by argument or based substring for tags substring for description
1
54,546
3,069,281,895
IssuesEvent
2015-08-18 19:42:58
moneypot/bustabit-webserver
https://api.github.com/repos/moneypot/bustabit-webserver
closed
Chat truncation
high-priority
...not truncating the oldest messages on the client, and truncating the latest?
1.0
Chat truncation - ...not truncating the oldest messages on the client, and truncating the latest?
priority
chat truncation not truncating the oldest messages on the client and truncating the latest
1
199,431
6,989,403,399
IssuesEvent
2017-12-14 16:04:13
resin-io/resin-cli
https://api.github.com/repos/resin-io/resin-cli
closed
Cannot configure TX2 images: "Partition not found: 12."
priority:high type:bug
https://sentry.io/resinio/cli/issues/297830328/ This seems to be an issue in resin-device-init, or resin-imagefs: the image does have a partition 12 (according to fdisk), but we aren't finding it, probably something to do with GPT.
1.0
Cannot configure TX2 images: "Partition not found: 12." - https://sentry.io/resinio/cli/issues/297830328/ This seems to be an issue in resin-device-init, or resin-imagefs: the image does have a partition 12 (according to fdisk), but we aren't finding it, probably something to do with GPT.
priority
cannot configure images partition not found this seems to be an issue in resin device init or resin imagefs the image does have a partition according to fdisk but we aren t finding it probably something to do with gpt
1
820,001
30,757,513,912
IssuesEvent
2023-07-29 08:44:18
Willings-Inc/SCG
https://api.github.com/repos/Willings-Inc/SCG
reopened
Make Reservation for user id 95, Yoshida, July 25(Tue) 10:00 - JST
Highest Priority(1)
https://takashiichima-af82034.slack.com/archives/C030P8L1AER/p1689659734972169 `①スタッフが表示されない不具合がございました。 不具合の対応ではなく、システム側からご予約を入れていただきたいです。 User 吉田響子様(ID:95) Reservation Date (JST) ご予約日時: 7/25(火)10:00〜 Course (コース:) ぐっすり快眠コース Therapist 予約セラピスト: TEST How to pay 支払い: Point, 90 minutes 12890 jpy (11880+1100)`
1.0
Make Reservation for user id 95, Yoshida, July 25(Tue) 10:00 - JST - https://takashiichima-af82034.slack.com/archives/C030P8L1AER/p1689659734972169 `①スタッフが表示されない不具合がございました。 不具合の対応ではなく、システム側からご予約を入れていただきたいです。 User 吉田響子様(ID:95) Reservation Date (JST) ご予約日時: 7/25(火)10:00〜 Course (コース:) ぐっすり快眠コース Therapist 予約セラピスト: TEST How to pay 支払い: Point, 90 minutes 12890 jpy (11880+1100)`
priority
make reservation for user id yoshida july tue jst ①スタッフが表示されない不具合がございました。 不具合の対応ではなく、システム側からご予約を入れていただきたいです。 user 吉田響子様 id reservation date jst ご予約日時 火 〜 course コース ぐっすり快眠コース therapist 予約セラピスト test how to pay 支払い point minutes jpy +
1
474,287
13,655,713,349
IssuesEvent
2020-09-27 23:53:34
openmsupply/mobile
https://api.github.com/repos/openmsupply/mobile
closed
Usage should use 365/12 not 30
Docs: not needed Effort: small Feature Priority: high
## Is your feature request related to a problem? Please describe. To be consistent, usage calculations should use 365/12 rather than 30 ## Describe the solution you'd like Used in the following places: - `dailyUsage` - `Item.js` - `Requisition.js` - `RequisitionItem.js` - `createRecord.js` ## Implementation Create a constant: `NUMBER_OF_DAYS_IN_A_MONTH = 365/12` and use it! ## Describe alternatives you've considered N/A ## Additional context We need better folder structure - have no idea where this constant should actually go!
1.0
Usage should use 365/12 not 30 - ## Is your feature request related to a problem? Please describe. To be consistent, usage calculations should use 365/12 rather than 30 ## Describe the solution you'd like Used in the following places: - `dailyUsage` - `Item.js` - `Requisition.js` - `RequisitionItem.js` - `createRecord.js` ## Implementation Create a constant: `NUMBER_OF_DAYS_IN_A_MONTH = 365/12` and use it! ## Describe alternatives you've considered N/A ## Additional context We need better folder structure - have no idea where this constant should actually go!
priority
usage should use not is your feature request related to a problem please describe to be consistent usage calculations should use rather than describe the solution you d like used in the following places dailyusage item js requisition js requisitionitem js createrecord js implementation create a constant number of days in a month and use it describe alternatives you ve considered n a additional context we need better folder structure have no idea where this constant should actually go
1
624,338
19,694,681,802
IssuesEvent
2022-01-12 10:51:19
bbc/simorgh
https://api.github.com/repos/bbc/simorgh
closed
Issue with lazy loading of images on Russian article pages in Portrait mode on Iphone
bug high-priority
1. Go to https://www.bbc.com/russian/news-56320777 on an iPhone. 2. There is an issue with lazy loading of images for russian article pages. 3. Some images load only partially and the only way to fix them is to turn the phone to landscape, which reloads the images, and then back to portrait. 4. This is not hapenning on all article pages though. ![IMG_2E3FC0DABAE4-1](https://user-images.githubusercontent.com/1379277/110339591-3c112f00-8020-11eb-908b-4dedfb66770f.jpeg) 4. Attached is the screenshot.
1.0
Issue with lazy loading of images on Russian article pages in Portrait mode on Iphone - 1. Go to https://www.bbc.com/russian/news-56320777 on an iPhone. 2. There is an issue with lazy loading of images for russian article pages. 3. Some images load only partially and the only way to fix them is to turn the phone to landscape, which reloads the images, and then back to portrait. 4. This is not hapenning on all article pages though. ![IMG_2E3FC0DABAE4-1](https://user-images.githubusercontent.com/1379277/110339591-3c112f00-8020-11eb-908b-4dedfb66770f.jpeg) 4. Attached is the screenshot.
priority
issue with lazy loading of images on russian article pages in portrait mode on iphone go to on an iphone there is an issue with lazy loading of images for russian article pages some images load only partially and the only way to fix them is to turn the phone to landscape which reloads the images and then back to portrait this is not hapenning on all article pages though attached is the screenshot
1
583,726
17,397,081,248
IssuesEvent
2021-08-02 14:40:08
zulip/zulip
https://api.github.com/repos/zulip/zulip
opened
Keyboard focus doesn't work properly after navigating to a view with Enter in recent topics
area: keyboard UI area: recent-topics bug priority: high
If you're in the "Recent topics" view, arrow around to a topic and then hit `Enter` twice, the first `Enter` takes you to the narrow, and then you'd expect the second `Enter` to open the compose box. However, we have some reports that this doesn't work sometimes; we need to investigate further, get a reliably reproducer, and then fix it.
1.0
Keyboard focus doesn't work properly after navigating to a view with Enter in recent topics - If you're in the "Recent topics" view, arrow around to a topic and then hit `Enter` twice, the first `Enter` takes you to the narrow, and then you'd expect the second `Enter` to open the compose box. However, we have some reports that this doesn't work sometimes; we need to investigate further, get a reliably reproducer, and then fix it.
priority
keyboard focus doesn t work properly after navigating to a view with enter in recent topics if you re in the recent topics view arrow around to a topic and then hit enter twice the first enter takes you to the narrow and then you d expect the second enter to open the compose box however we have some reports that this doesn t work sometimes we need to investigate further get a reliably reproducer and then fix it
1
746,491
26,032,162,174
IssuesEvent
2022-12-21 22:41:08
ucb-rit/coldfront
https://api.github.com/repos/ucb-rit/coldfront
closed
Add command for setting a Recharge or user account fee billing ID for a user
enhancement high priority lrc-only
Even after the ability to modify billing IDs is provided in the UI (#372), many requests will necessarily still come in from external sources (e.g., ServiceNow, email, etc.). Implement a management command that allows the billing ID (either for the Recharge fee or the user account fee) to be set to the given one for a particular User.
1.0
Add command for setting a Recharge or user account fee billing ID for a user - Even after the ability to modify billing IDs is provided in the UI (#372), many requests will necessarily still come in from external sources (e.g., ServiceNow, email, etc.). Implement a management command that allows the billing ID (either for the Recharge fee or the user account fee) to be set to the given one for a particular User.
priority
add command for setting a recharge or user account fee billing id for a user even after the ability to modify billing ids is provided in the ui many requests will necessarily still come in from external sources e g servicenow email etc implement a management command that allows the billing id either for the recharge fee or the user account fee to be set to the given one for a particular user
1
169,941
6,421,670,304
IssuesEvent
2017-08-09 05:57:27
JujaLabs/users
https://api.github.com/repos/JujaLabs/users
closed
Change endpoint getNameByUuid
enhancement High priority
This endpoint should be renamed to getUserByUuid (url should be changed respectively). Now this endpoint returns UserDto - it's correct. But UserDto has only one field `name` filled in. The other fields (slack, skype) are null now. You have to fill in these fields as well.
1.0
Change endpoint getNameByUuid - This endpoint should be renamed to getUserByUuid (url should be changed respectively). Now this endpoint returns UserDto - it's correct. But UserDto has only one field `name` filled in. The other fields (slack, skype) are null now. You have to fill in these fields as well.
priority
change endpoint getnamebyuuid this endpoint should be renamed to getuserbyuuid url should be changed respectively now this endpoint returns userdto it s correct but userdto has only one field name filled in the other fields slack skype are null now you have to fill in these fields as well
1
126,361
4,989,308,342
IssuesEvent
2016-12-08 11:22:18
magnolo/newhere
https://api.github.com/repos/magnolo/newhere
opened
new accounts cannot login after verification
bug high priority NGO
a few NGOs have not been able to log in after being verified/"switched on". I tried myself and there is an error message when I want to log in with a verified account: "Your account has not been verified. Did you get mail?" ![picture device independent bitmap 1](https://cloud.githubusercontent.com/assets/22840489/21008126/a1699600-bd40-11e6-8366-6ee63ecf0094.jpg)
1.0
new accounts cannot login after verification - a few NGOs have not been able to log in after being verified/"switched on". I tried myself and there is an error message when I want to log in with a verified account: "Your account has not been verified. Did you get mail?" ![picture device independent bitmap 1](https://cloud.githubusercontent.com/assets/22840489/21008126/a1699600-bd40-11e6-8366-6ee63ecf0094.jpg)
priority
new accounts cannot login after verification a few ngos have not been able to log in after being verified switched on i tried myself and there is an error message when i want to log in with a verified account your account has not been verified did you get mail
1
326,509
9,957,253,059
IssuesEvent
2019-07-05 16:09:44
econ-ark/OverARK
https://api.github.com/repos/econ-ark/OverARK
closed
Update roadmap with information from additional contributors
priority: high
Our current roadmap was created by me, llorracc and mnwhite, but needs to incorporate the plans of @pkofod and @albop as well. Patrick and Pablo, you can comment here or email me privately, or add your plans directly to the [roadmap wiki page](https://github.com/econ-ark/OverARK/wiki/Current-Roadmap) - whatever you prefer.
1.0
Update roadmap with information from additional contributors - Our current roadmap was created by me, llorracc and mnwhite, but needs to incorporate the plans of @pkofod and @albop as well. Patrick and Pablo, you can comment here or email me privately, or add your plans directly to the [roadmap wiki page](https://github.com/econ-ark/OverARK/wiki/Current-Roadmap) - whatever you prefer.
priority
update roadmap with information from additional contributors our current roadmap was created by me llorracc and mnwhite but needs to incorporate the plans of pkofod and albop as well patrick and pablo you can comment here or email me privately or add your plans directly to the whatever you prefer
1
283,256
8,718,311,017
IssuesEvent
2018-12-07 20:00:01
conveyal/datatools-ui
https://api.github.com/repos/conveyal/datatools-ui
closed
When viewing stops, changing route in route-selection dropdown causes error
bug high-priority imported initial-fix
<a href="https://github.com/demory"><img src="https://avatars0.githubusercontent.com/u/653100?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [demory](https://github.com/demory)** _Tuesday May 01, 2018 at 22:50 GMT_ _Originally opened as https://github.com/catalogueglobal/datatools-ui/issues/87_ ---- ![image](https://user-images.githubusercontent.com/653100/39497258-85d6bd8e-4d70-11e8-85be-1af8517fa770.png) 1. Go to feed version https://gtfs-manager-dev.conveyal.com/feed/f317c85a-1258-4c89-981b-47737c29cc3a 2. Select 'Routes' 3. Select the first route ("Aub 1..") 4. Select 'View Stops' for the first pattern ("34 stops from...") 5. In 'Filtering Stops for Pattern' dropdown, try switching to the 2nd pattern 6. [ERROR]
1.0
When viewing stops, changing route in route-selection dropdown causes error - <a href="https://github.com/demory"><img src="https://avatars0.githubusercontent.com/u/653100?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [demory](https://github.com/demory)** _Tuesday May 01, 2018 at 22:50 GMT_ _Originally opened as https://github.com/catalogueglobal/datatools-ui/issues/87_ ---- ![image](https://user-images.githubusercontent.com/653100/39497258-85d6bd8e-4d70-11e8-85be-1af8517fa770.png) 1. Go to feed version https://gtfs-manager-dev.conveyal.com/feed/f317c85a-1258-4c89-981b-47737c29cc3a 2. Select 'Routes' 3. Select the first route ("Aub 1..") 4. Select 'View Stops' for the first pattern ("34 stops from...") 5. In 'Filtering Stops for Pattern' dropdown, try switching to the 2nd pattern 6. [ERROR]
priority
when viewing stops changing route in route selection dropdown causes error issue by tuesday may at gmt originally opened as go to feed version select routes select the first route aub select view stops for the first pattern stops from in filtering stops for pattern dropdown try switching to the pattern
1
683,404
23,380,471,630
IssuesEvent
2022-08-11 08:59:23
h-dt/WeCo
https://api.github.com/repos/h-dt/WeCo
opened
[update, docs] Swagger Board에 적용
enhancement status: in progress priority:high
## Swagger Board에 적용하기 - swagger를 이용하여 프론트 분들이 알아 볼 수 있는 API 문서를 만들어야 함
1.0
[update, docs] Swagger Board에 적용 - ## Swagger Board에 적용하기 - swagger를 이용하여 프론트 분들이 알아 볼 수 있는 API 문서를 만들어야 함
priority
swagger board에 적용 swagger board에 적용하기 swagger를 이용하여 프론트 분들이 알아 볼 수 있는 api 문서를 만들어야 함
1
793,752
28,009,358,952
IssuesEvent
2023-03-27 17:25:01
SIMPLE-AstroDB/SIMPLE-web
https://api.github.com/repos/SIMPLE-AstroDB/SIMPLE-web
closed
CAMD Plots on Solo
bug high priority
Solo results not returning CAMD plots as a y-axis option even though an object has a parallax.
1.0
CAMD Plots on Solo - Solo results not returning CAMD plots as a y-axis option even though an object has a parallax.
priority
camd plots on solo solo results not returning camd plots as a y axis option even though an object has a parallax
1
315,908
9,633,527,669
IssuesEvent
2019-05-15 18:52:05
ampproject/amp-wp
https://api.github.com/repos/ampproject/amp-wp
opened
Prioritize stylesheets to decide which are concatenated and which are excluded
[Priority] High css
While stylesheets are being concatenated together for `style[amp-custom]`, as soon as the the total reaches 50KB then all subsequent stylesheets are excluded. Each excluded stylesheet raises an `excessive_css` validation error. This is wrong, and it leads to a very bad user experiences. Case in point is when the admin bar is being displayed on AMP pages, as the CSS for dashicons and admin bar get added _before_ the CSS for the theme's stylesheet. Since the `admin-bar.css` is huge, this often results in the theme's own `style.css` being excluded, leading to completely broken templates. This is a big reason for why this admin-bar toggle exists in the first place: ![image](https://user-images.githubusercontent.com/134745/57799390-cc6fd880-7703-11e9-89ff-2b4fb8d6b0e1.png) For example, on Twenty Nineteen with Jetpack running and the admin bar shown, the scripts added are: ```html <link rel='stylesheet' id='twentynineteen-jetpack-css' href='https://wordpressdev.lndo.site/content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css?ver=1557447387' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/dashicons.css?ver=5.3-alpha-45282-src' type='text/css' media='all' /> <link rel='stylesheet' id='admin-bar-css' href='https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/admin-bar.css?ver=5.3-alpha-45282-src' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/style.css?ver=1557873353' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-theme-css' href='https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/theme.css?ver=1557873353' type='text/css' media='all' /> <link rel='stylesheet' id='twentynineteen-style-css' href='https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/style.css?ver=1.4' type='text/css' media='all' /> <link rel='stylesheet' id='twentynineteen-print-style-css' href='https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/print.css?ver=1.4' type='text/css' media='print' /> ``` On an AMP page, the result is: ``` The style[amp-custom] element is populated with: 0 B: style[amp-custom=] 106 B (2%): link#twentynineteen-jetpack-css[rel=stylesheet][id=twentynineteen-jetpack-css][href=https://wordpressdev.lndo.site/content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css?ver=1557447387][type=text/css][media=all] 780 B (14%): link#dashicons-css[rel=stylesheet][id=dashicons-css][href=https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/dashicons.css?ver=5.3-alpha-45282-src][type=text/css][media=all] 17336 B (96%): link#admin-bar-css[rel=stylesheet][id=admin-bar-css][href=https://wordpressdev.lndo.site/content/plugins/amp/assets/css/admin-bar.css?ver=1.2-alpha1][type=text/css][media=all] 99 B (46%): style#admin-bar-inline-css[id=admin-bar-inline-css][type=text/css] 73 B (57%): link#amp-default-css[rel=stylesheet][id=amp-default-css][href=https://wordpressdev.lndo.site/content/plugins/amp/assets/css/amp-default.css?ver=1.2-alpha1][type=text/css][media=all] 2168 B (18%): link#wp-block-library-css[rel=stylesheet][id=wp-block-library-css][href=https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/style.css?ver=1557873353][type=text/css][media=all] 249 B (19%): link#wp-block-library-theme-css[rel=stylesheet][id=wp-block-library-theme-css][href=https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/theme.css?ver=1557873353][type=text/css][media=all] 1116 B (80%): link#twentynineteen-print-style-css[rel=stylesheet][id=twentynineteen-print-style-css][href=https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/print.css?ver=1.4][type=text/css][media=print] 122 B: style[type=text/css] 39 B: style[type=text/css][media=print] 225 B: style[type=text/css][media=screen] 73 B: amp-img.wp-image-53 amp-wp-enforced-sizes amp-wp-b8332d9[class=wp-image-53 amp-wp-enforced-sizes amp-wp-b8332d9][src=https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1.jpg][alt=][srcset=https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1.jpg 1200w, https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1-300x196.jpg 300w, https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1-768x501.jpg 768w, https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1-1024x668.jpg 1024w][width=1200][height=783][layout=intrinsic] 93 B: div.wp-block-media-text has-media-on-the-right is-stacked-on-mobile amp-wp-2d949e1[class=wp-block-media-text has-media-on-the-right is-stacked-on-mobile amp-wp-2d949e1] 231 B: figure.wp-block-media-text__media amp-wp-6c8fbd0[class=wp-block-media-text__media amp-wp-6c8fbd0] 93 B: div.wp-block-media-text alignwide amp-wp-2d42cb8[class=wp-block-media-text alignwide amp-wp-2d42cb8] 74 B: figure#attachment_53.wp-caption alignright amp-wp-d9900c6[id=attachment_53][aria-describedby=caption-attachment-53][class=wp-caption alignright amp-wp-d9900c6] 74 B: figure#attachment_53.wp-caption aligncenter amp-wp-343bce0[id=attachment_53][aria-describedby=caption-attachment-53][class=wp-caption aligncenter amp-wp-343bce0] Total included size: 22,951 bytes (54% of 42,385 total after tree shaking) The following stylesheets are too large to be included in style[amp-custom]: 29500 B (58%): link#twentynineteen-style-css[rel=stylesheet][id=twentynineteen-style-css][href=https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/style.css?ver=1.4][type=text/css][media=all] Total excluded size: 29,500 bytes (58% of 50,020 total after tree shaking) Total combined size: 52,451 bytes (56% of 92,405 total after tree shaking) ``` The most important stylesheet of all is the one being excluded! > ![image](https://user-images.githubusercontent.com/134745/57799938-10afa880-7705-11e9-9269-988edd915b9b.png) At least the admin bar looks good! 😕 **So what is needed is to introduce a sense of priority weights for the stylesheets as they are selected for concatenation.** Given the stylesheets loaded above: * https://wordpressdev.lndo.site/content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css * https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/dashicons.css * https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/admin-bar.css * https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/style.css * https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/theme.css * https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/style.css * https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/print.css The priority order should be something like: 1. https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/style.css 1. https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/style.css 1. https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/theme.css 1. https://wordpressdev.lndo.site/content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css 1. https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/dashicons.css 1. https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/admin-bar.css 1. https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/print.css So the prioritized categories: 1. Theme stylesheets (e.g. `style.css`) which have `all`/`screen` media 1. Core stylesheets used by themes (e.g. `wp-block-library` and `wp-block-library-theme`), including the ones included by Gutenberg 1. Stylesheets from plugins (with `all`/`screen` media) 1. Inline `style` elements and attributes 1. Stylesheet for Dashicons 1. Stylesheet for admin-bar 1. Stylesheets with `print` media This should greatly reduce the frequency of templates appearing completely broken when CSS is being excluded. The prioritization could be indicated when displaying the manifest of the stylesheets in `style[amp-custom]` (including on validated URL admin screen: #2169). Bonus: once we get to the admin bar CSS and we determine it cannot be loaded, then we can automatically remove the admin bar from the page. (Which is an alternative to #1921.)
1.0
Prioritize stylesheets to decide which are concatenated and which are excluded - While stylesheets are being concatenated together for `style[amp-custom]`, as soon as the the total reaches 50KB then all subsequent stylesheets are excluded. Each excluded stylesheet raises an `excessive_css` validation error. This is wrong, and it leads to a very bad user experiences. Case in point is when the admin bar is being displayed on AMP pages, as the CSS for dashicons and admin bar get added _before_ the CSS for the theme's stylesheet. Since the `admin-bar.css` is huge, this often results in the theme's own `style.css` being excluded, leading to completely broken templates. This is a big reason for why this admin-bar toggle exists in the first place: ![image](https://user-images.githubusercontent.com/134745/57799390-cc6fd880-7703-11e9-89ff-2b4fb8d6b0e1.png) For example, on Twenty Nineteen with Jetpack running and the admin bar shown, the scripts added are: ```html <link rel='stylesheet' id='twentynineteen-jetpack-css' href='https://wordpressdev.lndo.site/content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css?ver=1557447387' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/dashicons.css?ver=5.3-alpha-45282-src' type='text/css' media='all' /> <link rel='stylesheet' id='admin-bar-css' href='https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/admin-bar.css?ver=5.3-alpha-45282-src' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/style.css?ver=1557873353' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-theme-css' href='https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/theme.css?ver=1557873353' type='text/css' media='all' /> <link rel='stylesheet' id='twentynineteen-style-css' href='https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/style.css?ver=1.4' type='text/css' media='all' /> <link rel='stylesheet' id='twentynineteen-print-style-css' href='https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/print.css?ver=1.4' type='text/css' media='print' /> ``` On an AMP page, the result is: ``` The style[amp-custom] element is populated with: 0 B: style[amp-custom=] 106 B (2%): link#twentynineteen-jetpack-css[rel=stylesheet][id=twentynineteen-jetpack-css][href=https://wordpressdev.lndo.site/content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css?ver=1557447387][type=text/css][media=all] 780 B (14%): link#dashicons-css[rel=stylesheet][id=dashicons-css][href=https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/dashicons.css?ver=5.3-alpha-45282-src][type=text/css][media=all] 17336 B (96%): link#admin-bar-css[rel=stylesheet][id=admin-bar-css][href=https://wordpressdev.lndo.site/content/plugins/amp/assets/css/admin-bar.css?ver=1.2-alpha1][type=text/css][media=all] 99 B (46%): style#admin-bar-inline-css[id=admin-bar-inline-css][type=text/css] 73 B (57%): link#amp-default-css[rel=stylesheet][id=amp-default-css][href=https://wordpressdev.lndo.site/content/plugins/amp/assets/css/amp-default.css?ver=1.2-alpha1][type=text/css][media=all] 2168 B (18%): link#wp-block-library-css[rel=stylesheet][id=wp-block-library-css][href=https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/style.css?ver=1557873353][type=text/css][media=all] 249 B (19%): link#wp-block-library-theme-css[rel=stylesheet][id=wp-block-library-theme-css][href=https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/theme.css?ver=1557873353][type=text/css][media=all] 1116 B (80%): link#twentynineteen-print-style-css[rel=stylesheet][id=twentynineteen-print-style-css][href=https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/print.css?ver=1.4][type=text/css][media=print] 122 B: style[type=text/css] 39 B: style[type=text/css][media=print] 225 B: style[type=text/css][media=screen] 73 B: amp-img.wp-image-53 amp-wp-enforced-sizes amp-wp-b8332d9[class=wp-image-53 amp-wp-enforced-sizes amp-wp-b8332d9][src=https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1.jpg][alt=][srcset=https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1.jpg 1200w, https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1-300x196.jpg 300w, https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1-768x501.jpg 768w, https://wordpressdev.lndo.site/content/uploads/2019/02/1200px-American_bison_k5680-1-1024x668.jpg 1024w][width=1200][height=783][layout=intrinsic] 93 B: div.wp-block-media-text has-media-on-the-right is-stacked-on-mobile amp-wp-2d949e1[class=wp-block-media-text has-media-on-the-right is-stacked-on-mobile amp-wp-2d949e1] 231 B: figure.wp-block-media-text__media amp-wp-6c8fbd0[class=wp-block-media-text__media amp-wp-6c8fbd0] 93 B: div.wp-block-media-text alignwide amp-wp-2d42cb8[class=wp-block-media-text alignwide amp-wp-2d42cb8] 74 B: figure#attachment_53.wp-caption alignright amp-wp-d9900c6[id=attachment_53][aria-describedby=caption-attachment-53][class=wp-caption alignright amp-wp-d9900c6] 74 B: figure#attachment_53.wp-caption aligncenter amp-wp-343bce0[id=attachment_53][aria-describedby=caption-attachment-53][class=wp-caption aligncenter amp-wp-343bce0] Total included size: 22,951 bytes (54% of 42,385 total after tree shaking) The following stylesheets are too large to be included in style[amp-custom]: 29500 B (58%): link#twentynineteen-style-css[rel=stylesheet][id=twentynineteen-style-css][href=https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/style.css?ver=1.4][type=text/css][media=all] Total excluded size: 29,500 bytes (58% of 50,020 total after tree shaking) Total combined size: 52,451 bytes (56% of 92,405 total after tree shaking) ``` The most important stylesheet of all is the one being excluded! > ![image](https://user-images.githubusercontent.com/134745/57799938-10afa880-7705-11e9-9269-988edd915b9b.png) At least the admin bar looks good! 😕 **So what is needed is to introduce a sense of priority weights for the stylesheets as they are selected for concatenation.** Given the stylesheets loaded above: * https://wordpressdev.lndo.site/content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css * https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/dashicons.css * https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/admin-bar.css * https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/style.css * https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/theme.css * https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/style.css * https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/print.css The priority order should be something like: 1. https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/style.css 1. https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/style.css 1. https://wordpressdev.lndo.site/content/plugins/gutenberg/build/block-library/theme.css 1. https://wordpressdev.lndo.site/content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css 1. https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/dashicons.css 1. https://wordpressdev.lndo.site/core-dev/src/wp-includes/css/admin-bar.css 1. https://wordpressdev.lndo.site/core-dev/src/wp-content/themes/twentynineteen/print.css So the prioritized categories: 1. Theme stylesheets (e.g. `style.css`) which have `all`/`screen` media 1. Core stylesheets used by themes (e.g. `wp-block-library` and `wp-block-library-theme`), including the ones included by Gutenberg 1. Stylesheets from plugins (with `all`/`screen` media) 1. Inline `style` elements and attributes 1. Stylesheet for Dashicons 1. Stylesheet for admin-bar 1. Stylesheets with `print` media This should greatly reduce the frequency of templates appearing completely broken when CSS is being excluded. The prioritization could be indicated when displaying the manifest of the stylesheets in `style[amp-custom]` (including on validated URL admin screen: #2169). Bonus: once we get to the admin bar CSS and we determine it cannot be loaded, then we can automatically remove the admin bar from the page. (Which is an alternative to #1921.)
priority
prioritize stylesheets to decide which are concatenated and which are excluded while stylesheets are being concatenated together for style as soon as the the total reaches then all subsequent stylesheets are excluded each excluded stylesheet raises an excessive css validation error this is wrong and it leads to a very bad user experiences case in point is when the admin bar is being displayed on amp pages as the css for dashicons and admin bar get added before the css for the theme s stylesheet since the admin bar css is huge this often results in the theme s own style css being excluded leading to completely broken templates this is a big reason for why this admin bar toggle exists in the first place for example on twenty nineteen with jetpack running and the admin bar shown the scripts added are html on an amp page the result is the style element is populated with b style b link twentynineteen jetpack css b link dashicons css b link admin bar css b style admin bar inline css b link amp default css b link wp block library css b link wp block library theme css b link twentynineteen print style css b style b style b style b amp img wp image amp wp enforced sizes amp wp b div wp block media text has media on the right is stacked on mobile amp wp b figure wp block media text media amp wp b div wp block media text alignwide amp wp b figure attachment wp caption alignright amp wp b figure attachment wp caption aligncenter amp wp total included size bytes of total after tree shaking the following stylesheets are too large to be included in style b link twentynineteen style css total excluded size bytes of total after tree shaking total combined size bytes of total after tree shaking the most important stylesheet of all is the one being excluded at least the admin bar looks good 😕 so what is needed is to introduce a sense of priority weights for the stylesheets as they are selected for concatenation given the stylesheets loaded above the priority order should be something like so the prioritized categories theme stylesheets e g style css which have all screen media core stylesheets used by themes e g wp block library and wp block library theme including the ones included by gutenberg stylesheets from plugins with all screen media inline style elements and attributes stylesheet for dashicons stylesheet for admin bar stylesheets with print media this should greatly reduce the frequency of templates appearing completely broken when css is being excluded the prioritization could be indicated when displaying the manifest of the stylesheets in style including on validated url admin screen bonus once we get to the admin bar css and we determine it cannot be loaded then we can automatically remove the admin bar from the page which is an alternative to
1
99,993
4,075,232,681
IssuesEvent
2016-05-29 02:20:57
Sniddl/SM
https://api.github.com/repos/Sniddl/SM
closed
User page always mobile
bug High Priority HTML
The user page divs stretch all the way across the page. I update the blue prints to help explain what I intended it to look like. -------- http://dev.sniddl.com/img/profilelayout.svg
1.0
User page always mobile - The user page divs stretch all the way across the page. I update the blue prints to help explain what I intended it to look like. -------- http://dev.sniddl.com/img/profilelayout.svg
priority
user page always mobile the user page divs stretch all the way across the page i update the blue prints to help explain what i intended it to look like
1
482,381
13,905,659,299
IssuesEvent
2020-10-20 10:10:13
canonical-web-and-design/microk8s.io
https://api.github.com/repos/canonical-web-and-design/microk8s.io
closed
Docs title is not updated per page
Priority: High
On the docs pages, the title is not updated based on the page content.
1.0
Docs title is not updated per page - On the docs pages, the title is not updated based on the page content.
priority
docs title is not updated per page on the docs pages the title is not updated based on the page content
1
809,189
30,178,488,293
IssuesEvent
2023-07-04 07:13:29
GSM-MSG/Hi-v2-Android
https://api.github.com/repos/GSM-MSG/Hi-v2-Android
closed
Auth presentation 로직 구현
1️⃣ Priority: High ✨ Feature
### Describe - 남은 Auth presentation 로직 구현 ### Additional _No response_
1.0
Auth presentation 로직 구현 - ### Describe - 남은 Auth presentation 로직 구현 ### Additional _No response_
priority
auth presentation 로직 구현 describe 남은 auth presentation 로직 구현 additional no response
1
429,955
12,438,651,662
IssuesEvent
2020-05-26 08:47:37
RasaHQ/rasa
https://api.github.com/repos/RasaHQ/rasa
closed
Help users choose a good pipeline & policy configuration
priority:high type:enhancement :sparkles:
The goal is to give users an easy option to get started. The assumption is that most of our users do not (and should not) need to customize the pipeline or the configuration when they start building a bot. Customizing policy & pipeline configuration options is a feature used to finetune a bot later in the development stage. # Option A Add a new command ```bash rasa config suggest ``` ... which will ask users about their expectations (do they need certain things or not) and analyze their training data, suggesting users to use a certain configuration. Later with experience users can move to more suitable pipelines. * asking the user questions might allow as to pick a better pipeline (is this the case?) * most users will not use it (simply because it is a separate command, e.g. might make sense to integrate into init script to increase that fraction) # Option B Automatically choose pipeline & polcies if, and only if, they are not provided as part of the configuration. The default init project should be changed to ```yaml language: en ``` As soon as training is started, we will pick a configuration based on the training data (e.g. adding a FormPoliciy, if needed). Option A can be implemented on top of this, reusing the code to generate the configuration. * allows us to improve models "under the hood" when roling out updates by improving the automatic configuration * reduces the friction to use additional features of Rasa Open Source (e.g. forms, response selector)
1.0
Help users choose a good pipeline & policy configuration - The goal is to give users an easy option to get started. The assumption is that most of our users do not (and should not) need to customize the pipeline or the configuration when they start building a bot. Customizing policy & pipeline configuration options is a feature used to finetune a bot later in the development stage. # Option A Add a new command ```bash rasa config suggest ``` ... which will ask users about their expectations (do they need certain things or not) and analyze their training data, suggesting users to use a certain configuration. Later with experience users can move to more suitable pipelines. * asking the user questions might allow as to pick a better pipeline (is this the case?) * most users will not use it (simply because it is a separate command, e.g. might make sense to integrate into init script to increase that fraction) # Option B Automatically choose pipeline & polcies if, and only if, they are not provided as part of the configuration. The default init project should be changed to ```yaml language: en ``` As soon as training is started, we will pick a configuration based on the training data (e.g. adding a FormPoliciy, if needed). Option A can be implemented on top of this, reusing the code to generate the configuration. * allows us to improve models "under the hood" when roling out updates by improving the automatic configuration * reduces the friction to use additional features of Rasa Open Source (e.g. forms, response selector)
priority
help users choose a good pipeline policy configuration the goal is to give users an easy option to get started the assumption is that most of our users do not and should not need to customize the pipeline or the configuration when they start building a bot customizing policy pipeline configuration options is a feature used to finetune a bot later in the development stage option a add a new command bash rasa config suggest which will ask users about their expectations do they need certain things or not and analyze their training data suggesting users to use a certain configuration later with experience users can move to more suitable pipelines asking the user questions might allow as to pick a better pipeline is this the case most users will not use it simply because it is a separate command e g might make sense to integrate into init script to increase that fraction option b automatically choose pipeline polcies if and only if they are not provided as part of the configuration the default init project should be changed to yaml language en as soon as training is started we will pick a configuration based on the training data e g adding a formpoliciy if needed option a can be implemented on top of this reusing the code to generate the configuration allows us to improve models under the hood when roling out updates by improving the automatic configuration reduces the friction to use additional features of rasa open source e g forms response selector
1
188,927
6,787,202,915
IssuesEvent
2017-10-31 02:31:44
xcat2/xcat-core
https://api.github.com/repos/xcat2/xcat-core
closed
Node group name does not work if only consists of numbers
component:obj_db_cmds priority:high
Created a group called `1738` , and it does not work.... It creates OK ``` [root@briggs01 p9_generic]# lsdef -t group | grep 1738 1738 (group) fw1738 (group) [root@briggs01 p9_generic]# lsdef -t group -o 1738 Object name: 1738 members=mid05tor12cn11,mid05tor12cn13 ``` But using the group does not work... ``` [root@briggs01 p9_generic]# nodels 1738 Error: Invalid nodes and/or groups in noderange: node1738 ```
1.0
Node group name does not work if only consists of numbers - Created a group called `1738` , and it does not work.... It creates OK ``` [root@briggs01 p9_generic]# lsdef -t group | grep 1738 1738 (group) fw1738 (group) [root@briggs01 p9_generic]# lsdef -t group -o 1738 Object name: 1738 members=mid05tor12cn11,mid05tor12cn13 ``` But using the group does not work... ``` [root@briggs01 p9_generic]# nodels 1738 Error: Invalid nodes and/or groups in noderange: node1738 ```
priority
node group name does not work if only consists of numbers created a group called and it does not work it creates ok lsdef t group grep group group lsdef t group o object name members but using the group does not work nodels error invalid nodes and or groups in noderange
1
73,054
3,402,505,090
IssuesEvent
2015-12-03 00:19:52
yousefaltufiel/Elemental
https://api.github.com/repos/yousefaltufiel/Elemental
closed
Page Fire contains a water picture
bug Priority: High
When clicking on Fire page the page view show a water picture instead of Fire. Expected result: a picture of Fire instead of Water
1.0
Page Fire contains a water picture - When clicking on Fire page the page view show a water picture instead of Fire. Expected result: a picture of Fire instead of Water
priority
page fire contains a water picture when clicking on fire page the page view show a water picture instead of fire expected result a picture of fire instead of water
1
174,207
6,537,775,249
IssuesEvent
2017-09-01 00:50:21
Polymer/web-component-tester
https://api.github.com/repos/Polymer/web-component-tester
closed
WCT hangs when running test on IE11 (Windows 10)
Priority: High Type: Bug
web-component-tester/browser/config.js, line 13: var useNpm = document.currentScript.src.match(/wct-browser-legacy\/browser.js/) // ... document.currentScript is undefined on IE11
1.0
WCT hangs when running test on IE11 (Windows 10) - web-component-tester/browser/config.js, line 13: var useNpm = document.currentScript.src.match(/wct-browser-legacy\/browser.js/) // ... document.currentScript is undefined on IE11
priority
wct hangs when running test on windows web component tester browser config js line var usenpm document currentscript src match wct browser legacy browser js document currentscript is undefined on
1
16,533
2,615,118,264
IssuesEvent
2015-03-01 05:43:53
chrsmith/google-api-java-client
https://api.github.com/repos/chrsmith/google-api-java-client
closed
Depend on Guava library
auto-migrated Component-Release Milestone-Version1.3.0 Priority-High Type-Enhancement
``` External references, such as a standards document, or specification? http://code.google.com/p/guava-libraries/ Java environments (e.g. Java 6, Android 2.2, App Engine 1.3.7, or All)? All. Please describe the feature requested. Currently we copy two classes from Guava from the com.google.common.base package. See: http://code.google.com/p/google-api-java-client/source/browse/#hg%2Fgoogle-api-c lient%2Fsrc%2Fcom%2Fgoogle%2Fapi%2Fclient%2Frepackaged%2Fcom%2Fgoogle%2Fcommon%2 Fbase Instead we should just depend on Guava directly. Although this adds a 1MB dependency, with ProGuard this will presumably reduce to a trivial size. This is a particularly important considerations for environments like Android with low application space, so we need to verify this claim that ProGuard can be used effectively with this library. ``` Original issue reported on code.google.com by `yan...@google.com` on 7 Jan 2011 at 3:42
1.0
Depend on Guava library - ``` External references, such as a standards document, or specification? http://code.google.com/p/guava-libraries/ Java environments (e.g. Java 6, Android 2.2, App Engine 1.3.7, or All)? All. Please describe the feature requested. Currently we copy two classes from Guava from the com.google.common.base package. See: http://code.google.com/p/google-api-java-client/source/browse/#hg%2Fgoogle-api-c lient%2Fsrc%2Fcom%2Fgoogle%2Fapi%2Fclient%2Frepackaged%2Fcom%2Fgoogle%2Fcommon%2 Fbase Instead we should just depend on Guava directly. Although this adds a 1MB dependency, with ProGuard this will presumably reduce to a trivial size. This is a particularly important considerations for environments like Android with low application space, so we need to verify this claim that ProGuard can be used effectively with this library. ``` Original issue reported on code.google.com by `yan...@google.com` on 7 Jan 2011 at 3:42
priority
depend on guava library external references such as a standards document or specification java environments e g java android app engine or all all please describe the feature requested currently we copy two classes from guava from the com google common base package see lient fbase instead we should just depend on guava directly although this adds a dependency with proguard this will presumably reduce to a trivial size this is a particularly important considerations for environments like android with low application space so we need to verify this claim that proguard can be used effectively with this library original issue reported on code google com by yan google com on jan at
1
482,630
13,910,958,457
IssuesEvent
2020-10-20 16:44:24
teodesian/Selenium-Remote-Driver
https://api.github.com/repos/teodesian/Selenium-Remote-Driver
closed
set_local_storage_item()?
capabilities feature-request high priority
Hello, are there plans to make a function or method set_local_storage_item(), according to get_local_storage_item() which already exists? Kind Regards, Georg
1.0
set_local_storage_item()? - Hello, are there plans to make a function or method set_local_storage_item(), according to get_local_storage_item() which already exists? Kind Regards, Georg
priority
set local storage item hello are there plans to make a function or method set local storage item according to get local storage item which already exists kind regards georg
1
242,527
7,843,720,201
IssuesEvent
2018-06-19 07:18:43
bpakodi/service.nfo.sync
https://api.github.com/repos/bpakodi/service.nfo.sync
closed
review processing in tasks
enhancement priority: high work in progress
This is a major reorganization of the way tasks are structured: see [dedicated page on wiki](https://github.com/bpakodi/service.nfo.sync/wiki/ZZ.-Dev----Class-organization) for more details.
1.0
review processing in tasks - This is a major reorganization of the way tasks are structured: see [dedicated page on wiki](https://github.com/bpakodi/service.nfo.sync/wiki/ZZ.-Dev----Class-organization) for more details.
priority
review processing in tasks this is a major reorganization of the way tasks are structured see for more details
1
110,235
4,424,006,909
IssuesEvent
2016-08-16 10:45:07
dhis2/settings-app
https://api.github.com/repos/dhis2/settings-app
opened
App occasionally fails to load
backport bug priority:high
To reproduce (some times): 1. Open DHIS 2. Navigate to the settings app
1.0
App occasionally fails to load - To reproduce (some times): 1. Open DHIS 2. Navigate to the settings app
priority
app occasionally fails to load to reproduce some times open dhis navigate to the settings app
1
656,929
21,780,066,923
IssuesEvent
2022-05-13 17:48:58
bounswe/bounswe2022group5
https://api.github.com/repos/bounswe/bounswe2022group5
closed
Practice-App: Writing all unit tests for Post app
High Priority Type: To Do Status: Need Review
**Description:** The tests will be implemented for the Post app of the Practice-App using the TestCase library from django.test. Find more about Post from the issue #83. **Details for tests and *todo's*:** - [x] Write tests for urls. - [x] Write tests for views. - [x] Write tests for models. - [x] Write tests for forms. **Reviewers:** @mehmetemreakbulut @canberkboun9 **Task Deadline:** 14.05.2022 16:00 **Review Deadline:** 14.05.2022 20:00
1.0
Practice-App: Writing all unit tests for Post app - **Description:** The tests will be implemented for the Post app of the Practice-App using the TestCase library from django.test. Find more about Post from the issue #83. **Details for tests and *todo's*:** - [x] Write tests for urls. - [x] Write tests for views. - [x] Write tests for models. - [x] Write tests for forms. **Reviewers:** @mehmetemreakbulut @canberkboun9 **Task Deadline:** 14.05.2022 16:00 **Review Deadline:** 14.05.2022 20:00
priority
practice app writing all unit tests for post app description the tests will be implemented for the post app of the practice app using the testcase library from django test find more about post from the issue details for tests and todo s write tests for urls write tests for views write tests for models write tests for forms reviewers mehmetemreakbulut task deadline review deadline
1
236,723
7,752,153,416
IssuesEvent
2018-05-30 19:21:30
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
USER ISSUE:
High Priority
**Version:** 0.7.4.4 beta **Steps to Reproduce:** **Expected behavior:** **Actual behavior:** The following error message popped up: ``` Inactivity. ``` <details> <summary>Log File</summary>(...previous log truncated...) gedIn -> Connecting (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) The referenced script on this Behaviour is missing! (Filename: Line: 1515) The referenced script on this Behaviour (Game Object 'WorldObjects') is missing! (Filename: Line: 1758) Missing following objects: AirPumpObject, APGenObject, AtmosphereRegulatorObject, AtmosphereTesterObject, BigStorageChestObject, ButtonObject, GasGeneratorObject, LogicGateObject, SwitchObject (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: Connecting -> FadeAndClose (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Can not play a disabled audio source (Filename: Line: 707) [09:19] Disconnected from server.Changing state: PreLogin -> LoggedIn (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: LoggedIn -> Connecting (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) The referenced script on this Behaviour is missing! (Filename: Line: 1515) The referenced script on this Behaviour (Game Object 'WorldObjects') is missing! (Filename: Line: 1758) Missing following objects: AirPumpObject, APGenObject, AtmosphereRegulatorObject, AtmosphereTesterObject, BigStorageChestObject, ButtonObject, GasGeneratorObject, LogicGateObject, SwitchObject (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: Connecting -> FadeAndClose (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) [10:02] Disconnected from server.Changing state: PreLogin -> LoggedIn (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: LoggedIn -> Connecting (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) The referenced script on this Behaviour is missing! (Filename: Line: 1515) The referenced script on this Behaviour (Game Object 'WorldObjects') is missing! (Filename: Line: 1758) Missing following objects: AirPumpObject, APGenObject, AtmosphereRegulatorObject, AtmosphereTesterObject, BigStorageChestObject, ButtonObject, GasGeneratorObject, LogicGateObject, SwitchObject (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: Connecting -> FadeAndClose (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) [10:47] Disconnected from server.Changing state: PreLogin -> LoggedIn (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) </details>
1.0
USER ISSUE: - **Version:** 0.7.4.4 beta **Steps to Reproduce:** **Expected behavior:** **Actual behavior:** The following error message popped up: ``` Inactivity. ``` <details> <summary>Log File</summary>(...previous log truncated...) gedIn -> Connecting (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) The referenced script on this Behaviour is missing! (Filename: Line: 1515) The referenced script on this Behaviour (Game Object 'WorldObjects') is missing! (Filename: Line: 1758) Missing following objects: AirPumpObject, APGenObject, AtmosphereRegulatorObject, AtmosphereTesterObject, BigStorageChestObject, ButtonObject, GasGeneratorObject, LogicGateObject, SwitchObject (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: Connecting -> FadeAndClose (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Can not play a disabled audio source (Filename: Line: 707) [09:19] Disconnected from server.Changing state: PreLogin -> LoggedIn (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: LoggedIn -> Connecting (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) The referenced script on this Behaviour is missing! (Filename: Line: 1515) The referenced script on this Behaviour (Game Object 'WorldObjects') is missing! (Filename: Line: 1758) Missing following objects: AirPumpObject, APGenObject, AtmosphereRegulatorObject, AtmosphereTesterObject, BigStorageChestObject, ButtonObject, GasGeneratorObject, LogicGateObject, SwitchObject (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: Connecting -> FadeAndClose (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) [10:02] Disconnected from server.Changing state: PreLogin -> LoggedIn (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: LoggedIn -> Connecting (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) The referenced script on this Behaviour is missing! (Filename: Line: 1515) The referenced script on this Behaviour (Game Object 'WorldObjects') is missing! (Filename: Line: 1758) Missing following objects: AirPumpObject, APGenObject, AtmosphereRegulatorObject, AtmosphereTesterObject, BigStorageChestObject, ButtonObject, GasGeneratorObject, LogicGateObject, SwitchObject (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: Connecting -> FadeAndClose (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) [10:47] Disconnected from server.Changing state: PreLogin -> LoggedIn (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) </details>
priority
user issue version beta steps to reproduce expected behavior actual behavior the following error message popped up inactivity log file previous log truncated gedin connecting filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line the referenced script on this behaviour is missing filename line the referenced script on this behaviour game object worldobjects is missing filename line missing following objects airpumpobject apgenobject atmosphereregulatorobject atmospheretesterobject bigstoragechestobject buttonobject gasgeneratorobject logicgateobject switchobject filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line changing state connecting fadeandclose filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line can not play a disabled audio source filename line disconnected from server changing state prelogin loggedin filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line changing state loggedin connecting filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line the referenced script on this behaviour is missing filename line the referenced script on this behaviour game object worldobjects is missing filename line missing following objects airpumpobject apgenobject atmosphereregulatorobject atmospheretesterobject bigstoragechestobject buttonobject gasgeneratorobject logicgateobject switchobject filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line changing state connecting fadeandclose filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line disconnected from server changing state prelogin loggedin filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line changing state loggedin connecting filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line the referenced script on this behaviour is missing filename line the referenced script on this behaviour game object worldobjects is missing filename line missing following objects airpumpobject apgenobject atmosphereregulatorobject atmospheretesterobject bigstoragechestobject buttonobject gasgeneratorobject logicgateobject switchobject filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line changing state connecting fadeandclose filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line disconnected from server changing state prelogin loggedin filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line
1
441,721
12,730,878,094
IssuesEvent
2020-06-25 08:10:18
momozor/quaremain
https://api.github.com/repos/momozor/quaremain
opened
Rename *PerPackage to *PerStock and use plural for ML
in-progress priority: high
*PerPackage -> *PerStock - yes millilitre -> millilitres - yes, but both are for the code <td>{{ stock.millilitrePerPackage }}ML</td> no matter what is the name, we display ML
1.0
Rename *PerPackage to *PerStock and use plural for ML - *PerPackage -> *PerStock - yes millilitre -> millilitres - yes, but both are for the code <td>{{ stock.millilitrePerPackage }}ML</td> no matter what is the name, we display ML
priority
rename perpackage to perstock and use plural for ml perpackage perstock yes millilitre millilitres yes but both are for the code stock millilitreperpackage ml no matter what is the name we display ml
1
816,437
30,599,421,415
IssuesEvent
2023-07-22 07:00:20
TaoStats/bittensor-explorer-ui
https://api.github.com/repos/TaoStats/bittensor-explorer-ui
closed
Project Analysis
Priority: High
- [x] What is the styling framework used? - [x] How are the components structured? - [x] How's the search implemented? - [x] How's the pagination implemented? - [x] How are the GraphQL queries structured and processed? - [x] Hooks
1.0
Project Analysis - - [x] What is the styling framework used? - [x] How are the components structured? - [x] How's the search implemented? - [x] How's the pagination implemented? - [x] How are the GraphQL queries structured and processed? - [x] Hooks
priority
project analysis what is the styling framework used how are the components structured how s the search implemented how s the pagination implemented how are the graphql queries structured and processed hooks
1
385,887
11,427,294,624
IssuesEvent
2020-02-04 00:18:56
cuappdev/pollo-ios
https://api.github.com/repos/cuappdev/pollo-ios
opened
App won't open when no Internet connection
Priority: High Type: Bug
When you open the app without a network connection, it gets stuck on the loading screen and is only fixed by force-quitting and re-opening the app. Might be an issue in AppDelegate with Fabric settings??
1.0
App won't open when no Internet connection - When you open the app without a network connection, it gets stuck on the loading screen and is only fixed by force-quitting and re-opening the app. Might be an issue in AppDelegate with Fabric settings??
priority
app won t open when no internet connection when you open the app without a network connection it gets stuck on the loading screen and is only fixed by force quitting and re opening the app might be an issue in appdelegate with fabric settings
1
134,605
5,231,303,472
IssuesEvent
2017-01-30 01:20:33
easydigitaldownloads/easy-digital-downloads
https://api.github.com/repos/easydigitaldownloads/easy-digital-downloads
closed
Add option to complete abandoned/pending purchases
Checkout Enhancement Payments Priority: High
Users should be able to complete abandoned/pending purchases on subsequent visits. In order to facilitate this, a status of 'processing' should be added which will be used by eChecks instead of the 'pending' status used now. This will allow pending purchases to be completed without risking affecting eCheck purchases which are pending processing. @pippinsplugins has indicated that WooCommerce does this well and we should take inspiration from them.
1.0
Add option to complete abandoned/pending purchases - Users should be able to complete abandoned/pending purchases on subsequent visits. In order to facilitate this, a status of 'processing' should be added which will be used by eChecks instead of the 'pending' status used now. This will allow pending purchases to be completed without risking affecting eCheck purchases which are pending processing. @pippinsplugins has indicated that WooCommerce does this well and we should take inspiration from them.
priority
add option to complete abandoned pending purchases users should be able to complete abandoned pending purchases on subsequent visits in order to facilitate this a status of processing should be added which will be used by echecks instead of the pending status used now this will allow pending purchases to be completed without risking affecting echeck purchases which are pending processing pippinsplugins has indicated that woocommerce does this well and we should take inspiration from them
1
307,645
9,419,817,517
IssuesEvent
2019-04-10 23:24:14
natsnudasoft/RgbLedSequencer
https://api.github.com/repos/natsnudasoft/RgbLedSequencer
reopened
Add ability to poll device status
Priority: High Status: Review Needed Type: Enhancement
We should add the ability to the RgbLedSequencer class to poll the current status of the device (Awake, Sleeping, Busy, PortClosed, Unreachable). We would need to evaluate the difficulty or even possibility of detecting some of these states.
1.0
Add ability to poll device status - We should add the ability to the RgbLedSequencer class to poll the current status of the device (Awake, Sleeping, Busy, PortClosed, Unreachable). We would need to evaluate the difficulty or even possibility of detecting some of these states.
priority
add ability to poll device status we should add the ability to the rgbledsequencer class to poll the current status of the device awake sleeping busy portclosed unreachable we would need to evaluate the difficulty or even possibility of detecting some of these states
1
387,550
11,463,288,365
IssuesEvent
2020-02-07 15:44:06
ThunderFly-aerospace/TF-G1
https://api.github.com/repos/ThunderFly-aerospace/TF-G1
opened
Workflow pro generování výrobních dat
3D modelování enhancement help wanted high-priority
Protože se projekt TF-G1 velmi rozrůstá a vzniká mnoho podpůrných projektů, které jsou založeny na 3D tisku, začíná se stávat, že aktuální postup přípravy pomocí makefilu je nedostatečný a občas velmi složitý. Je potřeba připravit systém, který ze zdrojových dat (dneska primárně openscad). Tyto zdrojové formáty se můžou rozrůstat a mírně modifikovat. Obdobný návrh vzešel ze schůze s @kaklik a @ChroustJan. Celý systém musí umět několik základních věcí: * Načítat zdrojová data. V lepším případě umět nějaké mírné modifikace * Získání parametrů (jejich číselných výsledků) z OpenSCADu a parametrických souborů * Renderovat zdrojové soubory do formátu založených na mřížích. (Ideálně AMF, STL) * případnou konverzi formátů * Slicování modelů s nastavením sliceru specificky pro model * Vytváření modifikátorů pro slicery. Příprava pro jejich následovné použití vícekrát bez potřeby ruční úpravy * Výpočet těžiště, hmotnosti a dalších parametrů na základě GCODe. Následné uložení těchto parametrů do předchozích formátů (gcode komentář, AMF parametry, eSCAD metadata) * Tvorba celkových sestav, výpočet celkového těžiště, dalších parametrů Celý systém by mělo být možné zasmyčkovat a pomocí nějakých variabilních parametrů a pomocí nějakých optimalizačních algoritmů moct přesně nastavit například přesné vyvážení dílu. Následně i celých sestav. ### Zdrojová data Většina modelů je primárně v OpenSCADu. Ale existují i vyjímky, které by bylo dobré nějakým způsobem umět podporovat. Formát OpenSCAD navrhuji rozšířit o nějaké metatagy. (prozatím například použítím deklarátoru ```///@```). Vytvořit nějaký Extended OpenSCAD (```.escad```). Přes tyto metatagy by mělo jít nastavit všechny parametry potřebné k následným krokům tohoto postupu. > OpenSCAD nezná deklarátor ```@```. Proto ta kombinace s ```//``` což je OpenSCAD komentář. Pří použití zavináče OpenSCAD končí chybou. Pokud by tento postup byl vážně dobrý, tak věřím, že by se nám tento deklarátor povedlo prosadit přímo do OpenSCADu bez nutnosti použití komentářů. Seznam potřebných funkcí/parametrů: * Pro renderování * ```@render()``` - vyrenderuje samotný soubor * ```@render(<module>)``` - vyrenderuje samotný modul * Pro nastavení slicování * ```@set_slicing_profile(<slicer.ini>)``` - Includování ini souboru pro konfiguraci sliceru. Lze importovat vícekrát. Vždy budou přepsané duplicitní hodnoty * ```@set_slicing_parameter(<parametr>, <hodnota>)``` - Nastavení jednoho parametru * Nastavení submodulu * ```set_modificator(<name>, <module>)``` - nastavit, který modul se použije jako modifikátor * Nastavení slicovacích parametrů pro slicer * ```set_modificator_profile(<modif_name>, <slicer.ini>)``` * ```set_modificator_value(<modif_name>, <parametr>, <hodnota>)``` ### Renderování modelů Tento krok je věnován především řešení s OpenSCADem. Model pro tisk typicky obsahuje několik částí. Samotný model. Může být definován samotným souborem (výchozí stav) či to může být konkrétní OpenSCAD module. Model také může obsahovat nějaké modifikátory. Což jsou taktéž 3D modely, vybírající část samotného modelu. Zatím by se OpenSCAD měl volat jako shell funkce, které bude předkládán OpenSCAD soubor. Popřípadě bude nějaký takový generován automaticky skriptem. Tyto kroky musí jít udělat i bez OpenSCAD dat. (například FreeCAD a jiných). U všech nelze zajistit, to, že půjde soubor tak jednoduše rozšířit. Proto by bylo dobré mít nějaký jednotný formát, které se přiloží např k FreeCADu a potřebná data se získají z něj. ### Skládání modelů Z OpenSCADu vzniknou AMF modely, které je potřeba pro slicování sloučit do jednoho formátu. Vzhledem k tomu, že je to XML soubor. Stačí pouze jejich části překopírovat do jednoho souboru a nastavit správné parametry. Na základě deklarátorů v ```.escad``` souboru je pak vybráno, co bude modifikátor a co bude samotný model. Do výsledného AMF souboru pak budou přepsány požadované parametry z ```.ini``` souboru. A vznikne tak jeden kompaktní soubor pro slicování. ### Slicování 3D modelů Zatím se pro slicování používá slicer [slic3r](). Tento slicer má několik vlastností, které jsou vvhodné pro toto použití. Všechny parametry pro slicování by ideálně měly být uloženy v jednom souboru, který se Slic3eru předloží. Takovým souborem je formát ```.amf```. Což je formát založený na textovém ```.XML```. V souboru můžou být uloženy jak samotný model, jeho slicovací parametry tak i modifikátory s modifikujícími parametry. Parametry i modifikátory budou uloženy přímo v tomto souboru. Což má vlastnost, že by tento model mělo být možné vyrenderovat bez závislosti na dalších souborech. A nebude potřeba řešit verze dalších souborů. Slic3er při procesu slicování dělá translace (kvůli vyrovnání na podložku). Tyto parametry jsou zatím neznámé a na získání těchto parametrů se pracuje v #279. ### Výpočet těžiště a dalších parametrů reálného výrobku Při vytištění je model vyplněn nějakým materiálem. Není to homogenní materiál a proto to nelze počítat z AMF či STL. Navíc každé slicování (s jiným slicerem) může být trošku odlišné. Tato věc by měla být dělána tak, že se budou počítat jednotlivé přejezdy extruderu a množství vytištěného materiálu. Z toho lze určitě získat těžiště a hmotnost modelu. Tyto parametry pak budou zapsány do komentáře gcodu a asi i do AMF souboru. ### Sestavy ### Řešení Celý problém by měl být řešený jako Python program/třída která bude provázet celým procesem. Jednotlivé kroky by měly být vlastní třídou. Ve výsledku by to měla být spustitelná aplikace. Renderování pomocí makefilu bych zachoval. Jen by volal takovýto skript, který by tuto problematiku vyřešil. Makefile by se tím zásadně zjednodušil. Zároveň by to mělo být použitelné na jakýkoliv snad soubor bez nějakých dalších potřebných věcí... Něco jako ```escad_processor model.escad``` a mělo by vzniknout několik souborů. AMF s modifikátory, STL, png, Gcode. V průběhu by bylo dost důležité psát nějakou dokumentaci aby se takovýto software mohl snadno rozšířit. Věřím, že tento problém řeší mnoho lidí. Možná by následně bylo vhodné to někde prezentovat. Je zde možná nedořešeno dost detailů. Takže budu rád za připomínky, nápady.
1.0
Workflow pro generování výrobních dat - Protože se projekt TF-G1 velmi rozrůstá a vzniká mnoho podpůrných projektů, které jsou založeny na 3D tisku, začíná se stávat, že aktuální postup přípravy pomocí makefilu je nedostatečný a občas velmi složitý. Je potřeba připravit systém, který ze zdrojových dat (dneska primárně openscad). Tyto zdrojové formáty se můžou rozrůstat a mírně modifikovat. Obdobný návrh vzešel ze schůze s @kaklik a @ChroustJan. Celý systém musí umět několik základních věcí: * Načítat zdrojová data. V lepším případě umět nějaké mírné modifikace * Získání parametrů (jejich číselných výsledků) z OpenSCADu a parametrických souborů * Renderovat zdrojové soubory do formátu založených na mřížích. (Ideálně AMF, STL) * případnou konverzi formátů * Slicování modelů s nastavením sliceru specificky pro model * Vytváření modifikátorů pro slicery. Příprava pro jejich následovné použití vícekrát bez potřeby ruční úpravy * Výpočet těžiště, hmotnosti a dalších parametrů na základě GCODe. Následné uložení těchto parametrů do předchozích formátů (gcode komentář, AMF parametry, eSCAD metadata) * Tvorba celkových sestav, výpočet celkového těžiště, dalších parametrů Celý systém by mělo být možné zasmyčkovat a pomocí nějakých variabilních parametrů a pomocí nějakých optimalizačních algoritmů moct přesně nastavit například přesné vyvážení dílu. Následně i celých sestav. ### Zdrojová data Většina modelů je primárně v OpenSCADu. Ale existují i vyjímky, které by bylo dobré nějakým způsobem umět podporovat. Formát OpenSCAD navrhuji rozšířit o nějaké metatagy. (prozatím například použítím deklarátoru ```///@```). Vytvořit nějaký Extended OpenSCAD (```.escad```). Přes tyto metatagy by mělo jít nastavit všechny parametry potřebné k následným krokům tohoto postupu. > OpenSCAD nezná deklarátor ```@```. Proto ta kombinace s ```//``` což je OpenSCAD komentář. Pří použití zavináče OpenSCAD končí chybou. Pokud by tento postup byl vážně dobrý, tak věřím, že by se nám tento deklarátor povedlo prosadit přímo do OpenSCADu bez nutnosti použití komentářů. Seznam potřebných funkcí/parametrů: * Pro renderování * ```@render()``` - vyrenderuje samotný soubor * ```@render(<module>)``` - vyrenderuje samotný modul * Pro nastavení slicování * ```@set_slicing_profile(<slicer.ini>)``` - Includování ini souboru pro konfiguraci sliceru. Lze importovat vícekrát. Vždy budou přepsané duplicitní hodnoty * ```@set_slicing_parameter(<parametr>, <hodnota>)``` - Nastavení jednoho parametru * Nastavení submodulu * ```set_modificator(<name>, <module>)``` - nastavit, který modul se použije jako modifikátor * Nastavení slicovacích parametrů pro slicer * ```set_modificator_profile(<modif_name>, <slicer.ini>)``` * ```set_modificator_value(<modif_name>, <parametr>, <hodnota>)``` ### Renderování modelů Tento krok je věnován především řešení s OpenSCADem. Model pro tisk typicky obsahuje několik částí. Samotný model. Může být definován samotným souborem (výchozí stav) či to může být konkrétní OpenSCAD module. Model také může obsahovat nějaké modifikátory. Což jsou taktéž 3D modely, vybírající část samotného modelu. Zatím by se OpenSCAD měl volat jako shell funkce, které bude předkládán OpenSCAD soubor. Popřípadě bude nějaký takový generován automaticky skriptem. Tyto kroky musí jít udělat i bez OpenSCAD dat. (například FreeCAD a jiných). U všech nelze zajistit, to, že půjde soubor tak jednoduše rozšířit. Proto by bylo dobré mít nějaký jednotný formát, které se přiloží např k FreeCADu a potřebná data se získají z něj. ### Skládání modelů Z OpenSCADu vzniknou AMF modely, které je potřeba pro slicování sloučit do jednoho formátu. Vzhledem k tomu, že je to XML soubor. Stačí pouze jejich části překopírovat do jednoho souboru a nastavit správné parametry. Na základě deklarátorů v ```.escad``` souboru je pak vybráno, co bude modifikátor a co bude samotný model. Do výsledného AMF souboru pak budou přepsány požadované parametry z ```.ini``` souboru. A vznikne tak jeden kompaktní soubor pro slicování. ### Slicování 3D modelů Zatím se pro slicování používá slicer [slic3r](). Tento slicer má několik vlastností, které jsou vvhodné pro toto použití. Všechny parametry pro slicování by ideálně měly být uloženy v jednom souboru, který se Slic3eru předloží. Takovým souborem je formát ```.amf```. Což je formát založený na textovém ```.XML```. V souboru můžou být uloženy jak samotný model, jeho slicovací parametry tak i modifikátory s modifikujícími parametry. Parametry i modifikátory budou uloženy přímo v tomto souboru. Což má vlastnost, že by tento model mělo být možné vyrenderovat bez závislosti na dalších souborech. A nebude potřeba řešit verze dalších souborů. Slic3er při procesu slicování dělá translace (kvůli vyrovnání na podložku). Tyto parametry jsou zatím neznámé a na získání těchto parametrů se pracuje v #279. ### Výpočet těžiště a dalších parametrů reálného výrobku Při vytištění je model vyplněn nějakým materiálem. Není to homogenní materiál a proto to nelze počítat z AMF či STL. Navíc každé slicování (s jiným slicerem) může být trošku odlišné. Tato věc by měla být dělána tak, že se budou počítat jednotlivé přejezdy extruderu a množství vytištěného materiálu. Z toho lze určitě získat těžiště a hmotnost modelu. Tyto parametry pak budou zapsány do komentáře gcodu a asi i do AMF souboru. ### Sestavy ### Řešení Celý problém by měl být řešený jako Python program/třída která bude provázet celým procesem. Jednotlivé kroky by měly být vlastní třídou. Ve výsledku by to měla být spustitelná aplikace. Renderování pomocí makefilu bych zachoval. Jen by volal takovýto skript, který by tuto problematiku vyřešil. Makefile by se tím zásadně zjednodušil. Zároveň by to mělo být použitelné na jakýkoliv snad soubor bez nějakých dalších potřebných věcí... Něco jako ```escad_processor model.escad``` a mělo by vzniknout několik souborů. AMF s modifikátory, STL, png, Gcode. V průběhu by bylo dost důležité psát nějakou dokumentaci aby se takovýto software mohl snadno rozšířit. Věřím, že tento problém řeší mnoho lidí. Možná by následně bylo vhodné to někde prezentovat. Je zde možná nedořešeno dost detailů. Takže budu rád za připomínky, nápady.
priority
workflow pro generování výrobních dat protože se projekt tf velmi rozrůstá a vzniká mnoho podpůrných projektů které jsou založeny na tisku začíná se stávat že aktuální postup přípravy pomocí makefilu je nedostatečný a občas velmi složitý je potřeba připravit systém který ze zdrojových dat dneska primárně openscad tyto zdrojové formáty se můžou rozrůstat a mírně modifikovat obdobný návrh vzešel ze schůze s kaklik a chroustjan celý systém musí umět několik základních věcí načítat zdrojová data v lepším případě umět nějaké mírné modifikace získání parametrů jejich číselných výsledků z openscadu a parametrických souborů renderovat zdrojové soubory do formátu založených na mřížích ideálně amf stl případnou konverzi formátů slicování modelů s nastavením sliceru specificky pro model vytváření modifikátorů pro slicery příprava pro jejich následovné použití vícekrát bez potřeby ruční úpravy výpočet těžiště hmotnosti a dalších parametrů na základě gcode následné uložení těchto parametrů do předchozích formátů gcode komentář amf parametry escad metadata tvorba celkových sestav výpočet celkového těžiště dalších parametrů celý systém by mělo být možné zasmyčkovat a pomocí nějakých variabilních parametrů a pomocí nějakých optimalizačních algoritmů moct přesně nastavit například přesné vyvážení dílu následně i celých sestav zdrojová data většina modelů je primárně v openscadu ale existují i vyjímky které by bylo dobré nějakým způsobem umět podporovat formát openscad navrhuji rozšířit o nějaké metatagy prozatím například použítím deklarátoru vytvořit nějaký extended openscad escad přes tyto metatagy by mělo jít nastavit všechny parametry potřebné k následným krokům tohoto postupu openscad nezná deklarátor proto ta kombinace s což je openscad komentář pří použití zavináče openscad končí chybou pokud by tento postup byl vážně dobrý tak věřím že by se nám tento deklarátor povedlo prosadit přímo do openscadu bez nutnosti použití komentářů seznam potřebných funkcí parametrů pro renderování render vyrenderuje samotný soubor render vyrenderuje samotný modul pro nastavení slicování set slicing profile includování ini souboru pro konfiguraci sliceru lze importovat vícekrát vždy budou přepsané duplicitní hodnoty set slicing parameter nastavení jednoho parametru nastavení submodulu set modificator nastavit který modul se použije jako modifikátor nastavení slicovacích parametrů pro slicer set modificator profile set modificator value renderování modelů tento krok je věnován především řešení s openscadem model pro tisk typicky obsahuje několik částí samotný model může být definován samotným souborem výchozí stav či to může být konkrétní openscad module model také může obsahovat nějaké modifikátory což jsou taktéž modely vybírající část samotného modelu zatím by se openscad měl volat jako shell funkce které bude předkládán openscad soubor popřípadě bude nějaký takový generován automaticky skriptem tyto kroky musí jít udělat i bez openscad dat například freecad a jiných u všech nelze zajistit to že půjde soubor tak jednoduše rozšířit proto by bylo dobré mít nějaký jednotný formát které se přiloží např k freecadu a potřebná data se získají z něj skládání modelů z openscadu vzniknou amf modely které je potřeba pro slicování sloučit do jednoho formátu vzhledem k tomu že je to xml soubor stačí pouze jejich části překopírovat do jednoho souboru a nastavit správné parametry na základě deklarátorů v escad souboru je pak vybráno co bude modifikátor a co bude samotný model do výsledného amf souboru pak budou přepsány požadované parametry z ini souboru a vznikne tak jeden kompaktní soubor pro slicování slicování modelů zatím se pro slicování používá slicer tento slicer má několik vlastností které jsou vvhodné pro toto použití všechny parametry pro slicování by ideálně měly být uloženy v jednom souboru který se předloží takovým souborem je formát amf což je formát založený na textovém xml v souboru můžou být uloženy jak samotný model jeho slicovací parametry tak i modifikátory s modifikujícími parametry parametry i modifikátory budou uloženy přímo v tomto souboru což má vlastnost že by tento model mělo být možné vyrenderovat bez závislosti na dalších souborech a nebude potřeba řešit verze dalších souborů při procesu slicování dělá translace kvůli vyrovnání na podložku tyto parametry jsou zatím neznámé a na získání těchto parametrů se pracuje v výpočet těžiště a dalších parametrů reálného výrobku při vytištění je model vyplněn nějakým materiálem není to homogenní materiál a proto to nelze počítat z amf či stl navíc každé slicování s jiným slicerem může být trošku odlišné tato věc by měla být dělána tak že se budou počítat jednotlivé přejezdy extruderu a množství vytištěného materiálu z toho lze určitě získat těžiště a hmotnost modelu tyto parametry pak budou zapsány do komentáře gcodu a asi i do amf souboru sestavy řešení celý problém by měl být řešený jako python program třída která bude provázet celým procesem jednotlivé kroky by měly být vlastní třídou ve výsledku by to měla být spustitelná aplikace renderování pomocí makefilu bych zachoval jen by volal takovýto skript který by tuto problematiku vyřešil makefile by se tím zásadně zjednodušil zároveň by to mělo být použitelné na jakýkoliv snad soubor bez nějakých dalších potřebných věcí něco jako escad processor model escad a mělo by vzniknout několik souborů amf s modifikátory stl png gcode v průběhu by bylo dost důležité psát nějakou dokumentaci aby se takovýto software mohl snadno rozšířit věřím že tento problém řeší mnoho lidí možná by následně bylo vhodné to někde prezentovat je zde možná nedořešeno dost detailů takže budu rád za připomínky nápady
1
317,003
9,659,649,665
IssuesEvent
2019-05-20 13:54:23
Wikidata/soweego
https://api.github.com/repos/Wikidata/soweego
closed
Album matcher
extra high priority story
- [x] Get Wikidata musical albums; - [ ] implement #55; - [ ] implement #56; - [ ] run name-based matchers.
1.0
Album matcher - - [x] Get Wikidata musical albums; - [ ] implement #55; - [ ] implement #56; - [ ] run name-based matchers.
priority
album matcher get wikidata musical albums implement implement run name based matchers
1
430,208
12,441,205,553
IssuesEvent
2020-05-26 13:18:57
telstra/open-kilda
https://api.github.com/repos/telstra/open-kilda
closed
Add some fields to 'PATCH /flows/{flow-id}/'
area/api feature priority/2-high
Add the ability to update the following fields via the PATCH method for a flow: - diverse_flowid - maximum_bandwidth - allocate_protected_path - source.vlan_id - source.port_id - source.switch_id - destination.vlan_id - destination.port_id - destination.switch_id
1.0
Add some fields to 'PATCH /flows/{flow-id}/' - Add the ability to update the following fields via the PATCH method for a flow: - diverse_flowid - maximum_bandwidth - allocate_protected_path - source.vlan_id - source.port_id - source.switch_id - destination.vlan_id - destination.port_id - destination.switch_id
priority
add some fields to patch flows flow id add the ability to update the following fields via the patch method for a flow diverse flowid maximum bandwidth allocate protected path source vlan id source port id source switch id destination vlan id destination port id destination switch id
1
786,330
27,642,884,768
IssuesEvent
2023-03-10 19:45:14
AY2223S2-CS2113-W12-3/tp
https://api.github.com/repos/AY2223S2-CS2113-W12-3/tp
closed
As an IT team member, I can search for items in the inventory by name SKU or category
type.Story priority.High
so that I can quickly find what I need.
1.0
As an IT team member, I can search for items in the inventory by name SKU or category - so that I can quickly find what I need.
priority
as an it team member i can search for items in the inventory by name sku or category so that i can quickly find what i need
1
391,454
11,573,863,054
IssuesEvent
2020-02-21 05:18:29
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
Prototyped/Published APIs are not marked in Dev portal
3.1.0 Priority/Highest Type/Bug
### Description: We can't identify what are the prototyped APIs or published APIs from the dev portal. The chip is missing. **Publisher** ![image](https://user-images.githubusercontent.com/1591316/74654130-a0601700-51af-11ea-9e33-f4afc35eb86d.png) **DevPortal** ![image](https://user-images.githubusercontent.com/1591316/74709118-62610280-5244-11ea-82ba-1511fae5436a.png)
1.0
Prototyped/Published APIs are not marked in Dev portal - ### Description: We can't identify what are the prototyped APIs or published APIs from the dev portal. The chip is missing. **Publisher** ![image](https://user-images.githubusercontent.com/1591316/74654130-a0601700-51af-11ea-9e33-f4afc35eb86d.png) **DevPortal** ![image](https://user-images.githubusercontent.com/1591316/74709118-62610280-5244-11ea-82ba-1511fae5436a.png)
priority
prototyped published apis are not marked in dev portal description we can t identify what are the prototyped apis or published apis from the dev portal the chip is missing publisher devportal
1
765,372
26,843,271,371
IssuesEvent
2023-02-03 03:34:35
labring/sealos
https://api.github.com/repos/labring/sealos
closed
BUG: coredns blocked
priority: high CloudImage
### Sealos Version v4.1.3 ### How to reproduce the bug? sealos run docker.io/labring/kubernetes-docker:v1.21.14 labring/helm:v3.8.2 labring/calico:v3.24.1 --single coredns显示blocked ![IMG_3017](https://user-images.githubusercontent.com/10459811/211193666-356c6f38-07a9-418e-ae01-ed0f34da9c39.PNG) ### What is the expected behavior? coredns正常 ### What do you see instead? _No response_ ### Operating environment ```markdown - Sealos version: v4.1.3 - Docker version: v20.10.22 - Kubernetes version: v1.21.14-docker - Operating system: centos7 - Cluster size: 1master ``` ### Additional information _No response_
1.0
BUG: coredns blocked - ### Sealos Version v4.1.3 ### How to reproduce the bug? sealos run docker.io/labring/kubernetes-docker:v1.21.14 labring/helm:v3.8.2 labring/calico:v3.24.1 --single coredns显示blocked ![IMG_3017](https://user-images.githubusercontent.com/10459811/211193666-356c6f38-07a9-418e-ae01-ed0f34da9c39.PNG) ### What is the expected behavior? coredns正常 ### What do you see instead? _No response_ ### Operating environment ```markdown - Sealos version: v4.1.3 - Docker version: v20.10.22 - Kubernetes version: v1.21.14-docker - Operating system: centos7 - Cluster size: 1master ``` ### Additional information _No response_
priority
bug coredns blocked sealos version how to reproduce the bug sealos run docker io labring kubernetes docker labring helm labring calico single coredns显示blocked what is the expected behavior coredns正常 what do you see instead no response operating environment markdown sealos version docker version kubernetes version docker operating system cluster size additional information no response
1
6,666
2,590,738,234
IssuesEvent
2015-02-18 20:44:58
SIB-Colombia/catalog-biodiversity-temp-backend
https://api.github.com/repos/SIB-Colombia/catalog-biodiversity-temp-backend
closed
Sección Atributos perfil administrador
priority-high
- El administrador no puede borrar los campos creados en el estado de amenaza según categorías UICN (en el mundo) - Se pueden ingresar los campos en esta sección pero no se visualizan cuando se da click en el botón guardar, es necesario dar click en actualizar y revisar la ficha para observar los cambios efectuados. - Así cómo en las secciones pasadas, cuando se intenta borrar un atributo aparece el mismo error, pero después de actualizar el cambio se ha efectuado correctamente. ![image](https://cloud.githubusercontent.com/assets/7827998/3306266/566f5a5e-f65f-11e3-8a96-7b03c7618d3c.png)
1.0
Sección Atributos perfil administrador - - El administrador no puede borrar los campos creados en el estado de amenaza según categorías UICN (en el mundo) - Se pueden ingresar los campos en esta sección pero no se visualizan cuando se da click en el botón guardar, es necesario dar click en actualizar y revisar la ficha para observar los cambios efectuados. - Así cómo en las secciones pasadas, cuando se intenta borrar un atributo aparece el mismo error, pero después de actualizar el cambio se ha efectuado correctamente. ![image](https://cloud.githubusercontent.com/assets/7827998/3306266/566f5a5e-f65f-11e3-8a96-7b03c7618d3c.png)
priority
sección atributos perfil administrador el administrador no puede borrar los campos creados en el estado de amenaza según categorías uicn en el mundo se pueden ingresar los campos en esta sección pero no se visualizan cuando se da click en el botón guardar es necesario dar click en actualizar y revisar la ficha para observar los cambios efectuados así cómo en las secciones pasadas cuando se intenta borrar un atributo aparece el mismo error pero después de actualizar el cambio se ha efectuado correctamente
1
194,277
6,893,219,131
IssuesEvent
2017-11-23 01:56:39
Marri/glowfic
https://api.github.com/repos/Marri/glowfic
closed
Searching for replies by an icon should be more clearly exposed
2. high priority 8. medium enhancement good first issue
Currently it's hidden on the "Times Used" row of the icon stats page, and not displayed prominently anywhere; this was originally a hack and should be made into a proper feature somewhere. An example place it could go: in the sidebar on an icon, which currently has things like "Posts".
1.0
Searching for replies by an icon should be more clearly exposed - Currently it's hidden on the "Times Used" row of the icon stats page, and not displayed prominently anywhere; this was originally a hack and should be made into a proper feature somewhere. An example place it could go: in the sidebar on an icon, which currently has things like "Posts".
priority
searching for replies by an icon should be more clearly exposed currently it s hidden on the times used row of the icon stats page and not displayed prominently anywhere this was originally a hack and should be made into a proper feature somewhere an example place it could go in the sidebar on an icon which currently has things like posts
1
531,106
15,440,872,130
IssuesEvent
2021-03-08 04:33:29
CMPUT301W21T30/RocketApp
https://api.github.com/repos/CMPUT301W21T30/RocketApp
reopened
ExperimentsListActivity xml layout (display experiment)
high priority
Should have the following functionality: For both owner and experimenter roles: - button to toggle role - add trial button - display experiment statistics - display questions and answers Experimenter role: - button to see owner profile - ability to ask a question Owner role: - edit experiment details - end experiment - ability to answer question (Risk: High) (Hours: 5)
1.0
ExperimentsListActivity xml layout (display experiment) - Should have the following functionality: For both owner and experimenter roles: - button to toggle role - add trial button - display experiment statistics - display questions and answers Experimenter role: - button to see owner profile - ability to ask a question Owner role: - edit experiment details - end experiment - ability to answer question (Risk: High) (Hours: 5)
priority
experimentslistactivity xml layout display experiment should have the following functionality for both owner and experimenter roles button to toggle role add trial button display experiment statistics display questions and answers experimenter role button to see owner profile ability to ask a question owner role edit experiment details end experiment ability to answer question risk high hours
1
784,947
27,590,292,059
IssuesEvent
2023-03-08 23:32:19
Alluxio/alluxio
https://api.github.com/repos/Alluxio/alluxio
closed
Alluxio master failed to flush journal entry
priority-high type-bug needs-info area-ha
**Alluxio Version:** 2.8.0 **Describe the bug** Last month we found an alluxio cluster had a large number of requests failed and the master prints the following log ``` 2023-01-30 05:48:54,376 WARN AsyncJournalWriter - Failed to flush journal entry: Timed out after waiting 30000 milliseconds for journal entries to be processed java.io.IOException: Timed out after waiting 30000 milliseconds for journal entries to be processed at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:134) at alluxio.master.journal.AsyncJournalWriter.doFlush(AsyncJournalWriter.java:323) at java.base/java.lang.Thread.run(Thread.java:829) Caused by: java.util.concurrent.TimeoutException at java.base/java.util.concurrent.CompletableFuture.timedGet(CompletableFuture.java:1886) at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2021) at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:123) ... 2 more 2023-01-30 05:48:54,392 WARN AsyncJournalWriter - Failed to flush journal entry: Server coarserankfeaturefile-master-1_20022@group-ABB3109A44C1 is not the leader org.apache.ratis.protocol.exceptions.NotLeaderException: Server coarserankfeaturefile-master-1_20022@group-ABB3109A44C1 is not the leader at org.apache.ratis.server.impl.RaftServerImpl.generateNotLeaderException(RaftServerImpl.java:644) at org.apache.ratis.server.impl.RaftServerImpl.checkLeaderState(RaftServerImpl.java:609) at org.apache.ratis.server.impl.RaftServerImpl.submitClientRequestAsync(RaftServerImpl.java:737) at org.apache.ratis.server.impl.RaftServerProxy.lambda$submitClientRequestAsync$9(RaftServerProxy.java:417) at org.apache.ratis.server.impl.RaftServerProxy.lambda$null$7(RaftServerProxy.java:412) at org.apache.ratis.util.JavaUtils.callAsUnchecked(JavaUtils.java:115) at org.apache.ratis.server.impl.RaftServerProxy.lambda$submitRequest$8(RaftServerProxy.java:412) at java.base/java.util.concurrent.CompletableFuture.uniComposeStage(CompletableFuture.java:1106) at java.base/java.util.concurrent.CompletableFuture.thenCompose(CompletableFuture.java:2235) at org.apache.ratis.server.impl.RaftServerProxy.submitRequest(RaftServerProxy.java:411) at org.apache.ratis.server.impl.RaftServerProxy.submitClientRequestAsync(RaftServerProxy.java:417) at alluxio.master.journal.raft.RaftJournalAppender.sendLocalRequest(RaftJournalAppender.java:94) at alluxio.master.journal.raft.RaftJournalAppender.sendAsync(RaftJournalAppender.java:77) at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:122) at alluxio.master.journal.AsyncJournalWriter.doFlush(AsyncJournalWriter.java:323) at java.base/java.lang.Thread.run(Thread.java:829) ``` In order to solve this problem quickly, I restart all masters but useless. Finally I clear the meta directory on all masters and reload metadata from ufs, the cluster can reponse these requests as usual. During solve this problem, I only save the above log, so can’t provide more information **To Reproduce** This problem only happened once,I can't reproduce it **Expected behavior** A clear and concise description of what you expected to happen. **Urgency** Describe the impact and urgency of the bug. **Are you planning to fix it** Please indicate if you are already working on a PR. **Additional context** Add any other context about the problem here.
1.0
Alluxio master failed to flush journal entry - **Alluxio Version:** 2.8.0 **Describe the bug** Last month we found an alluxio cluster had a large number of requests failed and the master prints the following log ``` 2023-01-30 05:48:54,376 WARN AsyncJournalWriter - Failed to flush journal entry: Timed out after waiting 30000 milliseconds for journal entries to be processed java.io.IOException: Timed out after waiting 30000 milliseconds for journal entries to be processed at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:134) at alluxio.master.journal.AsyncJournalWriter.doFlush(AsyncJournalWriter.java:323) at java.base/java.lang.Thread.run(Thread.java:829) Caused by: java.util.concurrent.TimeoutException at java.base/java.util.concurrent.CompletableFuture.timedGet(CompletableFuture.java:1886) at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2021) at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:123) ... 2 more 2023-01-30 05:48:54,392 WARN AsyncJournalWriter - Failed to flush journal entry: Server coarserankfeaturefile-master-1_20022@group-ABB3109A44C1 is not the leader org.apache.ratis.protocol.exceptions.NotLeaderException: Server coarserankfeaturefile-master-1_20022@group-ABB3109A44C1 is not the leader at org.apache.ratis.server.impl.RaftServerImpl.generateNotLeaderException(RaftServerImpl.java:644) at org.apache.ratis.server.impl.RaftServerImpl.checkLeaderState(RaftServerImpl.java:609) at org.apache.ratis.server.impl.RaftServerImpl.submitClientRequestAsync(RaftServerImpl.java:737) at org.apache.ratis.server.impl.RaftServerProxy.lambda$submitClientRequestAsync$9(RaftServerProxy.java:417) at org.apache.ratis.server.impl.RaftServerProxy.lambda$null$7(RaftServerProxy.java:412) at org.apache.ratis.util.JavaUtils.callAsUnchecked(JavaUtils.java:115) at org.apache.ratis.server.impl.RaftServerProxy.lambda$submitRequest$8(RaftServerProxy.java:412) at java.base/java.util.concurrent.CompletableFuture.uniComposeStage(CompletableFuture.java:1106) at java.base/java.util.concurrent.CompletableFuture.thenCompose(CompletableFuture.java:2235) at org.apache.ratis.server.impl.RaftServerProxy.submitRequest(RaftServerProxy.java:411) at org.apache.ratis.server.impl.RaftServerProxy.submitClientRequestAsync(RaftServerProxy.java:417) at alluxio.master.journal.raft.RaftJournalAppender.sendLocalRequest(RaftJournalAppender.java:94) at alluxio.master.journal.raft.RaftJournalAppender.sendAsync(RaftJournalAppender.java:77) at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:122) at alluxio.master.journal.AsyncJournalWriter.doFlush(AsyncJournalWriter.java:323) at java.base/java.lang.Thread.run(Thread.java:829) ``` In order to solve this problem quickly, I restart all masters but useless. Finally I clear the meta directory on all masters and reload metadata from ufs, the cluster can reponse these requests as usual. During solve this problem, I only save the above log, so can’t provide more information **To Reproduce** This problem only happened once,I can't reproduce it **Expected behavior** A clear and concise description of what you expected to happen. **Urgency** Describe the impact and urgency of the bug. **Are you planning to fix it** Please indicate if you are already working on a PR. **Additional context** Add any other context about the problem here.
priority
alluxio master failed to flush journal entry alluxio version describe the bug last month we found an alluxio cluster had a large number of requests failed and the master prints the following log warn asyncjournalwriter failed to flush journal entry timed out after waiting milliseconds for journal entries to be processed java io ioexception timed out after waiting milliseconds for journal entries to be processed at alluxio master journal raft raftjournalwriter flush raftjournalwriter java at alluxio master journal asyncjournalwriter doflush asyncjournalwriter java at java base java lang thread run thread java caused by java util concurrent timeoutexception at java base java util concurrent completablefuture timedget completablefuture java at java base java util concurrent completablefuture get completablefuture java at alluxio master journal raft raftjournalwriter flush raftjournalwriter java more warn asyncjournalwriter failed to flush journal entry server coarserankfeaturefile master group is not the leader org apache ratis protocol exceptions notleaderexception server coarserankfeaturefile master group is not the leader at org apache ratis server impl raftserverimpl generatenotleaderexception raftserverimpl java at org apache ratis server impl raftserverimpl checkleaderstate raftserverimpl java at org apache ratis server impl raftserverimpl submitclientrequestasync raftserverimpl java at org apache ratis server impl raftserverproxy lambda submitclientrequestasync raftserverproxy java at org apache ratis server impl raftserverproxy lambda null raftserverproxy java at org apache ratis util javautils callasunchecked javautils java at org apache ratis server impl raftserverproxy lambda submitrequest raftserverproxy java at java base java util concurrent completablefuture unicomposestage completablefuture java at java base java util concurrent completablefuture thencompose completablefuture java at org apache ratis server impl raftserverproxy submitrequest raftserverproxy java at org apache ratis server impl raftserverproxy submitclientrequestasync raftserverproxy java at alluxio master journal raft raftjournalappender sendlocalrequest raftjournalappender java at alluxio master journal raft raftjournalappender sendasync raftjournalappender java at alluxio master journal raft raftjournalwriter flush raftjournalwriter java at alluxio master journal asyncjournalwriter doflush asyncjournalwriter java at java base java lang thread run thread java in order to solve this problem quickly i restart all masters but useless finally i clear the meta directory on all masters and reload metadata from ufs the cluster can reponse these requests as usual during solve this problem i only save the above log so can’t provide more information to reproduce this problem only happened once,i can t reproduce it expected behavior a clear and concise description of what you expected to happen urgency describe the impact and urgency of the bug are you planning to fix it please indicate if you are already working on a pr additional context add any other context about the problem here
1
198,120
6,970,214,382
IssuesEvent
2017-12-11 09:30:49
LaKraven/ADAPT
https://api.github.com/repos/LaKraven/ADAPT
closed
Pascal - Event Engine - Remove Event Holder Nonsense
bug High Priority Implementation Important Interface Interface-breaking Lib Event Engine
`IADEventHolder` and `TADEventHolder` are completely meaningless! Events (all Events) are Interfaced Objects, which means they inherit reference counting. There's no reason to have an interfaced "Holder," and all this does is cause memory leaks on shutdown (circular reference between an Event and its Holder)
1.0
Pascal - Event Engine - Remove Event Holder Nonsense - `IADEventHolder` and `TADEventHolder` are completely meaningless! Events (all Events) are Interfaced Objects, which means they inherit reference counting. There's no reason to have an interfaced "Holder," and all this does is cause memory leaks on shutdown (circular reference between an Event and its Holder)
priority
pascal event engine remove event holder nonsense iadeventholder and tadeventholder are completely meaningless events all events are interfaced objects which means they inherit reference counting there s no reason to have an interfaced holder and all this does is cause memory leaks on shutdown circular reference between an event and its holder
1
508,443
14,700,318,191
IssuesEvent
2021-01-04 10:01:34
ZELLMECHANIK-DRESDEN/ShapeOut2
https://api.github.com/repos/ZELLMECHANIK-DRESDEN/ShapeOut2
closed
Adding new filter automatically selects Box filters from previously edited filter
bug priority: high
When I add a new filter, the selected options ("Box filters") from the filter that I edited before are already selected. For example: My first filter is for fluorescence and I select FL-1 width and FL-1 maximum. When I add another filter for porosity, FL-1 width and FL-1 maximum are already pre-selected. I then add another filter for brightness and porosity is preselected. Furthermore, I noticed that when I now go back to edit the first filter for fluorescence and change for example the lower limit of FL-1 maximum, then press "Apply", the brightness is selected as "Box filters" there as well. Is this behavior intended? ShapeOut 2.4.3
1.0
Adding new filter automatically selects Box filters from previously edited filter - When I add a new filter, the selected options ("Box filters") from the filter that I edited before are already selected. For example: My first filter is for fluorescence and I select FL-1 width and FL-1 maximum. When I add another filter for porosity, FL-1 width and FL-1 maximum are already pre-selected. I then add another filter for brightness and porosity is preselected. Furthermore, I noticed that when I now go back to edit the first filter for fluorescence and change for example the lower limit of FL-1 maximum, then press "Apply", the brightness is selected as "Box filters" there as well. Is this behavior intended? ShapeOut 2.4.3
priority
adding new filter automatically selects box filters from previously edited filter when i add a new filter the selected options box filters from the filter that i edited before are already selected for example my first filter is for fluorescence and i select fl width and fl maximum when i add another filter for porosity fl width and fl maximum are already pre selected i then add another filter for brightness and porosity is preselected furthermore i noticed that when i now go back to edit the first filter for fluorescence and change for example the lower limit of fl maximum then press apply the brightness is selected as box filters there as well is this behavior intended shapeout
1
252,338
8,034,718,048
IssuesEvent
2018-07-29 22:02:44
Xetera/Hifumi
https://api.github.com/repos/Xetera/Hifumi
closed
Replace singleton patterns / global variables with dependency injections
high priority
bad practice -> good practice
1.0
Replace singleton patterns / global variables with dependency injections - bad practice -> good practice
priority
replace singleton patterns global variables with dependency injections bad practice good practice
1
803,894
29,193,415,066
IssuesEvent
2023-05-19 23:05:25
dOrgTech/homebase-app
https://api.github.com/repos/dOrgTech/homebase-app
opened
Bug: Quorum values in UI different from those set
pri-0 backend HIGH priority
**Description (what needs to be done) / Expected Behavior** Quorum max amount value and max change value is showing in the config tab incorrectly from what was entered on DAO deployment. For example, Andrei deployed a DAO with max quorum amount at 2%, in config it's showing as 4%. **Acceptance Criteria** The value the user sets for these two settings when they deploy the DAO, is what shows in the config tab. **Supporting information (Figma link, notes, etc)** **When finished, please add Link to the PR or completed Figma / design asset, as a comment to the ticket.**
1.0
Bug: Quorum values in UI different from those set - **Description (what needs to be done) / Expected Behavior** Quorum max amount value and max change value is showing in the config tab incorrectly from what was entered on DAO deployment. For example, Andrei deployed a DAO with max quorum amount at 2%, in config it's showing as 4%. **Acceptance Criteria** The value the user sets for these two settings when they deploy the DAO, is what shows in the config tab. **Supporting information (Figma link, notes, etc)** **When finished, please add Link to the PR or completed Figma / design asset, as a comment to the ticket.**
priority
bug quorum values in ui different from those set description what needs to be done expected behavior quorum max amount value and max change value is showing in the config tab incorrectly from what was entered on dao deployment for example andrei deployed a dao with max quorum amount at in config it s showing as acceptance criteria the value the user sets for these two settings when they deploy the dao is what shows in the config tab supporting information figma link notes etc when finished please add link to the pr or completed figma design asset as a comment to the ticket
1
454,458
13,101,439,053
IssuesEvent
2020-08-04 03:45:13
elmastudio/aino-blocks
https://api.github.com/repos/elmastudio/aino-blocks
closed
Button block: Add Link URL via Popup
Aino blocks [Priority] High [Type] Enhancement
Insert button block link via popup. See core button block.
1.0
Button block: Add Link URL via Popup - Insert button block link via popup. See core button block.
priority
button block add link url via popup insert button block link via popup see core button block
1
261,261
8,228,801,734
IssuesEvent
2018-09-07 07:10:56
leinardi/FloatingActionButtonSpeedDial
https://api.github.com/repos/leinardi/FloatingActionButtonSpeedDial
closed
Sample Project NOT building
Priority: High Type: Bug
<!-- Any HTML comment will be stripped when the markdown is rendered, so you don't need to delete them. Put an x inside the [] like this: [x] to mark the checkbox. --> ### Step 1: Are you in the right place? - [x] I have verified there are no duplicate active or recent bugs, questions, or requests - [x] I have verified that I am using the latest version of the library. ### Step 2: Describe your environment - Library version: 1.0.2 - Android version: 8 - Support library version: `?` - Device brand: `?` - Device model: `?` ### Step 3: Describe the problem: #### Steps to reproduce: 1. I've downloaded the full download and the "sample project" but neither build. With the Sample project I get the following message : Plugin with id 'com.android.application' not found.
1.0
Sample Project NOT building - <!-- Any HTML comment will be stripped when the markdown is rendered, so you don't need to delete them. Put an x inside the [] like this: [x] to mark the checkbox. --> ### Step 1: Are you in the right place? - [x] I have verified there are no duplicate active or recent bugs, questions, or requests - [x] I have verified that I am using the latest version of the library. ### Step 2: Describe your environment - Library version: 1.0.2 - Android version: 8 - Support library version: `?` - Device brand: `?` - Device model: `?` ### Step 3: Describe the problem: #### Steps to reproduce: 1. I've downloaded the full download and the "sample project" but neither build. With the Sample project I get the following message : Plugin with id 'com.android.application' not found.
priority
sample project not building any html comment will be stripped when the markdown is rendered so you don t need to delete them put an x inside the like this to mark the checkbox step are you in the right place i have verified there are no duplicate active or recent bugs questions or requests i have verified that i am using the latest version of the library step describe your environment library version android version support library version device brand device model step describe the problem steps to reproduce i ve downloaded the full download and the sample project but neither build with the sample project i get the following message plugin with id com android application not found
1
654,267
21,645,625,856
IssuesEvent
2022-05-06 01:15:17
hackforla/expunge-assist
https://api.github.com/repos/hackforla/expunge-assist
closed
implement Input component
size: good first issue role: development priority: high feature: missing
https://www.figma.com/proto/t1lW4Tm0Lp3jFdeOCd98b1/Record-Clearance-Personal-Statement?node-id=805%3A6377&scaling=scale-down Mostly styling Depending on the timing you may be able to convert existing inputs to use this component.
1.0
implement Input component - https://www.figma.com/proto/t1lW4Tm0Lp3jFdeOCd98b1/Record-Clearance-Personal-Statement?node-id=805%3A6377&scaling=scale-down Mostly styling Depending on the timing you may be able to convert existing inputs to use this component.
priority
implement input component mostly styling depending on the timing you may be able to convert existing inputs to use this component
1
198,193
6,970,945,874
IssuesEvent
2017-12-11 12:12:13
OpusCapita/react-crudeditor
https://api.github.com/repos/OpusCapita/react-crudeditor
opened
Redesign Field Errors HOC
requested priority: high type:enhancement
Full redesign is required for wrapping particular Edits only. Overwritten props: errors Swallowed props: suppressErrorTriggers display/looseErrorTriggers
1.0
Redesign Field Errors HOC - Full redesign is required for wrapping particular Edits only. Overwritten props: errors Swallowed props: suppressErrorTriggers display/looseErrorTriggers
priority
redesign field errors hoc full redesign is required for wrapping particular edits only overwritten props errors swallowed props suppresserrortriggers display looseerrortriggers
1
97,671
4,004,368,156
IssuesEvent
2016-05-12 06:56:30
optimamodel/Optima
https://api.github.com/repos/optimamodel/Optima
closed
Selecting any program gives the same error
bug FE high priority
``` Traceback (most recent call last): File "/opt/optima/server/webapp/utils.py", line 63, in _report_exception return api_call(*args, **kwargs) File "/opt/optima/server/webapp/resources/project_progsets.py", line 352, in get result_instance = result_entry.hydrate() # TODO raise exception if none AttributeError: 'NoneType' object has no attribute 'hydrate' ```
1.0
Selecting any program gives the same error - ``` Traceback (most recent call last): File "/opt/optima/server/webapp/utils.py", line 63, in _report_exception return api_call(*args, **kwargs) File "/opt/optima/server/webapp/resources/project_progsets.py", line 352, in get result_instance = result_entry.hydrate() # TODO raise exception if none AttributeError: 'NoneType' object has no attribute 'hydrate' ```
priority
selecting any program gives the same error traceback most recent call last file opt optima server webapp utils py line in report exception return api call args kwargs file opt optima server webapp resources project progsets py line in get result instance result entry hydrate todo raise exception if none attributeerror nonetype object has no attribute hydrate
1
244,591
7,877,094,902
IssuesEvent
2018-06-26 05:16:59
internship2016/sovolo
https://api.github.com/repos/internship2016/sovolo
opened
Sovol Twitterアカウント登録しようとするとエラーが発生する。
Twitter bug priority: high
Twitterアカウントで登録しようとすると、以下のエラーが発生してしまう。 <img width="1616" alt="2018-06-26 11 53 36" src="https://user-images.githubusercontent.com/34121151/41890694-8a9c4710-794b-11e8-9c64-209b872aec84.png">
1.0
Sovol Twitterアカウント登録しようとするとエラーが発生する。 - Twitterアカウントで登録しようとすると、以下のエラーが発生してしまう。 <img width="1616" alt="2018-06-26 11 53 36" src="https://user-images.githubusercontent.com/34121151/41890694-8a9c4710-794b-11e8-9c64-209b872aec84.png">
priority
sovol twitterアカウント登録しようとするとエラーが発生する。 twitterアカウントで登録しようとすると、以下のエラーが発生してしまう。 img width alt src
1