2025/01/18 20:07:46 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"}2025/01/18 20:07:46 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:46 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:46 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:46 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:46 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:46 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:46 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:46 [I] [SQL] SELECT topic.* FROM "topic" INNER JOIN repo_topic ON repo_topic.topic_id = topic.id WHERE repo_topic.repo_id=$1 ORDER BY "topic"."repo_count" DESC []interface {}{2} HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Set-Cookie: lang=en-US; Path=/; Max-Age=2147483647 Set-Cookie: i_like_gitea=ed8e9cabea5a1400; Path=/; HttpOnly Set-Cookie: _csrf=Q0Fez7DoI7GEvZHHRw0brFMmAi46MTczNzIzMDg2Njc3NDI1MTk1OA%3D%3D; Path=/; Expires=Sun, 19 Jan 2025 20:07:46 GMT; HttpOnly X-Frame-Options: SAMEORIGIN Date: Sat, 18 Jan 2025 20:07:46 GMT Transfer-Encoding: chunked 80a2 thomas/marlin: My Marlin configs for Fabrikator Mini and CTC i3 Pro B - Marlin/configurator/index.html at 70be61d416cbfd09369459eae41c21ae2202d93d - xythobuz.de Gitea
My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Marlin Firmware Configurator</title>
  6. <link href='http://fonts.googleapis.com/css?family=Fira+Mono&amp;subset=latin,latin-ext' rel='stylesheet' type='text/css' />
  7. <script src="js/jquery-2.1.3.min.js"></script>
  8. <script src="js/binarystring.js"></script>
  9. <script src="js/binaryfileuploader.js"></script>
  10. <script src="js/FileSaver.min.js"></script>
  11. <script src="js/jszip.min.js"></script>
  12. <script src="js/jcanvas.js"></script>
  13. <script src="js/jstepper.js"></script>
  14. <script src="js/configurator.js"></script>
  15. <link rel="stylesheet" href="css/configurator.css" type="text/css" media="all" />
  16. </head>
  17. <body>
  18. <section id="main">
  19. <h1>Marlin Configurator</h1>
  20. <p class="info">Select presets (coming soon), modify, and download.</p>
  21. <div id="message"></div>
  22. <div id="tabs"></div>
  23. <form id="config_form">
  24. <div id="tooltip"></div>
  25. <label>Drop Files:</label><input type="file" id="file-upload" />
  26. <label id="tipson"><input type="checkbox" checked /> ?</label>
  27. <a href="" class="download-all">Download Zip</a>
  28. <fieldset id="info">
  29. <legend>Info</legend>
  30. </fieldset>
  31. <fieldset id="machine">
  32. <legend>Machine</legend>
  33. <label class="newline">Serial Port:</label><select name="SERIAL_PORT"></select><div id="serial_stepper"></div>
  34. <label>Baud Rate:</label><select name="BAUDRATE"></select>
  35. <label>AT90USB BT IF:</label>
  36. <input name="BTENABLED" type="checkbox" value="1" checked />
  37. <label class="newline">Motherboard:</label><select name="MOTHERBOARD"></select>
  38. <label class="newline">Custom Name:</label><input name="CUSTOM_MACHINE_NAME" type="text" size="14" maxlength="12" value="" />
  39. <label class="newline">Machine UUID:</label><input name="MACHINE_UUID" type="text" size="38" maxlength="36" value="" />
  40. <label class="newline">Extruders:</label><select name="EXTRUDERS"></select>
  41. <label class="newline">Power Supply:</label><select name="POWER_SUPPLY"></select>
  42. <label>PS Default Off:</label>
  43. <input name="PS_DEFAULT_OFF" type="checkbox" value="1" checked />
  44. </fieldset>
  45. <fieldset id="homing">
  46. <legend>Homing</legend>
  47. </fieldset>
  48. <fieldset id="temperature">
  49. <legend>Temperature</legend>
  50. <label class="newline">Temp Sensor 0:</label><select name="TEMP_SENSOR_0"></select>
  51. <label class="newline">Temp Sensor 1:</label><select name="TEMP_SENSOR_1"></select>
  52. <label class="newline">Temp Sensor 2:</label><select name="TEMP_SENSOR_2"></select>
  53. <label class="newline">Bed Temp Sensor:</label><select name="TEMP_SENSOR_BED"></select>
  54. <label>Max Diff:</label>
  55. <input name="MAX_REDUNDANT_TEMP_SENSOR_DIFF" type="text" size="3" maxlength="2" />
  56. <label>Temp Residency Time (s):</label>
  57. <input name="TEMP_RESIDENCY_TIME" type="text" size="3" maxlength="2" />
  58. </fieldset>
  59. <fieldset id="extruder">
  60. <legend>Extruder</legend>
  61. </fieldset>
  62. <fieldset id="lcd">
  63. <legend>LCD / SD</legend>
  64. </fieldset>
  65. <fieldset id="bedlevel">
  66. <legend>Bed Leveling</legend>
  67. </fieldset>
  68. <fieldset id="fwretract">
  69. <legend>FW Retract</legend>
  70. </fieldset>
  71. <fieldset id="tmc">
  72. <legend>TMC</legend>
  73. </fieldset>
  74. <fieldset id="l6470">
  75. <legend>L6470</legend>
  76. </fieldset>
  77. <fieldset id="extras">
  78. <legend>Extras</legend>
  79. </fieldset>
  80. <fieldset id="more">
  81. <legend>More…</legend>
  82. </fieldset>
  83. <section id="config_text">
  84. <h2>Configuration.h</h2>
  85. <span class="disclose"></span>
  86. <a href="" class="download">Download</a>
  87. <pre class="hilightable config"></pre>
  88. </section>
  89. <section id="config_adv_text">
  90. <h2>Configuration_adv.h</h2>
  91. <span class="disclose"></span>
  92. <a href="" class="download">Download</a>
  93. <pre class="hilightable config"></pre>
  94. </section>
  95. <br class="clear" />
  96. </form>
  97. </section>
  98. </body>
  99. </html>
