├── .gitignore ├── README.md ├── RTE ├── __init__.py ├── boolean_simplifier.py ├── config.py ├── constants.py ├── controllers │ ├── __init__.py │ ├── controller.py │ ├── git.py │ └── menus.py ├── models │ ├── __init__.py │ ├── code_block.py │ ├── file.py │ ├── history.py │ ├── labels.py │ ├── locale.py │ ├── project.py │ ├── snippet.py │ └── theme.py ├── syntaxhighlight │ ├── __init__.py │ ├── filters.py │ ├── lexer.py │ └── tokens.py ├── utils.py ├── views │ ├── __init__.py │ ├── console.py │ ├── debugger.py │ ├── editor_window.py │ ├── image_viewer.py │ ├── label_browser.py │ ├── layeredimage_builder.py │ ├── main.py │ ├── notes.py │ ├── options.py │ ├── project_manager.py │ ├── snippets.py │ ├── sound_viewer.py │ ├── toolbar.py │ └── variable_viewer.py └── widgets │ ├── __init__.py │ ├── debounce.py │ ├── dialoguebox.py │ ├── entries.py │ ├── frames.py │ ├── notebooks.py │ ├── text.py │ └── tooltip.py ├── assets ├── button-close-mask.xbm ├── button-close-small-mask.xbm ├── button-close-small.xbm ├── button-close.xbm ├── button-collapse-mask.xbm ├── button-collapse.xbm ├── button-open-mask.xbm ├── button-open.xbm ├── button-pause-mask.xbm ├── button-pause.xbm ├── button-play-mask.xbm ├── button-play.xbm ├── button-stop-mask.xbm ├── button-stop.xbm ├── diff.png ├── favicon-mask.xbm ├── favicon.ico ├── favicon.png ├── favicon.xbm ├── favicon.xcf ├── firstdiff.png ├── folder-mask.xbm ├── folder.xbm ├── imagefile-mask.xbm ├── imagefile.xbm ├── moviefile-mask.xbm ├── moviefile.xbm ├── musicfile-mask.xbm ├── musicfile.xbm ├── newfile.png ├── openfile.png ├── redo.png ├── res.txt ├── saveall.png ├── savefile.png ├── textfile-mask.xbm ├── textfile.xbm ├── undo.png ├── volume-icon-mask.xbm └── volume-icon.xbm ├── config ├── config.json ├── keybindings.json └── rte-gitignore ├── docs ├── CONTRIBUTING.md └── LICENSE.md ├── editorconfig ├── __init__.py ├── compat.py ├── exceptions.py ├── fnmatch.py ├── handler.py ├── ini.py ├── main.py └── versiontools.py ├── git ├── __init__.py └── repo.py ├── librpydb ├── .gitignore ├── README.md ├── __init__.py ├── baseconf.py ├── debugger.py ├── dis.py ├── protocol │ ├── __init__.py │ ├── base.py │ └── gen.py └── utils.py ├── locale ├── en-US.json └── fr-FR.json ├── mp3play ├── __init__.py └── windows.py ├── renpy ├── __init__.py ├── add_from.py ├── angle │ ├── __init__.py │ ├── gl.pxd │ ├── gl.pyx │ ├── glblacklist.py │ ├── gldraw.pxd │ ├── gldraw.pyx │ ├── glenviron_shader.pyx │ ├── glrtt_copy.pyx │ ├── glrtt_fbo.pyx │ ├── gltexture.pxd │ └── gltexture.pyx ├── arguments.py ├── ast.py ├── atl.py ├── audio │ ├── __init__.py │ ├── androidhw.py │ ├── audio.py │ ├── ioshw.py │ ├── music.py │ ├── renpysound.pyx │ └── sound.py ├── bootstrap.py ├── character.py ├── color.py ├── common │ ├── 000atl.rpy │ ├── 000atl.rpyc │ ├── 000namespaces.rpy │ ├── 000namespaces.rpyc │ ├── 000statements.rpy │ ├── 000statements.rpyc │ ├── 000window.rpy │ ├── 000window.rpyc │ ├── 00achievement.rpy │ ├── 00achievement.rpyc │ ├── 00action_audio.rpy │ ├── 00action_audio.rpyc │ ├── 00action_control.rpy │ ├── 00action_control.rpyc │ ├── 00action_data.rpy │ ├── 00action_data.rpyc │ ├── 00action_file.rpy │ ├── 00action_file.rpyc │ ├── 00action_menu.rpy │ ├── 00action_menu.rpyc │ ├── 00action_other.rpy │ ├── 00action_other.rpyc │ ├── 00barvalues.rpy │ ├── 00barvalues.rpyc │ ├── 00build.rpy │ ├── 00build.rpyc │ ├── 00compat.rpy │ ├── 00compat.rpyc │ ├── 00console.rpy │ ├── 00console.rpyc │ ├── 00defaults.rpy │ ├── 00defaults.rpyc │ ├── 00definitions.rpy │ ├── 00definitions.rpyc │ ├── 00director.rpy │ ├── 00director.rpyc │ ├── 00gallery.rpy │ ├── 00gallery.rpyc │ ├── 00gamemenu.rpy │ ├── 00gamemenu.rpyc │ ├── 00gamepad.rpy │ ├── 00gamepad.rpyc │ ├── 00gltest.rpy │ ├── 00gltest.rpyc │ ├── 00gui.rpy │ ├── 00gui.rpyc │ ├── 00iap.rpy │ ├── 00iap.rpyc │ ├── 00icon.rpy │ ├── 00icon.rpyc │ ├── 00iconbutton.rpy │ ├── 00iconbutton.rpyc │ ├── 00images.rpy │ ├── 00images.rpyc │ ├── 00inputvalues.rpy │ ├── 00inputvalues.rpyc │ ├── 00keymap.rpy │ ├── 00keymap.rpyc │ ├── 00layeredimage.rpy │ ├── 00layeredimage.rpyc │ ├── 00layout.rpy │ ├── 00layout.rpyc │ ├── 00library.rpy │ ├── 00library.rpyc │ ├── 00mixers.rpy │ ├── 00mixers.rpyc │ ├── 00musicroom.rpy │ ├── 00musicroom.rpyc │ ├── 00nvl_mode.rpy │ ├── 00nvl_mode.rpyc │ ├── 00obsolete.rpy │ ├── 00obsolete.rpyc │ ├── 00performance.rpy │ ├── 00performance.rpyc │ ├── 00placeholder.rpy │ ├── 00placeholder.rpyc │ ├── 00preferences.rpy │ ├── 00preferences.rpyc │ ├── 00sideimage.rpy │ ├── 00sideimage.rpyc │ ├── 00splines.rpy │ ├── 00splines.rpyc │ ├── 00start.rpy │ ├── 00start.rpyc │ ├── 00style.rpy │ ├── 00style.rpyc │ ├── 00stylepreferences.rpy │ ├── 00stylepreferences.rpyc │ ├── 00themes.rpy │ ├── 00themes.rpyc │ ├── 00updater.rpy │ ├── 00updater.rpyc │ ├── 00voice.rpy │ ├── 00voice.rpyc │ ├── DejaVuSans-Bold.ttf │ ├── DejaVuSans.ttf │ ├── DejaVuSans.txt │ ├── _compat │ │ ├── gamemenu.rpym │ │ ├── gamemenu.rpymc │ │ ├── library.rpym │ │ ├── library.rpymc │ │ ├── mainmenu.rpym │ │ ├── mainmenu.rpymc │ │ ├── preferences.rpym │ │ ├── preferences.rpymc │ │ ├── styles.rpym │ │ ├── styles.rpymc │ │ ├── themes.rpym │ │ └── themes.rpymc │ ├── _developer.rpymc │ ├── _developer │ │ ├── developer.rpym │ │ ├── developer.rpymc │ │ ├── inspector.rpym │ │ └── inspector.rpymc │ ├── _errorhandling.rpym │ ├── _errorhandling.rpymc │ ├── _layout │ │ ├── classic_joystick_preferences.rpym │ │ ├── classic_joystick_preferences.rpymc │ │ ├── classic_load_save.rpym │ │ ├── classic_load_save.rpymc │ │ ├── classic_main_menu.rpym │ │ ├── classic_main_menu.rpymc │ │ ├── classic_navigation.rpym │ │ ├── classic_navigation.rpymc │ │ ├── classic_preferences.rpym │ │ ├── classic_preferences.rpymc │ │ ├── classic_preferences_common.rpym │ │ ├── classic_preferences_common.rpymc │ │ ├── classic_yesno_prompt.rpym │ │ ├── classic_yesno_prompt.rpymc │ │ ├── grouped_main_menu.rpym │ │ ├── grouped_navigation.rpym │ │ ├── imagemap_common.rpym │ │ ├── imagemap_common.rpymc │ │ ├── imagemap_load_save.rpym │ │ ├── imagemap_load_save.rpymc │ │ ├── imagemap_main_menu.rpym │ │ ├── imagemap_main_menu.rpymc │ │ ├── imagemap_navigation.rpym │ │ ├── imagemap_navigation.rpymc │ │ ├── imagemap_preferences.rpym │ │ ├── imagemap_preferences.rpymc │ │ ├── imagemap_yesno_prompt.rpym │ │ ├── imagemap_yesno_prompt.rpymc │ │ ├── one_column_preferences.rpym │ │ ├── screen_joystick_preferences.rpym │ │ ├── screen_joystick_preferences.rpymc │ │ ├── screen_load_save.rpym │ │ ├── screen_load_save.rpymc │ │ ├── screen_main_menu.rpym │ │ ├── screen_main_menu.rpymc │ │ ├── screen_preferences.rpym │ │ ├── screen_preferences.rpymc │ │ ├── screen_yesno_prompt.rpym │ │ ├── screen_yesno_prompt.rpymc │ │ ├── scrolling_load_save.rpym │ │ ├── scrolling_load_save.rpymc │ │ ├── two_column_preferences.rpym │ │ └── two_column_preferences.rpymc │ ├── _outline │ │ ├── bar.png │ │ ├── circle.png │ │ └── vbar.png │ ├── _placeholder │ │ ├── boy.png │ │ └── girl.png │ ├── _roundrect │ │ ├── rr12.png │ │ ├── rr12g.png │ │ ├── rr6.png │ │ ├── rr6g.png │ │ ├── rrscrollbar.png │ │ ├── rrscrollbar_thumb.png │ │ ├── rrslider_empty.png │ │ ├── rrslider_full.png │ │ ├── rrslider_thumb.png │ │ ├── rrvscrollbar.png │ │ ├── rrvscrollbar_thumb.png │ │ ├── rrvslider_empty.png │ │ ├── rrvslider_full.png │ │ └── rrvslider_thumb.png │ ├── _silence.ogg │ ├── _theme_amie2 │ │ ├── bar.png │ │ ├── button.png │ │ ├── button_hover.png │ │ ├── frame.png │ │ ├── hover_bar.png │ │ └── hover_frame.png │ ├── _theme_austen │ │ ├── au_box.png │ │ ├── auscrollbar.png │ │ ├── auscrollbar_thumb.png │ │ ├── auslider_empty.png │ │ ├── auslider_full.png │ │ ├── auslider_thumb.png │ │ ├── auvscrollbar.png │ │ ├── auvscrollbar_thumb.png │ │ ├── auvslider_empty.png │ │ ├── auvslider_full.png │ │ └── auvslider_thumb.png │ ├── _theme_awt │ │ ├── OFL.txt │ │ ├── Quicksand-Bold.ttf │ │ ├── Quicksand-Regular.ttf │ │ ├── bar_full.png │ │ ├── bar_full_overlay.png │ │ ├── bar_thumb.gif │ │ ├── bar_thumb.png │ │ ├── bar_thumb_overlay.png │ │ ├── button.png │ │ ├── button_disabled_overlay.png │ │ ├── button_overlay.png │ │ ├── button_overlay_highlight.png │ │ ├── button_selected.png │ │ ├── button_selected_overlay.png │ │ ├── button_selected_overlay_highlight.png │ │ ├── frame.png │ │ ├── frame_overlay.png │ │ ├── radio_base.png │ │ ├── radio_base_overlay.png │ │ ├── radio_selected_hover.png │ │ ├── radio_unselected.png │ │ ├── radio_unselected_hover.png │ │ ├── scroller.png │ │ ├── scroller_overlay.png │ │ ├── slider_empty_all.png │ │ ├── slider_empty_overlay.png │ │ ├── slider_full.png │ │ ├── slider_full_overlay.png │ │ ├── v_bar_full.png │ │ ├── v_bar_full_overlay.png │ │ ├── v_bar_thumb.png │ │ ├── v_bar_thumb_overlay.png │ │ ├── vscroller.png │ │ ├── vscroller_overlay.png │ │ ├── vslider_empty_all.png │ │ ├── vslider_full.png │ │ ├── vslider_full_overlay.png │ │ ├── vthumb.png │ │ └── vthumb_overlay.png │ ├── _theme_bordered │ │ ├── br_box.png │ │ ├── brscrollbar.png │ │ ├── brscrollbar_thumb.png │ │ ├── brslider_empty.png │ │ ├── brslider_full.png │ │ ├── brslider_thumb.png │ │ ├── brvscrollbar.png │ │ ├── brvscrollbar_thumb.png │ │ ├── brvslider_empty.png │ │ ├── brvslider_full.png │ │ └── brvslider_thumb.png │ ├── _theme_crayon │ │ ├── cry_box.png │ │ ├── cry_box2.png │ │ ├── cryscrollbar.png │ │ ├── cryscrollbar_thumb.png │ │ ├── cryslider_empty.png │ │ ├── cryslider_full.png │ │ ├── cryslider_thumb.png │ │ ├── cryvscrollbar.png │ │ ├── cryvscrollbar_thumb.png │ │ ├── cryvslider_empty.png │ │ ├── cryvslider_full.png │ │ ├── cryvslider_thumb.png │ │ └── rr12g.png │ ├── _theme_diamond │ │ ├── d_box.png │ │ ├── dscrollbar.png │ │ ├── dscrollbar_thumb.png │ │ ├── dslider_empty.png │ │ ├── dslider_full.png │ │ ├── dslider_thumb.png │ │ ├── dvscrollbar.png │ │ ├── dvscrollbar_thumb.png │ │ ├── dvslider_empty.png │ │ ├── dvslider_full.png │ │ └── dvslider_thumb.png │ ├── _theme_glow │ │ ├── g_box.png │ │ ├── g_outline.png │ │ ├── gscrollbar.png │ │ ├── gscrollbar_thumb.png │ │ ├── gslider_empty.png │ │ ├── gslider_full.png │ │ ├── gslider_thumb.png │ │ ├── gvscrollbar.png │ │ ├── gvscrollbar_thumb.png │ │ ├── gvslider_empty.png │ │ ├── gvslider_full.png │ │ └── gvslider_thumb.png │ ├── _theme_marker │ │ ├── ink_box.png │ │ ├── inkscrollbar.png │ │ ├── inkscrollbar_thumb.png │ │ ├── inkslider_empty.png │ │ ├── inkslider_full.png │ │ ├── inkslider_thumb.png │ │ ├── inkvscrollbar.png │ │ ├── inkvscrollbar_thumb.png │ │ ├── inkvslider_empty.png │ │ ├── inkvslider_full.png │ │ └── inkvslider_thumb.png │ ├── _theme_regal │ │ ├── re_box.png │ │ ├── rescrollbar.png │ │ ├── rescrollbar_thumb.png │ │ ├── reslider_empty.png │ │ ├── reslider_full.png │ │ ├── reslider_thumb.png │ │ ├── revscrollbar.png │ │ ├── revscrollbar_thumb.png │ │ ├── revslider_empty.png │ │ ├── revslider_full.png │ │ └── revslider_thumb.png │ ├── _theme_threeD │ │ ├── th_box.png │ │ ├── thscrollbar.png │ │ ├── thscrollbar_thumb.png │ │ ├── thslider_empty.png │ │ ├── thslider_full.png │ │ ├── thslider_thumb.png │ │ ├── thvscrollbar.png │ │ ├── thvscrollbar_thumb.png │ │ ├── thvslider_empty.png │ │ ├── thvslider_full.png │ │ └── thvslider_thumb.png │ ├── _theme_tv │ │ ├── t_box.png │ │ ├── tscrollbar.png │ │ ├── tscrollbar_thumb.png │ │ ├── tslider_empty.png │ │ ├── tslider_full.png │ │ ├── tslider_thumb.png │ │ ├── tvscrollbar.png │ │ ├── tvscrollbar_thumb.png │ │ ├── tvslider_empty.png │ │ ├── tvslider_full.png │ │ └── tvslider_thumb.png │ ├── _transparent_tile.png │ ├── _tv_unsafe.png │ ├── blindstile.png │ ├── gamecontrollerdb.txt │ └── squarestile.png ├── config.py ├── curry.py ├── debug.py ├── defaultstore.py ├── display │ ├── __init__.py │ ├── accelerator.pyx │ ├── anim.py │ ├── behavior.py │ ├── controller.py │ ├── core.py │ ├── dragdrop.py │ ├── emulator.py │ ├── error.py │ ├── focus.py │ ├── gesture.py │ ├── im.py │ ├── image.py │ ├── imagelike.py │ ├── imagemap.py │ ├── joystick.py │ ├── layout.py │ ├── minigame.py │ ├── module.py │ ├── motion.py │ ├── movetransition.py │ ├── particle.py │ ├── pgrender.py │ ├── predict.py │ ├── presplash.py │ ├── render.pxd │ ├── render.pyx │ ├── scale.py │ ├── screen.py │ ├── swdraw.py │ ├── transform.py │ ├── transition.py │ ├── tts.py │ ├── video.py │ └── viewport.py ├── dump.py ├── easy.py ├── editor.py ├── error.py ├── execution.py ├── exports.py ├── game.py ├── gl │ ├── __init__.py │ ├── gl.pxd │ ├── gl.pyx │ ├── gl1.pxd │ ├── gl1.pyx │ ├── glblacklist.py │ ├── gldraw.pxd │ ├── gldraw.pyx │ ├── glenviron_fixed.pyx │ ├── glenviron_limited.pyx │ ├── glenviron_shader.pyx │ ├── glrtt_copy.pyx │ ├── glrtt_fbo.pyx │ ├── gltexture.pxd │ └── gltexture.pyx ├── lint.py ├── loader.py ├── loadsave.py ├── log.py ├── main.py ├── memory.py ├── minstore.py ├── object.py ├── parser.py ├── parsersupport.pyx ├── performance.py ├── persistent.py ├── preferences.py ├── pyanalysis.py ├── pydict.pyx ├── python.py ├── savelocation.py ├── screenlang.py ├── script.py ├── scriptedit.py ├── sl2 │ ├── __init__.py │ ├── slast.py │ ├── sldisplayables.py │ ├── slparser.py │ └── slproperties.py ├── statements.py ├── style.pxd ├── style.pyx ├── styledata │ ├── __init__.py │ ├── styleclass.pyx │ ├── stylesets.pyx │ └── styleutil.py ├── substitutions.py ├── test │ ├── __init__.py │ ├── testast.py │ ├── testexecution.py │ ├── testfocus.py │ ├── testkey.py │ ├── testmouse.py │ └── testparser.py ├── text │ ├── __init__.py │ ├── extras.py │ ├── font.py │ ├── ftfont.pyx │ ├── linebreak.pxi │ ├── text.py │ ├── textsupport.pxd │ ├── textsupport.pyx │ └── texwrap.pyx ├── translation │ ├── __init__.py │ ├── dialogue.py │ ├── extract.py │ ├── generation.py │ ├── merge.py │ └── scanstrings.py ├── ui.py ├── vc_version.py └── warp.py ├── renpytexteditor.py ├── renpytexteditor.spec ├── renpytexteditor.sublime-workspace ├── requirements.txt ├── snippets ├── default_snippets.json └── snippets.json ├── tests ├── keypress.py ├── project │ ├── funkyfunk-v2.wav │ ├── image2.png │ ├── junk │ │ ├── file_0.txt │ │ ├── file_1.txt │ │ ├── file_10.txt │ │ ├── file_11.txt │ │ ├── file_12.txt │ │ ├── file_13.txt │ │ ├── file_14.txt │ │ ├── file_15.txt │ │ ├── file_16.txt │ │ ├── file_17.txt │ │ ├── file_18.txt │ │ ├── file_19.txt │ │ ├── file_2.txt │ │ ├── file_20.txt │ │ ├── file_21.txt │ │ ├── file_22.txt │ │ ├── file_23.txt │ │ ├── file_24.txt │ │ ├── file_25.txt │ │ ├── file_26.txt │ │ ├── file_27.txt │ │ ├── file_28.txt │ │ ├── file_29.txt │ │ ├── file_3.txt │ │ ├── file_30.txt │ │ ├── file_31.txt │ │ ├── file_32.txt │ │ ├── file_33.txt │ │ ├── file_34.txt │ │ ├── file_35.txt │ │ ├── file_36.txt │ │ ├── file_37.txt │ │ ├── file_38.txt │ │ ├── file_39.txt │ │ ├── file_4.txt │ │ ├── file_40.txt │ │ ├── file_41.txt │ │ ├── file_42.txt │ │ ├── file_43.txt │ │ ├── file_44.txt │ │ ├── file_45.txt │ │ ├── file_46.txt │ │ ├── file_47.txt │ │ ├── file_48.txt │ │ ├── file_49.txt │ │ ├── file_5.txt │ │ ├── file_50.txt │ │ ├── file_51.txt │ │ ├── file_52.txt │ │ ├── file_53.txt │ │ ├── file_54.txt │ │ ├── file_55.txt │ │ ├── file_56.txt │ │ ├── file_57.txt │ │ ├── file_58.txt │ │ ├── file_59.txt │ │ ├── file_6.txt │ │ ├── file_60.txt │ │ ├── file_61.txt │ │ ├── file_62.txt │ │ ├── file_63.txt │ │ ├── file_64.txt │ │ ├── file_65.txt │ │ ├── file_66.txt │ │ ├── file_67.txt │ │ ├── file_68.txt │ │ ├── file_69.txt │ │ ├── file_7.txt │ │ ├── file_70.txt │ │ ├── file_71.txt │ │ ├── file_72.txt │ │ ├── file_73.txt │ │ ├── file_74.txt │ │ ├── file_75.txt │ │ ├── file_76.txt │ │ ├── file_77.txt │ │ ├── file_78.txt │ │ ├── file_79.txt │ │ ├── file_8.txt │ │ ├── file_80.txt │ │ ├── file_81.txt │ │ ├── file_82.txt │ │ ├── file_83.txt │ │ ├── file_84.txt │ │ ├── file_85.txt │ │ ├── file_86.txt │ │ ├── file_87.txt │ │ ├── file_88.txt │ │ ├── file_89.txt │ │ ├── file_9.txt │ │ ├── file_90.txt │ │ ├── file_91.txt │ │ ├── file_92.txt │ │ ├── file_93.txt │ │ ├── file_94.txt │ │ ├── file_95.txt │ │ ├── file_96.txt │ │ ├── file_97.txt │ │ ├── file_98.txt │ │ └── file_99.txt │ ├── layeredimage │ │ ├── cedric_arms_a_dressed_flex.png │ │ ├── cedric_arms_a_dressed_hips.png │ │ ├── cedric_arms_a_dressed_point.png │ │ ├── cedric_arms_a_dressed_point_himself.png │ │ ├── cedric_arms_a_dressed_reject.png │ │ ├── cedric_body_b_dressed.png │ │ ├── cedric_face_f_curious.png │ │ ├── cedric_face_f_curious_talk.png │ │ ├── cedric_face_f_curious_talk_back.png │ │ ├── cedric_face_f_normal.png │ │ └── cedric_face_f_normal_talk.png │ ├── script.rpy │ ├── sfx.wav │ ├── test.rpy │ ├── test1 │ │ ├── image.png │ │ └── music.mp3 │ └── text_syntax_highlight.py ├── properties_formatted.txt ├── pycodestyle.py ├── setup_tests.py ├── test_block_detect.py ├── test_canvas_thing.py ├── test_editor_window.py ├── test_keybinding_widget.py ├── test_layeredimage_builder.py ├── test_options_window.py ├── test_project_manager.py ├── test_snippets_add.py ├── test_tree_widget.py ├── the_question │ ├── android-icon_background.png │ ├── android-icon_foreground.png │ ├── game │ │ ├── cache │ │ │ ├── bytecode.rpyb │ │ │ ├── pyanalysis.rpyb │ │ │ └── screens.rpyb │ │ ├── gui.rpy │ │ ├── gui.rpyc │ │ ├── gui │ │ │ ├── bar │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ ├── button │ │ │ │ ├── check_foreground.png │ │ │ │ ├── check_selected_foreground.png │ │ │ │ ├── choice_hover_background.png │ │ │ │ ├── choice_idle_background.png │ │ │ │ ├── hover_background.png │ │ │ │ ├── idle_background.png │ │ │ │ ├── quick_hover_background.png │ │ │ │ ├── quick_idle_background.png │ │ │ │ ├── radio_foreground.png │ │ │ │ ├── radio_selected_foreground.png │ │ │ │ ├── slot_hover_background.png │ │ │ │ └── slot_idle_background.png │ │ │ ├── frame.png │ │ │ ├── game_menu.png │ │ │ ├── main_menu.png │ │ │ ├── namebox.png │ │ │ ├── notify.png │ │ │ ├── nvl.png │ │ │ ├── overlay │ │ │ │ ├── confirm.png │ │ │ │ ├── game_menu.png │ │ │ │ └── main_menu.png │ │ │ ├── phone │ │ │ │ ├── nvl.png │ │ │ │ ├── overlay │ │ │ │ │ ├── game_menu.png │ │ │ │ │ └── main_menu.png │ │ │ │ └── textbox.png │ │ │ ├── scrollbar │ │ │ │ ├── horizontal_hover_bar.png │ │ │ │ ├── horizontal_hover_thumb.png │ │ │ │ ├── horizontal_idle_bar.png │ │ │ │ ├── horizontal_idle_thumb.png │ │ │ │ ├── vertical_hover_bar.png │ │ │ │ ├── vertical_hover_thumb.png │ │ │ │ ├── vertical_idle_bar.png │ │ │ │ └── vertical_idle_thumb.png │ │ │ ├── skip.png │ │ │ ├── slider │ │ │ │ ├── horizontal_hover_bar.png │ │ │ │ ├── horizontal_hover_thumb.png │ │ │ │ ├── horizontal_idle_bar.png │ │ │ │ ├── horizontal_idle_thumb.png │ │ │ │ ├── vertical_hover_bar.png │ │ │ │ ├── vertical_hover_thumb.png │ │ │ │ ├── vertical_idle_bar.png │ │ │ │ └── vertical_idle_thumb.png │ │ │ ├── textbox.png │ │ │ └── window_icon.png │ │ ├── illurock.opus │ │ ├── images │ │ │ ├── bg club.jpg │ │ │ ├── bg lecturehall.jpg │ │ │ ├── bg meadow.jpg │ │ │ ├── bg uni.jpg │ │ │ ├── sylvie blue giggle.png │ │ │ ├── sylvie blue normal.png │ │ │ ├── sylvie blue smile.png │ │ │ ├── sylvie blue surprised.png │ │ │ ├── sylvie green giggle.png │ │ │ ├── sylvie green normal.png │ │ │ ├── sylvie green smile.png │ │ │ └── sylvie green surprised.png │ │ ├── options.rpy │ │ ├── options.rpyc │ │ ├── screens.rpy │ │ ├── screens.rpyc │ │ ├── script.rpy │ │ ├── script.rpyc │ │ └── tl │ │ │ ├── None │ │ │ ├── common.rpym │ │ │ └── common.rpymc │ │ │ ├── french │ │ │ ├── common.rpy │ │ │ ├── common.rpyc │ │ │ ├── options.rpy │ │ │ ├── options.rpyc │ │ │ ├── screens.rpy │ │ │ ├── screens.rpyc │ │ │ ├── script.rpy │ │ │ └── script.rpyc │ │ │ ├── korean │ │ │ ├── common.rpy │ │ │ ├── common.rpyc │ │ │ ├── options.rpy │ │ │ ├── options.rpyc │ │ │ ├── screens.rpy │ │ │ ├── screens.rpyc │ │ │ ├── script.rpy │ │ │ └── script.rpyc │ │ │ ├── malay │ │ │ ├── common.rpy │ │ │ ├── common.rpyc │ │ │ ├── options.rpy │ │ │ ├── options.rpyc │ │ │ ├── screens.rpy │ │ │ ├── screens.rpyc │ │ │ ├── script.rpy │ │ │ └── script.rpyc │ │ │ ├── russian │ │ │ ├── common.rpy │ │ │ ├── common.rpyc │ │ │ ├── options.rpy │ │ │ ├── options.rpyc │ │ │ ├── screens.rpy │ │ │ ├── screens.rpyc │ │ │ ├── script.rpy │ │ │ └── script.rpyc │ │ │ ├── simplified_chinese │ │ │ ├── options.rpy │ │ │ ├── options.rpyc │ │ │ ├── screens.rpy │ │ │ ├── screens.rpyc │ │ │ ├── script.rpy │ │ │ └── script.rpyc │ │ │ └── traditional_chinese │ │ │ ├── options.rpy │ │ │ ├── options.rpyc │ │ │ ├── script.rpy │ │ │ └── script.rpyc │ ├── icon.icns │ ├── icon.ico │ └── project.json └── tkvlc.py └── themes └── monokai.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/README.md -------------------------------------------------------------------------------- /RTE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTE/boolean_simplifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/boolean_simplifier.py -------------------------------------------------------------------------------- /RTE/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/config.py -------------------------------------------------------------------------------- /RTE/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/constants.py -------------------------------------------------------------------------------- /RTE/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTE/controllers/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/controllers/controller.py -------------------------------------------------------------------------------- /RTE/controllers/git.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTE/controllers/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/controllers/menus.py -------------------------------------------------------------------------------- /RTE/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTE/models/code_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/models/code_block.py -------------------------------------------------------------------------------- /RTE/models/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/models/file.py -------------------------------------------------------------------------------- /RTE/models/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/models/history.py -------------------------------------------------------------------------------- /RTE/models/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/models/labels.py -------------------------------------------------------------------------------- /RTE/models/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/models/locale.py -------------------------------------------------------------------------------- /RTE/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/models/project.py -------------------------------------------------------------------------------- /RTE/models/snippet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/models/snippet.py -------------------------------------------------------------------------------- /RTE/models/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/models/theme.py -------------------------------------------------------------------------------- /RTE/syntaxhighlight/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTE/syntaxhighlight/filters.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTE/syntaxhighlight/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/syntaxhighlight/lexer.py -------------------------------------------------------------------------------- /RTE/syntaxhighlight/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/syntaxhighlight/tokens.py -------------------------------------------------------------------------------- /RTE/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/utils.py -------------------------------------------------------------------------------- /RTE/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTE/views/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/console.py -------------------------------------------------------------------------------- /RTE/views/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/debugger.py -------------------------------------------------------------------------------- /RTE/views/editor_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/editor_window.py -------------------------------------------------------------------------------- /RTE/views/image_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/image_viewer.py -------------------------------------------------------------------------------- /RTE/views/label_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/label_browser.py -------------------------------------------------------------------------------- /RTE/views/layeredimage_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/layeredimage_builder.py -------------------------------------------------------------------------------- /RTE/views/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/main.py -------------------------------------------------------------------------------- /RTE/views/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/notes.py -------------------------------------------------------------------------------- /RTE/views/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/options.py -------------------------------------------------------------------------------- /RTE/views/project_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/project_manager.py -------------------------------------------------------------------------------- /RTE/views/snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/snippets.py -------------------------------------------------------------------------------- /RTE/views/sound_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/sound_viewer.py -------------------------------------------------------------------------------- /RTE/views/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/toolbar.py -------------------------------------------------------------------------------- /RTE/views/variable_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/views/variable_viewer.py -------------------------------------------------------------------------------- /RTE/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTE/widgets/debounce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/widgets/debounce.py -------------------------------------------------------------------------------- /RTE/widgets/dialoguebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/widgets/dialoguebox.py -------------------------------------------------------------------------------- /RTE/widgets/entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/widgets/entries.py -------------------------------------------------------------------------------- /RTE/widgets/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/widgets/frames.py -------------------------------------------------------------------------------- /RTE/widgets/notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/widgets/notebooks.py -------------------------------------------------------------------------------- /RTE/widgets/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/widgets/text.py -------------------------------------------------------------------------------- /RTE/widgets/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/RTE/widgets/tooltip.py -------------------------------------------------------------------------------- /assets/button-close-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-close-mask.xbm -------------------------------------------------------------------------------- /assets/button-close-small-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-close-small-mask.xbm -------------------------------------------------------------------------------- /assets/button-close-small.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-close-small.xbm -------------------------------------------------------------------------------- /assets/button-close.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-close.xbm -------------------------------------------------------------------------------- /assets/button-collapse-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-collapse-mask.xbm -------------------------------------------------------------------------------- /assets/button-collapse.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-collapse.xbm -------------------------------------------------------------------------------- /assets/button-open-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-open-mask.xbm -------------------------------------------------------------------------------- /assets/button-open.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-open.xbm -------------------------------------------------------------------------------- /assets/button-pause-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-pause-mask.xbm -------------------------------------------------------------------------------- /assets/button-pause.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-pause.xbm -------------------------------------------------------------------------------- /assets/button-play-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-play-mask.xbm -------------------------------------------------------------------------------- /assets/button-play.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-play.xbm -------------------------------------------------------------------------------- /assets/button-stop-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-stop-mask.xbm -------------------------------------------------------------------------------- /assets/button-stop.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/button-stop.xbm -------------------------------------------------------------------------------- /assets/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/diff.png -------------------------------------------------------------------------------- /assets/favicon-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/favicon-mask.xbm -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/favicon.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/favicon.xbm -------------------------------------------------------------------------------- /assets/favicon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/favicon.xcf -------------------------------------------------------------------------------- /assets/firstdiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/firstdiff.png -------------------------------------------------------------------------------- /assets/folder-mask.xbm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/folder.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/folder.xbm -------------------------------------------------------------------------------- /assets/imagefile-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/imagefile-mask.xbm -------------------------------------------------------------------------------- /assets/imagefile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/imagefile.xbm -------------------------------------------------------------------------------- /assets/moviefile-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/moviefile-mask.xbm -------------------------------------------------------------------------------- /assets/moviefile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/moviefile.xbm -------------------------------------------------------------------------------- /assets/musicfile-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/musicfile-mask.xbm -------------------------------------------------------------------------------- /assets/musicfile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/musicfile.xbm -------------------------------------------------------------------------------- /assets/newfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/newfile.png -------------------------------------------------------------------------------- /assets/openfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/openfile.png -------------------------------------------------------------------------------- /assets/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/redo.png -------------------------------------------------------------------------------- /assets/res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/res.txt -------------------------------------------------------------------------------- /assets/saveall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/saveall.png -------------------------------------------------------------------------------- /assets/savefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/savefile.png -------------------------------------------------------------------------------- /assets/textfile-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/textfile-mask.xbm -------------------------------------------------------------------------------- /assets/textfile.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/textfile.xbm -------------------------------------------------------------------------------- /assets/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/undo.png -------------------------------------------------------------------------------- /assets/volume-icon-mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/volume-icon-mask.xbm -------------------------------------------------------------------------------- /assets/volume-icon.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/assets/volume-icon.xbm -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/config/config.json -------------------------------------------------------------------------------- /config/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/config/keybindings.json -------------------------------------------------------------------------------- /config/rte-gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/config/rte-gitignore -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /editorconfig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/editorconfig/__init__.py -------------------------------------------------------------------------------- /editorconfig/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/editorconfig/compat.py -------------------------------------------------------------------------------- /editorconfig/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/editorconfig/exceptions.py -------------------------------------------------------------------------------- /editorconfig/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/editorconfig/fnmatch.py -------------------------------------------------------------------------------- /editorconfig/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/editorconfig/handler.py -------------------------------------------------------------------------------- /editorconfig/ini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/editorconfig/ini.py -------------------------------------------------------------------------------- /editorconfig/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/editorconfig/main.py -------------------------------------------------------------------------------- /editorconfig/versiontools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/editorconfig/versiontools.py -------------------------------------------------------------------------------- /git/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/git/repo.py -------------------------------------------------------------------------------- /librpydb/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | -------------------------------------------------------------------------------- /librpydb/README.md: -------------------------------------------------------------------------------- 1 | # librpydb 2 | -------------------------------------------------------------------------------- /librpydb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/librpydb/__init__.py -------------------------------------------------------------------------------- /librpydb/baseconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/librpydb/baseconf.py -------------------------------------------------------------------------------- /librpydb/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/librpydb/debugger.py -------------------------------------------------------------------------------- /librpydb/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/librpydb/dis.py -------------------------------------------------------------------------------- /librpydb/protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/librpydb/protocol/__init__.py -------------------------------------------------------------------------------- /librpydb/protocol/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/librpydb/protocol/base.py -------------------------------------------------------------------------------- /librpydb/protocol/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/librpydb/protocol/gen.py -------------------------------------------------------------------------------- /librpydb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/librpydb/utils.py -------------------------------------------------------------------------------- /locale/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/locale/en-US.json -------------------------------------------------------------------------------- /locale/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/locale/fr-FR.json -------------------------------------------------------------------------------- /mp3play/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/mp3play/__init__.py -------------------------------------------------------------------------------- /mp3play/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/mp3play/windows.py -------------------------------------------------------------------------------- /renpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/__init__.py -------------------------------------------------------------------------------- /renpy/add_from.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/add_from.py -------------------------------------------------------------------------------- /renpy/angle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/__init__.py -------------------------------------------------------------------------------- /renpy/angle/gl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/gl.pxd -------------------------------------------------------------------------------- /renpy/angle/gl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/gl.pyx -------------------------------------------------------------------------------- /renpy/angle/glblacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/glblacklist.py -------------------------------------------------------------------------------- /renpy/angle/gldraw.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/gldraw.pxd -------------------------------------------------------------------------------- /renpy/angle/gldraw.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/gldraw.pyx -------------------------------------------------------------------------------- /renpy/angle/glenviron_shader.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/glenviron_shader.pyx -------------------------------------------------------------------------------- /renpy/angle/glrtt_copy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/glrtt_copy.pyx -------------------------------------------------------------------------------- /renpy/angle/glrtt_fbo.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/glrtt_fbo.pyx -------------------------------------------------------------------------------- /renpy/angle/gltexture.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/gltexture.pxd -------------------------------------------------------------------------------- /renpy/angle/gltexture.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/angle/gltexture.pyx -------------------------------------------------------------------------------- /renpy/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/arguments.py -------------------------------------------------------------------------------- /renpy/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/ast.py -------------------------------------------------------------------------------- /renpy/atl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/atl.py -------------------------------------------------------------------------------- /renpy/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/audio/__init__.py -------------------------------------------------------------------------------- /renpy/audio/androidhw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/audio/androidhw.py -------------------------------------------------------------------------------- /renpy/audio/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/audio/audio.py -------------------------------------------------------------------------------- /renpy/audio/ioshw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/audio/ioshw.py -------------------------------------------------------------------------------- /renpy/audio/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/audio/music.py -------------------------------------------------------------------------------- /renpy/audio/renpysound.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/audio/renpysound.pyx -------------------------------------------------------------------------------- /renpy/audio/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/audio/sound.py -------------------------------------------------------------------------------- /renpy/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/bootstrap.py -------------------------------------------------------------------------------- /renpy/character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/character.py -------------------------------------------------------------------------------- /renpy/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/color.py -------------------------------------------------------------------------------- /renpy/common/000atl.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/000atl.rpy -------------------------------------------------------------------------------- /renpy/common/000atl.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/000atl.rpyc -------------------------------------------------------------------------------- /renpy/common/000namespaces.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/000namespaces.rpy -------------------------------------------------------------------------------- /renpy/common/000namespaces.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/000namespaces.rpyc -------------------------------------------------------------------------------- /renpy/common/000statements.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/000statements.rpy -------------------------------------------------------------------------------- /renpy/common/000statements.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/000statements.rpyc -------------------------------------------------------------------------------- /renpy/common/000window.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/000window.rpy -------------------------------------------------------------------------------- /renpy/common/000window.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/000window.rpyc -------------------------------------------------------------------------------- /renpy/common/00achievement.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00achievement.rpy -------------------------------------------------------------------------------- /renpy/common/00achievement.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00achievement.rpyc -------------------------------------------------------------------------------- /renpy/common/00action_audio.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_audio.rpy -------------------------------------------------------------------------------- /renpy/common/00action_audio.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_audio.rpyc -------------------------------------------------------------------------------- /renpy/common/00action_control.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_control.rpy -------------------------------------------------------------------------------- /renpy/common/00action_control.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_control.rpyc -------------------------------------------------------------------------------- /renpy/common/00action_data.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_data.rpy -------------------------------------------------------------------------------- /renpy/common/00action_data.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_data.rpyc -------------------------------------------------------------------------------- /renpy/common/00action_file.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_file.rpy -------------------------------------------------------------------------------- /renpy/common/00action_file.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_file.rpyc -------------------------------------------------------------------------------- /renpy/common/00action_menu.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_menu.rpy -------------------------------------------------------------------------------- /renpy/common/00action_menu.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_menu.rpyc -------------------------------------------------------------------------------- /renpy/common/00action_other.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_other.rpy -------------------------------------------------------------------------------- /renpy/common/00action_other.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00action_other.rpyc -------------------------------------------------------------------------------- /renpy/common/00barvalues.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00barvalues.rpy -------------------------------------------------------------------------------- /renpy/common/00barvalues.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00barvalues.rpyc -------------------------------------------------------------------------------- /renpy/common/00build.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00build.rpy -------------------------------------------------------------------------------- /renpy/common/00build.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00build.rpyc -------------------------------------------------------------------------------- /renpy/common/00compat.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00compat.rpy -------------------------------------------------------------------------------- /renpy/common/00compat.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00compat.rpyc -------------------------------------------------------------------------------- /renpy/common/00console.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00console.rpy -------------------------------------------------------------------------------- /renpy/common/00console.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00console.rpyc -------------------------------------------------------------------------------- /renpy/common/00defaults.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00defaults.rpy -------------------------------------------------------------------------------- /renpy/common/00defaults.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00defaults.rpyc -------------------------------------------------------------------------------- /renpy/common/00definitions.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00definitions.rpy -------------------------------------------------------------------------------- /renpy/common/00definitions.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00definitions.rpyc -------------------------------------------------------------------------------- /renpy/common/00director.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00director.rpy -------------------------------------------------------------------------------- /renpy/common/00director.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00director.rpyc -------------------------------------------------------------------------------- /renpy/common/00gallery.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gallery.rpy -------------------------------------------------------------------------------- /renpy/common/00gallery.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gallery.rpyc -------------------------------------------------------------------------------- /renpy/common/00gamemenu.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gamemenu.rpy -------------------------------------------------------------------------------- /renpy/common/00gamemenu.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gamemenu.rpyc -------------------------------------------------------------------------------- /renpy/common/00gamepad.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gamepad.rpy -------------------------------------------------------------------------------- /renpy/common/00gamepad.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gamepad.rpyc -------------------------------------------------------------------------------- /renpy/common/00gltest.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gltest.rpy -------------------------------------------------------------------------------- /renpy/common/00gltest.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gltest.rpyc -------------------------------------------------------------------------------- /renpy/common/00gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gui.rpy -------------------------------------------------------------------------------- /renpy/common/00gui.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00gui.rpyc -------------------------------------------------------------------------------- /renpy/common/00iap.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00iap.rpy -------------------------------------------------------------------------------- /renpy/common/00iap.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00iap.rpyc -------------------------------------------------------------------------------- /renpy/common/00icon.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00icon.rpy -------------------------------------------------------------------------------- /renpy/common/00icon.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00icon.rpyc -------------------------------------------------------------------------------- /renpy/common/00iconbutton.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00iconbutton.rpy -------------------------------------------------------------------------------- /renpy/common/00iconbutton.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00iconbutton.rpyc -------------------------------------------------------------------------------- /renpy/common/00images.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00images.rpy -------------------------------------------------------------------------------- /renpy/common/00images.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00images.rpyc -------------------------------------------------------------------------------- /renpy/common/00inputvalues.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00inputvalues.rpy -------------------------------------------------------------------------------- /renpy/common/00inputvalues.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00inputvalues.rpyc -------------------------------------------------------------------------------- /renpy/common/00keymap.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00keymap.rpy -------------------------------------------------------------------------------- /renpy/common/00keymap.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00keymap.rpyc -------------------------------------------------------------------------------- /renpy/common/00layeredimage.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00layeredimage.rpy -------------------------------------------------------------------------------- /renpy/common/00layeredimage.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00layeredimage.rpyc -------------------------------------------------------------------------------- /renpy/common/00layout.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00layout.rpy -------------------------------------------------------------------------------- /renpy/common/00layout.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00layout.rpyc -------------------------------------------------------------------------------- /renpy/common/00library.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00library.rpy -------------------------------------------------------------------------------- /renpy/common/00library.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00library.rpyc -------------------------------------------------------------------------------- /renpy/common/00mixers.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00mixers.rpy -------------------------------------------------------------------------------- /renpy/common/00mixers.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00mixers.rpyc -------------------------------------------------------------------------------- /renpy/common/00musicroom.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00musicroom.rpy -------------------------------------------------------------------------------- /renpy/common/00musicroom.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00musicroom.rpyc -------------------------------------------------------------------------------- /renpy/common/00nvl_mode.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00nvl_mode.rpy -------------------------------------------------------------------------------- /renpy/common/00nvl_mode.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00nvl_mode.rpyc -------------------------------------------------------------------------------- /renpy/common/00obsolete.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00obsolete.rpy -------------------------------------------------------------------------------- /renpy/common/00obsolete.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00obsolete.rpyc -------------------------------------------------------------------------------- /renpy/common/00performance.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00performance.rpy -------------------------------------------------------------------------------- /renpy/common/00performance.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00performance.rpyc -------------------------------------------------------------------------------- /renpy/common/00placeholder.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00placeholder.rpy -------------------------------------------------------------------------------- /renpy/common/00placeholder.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00placeholder.rpyc -------------------------------------------------------------------------------- /renpy/common/00preferences.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00preferences.rpy -------------------------------------------------------------------------------- /renpy/common/00preferences.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00preferences.rpyc -------------------------------------------------------------------------------- /renpy/common/00sideimage.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00sideimage.rpy -------------------------------------------------------------------------------- /renpy/common/00sideimage.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00sideimage.rpyc -------------------------------------------------------------------------------- /renpy/common/00splines.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00splines.rpy -------------------------------------------------------------------------------- /renpy/common/00splines.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00splines.rpyc -------------------------------------------------------------------------------- /renpy/common/00start.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00start.rpy -------------------------------------------------------------------------------- /renpy/common/00start.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00start.rpyc -------------------------------------------------------------------------------- /renpy/common/00style.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00style.rpy -------------------------------------------------------------------------------- /renpy/common/00style.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00style.rpyc -------------------------------------------------------------------------------- /renpy/common/00stylepreferences.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00stylepreferences.rpy -------------------------------------------------------------------------------- /renpy/common/00stylepreferences.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00stylepreferences.rpyc -------------------------------------------------------------------------------- /renpy/common/00themes.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00themes.rpy -------------------------------------------------------------------------------- /renpy/common/00themes.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00themes.rpyc -------------------------------------------------------------------------------- /renpy/common/00updater.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00updater.rpy -------------------------------------------------------------------------------- /renpy/common/00updater.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00updater.rpyc -------------------------------------------------------------------------------- /renpy/common/00voice.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00voice.rpy -------------------------------------------------------------------------------- /renpy/common/00voice.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/00voice.rpyc -------------------------------------------------------------------------------- /renpy/common/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /renpy/common/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/DejaVuSans.ttf -------------------------------------------------------------------------------- /renpy/common/DejaVuSans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/DejaVuSans.txt -------------------------------------------------------------------------------- /renpy/common/_compat/gamemenu.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/gamemenu.rpym -------------------------------------------------------------------------------- /renpy/common/_compat/gamemenu.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/gamemenu.rpymc -------------------------------------------------------------------------------- /renpy/common/_compat/library.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/library.rpym -------------------------------------------------------------------------------- /renpy/common/_compat/library.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/library.rpymc -------------------------------------------------------------------------------- /renpy/common/_compat/mainmenu.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/mainmenu.rpym -------------------------------------------------------------------------------- /renpy/common/_compat/mainmenu.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/mainmenu.rpymc -------------------------------------------------------------------------------- /renpy/common/_compat/preferences.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/preferences.rpym -------------------------------------------------------------------------------- /renpy/common/_compat/preferences.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/preferences.rpymc -------------------------------------------------------------------------------- /renpy/common/_compat/styles.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/styles.rpym -------------------------------------------------------------------------------- /renpy/common/_compat/styles.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/styles.rpymc -------------------------------------------------------------------------------- /renpy/common/_compat/themes.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/themes.rpym -------------------------------------------------------------------------------- /renpy/common/_compat/themes.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_compat/themes.rpymc -------------------------------------------------------------------------------- /renpy/common/_developer.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_developer.rpymc -------------------------------------------------------------------------------- /renpy/common/_developer/developer.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_developer/developer.rpym -------------------------------------------------------------------------------- /renpy/common/_developer/developer.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_developer/developer.rpymc -------------------------------------------------------------------------------- /renpy/common/_developer/inspector.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_developer/inspector.rpym -------------------------------------------------------------------------------- /renpy/common/_developer/inspector.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_developer/inspector.rpymc -------------------------------------------------------------------------------- /renpy/common/_errorhandling.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_errorhandling.rpym -------------------------------------------------------------------------------- /renpy/common/_errorhandling.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_errorhandling.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/classic_joystick_preferences.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_joystick_preferences.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/classic_joystick_preferences.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_joystick_preferences.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/classic_load_save.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_load_save.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/classic_load_save.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_load_save.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/classic_main_menu.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_main_menu.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/classic_main_menu.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_main_menu.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/classic_navigation.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_navigation.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/classic_navigation.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_navigation.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/classic_preferences.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_preferences.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/classic_preferences.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_preferences.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/classic_preferences_common.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_preferences_common.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/classic_preferences_common.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_preferences_common.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/classic_yesno_prompt.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_yesno_prompt.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/classic_yesno_prompt.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/classic_yesno_prompt.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/grouped_main_menu.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/grouped_main_menu.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/grouped_navigation.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/grouped_navigation.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_common.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_common.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_common.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_common.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_load_save.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_load_save.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_load_save.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_load_save.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_main_menu.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_main_menu.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_main_menu.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_main_menu.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_navigation.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_navigation.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_navigation.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_navigation.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_preferences.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_preferences.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_preferences.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_preferences.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_yesno_prompt.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_yesno_prompt.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/imagemap_yesno_prompt.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/imagemap_yesno_prompt.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/one_column_preferences.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/one_column_preferences.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/screen_joystick_preferences.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_joystick_preferences.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/screen_joystick_preferences.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_joystick_preferences.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/screen_load_save.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_load_save.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/screen_load_save.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_load_save.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/screen_main_menu.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_main_menu.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/screen_main_menu.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_main_menu.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/screen_preferences.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_preferences.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/screen_preferences.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_preferences.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/screen_yesno_prompt.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_yesno_prompt.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/screen_yesno_prompt.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/screen_yesno_prompt.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/scrolling_load_save.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/scrolling_load_save.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/scrolling_load_save.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/scrolling_load_save.rpymc -------------------------------------------------------------------------------- /renpy/common/_layout/two_column_preferences.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/two_column_preferences.rpym -------------------------------------------------------------------------------- /renpy/common/_layout/two_column_preferences.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_layout/two_column_preferences.rpymc -------------------------------------------------------------------------------- /renpy/common/_outline/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_outline/bar.png -------------------------------------------------------------------------------- /renpy/common/_outline/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_outline/circle.png -------------------------------------------------------------------------------- /renpy/common/_outline/vbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_outline/vbar.png -------------------------------------------------------------------------------- /renpy/common/_placeholder/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_placeholder/boy.png -------------------------------------------------------------------------------- /renpy/common/_placeholder/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_placeholder/girl.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rr12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rr12.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rr12g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rr12g.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rr6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rr6.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rr6g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rr6g.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrslider_full.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrvscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrvscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrvscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrvscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrvslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrvslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrvslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrvslider_full.png -------------------------------------------------------------------------------- /renpy/common/_roundrect/rrvslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_roundrect/rrvslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_silence.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_silence.ogg -------------------------------------------------------------------------------- /renpy/common/_theme_amie2/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_amie2/bar.png -------------------------------------------------------------------------------- /renpy/common/_theme_amie2/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_amie2/button.png -------------------------------------------------------------------------------- /renpy/common/_theme_amie2/button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_amie2/button_hover.png -------------------------------------------------------------------------------- /renpy/common/_theme_amie2/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_amie2/frame.png -------------------------------------------------------------------------------- /renpy/common/_theme_amie2/hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_amie2/hover_bar.png -------------------------------------------------------------------------------- /renpy/common/_theme_amie2/hover_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_amie2/hover_frame.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/au_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/au_box.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auvscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auvscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auvscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auvscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auvslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auvslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auvslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auvslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_austen/auvslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_austen/auvslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/OFL.txt -------------------------------------------------------------------------------- /renpy/common/_theme_awt/Quicksand-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/Quicksand-Bold.ttf -------------------------------------------------------------------------------- /renpy/common/_theme_awt/Quicksand-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/Quicksand-Regular.ttf -------------------------------------------------------------------------------- /renpy/common/_theme_awt/bar_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/bar_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/bar_full_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/bar_full_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/bar_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/bar_thumb.gif -------------------------------------------------------------------------------- /renpy/common/_theme_awt/bar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/bar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/bar_thumb_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/bar_thumb_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/button.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/button_disabled_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/button_disabled_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/button_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/button_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/button_overlay_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/button_overlay_highlight.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/button_selected.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/button_selected_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/button_selected_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/button_selected_overlay_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/button_selected_overlay_highlight.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/frame.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/frame_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/radio_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/radio_base.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/radio_base_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/radio_base_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/radio_selected_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/radio_selected_hover.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/radio_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/radio_unselected.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/radio_unselected_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/radio_unselected_hover.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/scroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/scroller.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/scroller_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/scroller_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/slider_empty_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/slider_empty_all.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/slider_empty_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/slider_empty_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/slider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/slider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/slider_full_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/slider_full_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/v_bar_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/v_bar_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/v_bar_full_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/v_bar_full_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/v_bar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/v_bar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/v_bar_thumb_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/v_bar_thumb_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/vscroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/vscroller.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/vscroller_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/vscroller_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/vslider_empty_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/vslider_empty_all.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/vslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/vslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/vslider_full_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/vslider_full_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/vthumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/vthumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_awt/vthumb_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_awt/vthumb_overlay.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/br_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/br_box.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brvscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brvscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brvscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brvscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brvslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brvslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brvslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brvslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_bordered/brvslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_bordered/brvslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cry_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cry_box.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cry_box2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cry_box2.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryvscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryvscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryvscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryvscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryvslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryvslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryvslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryvslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/cryvslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/cryvslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_crayon/rr12g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_crayon/rr12g.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/d_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/d_box.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dvscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dvscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dvscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dvscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dvslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dvslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dvslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dvslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_diamond/dvslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_diamond/dvslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/g_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/g_box.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/g_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/g_outline.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gvscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gvscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gvscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gvscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gvslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gvslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gvslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gvslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_glow/gvslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_glow/gvslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/ink_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/ink_box.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkvscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkvscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkvscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkvscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkvslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkvslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkvslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkvslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_marker/inkvslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_marker/inkvslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/re_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/re_box.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/rescrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/rescrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/rescrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/rescrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/reslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/reslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/reslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/reslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/reslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/reslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/revscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/revscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/revscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/revscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/revslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/revslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/revslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/revslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_regal/revslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_regal/revslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/th_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/th_box.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thvscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thvscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thvscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thvscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thvslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thvslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thvslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thvslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_threeD/thvslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_threeD/thvslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/t_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/t_box.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tvscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tvscrollbar.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tvscrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tvscrollbar_thumb.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tvslider_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tvslider_empty.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tvslider_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tvslider_full.png -------------------------------------------------------------------------------- /renpy/common/_theme_tv/tvslider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_theme_tv/tvslider_thumb.png -------------------------------------------------------------------------------- /renpy/common/_transparent_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_transparent_tile.png -------------------------------------------------------------------------------- /renpy/common/_tv_unsafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/_tv_unsafe.png -------------------------------------------------------------------------------- /renpy/common/blindstile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/blindstile.png -------------------------------------------------------------------------------- /renpy/common/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/gamecontrollerdb.txt -------------------------------------------------------------------------------- /renpy/common/squarestile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/common/squarestile.png -------------------------------------------------------------------------------- /renpy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/config.py -------------------------------------------------------------------------------- /renpy/curry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/curry.py -------------------------------------------------------------------------------- /renpy/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/debug.py -------------------------------------------------------------------------------- /renpy/defaultstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/defaultstore.py -------------------------------------------------------------------------------- /renpy/display/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/__init__.py -------------------------------------------------------------------------------- /renpy/display/accelerator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/accelerator.pyx -------------------------------------------------------------------------------- /renpy/display/anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/anim.py -------------------------------------------------------------------------------- /renpy/display/behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/behavior.py -------------------------------------------------------------------------------- /renpy/display/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/controller.py -------------------------------------------------------------------------------- /renpy/display/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/core.py -------------------------------------------------------------------------------- /renpy/display/dragdrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/dragdrop.py -------------------------------------------------------------------------------- /renpy/display/emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/emulator.py -------------------------------------------------------------------------------- /renpy/display/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/error.py -------------------------------------------------------------------------------- /renpy/display/focus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/focus.py -------------------------------------------------------------------------------- /renpy/display/gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/gesture.py -------------------------------------------------------------------------------- /renpy/display/im.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/im.py -------------------------------------------------------------------------------- /renpy/display/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/image.py -------------------------------------------------------------------------------- /renpy/display/imagelike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/imagelike.py -------------------------------------------------------------------------------- /renpy/display/imagemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/imagemap.py -------------------------------------------------------------------------------- /renpy/display/joystick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/joystick.py -------------------------------------------------------------------------------- /renpy/display/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/layout.py -------------------------------------------------------------------------------- /renpy/display/minigame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/minigame.py -------------------------------------------------------------------------------- /renpy/display/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/module.py -------------------------------------------------------------------------------- /renpy/display/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/motion.py -------------------------------------------------------------------------------- /renpy/display/movetransition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/movetransition.py -------------------------------------------------------------------------------- /renpy/display/particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/particle.py -------------------------------------------------------------------------------- /renpy/display/pgrender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/pgrender.py -------------------------------------------------------------------------------- /renpy/display/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/predict.py -------------------------------------------------------------------------------- /renpy/display/presplash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/presplash.py -------------------------------------------------------------------------------- /renpy/display/render.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/render.pxd -------------------------------------------------------------------------------- /renpy/display/render.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/render.pyx -------------------------------------------------------------------------------- /renpy/display/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/scale.py -------------------------------------------------------------------------------- /renpy/display/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/screen.py -------------------------------------------------------------------------------- /renpy/display/swdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/swdraw.py -------------------------------------------------------------------------------- /renpy/display/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/transform.py -------------------------------------------------------------------------------- /renpy/display/transition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/transition.py -------------------------------------------------------------------------------- /renpy/display/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/tts.py -------------------------------------------------------------------------------- /renpy/display/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/video.py -------------------------------------------------------------------------------- /renpy/display/viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/display/viewport.py -------------------------------------------------------------------------------- /renpy/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/dump.py -------------------------------------------------------------------------------- /renpy/easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/easy.py -------------------------------------------------------------------------------- /renpy/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/editor.py -------------------------------------------------------------------------------- /renpy/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/error.py -------------------------------------------------------------------------------- /renpy/execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/execution.py -------------------------------------------------------------------------------- /renpy/exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/exports.py -------------------------------------------------------------------------------- /renpy/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/game.py -------------------------------------------------------------------------------- /renpy/gl/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | 3 | -------------------------------------------------------------------------------- /renpy/gl/gl.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/gl.pxd -------------------------------------------------------------------------------- /renpy/gl/gl.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/gl.pyx -------------------------------------------------------------------------------- /renpy/gl/gl1.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/gl1.pxd -------------------------------------------------------------------------------- /renpy/gl/gl1.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/gl1.pyx -------------------------------------------------------------------------------- /renpy/gl/glblacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/glblacklist.py -------------------------------------------------------------------------------- /renpy/gl/gldraw.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/gldraw.pxd -------------------------------------------------------------------------------- /renpy/gl/gldraw.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/gldraw.pyx -------------------------------------------------------------------------------- /renpy/gl/glenviron_fixed.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/glenviron_fixed.pyx -------------------------------------------------------------------------------- /renpy/gl/glenviron_limited.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/glenviron_limited.pyx -------------------------------------------------------------------------------- /renpy/gl/glenviron_shader.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/glenviron_shader.pyx -------------------------------------------------------------------------------- /renpy/gl/glrtt_copy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/glrtt_copy.pyx -------------------------------------------------------------------------------- /renpy/gl/glrtt_fbo.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/glrtt_fbo.pyx -------------------------------------------------------------------------------- /renpy/gl/gltexture.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/gltexture.pxd -------------------------------------------------------------------------------- /renpy/gl/gltexture.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/gl/gltexture.pyx -------------------------------------------------------------------------------- /renpy/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/lint.py -------------------------------------------------------------------------------- /renpy/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/loader.py -------------------------------------------------------------------------------- /renpy/loadsave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/loadsave.py -------------------------------------------------------------------------------- /renpy/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/log.py -------------------------------------------------------------------------------- /renpy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/main.py -------------------------------------------------------------------------------- /renpy/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/memory.py -------------------------------------------------------------------------------- /renpy/minstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/minstore.py -------------------------------------------------------------------------------- /renpy/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/object.py -------------------------------------------------------------------------------- /renpy/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/parser.py -------------------------------------------------------------------------------- /renpy/parsersupport.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/parsersupport.pyx -------------------------------------------------------------------------------- /renpy/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/performance.py -------------------------------------------------------------------------------- /renpy/persistent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/persistent.py -------------------------------------------------------------------------------- /renpy/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/preferences.py -------------------------------------------------------------------------------- /renpy/pyanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/pyanalysis.py -------------------------------------------------------------------------------- /renpy/pydict.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/pydict.pyx -------------------------------------------------------------------------------- /renpy/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/python.py -------------------------------------------------------------------------------- /renpy/savelocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/savelocation.py -------------------------------------------------------------------------------- /renpy/screenlang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/screenlang.py -------------------------------------------------------------------------------- /renpy/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/script.py -------------------------------------------------------------------------------- /renpy/scriptedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/scriptedit.py -------------------------------------------------------------------------------- /renpy/sl2/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | 3 | -------------------------------------------------------------------------------- /renpy/sl2/slast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/sl2/slast.py -------------------------------------------------------------------------------- /renpy/sl2/sldisplayables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/sl2/sldisplayables.py -------------------------------------------------------------------------------- /renpy/sl2/slparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/sl2/slparser.py -------------------------------------------------------------------------------- /renpy/sl2/slproperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/sl2/slproperties.py -------------------------------------------------------------------------------- /renpy/statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/statements.py -------------------------------------------------------------------------------- /renpy/style.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/style.pxd -------------------------------------------------------------------------------- /renpy/style.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/style.pyx -------------------------------------------------------------------------------- /renpy/styledata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/styledata/__init__.py -------------------------------------------------------------------------------- /renpy/styledata/styleclass.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/styledata/styleclass.pyx -------------------------------------------------------------------------------- /renpy/styledata/stylesets.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/styledata/stylesets.pyx -------------------------------------------------------------------------------- /renpy/styledata/styleutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/styledata/styleutil.py -------------------------------------------------------------------------------- /renpy/substitutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/substitutions.py -------------------------------------------------------------------------------- /renpy/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/test/__init__.py -------------------------------------------------------------------------------- /renpy/test/testast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/test/testast.py -------------------------------------------------------------------------------- /renpy/test/testexecution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/test/testexecution.py -------------------------------------------------------------------------------- /renpy/test/testfocus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/test/testfocus.py -------------------------------------------------------------------------------- /renpy/test/testkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/test/testkey.py -------------------------------------------------------------------------------- /renpy/test/testmouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/test/testmouse.py -------------------------------------------------------------------------------- /renpy/test/testparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/test/testparser.py -------------------------------------------------------------------------------- /renpy/text/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | 3 | -------------------------------------------------------------------------------- /renpy/text/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/text/extras.py -------------------------------------------------------------------------------- /renpy/text/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/text/font.py -------------------------------------------------------------------------------- /renpy/text/ftfont.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/text/ftfont.pyx -------------------------------------------------------------------------------- /renpy/text/linebreak.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/text/linebreak.pxi -------------------------------------------------------------------------------- /renpy/text/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/text/text.py -------------------------------------------------------------------------------- /renpy/text/textsupport.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/text/textsupport.pxd -------------------------------------------------------------------------------- /renpy/text/textsupport.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/text/textsupport.pyx -------------------------------------------------------------------------------- /renpy/text/texwrap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/text/texwrap.pyx -------------------------------------------------------------------------------- /renpy/translation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/translation/__init__.py -------------------------------------------------------------------------------- /renpy/translation/dialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/translation/dialogue.py -------------------------------------------------------------------------------- /renpy/translation/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/translation/extract.py -------------------------------------------------------------------------------- /renpy/translation/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/translation/generation.py -------------------------------------------------------------------------------- /renpy/translation/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/translation/merge.py -------------------------------------------------------------------------------- /renpy/translation/scanstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/translation/scanstrings.py -------------------------------------------------------------------------------- /renpy/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/ui.py -------------------------------------------------------------------------------- /renpy/vc_version.py: -------------------------------------------------------------------------------- 1 | vc_version = 1092 -------------------------------------------------------------------------------- /renpy/warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpy/warp.py -------------------------------------------------------------------------------- /renpytexteditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpytexteditor.py -------------------------------------------------------------------------------- /renpytexteditor.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpytexteditor.spec -------------------------------------------------------------------------------- /renpytexteditor.sublime-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/renpytexteditor.sublime-workspace -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/requirements.txt -------------------------------------------------------------------------------- /snippets/default_snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/snippets/default_snippets.json -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/snippets/snippets.json -------------------------------------------------------------------------------- /tests/keypress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/keypress.py -------------------------------------------------------------------------------- /tests/project/funkyfunk-v2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/funkyfunk-v2.wav -------------------------------------------------------------------------------- /tests/project/image2.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/junk/file_0.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_1.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_10.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_11.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_12.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_13.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_14.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_15.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_16.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_17.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_18.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_19.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_2.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_20.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_21.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_22.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_23.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_24.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_25.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_26.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_27.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_28.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_29.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_3.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_30.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_31.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_32.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_33.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_34.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_35.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_36.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_37.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_38.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_39.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_4.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_40.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_41.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_42.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_43.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_44.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_45.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_46.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_47.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_48.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_49.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_5.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_50.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_51.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_52.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_53.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_54.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_55.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_56.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_57.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_58.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_59.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_6.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_60.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_61.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_62.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_63.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_64.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_65.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_66.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_67.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_68.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_69.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_7.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_70.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_71.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_72.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_73.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_74.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_75.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_76.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_77.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_78.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_79.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_8.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_80.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_81.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_82.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_83.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_84.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_85.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_86.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_87.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_88.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_89.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_9.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_90.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_91.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_92.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_93.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_94.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_95.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_96.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_97.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_98.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/junk/file_99.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_arms_a_dressed_flex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_arms_a_dressed_flex.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_arms_a_dressed_hips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_arms_a_dressed_hips.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_arms_a_dressed_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_arms_a_dressed_point.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_arms_a_dressed_point_himself.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_arms_a_dressed_point_himself.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_arms_a_dressed_reject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_arms_a_dressed_reject.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_body_b_dressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_body_b_dressed.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_face_f_curious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_face_f_curious.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_face_f_curious_talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_face_f_curious_talk.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_face_f_curious_talk_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_face_f_curious_talk_back.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_face_f_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_face_f_normal.png -------------------------------------------------------------------------------- /tests/project/layeredimage/cedric_face_f_normal_talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/layeredimage/cedric_face_f_normal_talk.png -------------------------------------------------------------------------------- /tests/project/script.rpy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/sfx.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/test.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/test.rpy -------------------------------------------------------------------------------- /tests/project/test1/image.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/test1/music.mp3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/text_syntax_highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/project/text_syntax_highlight.py -------------------------------------------------------------------------------- /tests/properties_formatted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/properties_formatted.txt -------------------------------------------------------------------------------- /tests/pycodestyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/pycodestyle.py -------------------------------------------------------------------------------- /tests/setup_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/setup_tests.py -------------------------------------------------------------------------------- /tests/test_block_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/test_block_detect.py -------------------------------------------------------------------------------- /tests/test_canvas_thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/test_canvas_thing.py -------------------------------------------------------------------------------- /tests/test_editor_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/test_editor_window.py -------------------------------------------------------------------------------- /tests/test_keybinding_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/test_keybinding_widget.py -------------------------------------------------------------------------------- /tests/test_layeredimage_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/test_layeredimage_builder.py -------------------------------------------------------------------------------- /tests/test_options_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/test_options_window.py -------------------------------------------------------------------------------- /tests/test_project_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/test_project_manager.py -------------------------------------------------------------------------------- /tests/test_snippets_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/test_snippets_add.py -------------------------------------------------------------------------------- /tests/test_tree_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/test_tree_widget.py -------------------------------------------------------------------------------- /tests/the_question/android-icon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/android-icon_background.png -------------------------------------------------------------------------------- /tests/the_question/android-icon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/android-icon_foreground.png -------------------------------------------------------------------------------- /tests/the_question/game/cache/bytecode.rpyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/cache/bytecode.rpyb -------------------------------------------------------------------------------- /tests/the_question/game/cache/pyanalysis.rpyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/cache/pyanalysis.rpyb -------------------------------------------------------------------------------- /tests/the_question/game/cache/screens.rpyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/cache/screens.rpyb -------------------------------------------------------------------------------- /tests/the_question/game/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui.rpy -------------------------------------------------------------------------------- /tests/the_question/game/gui.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/gui/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/bar/bottom.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/bar/left.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/bar/right.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/bar/top.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/check_foreground.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/check_selected_foreground.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/choice_hover_background.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/choice_idle_background.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/hover_background.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/idle_background.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/quick_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/quick_hover_background.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/quick_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/quick_idle_background.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/radio_foreground.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/slot_hover_background.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/button/slot_idle_background.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/frame.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/game_menu.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/main_menu.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/namebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/namebox.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/notify.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/nvl.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/overlay/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/overlay/confirm.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/overlay/game_menu.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/overlay/main_menu.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/phone/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/phone/nvl.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/phone/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/phone/overlay/game_menu.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/phone/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/phone/overlay/main_menu.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/phone/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/phone/textbox.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/skip.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/textbox.png -------------------------------------------------------------------------------- /tests/the_question/game/gui/window_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/gui/window_icon.png -------------------------------------------------------------------------------- /tests/the_question/game/illurock.opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/illurock.opus -------------------------------------------------------------------------------- /tests/the_question/game/images/bg club.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/bg club.jpg -------------------------------------------------------------------------------- /tests/the_question/game/images/bg lecturehall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/bg lecturehall.jpg -------------------------------------------------------------------------------- /tests/the_question/game/images/bg meadow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/bg meadow.jpg -------------------------------------------------------------------------------- /tests/the_question/game/images/bg uni.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/bg uni.jpg -------------------------------------------------------------------------------- /tests/the_question/game/images/sylvie blue giggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/sylvie blue giggle.png -------------------------------------------------------------------------------- /tests/the_question/game/images/sylvie blue normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/sylvie blue normal.png -------------------------------------------------------------------------------- /tests/the_question/game/images/sylvie blue smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/sylvie blue smile.png -------------------------------------------------------------------------------- /tests/the_question/game/images/sylvie blue surprised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/sylvie blue surprised.png -------------------------------------------------------------------------------- /tests/the_question/game/images/sylvie green giggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/sylvie green giggle.png -------------------------------------------------------------------------------- /tests/the_question/game/images/sylvie green normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/sylvie green normal.png -------------------------------------------------------------------------------- /tests/the_question/game/images/sylvie green smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/sylvie green smile.png -------------------------------------------------------------------------------- /tests/the_question/game/images/sylvie green surprised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/images/sylvie green surprised.png -------------------------------------------------------------------------------- /tests/the_question/game/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/options.rpy -------------------------------------------------------------------------------- /tests/the_question/game/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/options.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/screens.rpy -------------------------------------------------------------------------------- /tests/the_question/game/screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/screens.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/script.rpy -------------------------------------------------------------------------------- /tests/the_question/game/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/script.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/None/common.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/None/common.rpym -------------------------------------------------------------------------------- /tests/the_question/game/tl/None/common.rpymc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/None/common.rpymc -------------------------------------------------------------------------------- /tests/the_question/game/tl/french/common.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/french/common.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/french/common.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/french/common.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/french/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/french/options.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/french/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/french/options.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/french/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/french/screens.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/french/screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/french/screens.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/french/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/french/script.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/french/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/french/script.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/korean/common.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/korean/common.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/korean/common.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/korean/common.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/korean/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/korean/options.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/korean/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/korean/options.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/korean/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/korean/screens.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/korean/screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/korean/screens.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/korean/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/korean/script.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/korean/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/korean/script.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/malay/common.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/malay/common.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/malay/common.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/malay/common.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/malay/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/malay/options.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/malay/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/malay/options.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/malay/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/malay/screens.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/malay/screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/malay/screens.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/malay/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/malay/script.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/malay/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/malay/script.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/russian/common.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/russian/common.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/russian/common.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/russian/common.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/russian/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/russian/options.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/russian/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/russian/options.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/russian/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/russian/screens.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/russian/screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/russian/screens.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/russian/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/russian/script.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/russian/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/russian/script.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/simplified_chinese/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/simplified_chinese/options.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/simplified_chinese/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/simplified_chinese/options.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/simplified_chinese/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/simplified_chinese/screens.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/simplified_chinese/screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/simplified_chinese/screens.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/simplified_chinese/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/simplified_chinese/script.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/simplified_chinese/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/simplified_chinese/script.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/traditional_chinese/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/traditional_chinese/options.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/traditional_chinese/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/traditional_chinese/options.rpyc -------------------------------------------------------------------------------- /tests/the_question/game/tl/traditional_chinese/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/traditional_chinese/script.rpy -------------------------------------------------------------------------------- /tests/the_question/game/tl/traditional_chinese/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/game/tl/traditional_chinese/script.rpyc -------------------------------------------------------------------------------- /tests/the_question/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/icon.icns -------------------------------------------------------------------------------- /tests/the_question/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/icon.ico -------------------------------------------------------------------------------- /tests/the_question/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/the_question/project.json -------------------------------------------------------------------------------- /tests/tkvlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/tests/tkvlc.py -------------------------------------------------------------------------------- /themes/monokai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbordeyne/renpy-text-editor/HEAD/themes/monokai.json --------------------------------------------------------------------------------