├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── config ├── README.txt └── default │ ├── configs │ ├── be-right-backs │ │ ├── genetechnician-reading-submod │ │ │ ├── reading_dystopian.conf │ │ │ ├── reading_horror.conf │ │ │ ├── reading_manga.conf │ │ │ ├── reading_misc.conf │ │ │ ├── reading_romance.conf │ │ │ ├── watching_code.conf │ │ │ ├── watching_drawing.conf │ │ │ ├── watching_game.conf │ │ │ └── watching_movie_videos.conf │ │ ├── mas │ │ │ ├── break.conf │ │ │ ├── coding.conf │ │ │ ├── gaming.conf │ │ │ ├── generic.conf │ │ │ ├── homework.conf │ │ │ ├── napping.conf │ │ │ ├── reading.conf │ │ │ ├── showering.conf │ │ │ ├── working.conf │ │ │ ├── workout.conf │ │ │ └── writing.conf │ │ ├── misc │ │ │ ├── drama.conf │ │ │ ├── jamming.conf │ │ │ ├── listening.conf │ │ │ ├── listening2.conf │ │ │ ├── overstimulated.conf │ │ │ ├── panic.conf │ │ │ ├── podcast.conf │ │ │ └── radio.conf │ │ └── my-otter-self-brbs │ │ │ ├── call.conf │ │ │ ├── date.conf │ │ │ ├── food.conf │ │ │ ├── journal.conf │ │ │ ├── liedown.conf │ │ │ ├── nails.conf │ │ │ ├── plants.conf │ │ │ ├── social.conf │ │ │ ├── stimulation.conf │ │ │ └── stretching.conf │ ├── default.conf │ ├── events │ │ ├── all-day.conf │ │ ├── all.conf │ │ ├── anni-milestone-day.conf │ │ ├── anni-milestone.conf │ │ ├── anni-year-day.conf │ │ ├── anni-year.conf │ │ ├── moni-bday-day.conf │ │ ├── moni-bday.conf │ │ ├── player-bday-day.conf │ │ └── player-bday.conf │ ├── games │ │ ├── chess.conf │ │ ├── hangman.conf │ │ ├── nou.conf │ │ ├── piano.conf │ │ └── pong.conf │ ├── misc │ │ └── console.conf │ ├── time-of-day │ │ ├── morning.conf │ │ └── night.conf │ ├── topics │ │ ├── exp-previewer.conf │ │ ├── floating-islands.conf │ │ ├── say-something-pose.conf │ │ └── say-something-say.conf │ └── weather │ │ ├── rain.conf │ │ ├── snow.conf │ │ └── thunder.conf │ └── extensions │ ├── brbs.rpy │ ├── console.rpy │ ├── custom-vars.rpy │ ├── events.rpy │ ├── functions.rpy │ ├── locations.rpy │ ├── timestamps.rpy │ ├── topics.rpy │ └── weather.rpy ├── dev ├── dropin_test_syspath.rpy └── list-conf-priorities.sh ├── doc ├── CUSTOMIZING.md ├── DEFAULTS.md └── EXAMPLES.md ├── lib └── py2 │ ├── ConfigParser.py │ ├── README.txt │ └── uuid.py ├── mod ├── config.rpy ├── error.rpy ├── header.rpy ├── lib.rpy ├── logging.rpy ├── main.rpy ├── presence.rpy ├── settings.rpy ├── updates.rpy └── util.rpy └── scripts ├── build.ps1 └── build.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | /build 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/README.md -------------------------------------------------------------------------------- /config/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/README.txt -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/genetechnician-reading-submod/reading_dystopian.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/genetechnician-reading-submod/reading_dystopian.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/genetechnician-reading-submod/reading_horror.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/genetechnician-reading-submod/reading_horror.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/genetechnician-reading-submod/reading_manga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/genetechnician-reading-submod/reading_manga.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/genetechnician-reading-submod/reading_misc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/genetechnician-reading-submod/reading_misc.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/genetechnician-reading-submod/reading_romance.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/genetechnician-reading-submod/reading_romance.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/genetechnician-reading-submod/watching_code.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/genetechnician-reading-submod/watching_code.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/genetechnician-reading-submod/watching_drawing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/genetechnician-reading-submod/watching_drawing.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/genetechnician-reading-submod/watching_game.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/genetechnician-reading-submod/watching_game.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/genetechnician-reading-submod/watching_movie_videos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/genetechnician-reading-submod/watching_movie_videos.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/break.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/break.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/coding.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/coding.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/gaming.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/gaming.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/generic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/generic.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/homework.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/homework.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/napping.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/napping.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/reading.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/reading.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/showering.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/showering.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/working.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/working.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/workout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/workout.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/mas/writing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/mas/writing.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/misc/drama.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/misc/drama.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/misc/jamming.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/misc/jamming.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/misc/listening.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/misc/listening.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/misc/listening2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/misc/listening2.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/misc/overstimulated.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/misc/overstimulated.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/misc/panic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/misc/panic.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/misc/podcast.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/misc/podcast.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/misc/radio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/misc/radio.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/call.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/call.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/date.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/date.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/food.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/food.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/journal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/journal.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/liedown.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/liedown.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/nails.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/nails.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/plants.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/plants.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/social.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/social.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/stimulation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/stimulation.conf -------------------------------------------------------------------------------- /config/default/configs/be-right-backs/my-otter-self-brbs/stretching.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/be-right-backs/my-otter-self-brbs/stretching.conf -------------------------------------------------------------------------------- /config/default/configs/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/default.conf -------------------------------------------------------------------------------- /config/default/configs/events/all-day.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/all-day.conf -------------------------------------------------------------------------------- /config/default/configs/events/all.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/all.conf -------------------------------------------------------------------------------- /config/default/configs/events/anni-milestone-day.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/anni-milestone-day.conf -------------------------------------------------------------------------------- /config/default/configs/events/anni-milestone.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/anni-milestone.conf -------------------------------------------------------------------------------- /config/default/configs/events/anni-year-day.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/anni-year-day.conf -------------------------------------------------------------------------------- /config/default/configs/events/anni-year.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/anni-year.conf -------------------------------------------------------------------------------- /config/default/configs/events/moni-bday-day.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/moni-bday-day.conf -------------------------------------------------------------------------------- /config/default/configs/events/moni-bday.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/moni-bday.conf -------------------------------------------------------------------------------- /config/default/configs/events/player-bday-day.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/player-bday-day.conf -------------------------------------------------------------------------------- /config/default/configs/events/player-bday.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/events/player-bday.conf -------------------------------------------------------------------------------- /config/default/configs/games/chess.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/games/chess.conf -------------------------------------------------------------------------------- /config/default/configs/games/hangman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/games/hangman.conf -------------------------------------------------------------------------------- /config/default/configs/games/nou.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/games/nou.conf -------------------------------------------------------------------------------- /config/default/configs/games/piano.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/games/piano.conf -------------------------------------------------------------------------------- /config/default/configs/games/pong.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/games/pong.conf -------------------------------------------------------------------------------- /config/default/configs/misc/console.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/misc/console.conf -------------------------------------------------------------------------------- /config/default/configs/time-of-day/morning.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/time-of-day/morning.conf -------------------------------------------------------------------------------- /config/default/configs/time-of-day/night.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/time-of-day/night.conf -------------------------------------------------------------------------------- /config/default/configs/topics/exp-previewer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/topics/exp-previewer.conf -------------------------------------------------------------------------------- /config/default/configs/topics/floating-islands.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/topics/floating-islands.conf -------------------------------------------------------------------------------- /config/default/configs/topics/say-something-pose.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/topics/say-something-pose.conf -------------------------------------------------------------------------------- /config/default/configs/topics/say-something-say.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/topics/say-something-say.conf -------------------------------------------------------------------------------- /config/default/configs/weather/rain.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/weather/rain.conf -------------------------------------------------------------------------------- /config/default/configs/weather/snow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/weather/snow.conf -------------------------------------------------------------------------------- /config/default/configs/weather/thunder.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/configs/weather/thunder.conf -------------------------------------------------------------------------------- /config/default/extensions/brbs.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/extensions/brbs.rpy -------------------------------------------------------------------------------- /config/default/extensions/console.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/extensions/console.rpy -------------------------------------------------------------------------------- /config/default/extensions/custom-vars.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/extensions/custom-vars.rpy -------------------------------------------------------------------------------- /config/default/extensions/events.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/extensions/events.rpy -------------------------------------------------------------------------------- /config/default/extensions/functions.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/extensions/functions.rpy -------------------------------------------------------------------------------- /config/default/extensions/locations.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/extensions/locations.rpy -------------------------------------------------------------------------------- /config/default/extensions/timestamps.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/extensions/timestamps.rpy -------------------------------------------------------------------------------- /config/default/extensions/topics.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/extensions/topics.rpy -------------------------------------------------------------------------------- /config/default/extensions/weather.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/config/default/extensions/weather.rpy -------------------------------------------------------------------------------- /dev/dropin_test_syspath.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/dev/dropin_test_syspath.rpy -------------------------------------------------------------------------------- /dev/list-conf-priorities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/dev/list-conf-priorities.sh -------------------------------------------------------------------------------- /doc/CUSTOMIZING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/doc/CUSTOMIZING.md -------------------------------------------------------------------------------- /doc/DEFAULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/doc/DEFAULTS.md -------------------------------------------------------------------------------- /doc/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/doc/EXAMPLES.md -------------------------------------------------------------------------------- /lib/py2/ConfigParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/lib/py2/ConfigParser.py -------------------------------------------------------------------------------- /lib/py2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/lib/py2/README.txt -------------------------------------------------------------------------------- /lib/py2/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/lib/py2/uuid.py -------------------------------------------------------------------------------- /mod/config.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/config.rpy -------------------------------------------------------------------------------- /mod/error.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/error.rpy -------------------------------------------------------------------------------- /mod/header.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/header.rpy -------------------------------------------------------------------------------- /mod/lib.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/lib.rpy -------------------------------------------------------------------------------- /mod/logging.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/logging.rpy -------------------------------------------------------------------------------- /mod/main.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/main.rpy -------------------------------------------------------------------------------- /mod/presence.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/presence.rpy -------------------------------------------------------------------------------- /mod/settings.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/settings.rpy -------------------------------------------------------------------------------- /mod/updates.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/updates.rpy -------------------------------------------------------------------------------- /mod/util.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/mod/util.rpy -------------------------------------------------------------------------------- /scripts/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/scripts/build.ps1 -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Friends-of-Monika/mas-presence/HEAD/scripts/build.sh --------------------------------------------------------------------------------