branch: interactive/develop 「№62」
Commited by: Josh Miller
GitHub commit link: 「0417266b77dec43f」
Difference from previous tested commit:  code diff
Commit date: 2020-01-11 16:09:43

Fix Chop.cc ambiguous Vector

...


branch: interactive/develop 「№61」
Commited by: koepnick
GitHub commit link: 「516ead2bd3ffd117」
Difference from previous tested commit:  code diff
Commit date: 2019-11-11 13:18:59

Merge branch 'interactive/develop' of https://github.com/RosettaCommons/main into interactive/develop

...


branch: interactive/develop 「№60」
Commited by: Rocco Moretti
GitHub commit link: 「06d8d4fa853ec2ac」 「№4218」
Difference from previous tested commit:  code diff
Commit date: 2019-11-04 12:27:48

Merge pull request #4218 from RosettaCommons/roccomoretti/interactive_split_rosetta_util Foldit: Separate out dependencies on Rosetta in lower-levels of interactive/ It looks like most of the lower-level GUI code is only trivially dependent on Rosetta proper. Attempt to separate this out cleanly, to ease a future frontend/backend split. The big task here was splitting interactive/util in two, removing the Rosetta-depedendent functionality into interactive/rosetta_util. Once accomplished, with a few minor adjustments all the gui code below interactive/poseview is now independent of the main Rosetta codebase. The levels script (and associated documentation) was updated accordingly.

...


branch: interactive/develop 「№59」
Commited by: Rocco Moretti
GitHub commit link: 「32048a6a12dcd229」 「№4236」
Difference from previous tested commit:  code diff
Commit date: 2019-09-20 12:27:51

Merge pull request #4236 from RosettaCommons/roccomoretti/interactive_toplevel_owning Foldit: Convert TopLevel singleton to store an OP. This will keep us from accidentally deleting the TopLevel object through a ContainerOP or the like. To address the Freetype segfault issue, simply add a non-OP-associated owning count.

...


branch: interactive/develop 「№58」
Commited by: Rocco Moretti
GitHub commit link: 「d45954d92ea76738」
Difference from previous tested commit:  code diff
Commit date: 2019-08-22 18:39:59

Update Foldit SVN URL in test server script.

...


branch: interactive/develop 「№57」
Commited by: Seth Cooper
GitHub commit link: 「446d9a336cf43c24」 「№4171」
Difference from previous tested commit:  code diff
Commit date: 2019-08-22 14:33:03

Merge pull request #4171 from RosettaCommons/interactive/density-score Turn on density scoring if needed when loading density.

...


branch: interactive/develop 「№56」
Commited by: Rocco Moretti
GitHub commit link: 「1f41ae582104fac2」 「№3888」
Difference from previous tested commit:  code diff
Commit date: 2019-08-21 16:40:43

Merge pull request #3888 from RosettaCommons/roccomoretti/interactive_address_mutex_contention2 Foldit: Address some mutex contention issues. There are a number of locations where threaded contention for the GUI mutex was delaying threads for significant fraction of the runtime(*). A number of these locations are somewhat trivial to reorganize such that there isn't a need to hold the GUI mutex, or to hold it for shorter periods of time. Many of these are switching to atomic data, rather than mutex-protected data. There's some larger scale reorganizations, as well as splitting up the GameApplicationTests and GameApplicationMacroTests unit tests, to better isolate some of the finicky/unstable tests.

...


branch: interactive/develop 「№55」
Commited by: Brian Koepnick
GitHub commit link: 「4bd5cca6fa12129f」
Difference from previous tested commit:  code diff
Commit date: 2019-07-30 17:43:09

Update Linux README with dependency info

...


branch: interactive/develop 「№54」
Commited by: Brian Koepnick
GitHub commit link: 「c36604c85de43df6」 「№3973」
Difference from previous tested commit:  code diff
Commit date: 2019-07-18 14:18:05

Merge pull request #3973 from RosettaCommons/koepnick/foldit_blueprint_fix Foldit: Updates for Blueprint Panel

...


branch: interactive/develop 「№53」
Commited by: Seth Cooper
GitHub commit link: 「70a2f0a2f92ebdc0」 「№4080」
Difference from previous tested commit:  code diff
Commit date: 2019-07-13 20:49:28

Merge pull request #4080 from RosettaCommons/interactive/lockFocus Make OpenGL context current before handling mouse events on macOS; th…

...


branch: interactive/develop 「№52」
Commited by: Seth Cooper
GitHub commit link: 「e3d4d206248c18e8」
Difference from previous tested commit:  code diff
Commit date: 2019-07-08 11:10:45

Update target names in Xcode.

...


branch: interactive/develop 「№51」
Commited by: Seth Cooper
GitHub commit link: 「d94d86426ac6d436」
Difference from previous tested commit:  code diff
Commit date: 2019-07-08 10:44:24

Update target names in Xcode.

...


branch: interactive/develop 「№50」
Commited by: jflat06
GitHub commit link: 「7c0c0e66e0f4d9d7」
Difference from previous tested commit:  code diff
Commit date: 2019-06-21 18:42:13

Timo's changes for symmetric bands.

...


branch: interactive/develop 「№49」
Commited by: Rocco Moretti
GitHub commit link: 「2e2a2f9739816407」 「№3982」
Difference from previous tested commit:  code diff
Commit date: 2019-05-31 13:39:13

Merge pull request #3982 from RosettaCommons/roccomoretti/interactive_fix_AP_OP_comparisons Foldit: Fix AP/OP comparison issues It looks like my recent pointer check branch had an unanticipated interaction with the bool() conversion function of APs & OPs. The upshot of which is that comparisons of APs & OPs were going through bool(), rather than being compared directly on the pointer. This resulted in some odd behavior in the client. This PR fixes the issue by making the bool() conversion explicit, as well as adjusting the AP & OP comparison functions.

...


branch: interactive/develop 「№48」
Commited by: koepnick
GitHub commit link: 「7216c7496d8bf41c」
Difference from previous tested commit:  code diff
Commit date: 2019-05-30 19:37:34

Some changes to the loading tips

...


branch: interactive/develop 「№47」
Commited by: Rocco Moretti
GitHub commit link: 「848ddd5d3aa97fd7」 「№3981」
Difference from previous tested commit:  code diff
Commit date: 2019-05-29 14:59:15

Merge pull request #3981 from RosettaCommons/roccomoretti/interactive_geom_validity Foldit: Fix issue with puzzle switching and focus geometry. When you have the camera focused on a residue at the end of the pose, and then switch to a puzzle with a smaller number of residues, you get a crash due to a lingering ResidueGeometry which references a now-nonexisting residue number. To check for this, I added a Geometry::is_valid() function which can check for this case, and added a check in StandaloneCameraController to make sure that the geometry is valid before we switch.

...


< 1 .. 29 30 31 32 33 34 35 36 37 38 39 40 >

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