branch: interactive/develop 「№420」
Commited by: Thomas Scott
GitHub commit link: 「f335022e678909be」 「№5853」
Difference from previous tested commit:  code diff
Commit date: 2022-02-21 11:53:42
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5853 from RosettaCommons/jtscott/interactive_remix_float_menu_bug [Foldit] Remix float menu.

...


branch: interactive/develop 「№419」
Commited by: Jeff Flatten
GitHub commit link: 「12c104947ae2b616」 「№5843」
Difference from previous tested commit:  code diff
Commit date: 2022-02-15 17:18:49
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5843 from RosettaCommons/interactive/release Interactive/release

...


branch: interactive/develop 「№418」
Commited by: Jeff Flatten
GitHub commit link: 「2b95b1d4bb8bdece」 「№5828」
Difference from previous tested commit:  code diff
Commit date: 2022-02-03 19:20:38
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5828 from RosettaCommons/jflat06/fix-directory-spam Fix an issue where the sequence data store was creating extraneous directories.

...


branch: interactive/develop 「№417」
Commited by: Jeff Flatten
GitHub commit link: 「7e06ef18a462cc98」 「№5829」
Difference from previous tested commit:  code diff
Commit date: 2022-02-03 19:19:55
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5829 from RosettaCommons/jflat06/fix-phantom-foldtree-roots Fix an issue with custom fold tree suggestions accumulating redundant suggestions on cut close.

...


branch: interactive/develop 「№416」
Commited by: Thomas Scott
GitHub commit link: 「d25cd4f8e0ff3da8」 「№5827」
Difference from previous tested commit:  code diff
Commit date: 2022-02-02 20:07:23
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5827 from RosettaCommons/jtscott/interactive_view_options_saving View Options Saving

...


branch: interactive/develop 「№415」
Commited by: Brian Koepnick
GitHub commit link: 「7a2f9dc1b8752984」 「№5777」
Difference from previous tested commit:  code diff
Commit date: 2022-02-02 17:59:44
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5777 from RosettaCommons/koepnick/foldit_hbnet_highlight [Foldit] HBondNetworkFilterGeom only show BUNS when highlighting network Release Notes: - HBond Network Objective only highlights BUNS when the cursor hovers over a network

...


branch: interactive/develop 「№414」
Commited by: Brian Koepnick
GitHub commit link: 「e9bcdfb9f3390ec0」 「№5810」
Difference from previous tested commit:  code diff
Commit date: 2022-02-02 17:55:50
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5810 from RosettaCommons/koepnick/af_action_button [Foldit] Move AlphaFold button from Main Menu to Actions array

...


branch: interactive/develop 「№413」
Commited by: Rocco Moretti
GitHub commit link: 「72c3d76ec7a591c5」 「№5784」
Difference from previous tested commit:  code diff
Commit date: 2022-02-02 17:25:44
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5784 from RosettaCommons/roccomoretti/interactive_fix_shrink_residue_bug [Foldit] Fix bug with shrink_marked_residues_with_animation. In ligand design puzzles, I'm seeing an odd crash related to shrink_marked_residues_with_animation(), which is being called by the tool activation in setup_for_puzzle(). Best I can tell, this is related to having the display pose being out of step with the Geometry. (The actual crash happens in Conformation::residue(), which is being called from GUIPoseProxy::has_mainchain(). This is a somewhat quick fix, in that we should be able to handle the shrink_marked_residues_with_animation() prior to the tool activation/switch. RELEASE NOTES: Fix crash on puzzle loading.

...


branch: interactive/develop 「№412」
Commited by: Rocco Moretti
GitHub commit link: 「b7182300b212f4b3」 「№5783」
Difference from previous tested commit:  code diff
Commit date: 2022-02-02 17:13:59
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5783 from RosettaCommons/roccomoretti/interactive_fix_hbond_crash [Foldit] Fix issue with crashes in hbond scoring. One of the more regular crashes we're getting now in ligand design puzzles is a crash in ligand scoring, related to vector normalization. Tracing through where it's used downstream, I think we should be okay with returning a zero vector in these rare cases. RELEASE NOTES: Fix some crashes in scoring related to hydrogen bonds

...