0 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:47 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:47 [I] [SQL] SELECT topic.* FROM "topic" INNER JOIN repo_topic ON repo_topic.topic_id = topic.id WHERE repo_topic.repo_id=$1 ORDER BY "topic"."repo_count" DESC []interface {}{2} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:47 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:47 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:47 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:47 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:48 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:48 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:48 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:48 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:48 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "led-cube"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{10} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:48 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{10, false} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"jason.inet@gmail.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"jason.inet@gmail.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"thinkyhead@users.noreply.github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"thinkyhead@users.noreply.github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"68632259+diegovd@users.noreply.github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"68632259+diegovd@users.noreply.github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"github@thinkyhead.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"github@thinkyhead.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"46896566+yangwenxiong@users.noreply.github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"46896566+yangwenxiong@users.noreply.github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"38436470+insanityautomation@users.noreply.github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"38436470+insanityautomation@users.noreply.github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"manuel@mclure.org"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"manuel@mclure.org"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "uid", "email", "is_activated" FROM "email_address" WHERE "email"=$1 LIMIT 1 []interface {}{"noreply@github.com"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "c762b7c91b03415d37bbb96c5b2b6b8308ee3ba8"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "76d8d1742c1d4a1efe0fd6c0645d3fc656bfd0b2"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "42fbd527f3bcc317ae6851aca5a45bdbf979de55"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "15f6f53638a6778d22a17e1900fb3a9fdc92dade"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "1c43870cecb76b67f8c7b0f260f0a685b4591bbf"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "03020dd31ec3ae05135d074f4e9c07f8482f5ea0"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "cc822bf70fd4683a00fcf5c3ea5b5e6a62a0d10b"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "bfad23d3e2e590b257ebe4317d7b14cc2dd3435c"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "248b7dfa591a34a8aa1c6960944e1a3a468ad1de"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "0fcf2b1110d9f0d362e5aab9cc73d963710e9865"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "b11551c7675e354d6dfec169f538136708aa9edd"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "fe0224104498a42a3921b97ef3902581fba6c309"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "93cd66ac1146603e8a9911fceb3c63f4351f4d8e"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "492883859e04f02d2c40bae131f9c83d0fac3557"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "b376c7e374bbbc2cb69b6009c619f923f42f84b3"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "49cf92dc36424cf828436f32e72263eca39a1cc3"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "2f1e1dcb42e01165e800a5d00c769efecc5a9933"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "0feeef26048883640b37ebe3994730f31ef6e922"} 2025/01/18 20:07:48 [I] [SQL] SELECT max( id ) as id FROM "commit_status" WHERE (repo_id = $1) AND (sha = $2) GROUP BY context ORDER BY max( id ) desc LIMIT 10 []interface {}{2, "1407afad738ce64f4cc9f0c2ad9d02ba88f2a925"} 2025/01/18 20:07:48 [I] [SQL] SELECT count(*) FROM "release" WHERE repo_id=$1 AND is_draft=$2 []interface {}{2, false} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "lower_name", "name", "full_name", "email", "keep_email_private", "passwd", "must_change_password", "login_type", "login_source", "login_name", "type", "location", "website", "rands", "salt", "language", "created_unix", "updated_unix", "last_login_unix", "last_repo_visibility", "max_repo_creation", "is_active", "is_admin", "allow_git_hook", "allow_import_local", "allow_create_organization", "prohibit_login", "avatar", "avatar_email", "use_custom_avatar", "num_followers", "num_following", "num_stars", "num_repos", "description", "num_teams", "num_members", "diff_view_style" FROM "user" WHERE "lower_name"=$1 LIMIT 1 []interface {}{"thomas"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "owner_id", "lower_name", "name", "description", "website", "default_branch", "num_watches", "num_stars", "num_forks", "num_issues", "num_closed_issues", "num_pulls", "num_closed_pulls", "num_milestones", "num_closed_milestones", "is_private", "is_bare", "is_mirror", "is_fork", "fork_id", "size", "is_fsck_enabled", "topics", "created_unix", "updated_unix" FROM "repository" WHERE "owner_id"=$1 AND "lower_name"=$2 LIMIT 1 []interface {}{1, "marlin"} 2025/01/18 20:07:48 [I] [SQL] SELECT "id", "repo_id", "type", "config", "created_unix" FROM "repo_unit" WHERE (repo_id = $1) []interface {}{2}