about summary refs log tree commit diff stats
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
* [Client] Handle locations needing specific answersStar Rauchenberger2025-08-301-2/+9
|
* [Client] Potentially fixed crash when loading corrupted localdataStar Rauchenberger2025-08-302-6/+4
|
* [Client] Added textclientStar Rauchenberger2025-08-294-0/+145
|
* [Client] Save connection settings to diskStar Rauchenberger2025-08-292-2/+37
|
* [Client] Last received item is rememberedStar Rauchenberger2025-08-291-1/+33
|
* [Client] Added ending locationsStar Rauchenberger2025-08-293-0/+22
| | | | Getting an ending (other than White) also does not send you to the credits.
* [Client] Added mastery checksStar Rauchenberger2025-08-291-0/+12
|
* [Client] Various fixesStar Rauchenberger2025-08-296-13/+101
| | | | | - Locations count puzzles in a map that are already solved. - Item-controlled paintings, animation listeners, and teleport listeners are handled properly.
* [Client] Added messages overlayStar Rauchenberger2025-08-284-6/+166
|
* Client is starting to work!Star Rauchenberger2025-08-2812-0/+1269
ral.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
class AddStartAndEndDatesToGame < ActiveRecord::Migration[5.2]
  def change
    change_table :games do |c|
      c.date :started_on
      c.date :finished_on
    end
  end
end