Skip to content

Commit

Permalink
docs: Add log filters
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Mar 11, 2023
1 parent 7a773a5 commit 6cdc70b
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 5 deletions.
80 changes: 77 additions & 3 deletions packages/documentation/docs/sections/log-filters.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,81 @@
# Log Filters

!!! info
You can control which events will be logged to the game log. Disable any option if the log message in that category get too excessive.

This section is still pending being documented.
## Adoring

Our goal is to provide a full documentation during the beta phase. Please check back soon.
- The galaxy has been adored on the [Religion](./religion.md) tab.

## Astronomical Events

- You have observed the stars.

## Building

- A building has been built on the [Bonfire](./bonfire.md) tab.
- A Ziggurat or Cryptotheology building has been built on the [Religion](./religion.md) tab.
- A building has been built on the [Space](./space.md) tab.
- A building has been built on the [Time](./time.md) tab.
- An embassy has been built on the [Trade](./trade.md) tab.

## Crafting

- Some resources have been crafted on the [Workshop](./workshop.md) tab.

## Distribute

- A kitten has been distributed to a job on the [Village](./village.md) tab.

## Festivals

- A festival has either started, or has been extended on the [Village](./village.md) tab.

## Hunting

- Your kittens have hunted on the [Village](./village.md) tab.

## Miscellaneous

_currently unused_

## Order of the Sun

- An Order of the Sun building has been discovered on the [Religion](./religion.md) tab.
- Alicorns have been sacrificed on the [Religion](./religion.md) tab.
- Tears have been refined to BLS on the [Religion](./religion.md) tab.
- TCs have been refined to Relics on the [Religion](./religion.md) tab.

## Praising

- You have praised the sun on the [Religion](./religion.md) tab.

## Promote leader

- Your leader has been promoted on the [Village](./village.md) tab.

## Researching

- A science item has been unlocked on the [Science](./science.md) tab.

## Tempus Fugit

- Time has been accelerated on the [Time](./time.md) tab.

## Time Skip

- Time has been skipped, by combusting TCs on the [Time](./time.md) tab.

## Trading

- A trade has been made on the [Trade](./trade.md) tab.

## Transcend

- You have transcended on the [Religion](./religion.md) tab.

## Upgrading

- A [Bonfire](./bonfire.md) building has been upgraded to a higher level.
- A [Space](./space.md) missing has been conducted.
- Another tribe has been unlocked on the [Trade](./space.md) tab.
- An upgrade has been purchased on the [Workshop](./workshop.md) tab.
4 changes: 2 additions & 2 deletions packages/userscript/source/helper/ActivitySummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export type ActivitySectionOther =
| "stars"
| "transcend";

export type Activitiy =
export type Activity =
| "accelerate"
| "adore"
| "build"
Expand All @@ -50,7 +50,7 @@ export type Activitiy =
| "trade"
| "transcend"
| "upgrade";
export type ActivityClass = `ks-${Activitiy}`;
export type ActivityClass = `ks-${Activity}`;
export type ActivityTypeClass = `type_${ActivityClass}`;

export class ActivitySummary {
Expand Down

0 comments on commit 6cdc70b

Please sign in to comment.