branch: interactive/develop 「№411」
Commited by: Rocco Moretti
GitHub commit link: 「10b07cfdfad6a378」 「№5795」
Difference from previous tested commit:  code diff
Commit date: 2022-02-02 17:10:33
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5795 from RosettaCommons/roccomoretti/interactive_linux_close [Foldit] Fix how Linux reacts to the window close button. Right now, the Foldit linux client is unceremoniously killed when you click the main (OS-generated) "window close" button. (Skipping any "save options" code, and often resulting in a segfault on exit.) The reason for this is that the "official" GLUT specification (apparently) does not have any mechanism for detecting this event and responding properly with cleanup. However, most Linuxes use OpenGLUT or FreeGLUT, which have an extension which is able to handle this (same API for both). This PR adjusts the GLUTWrapper implementation to recognize when we're compiling with OpenGLUT/FreeGLUT, and use that mechanism. This requires a bit of a rework for the on_close functionality, because unlike the Windows or Mac equivalents, the program is getting closed when that box is triggered on Linux, with no mechanism to cancel it. I also adjusted things such that the on_close functionality goes through the same handle_exit() mechanism the rest of the exit button in-game go through. The one exception is when the button is clicked prior to the login screen coming up, where handle_exit() causes crashes due to uninitialized variables, in which case we use the current approach. (You can still get crashes when closing prior to the login screen coming up due to multithreading issues, but those are crashes we already have in the released client.) RELEASE NOTES: Fix how we handle the close window button for Linux clients.

...


branch: interactive/develop 「№410」
Commited by: Rocco Moretti
GitHub commit link: 「aa6d13dffa47c17a」 「№5808」
Difference from previous tested commit:  code diff
Commit date: 2022-02-02 17:09:20
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5808 from RosettaCommons/roccomoretti/fix_collagen_disulfide [Foldit] Fix Collagen EduMode puzzle for disulfides. Apparently you should be able to make disulfides in the Collagen puzzle. (Re)enable that. RELEASE NOTES: Fix disulfide display in the Collagen Education Mode puzzle.

...


branch: interactive/develop 「№409」
Commited by: Rocco Moretti
GitHub commit link: 「98f0e38ed23a6f08」 「№5815」
Difference from previous tested commit:  code diff
Commit date: 2022-02-02 17:07:57
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5815 from RosettaCommons/roccomoretti/interactive_menu_to_front [Foldit] Bring panels to top and on screen when toggled. Add `toggle_to_top()` functionality for panels which will bring the specific panel to the top (over other items) and will make sure the panel is on screen. There's a slight rework of Widget::ensure_on_screen(), to make sure we don't cut off the top of panels (and thus remove the title bar handle) when the screen is too short. RELEASE NOTES: Make sure panels are on-screen and visible when they appear.

...


branch: interactive/develop 「№408」
Commited by: Josh Aaron Miller
GitHub commit link: 「a654b6d53cb733e6」 「№5812」
Difference from previous tested commit:  code diff
Commit date: 2022-01-29 16:55:24
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5812 from RosettaCommons/joshmiller/unlock-experiment [Foldit] Add experiment to try unlocking whole tutorial No release notes

...


branch: interactive/develop 「№407」
Commited by: Jeff Flatten
GitHub commit link: 「187f05c34af5eb51」 「№5817」
Difference from previous tested commit:  code diff
Commit date: 2022-01-29 15:37:35
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5817 from RosettaCommons/koepnick/neuralnet_filter_hotfix [Foldit] Hotfix for NeuralNetFilter crash on cutpoint

...


branch: interactive/develop 「№406」
Commited by: Josh Aaron Miller
GitHub commit link: 「1352e6d5a3214ecd」 「№5813」
Difference from previous tested commit:  code diff
Commit date: 2022-01-28 19:12:45
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5813 from RosettaCommons/joshmiller/exploration-win [Foldit] Allow exiting exploration mode to win intro level No release notes

...


branch: interactive/develop 「№405」
Commited by: Brian Koepnick
GitHub commit link: 「a8755195dd0eba63」 「№5809」
Difference from previous tested commit:  code diff
Commit date: 2022-01-27 18:13:32
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #5809 from RosettaCommons/koepnick/distogram_color_scheme [Foldit] Adjust color scheme for NeuralNetFilter viz

...


< 1 .. 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 .. 39 >

Legend:
queued Queued Test
queued for comparison Test finished running but not yet compared
running Test is Running right now
comparing Test results is now comparing with previous results
finished Test is finished without errors
failed Test failed
build Failed Test could not be run because build failed
script failed Test results is unknow because test-script failed
canceled Test was canceled