├── .bzrignore ├── .bzrrules ├── .ci-build.yml ├── .clang-format ├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── builds.yml ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL.md ├── README.md ├── RELEASE-NOTES ├── TODO ├── cmake ├── XiphosBuildTools.cmake ├── XiphosConfig_h.cmake ├── XiphosDependencies.cmake ├── XiphosFlags.cmake ├── XiphosOptions.cmake ├── XiphosReport.cmake ├── config.h.cmake.in ├── modules │ ├── FindBiblesync.cmake │ ├── GetGitRevisionDescription.cmake │ └── GetGitRevisionDescription.cmake.in └── source_version.txt ├── cpack ├── CMakeLists.txt ├── debian │ ├── XiphosDebianPkg.cmake │ ├── copyright │ └── debian.desc ├── fedora │ ├── XiphosRPMPkg.cmake │ ├── xiphos.changelog.in │ └── xiphos.spec.in ├── windows │ ├── XiphosWindowsPkg.cmake │ ├── fonts │ │ ├── FreeSans.ttf │ │ ├── FreeSansBold.ttf │ │ ├── FreeSansBoldOblique.ttf │ │ ├── FreeSansOblique.ttf │ │ ├── FreeSerif.ttf │ │ ├── FreeSerifBold.ttf │ │ ├── FreeSerifBoldItalic.ttf │ │ ├── FreeSerifItalic.ttf │ │ ├── LinLibertine_BI.ttf │ │ ├── LinLibertine_Bd.ttf │ │ ├── LinLibertine_It.ttf │ │ ├── LinLibertine_Re.ttf │ │ └── unifont-5.1.20080907.ttf │ ├── include │ │ ├── fontreg.nsh │ │ ├── nsis_extra_install_commands.nsh.in │ │ ├── nsis_extra_uninstall_commands.nsh.in │ │ └── nsis_installer_mui_icon_code.nsh.in │ └── pixmaps │ │ ├── header-r.bmp │ │ ├── header-r.svg │ │ ├── header-uninstall-r.bmp │ │ ├── header-uninstall.bmp │ │ ├── header.bmp │ │ ├── header.svg │ │ ├── icon-install.ico │ │ ├── icon-uninstall.ico │ │ ├── icon-uninstall.svg │ │ ├── makeBMPs.sh │ │ ├── wizard-uninstall.bmp │ │ ├── wizard.bmp │ │ └── wizard.png └── xiphos.desc ├── desktop ├── CMakeLists.txt ├── xiphos-nav.1.in ├── xiphos.1.in ├── xiphos.appdata.xml ├── xiphos.desktop.in └── xiphos.svg ├── doc ├── CMakeLists.txt ├── Translating-Xiphos.md ├── Writing Xiphos Manual.md ├── Xiphos.ogg ├── i18n reminder for developers.md └── targets for developpers.md ├── help ├── C │ ├── figures │ │ ├── first_start.png │ │ ├── gtkhtml3-vs-mozembed.png │ │ ├── index_all_pngs.py │ │ ├── interface.png │ │ ├── interface_biblepane-options.png │ │ ├── interface_biblepane.png │ │ ├── interface_commentarypane.png │ │ ├── interface_dictionary.png │ │ ├── interface_menubar-view.png │ │ ├── interface_menubar.png │ │ ├── interface_parallel-separate.png │ │ ├── interface_parallel.png │ │ ├── interface_searchpane.png │ │ ├── interface_shortcut.png │ │ ├── interface_sidepane.png │ │ ├── interface_toolbar.png │ │ ├── interface_viewer.png │ │ ├── journal.png │ │ ├── module-overview.png │ │ ├── module.png │ │ ├── personal.png │ │ ├── preferences.png │ │ ├── preferences_fonts-color.png │ │ ├── preferences_fonts-misc.png │ │ ├── preferences_general-biblesync.png │ │ ├── preferences_general-misc.png │ │ ├── preferences_modules-misc.png │ │ ├── preferences_modules-parallel.png │ │ ├── search_search.png │ │ ├── studypad.png │ │ ├── sword3.png │ │ ├── sword_config.png │ │ ├── sword_install.png │ │ ├── sword_remove.png │ │ ├── sword_sources.png │ │ ├── xiphos-icon.png │ │ └── xiphos-trail-icon.png │ ├── index.page │ ├── legal.xml │ ├── xiphos-01-introduction.page │ ├── xiphos-02-shortcut-keys.page │ ├── xiphos-10-start.page │ ├── xiphos-11-interface.page │ ├── xiphos-20-modules-introduction.page │ ├── xiphos-21-modules-configuration.page │ ├── xiphos-22-modules-install.page │ ├── xiphos-23-modules-maintenance.page │ ├── xiphos-24-modules-third-party.page │ ├── xiphos-30-search.page │ ├── xiphos-31-advanced-search.page │ ├── xiphos-32-search-syntax.page │ ├── xiphos-33-original-language.page │ ├── xiphos-40-personal-commentary.page │ ├── xiphos-41-studypad.page │ ├── xiphos-42-journals.page │ ├── xiphos-50-preferences-general-settings.page │ ├── xiphos-51-preferences-biblesync.page │ ├── xiphos-52-preferences-fonts-colors.page │ ├── xiphos-53-preferences-modules.page │ ├── xiphos-60-online-help.page │ └── xiphos-90-credits.page ├── CMakeLists.txt ├── HELP_LINGUAS ├── fa │ ├── fa.po │ └── figures │ │ ├── TODO │ │ ├── biblepane-options.png │ │ ├── first_start.png │ │ ├── gtkhtml3-vs-mozembed.png │ │ ├── interface.png │ │ ├── interface_biblepane-options.png │ │ ├── interface_biblepane.png │ │ ├── interface_commentarypane.png │ │ ├── interface_dictionary.png │ │ ├── interface_menubar-view.png │ │ ├── interface_menubar.png │ │ ├── interface_parallel-separate.png │ │ ├── interface_parallel.png │ │ ├── interface_searchpane.png │ │ ├── interface_shortcut.png │ │ ├── interface_sidepane.png │ │ ├── interface_toolbar.png │ │ ├── interface_viewer.png │ │ ├── journal.png │ │ ├── module.png │ │ ├── personal.png │ │ ├── preferences.png │ │ ├── preferences_fonts-color.png │ │ ├── preferences_fonts-misc.png │ │ ├── preferences_general-misc.png │ │ ├── preferences_general-tabs.png │ │ ├── preferences_modules-main.png │ │ ├── preferences_modules-misc.png │ │ ├── preferences_modules-parallel.png │ │ ├── search_search.png │ │ ├── studypad.png │ │ ├── sword3.png │ │ ├── sword_config.png │ │ ├── sword_install.png │ │ ├── sword_remove.png │ │ └── sword_sources.png ├── fr │ ├── figures │ │ ├── first_start.png │ │ ├── gtkhtml3-vs-mozembed.png │ │ ├── interface.png │ │ ├── interface_biblepane-options.png │ │ ├── interface_biblepane.png │ │ ├── interface_commentarypane.png │ │ ├── interface_dictionary.png │ │ ├── interface_menubar-view.png │ │ ├── interface_menubar.png │ │ ├── interface_parallel-separate.png │ │ ├── interface_parallel.png │ │ ├── interface_searchpane.png │ │ ├── interface_shortcut.png │ │ ├── interface_sidepane.png │ │ ├── interface_toolbar.png │ │ ├── interface_viewer.png │ │ ├── journal.png │ │ ├── module-overview.png │ │ ├── module.png │ │ ├── personal.png │ │ ├── preferences.png │ │ ├── preferences_fonts-color.png │ │ ├── preferences_fonts-misc.png │ │ ├── preferences_general-biblesync.png │ │ ├── preferences_general-misc.png │ │ ├── preferences_modules-misc.png │ │ ├── preferences_modules-parallel.png │ │ ├── search_search.png │ │ ├── studypad.png │ │ ├── sword3.png │ │ ├── sword_config.png │ │ ├── sword_install.png │ │ ├── sword_remove.png │ │ └── sword_sources.png │ └── fr.po ├── it │ ├── figures │ │ ├── first_start.png │ │ ├── interface.png │ │ ├── interface_biblepane-options.png │ │ ├── interface_biblepane.png │ │ ├── interface_commentarypane.png │ │ ├── interface_dictionary.png │ │ ├── interface_menubar-view.png │ │ ├── interface_menubar.png │ │ ├── interface_parallel-separate.png │ │ ├── interface_parallel.png │ │ ├── interface_searchpane.png │ │ ├── interface_shortcut.png │ │ ├── interface_sidepane.png │ │ ├── interface_toolbar.png │ │ ├── interface_viewer.png │ │ ├── journal.png │ │ ├── module-overview.png │ │ ├── module.png │ │ ├── preferences.png │ │ ├── preferences_fonts-color.png │ │ ├── preferences_fonts-misc.png │ │ ├── preferences_general-biblesync.png │ │ ├── preferences_general-misc.png │ │ ├── preferences_modules-misc.png │ │ ├── preferences_modules-parallel.png │ │ ├── search_search.png │ │ ├── sword_config.png │ │ ├── sword_install.png │ │ ├── sword_remove.png │ │ └── sword_sources.png │ └── it.po ├── xiphos.pot └── xml │ ├── html.css.custom.xsl │ ├── mal2hh.xsl │ └── mallard-1.0.rng ├── pixmaps ├── CMakeLists.txt ├── about.png ├── book_closed.png ├── book_closed_rtol.png ├── book_open.png ├── book_open_rtol.png ├── chat_icon-16.png ├── dlg-un-16.png ├── dlg-un.png ├── epiphany-bookmark-page.png ├── epiphany-bookmarks.png ├── epiphany-secure.png ├── epiphany-unsecure.png ├── gnome-session.png ├── gnome-window-manager.png ├── gnome-windows.png ├── gs2-48x48-old.ico ├── gs2-48x48-old.png ├── gs2-48x48.ico ├── gs2-48x48.png ├── gs2.xpm ├── indexed-16.png ├── indexed.png ├── init-settings.png ├── logo.png ├── mailing_list_icon-16.png ├── mozilla-icon.png ├── new_tab_button.png ├── screenshots │ ├── README.md │ ├── advanced-search.jpg │ ├── global-display-options.jpg │ ├── main-window.jpg │ ├── module-display-options.jpg │ ├── module-manager.jpg │ └── parallel-display.jpg ├── silk-edit-bookmarks.png ├── splash.png ├── sword-big.png ├── sword.png ├── sword_icon-16.png ├── translation_icon-16.png ├── tt.png ├── window-close.png ├── xiphos-button-125.png ├── xiphos-x-16.png ├── xiphos.svg └── xiphos.xpm ├── po ├── CMakeLists.txt ├── ChangeLog ├── Guidelines ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── ar.po ├── bg.po ├── cs.po ├── cy.po ├── da.po ├── de.po ├── en_GB.po ├── es.po ├── fa.po ├── fi.po ├── fr.po ├── he.po ├── hu.po ├── it.po ├── ja.po ├── ko_KR.po ├── lt.po ├── lv.po ├── my.po ├── nb.po ├── nl.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── sk.po ├── sl.po ├── sv.po ├── tr.po ├── uk.po ├── vi_VN.po ├── xiphos.pot ├── zh_CN.po └── zh_TW.po ├── src ├── backend │ ├── CMakeLists.txt │ ├── gs_stringmgr.cpp │ ├── gs_stringmgr.h │ ├── module_manager.cc │ ├── module_manager.hh │ ├── sword_main.cc │ └── sword_main.hh ├── editor │ ├── CMakeLists.txt │ ├── editor.c │ ├── editor.h │ ├── link_dialog.c │ ├── link_dialog.h │ ├── slib-editor.c │ ├── slib-editor.h │ ├── template.h │ ├── webkit_editor.c │ └── webkit_editor.h ├── examples │ ├── CMakeLists.txt │ ├── Makefile │ ├── ipc_client.c │ ├── ipc_client.py │ ├── marshal.list │ └── xiphos-nav.c ├── gtk │ ├── CMakeLists.txt │ ├── about_modules.c │ ├── about_sword.c │ ├── about_trans.c │ ├── about_xiphos.c │ ├── bibletext.c │ ├── bibletext_dialog.c │ ├── bookmark_dialog.c │ ├── bookmarks_menu.c │ ├── bookmarks_treeview.c │ ├── cipher_key_dialog.c │ ├── commentary.c │ ├── commentary_dialog.c │ ├── dialog.c │ ├── dictlex.c │ ├── dictlex_dialog.c │ ├── display_info.c │ ├── dummy.cpp │ ├── export_bookmarks.c │ ├── export_dialog.c │ ├── find_dialog.c │ ├── font_dialog.c │ ├── gbs.c │ ├── gbs_dialog.c │ ├── gui.c │ ├── ipc-interface.xml │ ├── ipc.c │ ├── main_menu.c │ ├── main_window.c │ ├── marshal.list │ ├── menu_popup.c │ ├── mod_mgr.c │ ├── navbar_book.c │ ├── navbar_book_dialog.c │ ├── navbar_versekey.c │ ├── navbar_versekey_dialog.c │ ├── navbar_versekey_editor.c │ ├── navbar_versekey_parallel.c │ ├── parallel_dialog.c │ ├── parallel_tab.c │ ├── parallel_view.c │ ├── preferences_dialog.c │ ├── search_dialog.c │ ├── search_sidebar.c │ ├── sidebar.c │ ├── sidebar_dialog.c │ ├── splash.c │ ├── tabbed_browser.c │ ├── treekey-editor.c │ ├── utilities.c │ └── xiphos.c ├── gui │ ├── about_modules.h │ ├── about_sword.h │ ├── about_trans.h │ ├── about_xiphos.h │ ├── bibletext.h │ ├── bibletext_dialog.h │ ├── bookmark_dialog.h │ ├── bookmarks.h │ ├── bookmarks_menu.h │ ├── bookmarks_treeview.h │ ├── cipher_key_dialog.h │ ├── commentary.h │ ├── commentary_dialog.h │ ├── debug_glib_null.h │ ├── dialog.h │ ├── dictlex.h │ ├── dictlex_dialog.h │ ├── display_info.h │ ├── export_bookmarks.h │ ├── export_dialog.h │ ├── find_dialog.h │ ├── font_dialog.h │ ├── gbs.h │ ├── gbs_dialog.h │ ├── gui.h │ ├── ipc.h │ ├── main_menu.h │ ├── main_window.h │ ├── menu_popup.h │ ├── mod_mgr.h │ ├── navbar_book.h │ ├── navbar_book_dialog.h │ ├── navbar_versekey.h │ ├── navbar_versekey_dialog.h │ ├── navbar_versekey_editor.h │ ├── navbar_versekey_parallel.h │ ├── parallel_dialog.h │ ├── parallel_tab.h │ ├── parallel_view.h │ ├── preferences_dialog.h │ ├── search_dialog.h │ ├── search_sidebar.h │ ├── sidebar.h │ ├── sidebar_dialog.h │ ├── splash.h │ ├── tabbed_browser.h │ ├── treekey-editor.h │ ├── utilities.h │ ├── widgets.h │ └── xiphos.h ├── main │ ├── CMakeLists.txt │ ├── biblesync_glue.cc │ ├── biblesync_glue.h │ ├── configs.cc │ ├── configs.h │ ├── cpp-errors.txt │ ├── display.cc │ ├── display.hh │ ├── export_passage.cc │ ├── export_passage.h │ ├── global_ops.cc │ ├── global_ops.hh │ ├── gtk_compat.h │ ├── lists.cc │ ├── lists.h │ ├── main.c │ ├── mod_mgr.cc │ ├── mod_mgr.h │ ├── module_dialogs.cc │ ├── module_dialogs.h │ ├── modulecache.cc │ ├── modulecache.hh │ ├── navbar.cc │ ├── navbar.h │ ├── navbar_book.cc │ ├── navbar_book.h │ ├── navbar_book_dialog.cc │ ├── navbar_book_dialog.h │ ├── navbar_versekey.cc │ ├── navbar_versekey.h │ ├── parallel_view.cc │ ├── parallel_view.h │ ├── prayerlists.cc │ ├── prayerlists.h │ ├── previewer.cc │ ├── previewer.h │ ├── search_dialog.cc │ ├── search_dialog.h │ ├── search_sidebar.cc │ ├── search_sidebar.h │ ├── settings.c │ ├── settings.h │ ├── sidebar.cc │ ├── sidebar.h │ ├── sword.cc │ ├── sword.h │ ├── sword_treekey.cc │ ├── sword_treekey.h │ ├── tab_history.c │ ├── tab_history.h │ ├── url.cc │ ├── url.hh │ ├── xml.c │ └── xml.h ├── webkit │ ├── CMakeLists.txt │ ├── marshal.list │ ├── wk-html.c │ └── wk-html.h └── xiphos_html │ ├── CMakeLists.txt │ ├── marshal.list │ ├── xiphos_html.c │ └── xiphos_html.h ├── ui ├── CMakeLists.txt ├── arrow_down.png ├── arrow_down_box.png ├── arrow_up.png ├── arrow_up_box.png ├── biblesync-v1-30.png ├── biblesync-v1-50.png ├── biblesync_icon-16.png ├── bookmarks.glade ├── bookmarks.gtkbuilder ├── chat_icon-16.png ├── dlg-un-16.png ├── editor_link_dialog.glade ├── editor_link_dialog.gtkbuilder ├── editor_note.xml ├── editor_studypad.xml ├── epiphany-bookmarks.png ├── export-dialog.glade ├── export-dialog.gtkbuilder ├── gnome-session.png ├── gnome-sound-properties.png ├── gnome-windows.png ├── gs2-48x48-old.png ├── gtk2_webedit.ui ├── gtk_webedit.ui ├── languages ├── logo.png ├── mailing_list_icon-16.png ├── markverse.glade ├── markverse.gtkbuilder ├── module-manager.glade ├── module-manager.gtkbuilder ├── navbar_versekey.glade ├── navbar_versekey.gtkbuilder ├── new_tab_button.png ├── prefs.glade ├── prefs.gtkbuilder ├── search-dialog.glade ├── search-dialog.gtkbuilder ├── selector-prefs.glade ├── selector-prefs.gtkbuilder ├── silk-edit-bookmarks.png ├── sword.png ├── sword3.png ├── sword_icon-16.png ├── translation_icon-16.png ├── wscript_build ├── xi-export-bookmarks.glade ├── xi-menus-popup.gtkbuilder ├── xi-menus.glade ├── xi-menus.gtkbuilder ├── xi-splash.gtkbuilder └── xiphos-x-16.png ├── win32 ├── CMakeLists.txt ├── Dockerfile ├── WindowsBuildNotes.txt ├── bin │ ├── sword.conf │ └── utils.bat ├── build_sword.sh ├── etc │ └── gtk-2.0 │ │ └── gtkrc ├── festival │ ├── festival.exe │ ├── festival_client.exe │ └── lib │ │ ├── Makefile │ │ ├── Sable.v0_2.dtd │ │ ├── Singing.v0_1.dtd │ │ ├── VCLocalRules │ │ ├── VCMakefile │ │ ├── apml.scm │ │ ├── apml_f2bf0lr.scm │ │ ├── apml_kaldurtreeZ.scm │ │ ├── cart_aux.scm │ │ ├── clunits.scm │ │ ├── clunits_build.scm │ │ ├── cmusphinx2_phones.scm │ │ ├── cslush.scm │ │ ├── cstr.scm │ │ ├── darpa_phones.scm │ │ ├── dicts │ │ ├── COPYING.poslex │ │ ├── cmu │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── allowables.scm │ │ │ ├── cmu2ft │ │ │ ├── cmu_lts_rules.scm │ │ │ ├── cmudict-0.4.diff │ │ │ ├── cmudict-0.4.out │ │ │ ├── cmudict-0.4.scm │ │ │ ├── cmudict_extensions.scm │ │ │ └── cmulex.scm │ │ ├── wsj.wp39.poslexR │ │ └── wsj.wp39.tri.ngrambin │ │ ├── display.scm │ │ ├── duration.scm │ │ ├── email-mode.scm │ │ ├── engmorph.scm │ │ ├── engmorphsyn.scm │ │ ├── etc │ │ ├── Makefile │ │ ├── VCMakefile │ │ └── email_filter │ │ ├── f2bdurtreeZ.scm │ │ ├── f2bf0lr.scm │ │ ├── festdoc.scm │ │ ├── festival.el │ │ ├── festival.scm │ │ ├── festtest.scm │ │ ├── fringe.scm │ │ ├── gswdurtreeZ.scm │ │ ├── holmes_phones.scm │ │ ├── hts.scm │ │ ├── init.scm │ │ ├── intonation.scm │ │ ├── java.scm │ │ ├── klatt_durs.scm │ │ ├── languages.scm │ │ ├── lexicons.scm │ │ ├── lts.scm │ │ ├── lts_build.scm │ │ ├── mbrola.scm │ │ ├── mettree.scm │ │ ├── module_description.scm │ │ ├── mrpa_allophones.scm │ │ ├── mrpa_durs.scm │ │ ├── mrpa_phones.scm │ │ ├── multisyn │ │ ├── Makefile │ │ ├── VCMakefile │ │ ├── multisyn.scm │ │ ├── multisyn_pauses.scm │ │ ├── radio_phones_multisyn.scm │ │ ├── send_xwaves.scm │ │ └── target_cost.scm │ │ ├── ogimarkup-mode.scm │ │ ├── pauses.scm │ │ ├── phoneset.scm │ │ ├── phrase.scm │ │ ├── pos.scm │ │ ├── postlex.scm │ │ ├── radio_phones.scm │ │ ├── sable-latin.ent │ │ ├── sable-mode.scm │ │ ├── scfg.scm │ │ ├── scfg_wsj_wp20.gram │ │ ├── sec.B.hept.ngrambin │ │ ├── sec.ts20.quad.ngrambin │ │ ├── singing-mode.scm │ │ ├── siod.scm │ │ ├── siteinit.scm │ │ ├── soleml-mode.scm │ │ ├── speech.properties │ │ ├── synthesis.scm │ │ ├── tilt.scm │ │ ├── tobi.scm │ │ ├── tobi_rules.scm │ │ ├── token.scm │ │ ├── tokenpos.scm │ │ ├── tts.scm │ │ ├── unilex_phones.scm │ │ ├── voices.scm │ │ ├── voices │ │ └── english │ │ │ └── ked_diphone │ │ │ ├── COPYING │ │ │ ├── festvox │ │ │ ├── kddurtreeZ.scm │ │ │ └── ked_diphone.scm │ │ │ └── group │ │ │ └── kedlpc16k.group │ │ └── web.scm ├── include │ └── X11 │ │ └── keysymdef.h ├── po │ └── fa.po ├── res │ └── xiphos-winres.rc.in ├── share │ └── icons │ │ └── gnome │ │ ├── 16x16 │ │ └── stock │ │ │ ├── object │ │ │ └── stock_insert-rule.png │ │ │ ├── table │ │ │ ├── stock_insert-cells.png │ │ │ └── stock_insert-table.png │ │ │ └── text │ │ │ └── stock_text-monospaced.png │ │ └── scalable │ │ ├── actions │ │ └── insert-link.svg │ │ └── apps │ │ └── xiphos.svg └── xc-xiphos-win.sh └── xiphos.doap.rdf /.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/.bzrignore -------------------------------------------------------------------------------- /.bzrrules: -------------------------------------------------------------------------------- 1 | [name wscript] 2 | keywords = on 3 | -------------------------------------------------------------------------------- /.ci-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/.ci-build.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | win32/extras/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/.github/workflows/builds.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/RELEASE-NOTES -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/TODO -------------------------------------------------------------------------------- /cmake/XiphosBuildTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/XiphosBuildTools.cmake -------------------------------------------------------------------------------- /cmake/XiphosConfig_h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/XiphosConfig_h.cmake -------------------------------------------------------------------------------- /cmake/XiphosDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/XiphosDependencies.cmake -------------------------------------------------------------------------------- /cmake/XiphosFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/XiphosFlags.cmake -------------------------------------------------------------------------------- /cmake/XiphosOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/XiphosOptions.cmake -------------------------------------------------------------------------------- /cmake/XiphosReport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/XiphosReport.cmake -------------------------------------------------------------------------------- /cmake/config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/config.h.cmake.in -------------------------------------------------------------------------------- /cmake/modules/FindBiblesync.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/modules/FindBiblesync.cmake -------------------------------------------------------------------------------- /cmake/modules/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/modules/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/modules/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cmake/modules/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /cmake/source_version.txt: -------------------------------------------------------------------------------- 1 | 4.3.2 -------------------------------------------------------------------------------- /cpack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/CMakeLists.txt -------------------------------------------------------------------------------- /cpack/debian/XiphosDebianPkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/debian/XiphosDebianPkg.cmake -------------------------------------------------------------------------------- /cpack/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/debian/copyright -------------------------------------------------------------------------------- /cpack/debian/debian.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/debian/debian.desc -------------------------------------------------------------------------------- /cpack/fedora/XiphosRPMPkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/fedora/XiphosRPMPkg.cmake -------------------------------------------------------------------------------- /cpack/fedora/xiphos.changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/fedora/xiphos.changelog.in -------------------------------------------------------------------------------- /cpack/fedora/xiphos.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/fedora/xiphos.spec.in -------------------------------------------------------------------------------- /cpack/windows/XiphosWindowsPkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/XiphosWindowsPkg.cmake -------------------------------------------------------------------------------- /cpack/windows/fonts/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/FreeSans.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/FreeSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/FreeSansBold.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/FreeSansBoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/FreeSansBoldOblique.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/FreeSansOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/FreeSansOblique.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/FreeSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/FreeSerif.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/FreeSerifBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/FreeSerifBold.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/FreeSerifBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/FreeSerifBoldItalic.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/FreeSerifItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/FreeSerifItalic.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/LinLibertine_BI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/LinLibertine_BI.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/LinLibertine_Bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/LinLibertine_Bd.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/LinLibertine_It.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/LinLibertine_It.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/LinLibertine_Re.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/LinLibertine_Re.ttf -------------------------------------------------------------------------------- /cpack/windows/fonts/unifont-5.1.20080907.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/fonts/unifont-5.1.20080907.ttf -------------------------------------------------------------------------------- /cpack/windows/include/fontreg.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/include/fontreg.nsh -------------------------------------------------------------------------------- /cpack/windows/include/nsis_extra_install_commands.nsh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/include/nsis_extra_install_commands.nsh.in -------------------------------------------------------------------------------- /cpack/windows/include/nsis_extra_uninstall_commands.nsh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/include/nsis_extra_uninstall_commands.nsh.in -------------------------------------------------------------------------------- /cpack/windows/include/nsis_installer_mui_icon_code.nsh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/include/nsis_installer_mui_icon_code.nsh.in -------------------------------------------------------------------------------- /cpack/windows/pixmaps/header-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/header-r.bmp -------------------------------------------------------------------------------- /cpack/windows/pixmaps/header-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/header-r.svg -------------------------------------------------------------------------------- /cpack/windows/pixmaps/header-uninstall-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/header-uninstall-r.bmp -------------------------------------------------------------------------------- /cpack/windows/pixmaps/header-uninstall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/header-uninstall.bmp -------------------------------------------------------------------------------- /cpack/windows/pixmaps/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/header.bmp -------------------------------------------------------------------------------- /cpack/windows/pixmaps/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/header.svg -------------------------------------------------------------------------------- /cpack/windows/pixmaps/icon-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/icon-install.ico -------------------------------------------------------------------------------- /cpack/windows/pixmaps/icon-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/icon-uninstall.ico -------------------------------------------------------------------------------- /cpack/windows/pixmaps/icon-uninstall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/icon-uninstall.svg -------------------------------------------------------------------------------- /cpack/windows/pixmaps/makeBMPs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/makeBMPs.sh -------------------------------------------------------------------------------- /cpack/windows/pixmaps/wizard-uninstall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/wizard-uninstall.bmp -------------------------------------------------------------------------------- /cpack/windows/pixmaps/wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/wizard.bmp -------------------------------------------------------------------------------- /cpack/windows/pixmaps/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/windows/pixmaps/wizard.png -------------------------------------------------------------------------------- /cpack/xiphos.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/cpack/xiphos.desc -------------------------------------------------------------------------------- /desktop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/desktop/CMakeLists.txt -------------------------------------------------------------------------------- /desktop/xiphos-nav.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/desktop/xiphos-nav.1.in -------------------------------------------------------------------------------- /desktop/xiphos.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/desktop/xiphos.1.in -------------------------------------------------------------------------------- /desktop/xiphos.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/desktop/xiphos.appdata.xml -------------------------------------------------------------------------------- /desktop/xiphos.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/desktop/xiphos.desktop.in -------------------------------------------------------------------------------- /desktop/xiphos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/desktop/xiphos.svg -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Translating-Xiphos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/doc/Translating-Xiphos.md -------------------------------------------------------------------------------- /doc/Writing Xiphos Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/doc/Writing Xiphos Manual.md -------------------------------------------------------------------------------- /doc/Xiphos.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/doc/Xiphos.ogg -------------------------------------------------------------------------------- /doc/i18n reminder for developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/doc/i18n reminder for developers.md -------------------------------------------------------------------------------- /doc/targets for developpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/doc/targets for developpers.md -------------------------------------------------------------------------------- /help/C/figures/first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/first_start.png -------------------------------------------------------------------------------- /help/C/figures/gtkhtml3-vs-mozembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/gtkhtml3-vs-mozembed.png -------------------------------------------------------------------------------- /help/C/figures/index_all_pngs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/index_all_pngs.py -------------------------------------------------------------------------------- /help/C/figures/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface.png -------------------------------------------------------------------------------- /help/C/figures/interface_biblepane-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_biblepane-options.png -------------------------------------------------------------------------------- /help/C/figures/interface_biblepane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_biblepane.png -------------------------------------------------------------------------------- /help/C/figures/interface_commentarypane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_commentarypane.png -------------------------------------------------------------------------------- /help/C/figures/interface_dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_dictionary.png -------------------------------------------------------------------------------- /help/C/figures/interface_menubar-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_menubar-view.png -------------------------------------------------------------------------------- /help/C/figures/interface_menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_menubar.png -------------------------------------------------------------------------------- /help/C/figures/interface_parallel-separate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_parallel-separate.png -------------------------------------------------------------------------------- /help/C/figures/interface_parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_parallel.png -------------------------------------------------------------------------------- /help/C/figures/interface_searchpane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_searchpane.png -------------------------------------------------------------------------------- /help/C/figures/interface_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_shortcut.png -------------------------------------------------------------------------------- /help/C/figures/interface_sidepane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_sidepane.png -------------------------------------------------------------------------------- /help/C/figures/interface_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_toolbar.png -------------------------------------------------------------------------------- /help/C/figures/interface_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/interface_viewer.png -------------------------------------------------------------------------------- /help/C/figures/journal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/journal.png -------------------------------------------------------------------------------- /help/C/figures/module-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/module-overview.png -------------------------------------------------------------------------------- /help/C/figures/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/module.png -------------------------------------------------------------------------------- /help/C/figures/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/personal.png -------------------------------------------------------------------------------- /help/C/figures/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/preferences.png -------------------------------------------------------------------------------- /help/C/figures/preferences_fonts-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/preferences_fonts-color.png -------------------------------------------------------------------------------- /help/C/figures/preferences_fonts-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/preferences_fonts-misc.png -------------------------------------------------------------------------------- /help/C/figures/preferences_general-biblesync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/preferences_general-biblesync.png -------------------------------------------------------------------------------- /help/C/figures/preferences_general-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/preferences_general-misc.png -------------------------------------------------------------------------------- /help/C/figures/preferences_modules-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/preferences_modules-misc.png -------------------------------------------------------------------------------- /help/C/figures/preferences_modules-parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/preferences_modules-parallel.png -------------------------------------------------------------------------------- /help/C/figures/search_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/search_search.png -------------------------------------------------------------------------------- /help/C/figures/studypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/studypad.png -------------------------------------------------------------------------------- /help/C/figures/sword3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/sword3.png -------------------------------------------------------------------------------- /help/C/figures/sword_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/sword_config.png -------------------------------------------------------------------------------- /help/C/figures/sword_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/sword_install.png -------------------------------------------------------------------------------- /help/C/figures/sword_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/sword_remove.png -------------------------------------------------------------------------------- /help/C/figures/sword_sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/sword_sources.png -------------------------------------------------------------------------------- /help/C/figures/xiphos-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/xiphos-icon.png -------------------------------------------------------------------------------- /help/C/figures/xiphos-trail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/figures/xiphos-trail-icon.png -------------------------------------------------------------------------------- /help/C/index.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/index.page -------------------------------------------------------------------------------- /help/C/legal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/legal.xml -------------------------------------------------------------------------------- /help/C/xiphos-01-introduction.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-01-introduction.page -------------------------------------------------------------------------------- /help/C/xiphos-02-shortcut-keys.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-02-shortcut-keys.page -------------------------------------------------------------------------------- /help/C/xiphos-10-start.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-10-start.page -------------------------------------------------------------------------------- /help/C/xiphos-11-interface.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-11-interface.page -------------------------------------------------------------------------------- /help/C/xiphos-20-modules-introduction.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-20-modules-introduction.page -------------------------------------------------------------------------------- /help/C/xiphos-21-modules-configuration.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-21-modules-configuration.page -------------------------------------------------------------------------------- /help/C/xiphos-22-modules-install.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-22-modules-install.page -------------------------------------------------------------------------------- /help/C/xiphos-23-modules-maintenance.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-23-modules-maintenance.page -------------------------------------------------------------------------------- /help/C/xiphos-24-modules-third-party.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-24-modules-third-party.page -------------------------------------------------------------------------------- /help/C/xiphos-30-search.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-30-search.page -------------------------------------------------------------------------------- /help/C/xiphos-31-advanced-search.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-31-advanced-search.page -------------------------------------------------------------------------------- /help/C/xiphos-32-search-syntax.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-32-search-syntax.page -------------------------------------------------------------------------------- /help/C/xiphos-33-original-language.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-33-original-language.page -------------------------------------------------------------------------------- /help/C/xiphos-40-personal-commentary.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-40-personal-commentary.page -------------------------------------------------------------------------------- /help/C/xiphos-41-studypad.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-41-studypad.page -------------------------------------------------------------------------------- /help/C/xiphos-42-journals.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-42-journals.page -------------------------------------------------------------------------------- /help/C/xiphos-50-preferences-general-settings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-50-preferences-general-settings.page -------------------------------------------------------------------------------- /help/C/xiphos-51-preferences-biblesync.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-51-preferences-biblesync.page -------------------------------------------------------------------------------- /help/C/xiphos-52-preferences-fonts-colors.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-52-preferences-fonts-colors.page -------------------------------------------------------------------------------- /help/C/xiphos-53-preferences-modules.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-53-preferences-modules.page -------------------------------------------------------------------------------- /help/C/xiphos-60-online-help.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-60-online-help.page -------------------------------------------------------------------------------- /help/C/xiphos-90-credits.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/C/xiphos-90-credits.page -------------------------------------------------------------------------------- /help/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/CMakeLists.txt -------------------------------------------------------------------------------- /help/HELP_LINGUAS: -------------------------------------------------------------------------------- 1 | fa fr it 2 | 3 | -------------------------------------------------------------------------------- /help/fa/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/fa.po -------------------------------------------------------------------------------- /help/fa/figures/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/TODO -------------------------------------------------------------------------------- /help/fa/figures/biblepane-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/biblepane-options.png -------------------------------------------------------------------------------- /help/fa/figures/first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/first_start.png -------------------------------------------------------------------------------- /help/fa/figures/gtkhtml3-vs-mozembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/gtkhtml3-vs-mozembed.png -------------------------------------------------------------------------------- /help/fa/figures/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface.png -------------------------------------------------------------------------------- /help/fa/figures/interface_biblepane-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_biblepane-options.png -------------------------------------------------------------------------------- /help/fa/figures/interface_biblepane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_biblepane.png -------------------------------------------------------------------------------- /help/fa/figures/interface_commentarypane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_commentarypane.png -------------------------------------------------------------------------------- /help/fa/figures/interface_dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_dictionary.png -------------------------------------------------------------------------------- /help/fa/figures/interface_menubar-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_menubar-view.png -------------------------------------------------------------------------------- /help/fa/figures/interface_menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_menubar.png -------------------------------------------------------------------------------- /help/fa/figures/interface_parallel-separate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_parallel-separate.png -------------------------------------------------------------------------------- /help/fa/figures/interface_parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_parallel.png -------------------------------------------------------------------------------- /help/fa/figures/interface_searchpane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_searchpane.png -------------------------------------------------------------------------------- /help/fa/figures/interface_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_shortcut.png -------------------------------------------------------------------------------- /help/fa/figures/interface_sidepane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_sidepane.png -------------------------------------------------------------------------------- /help/fa/figures/interface_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_toolbar.png -------------------------------------------------------------------------------- /help/fa/figures/interface_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/interface_viewer.png -------------------------------------------------------------------------------- /help/fa/figures/journal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/journal.png -------------------------------------------------------------------------------- /help/fa/figures/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/module.png -------------------------------------------------------------------------------- /help/fa/figures/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/personal.png -------------------------------------------------------------------------------- /help/fa/figures/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/preferences.png -------------------------------------------------------------------------------- /help/fa/figures/preferences_fonts-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/preferences_fonts-color.png -------------------------------------------------------------------------------- /help/fa/figures/preferences_fonts-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/preferences_fonts-misc.png -------------------------------------------------------------------------------- /help/fa/figures/preferences_general-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/preferences_general-misc.png -------------------------------------------------------------------------------- /help/fa/figures/preferences_general-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/preferences_general-tabs.png -------------------------------------------------------------------------------- /help/fa/figures/preferences_modules-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/preferences_modules-main.png -------------------------------------------------------------------------------- /help/fa/figures/preferences_modules-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/preferences_modules-misc.png -------------------------------------------------------------------------------- /help/fa/figures/preferences_modules-parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/preferences_modules-parallel.png -------------------------------------------------------------------------------- /help/fa/figures/search_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/search_search.png -------------------------------------------------------------------------------- /help/fa/figures/studypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/studypad.png -------------------------------------------------------------------------------- /help/fa/figures/sword3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/sword3.png -------------------------------------------------------------------------------- /help/fa/figures/sword_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/sword_config.png -------------------------------------------------------------------------------- /help/fa/figures/sword_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/sword_install.png -------------------------------------------------------------------------------- /help/fa/figures/sword_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/sword_remove.png -------------------------------------------------------------------------------- /help/fa/figures/sword_sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fa/figures/sword_sources.png -------------------------------------------------------------------------------- /help/fr/figures/first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/first_start.png -------------------------------------------------------------------------------- /help/fr/figures/gtkhtml3-vs-mozembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/gtkhtml3-vs-mozembed.png -------------------------------------------------------------------------------- /help/fr/figures/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface.png -------------------------------------------------------------------------------- /help/fr/figures/interface_biblepane-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_biblepane-options.png -------------------------------------------------------------------------------- /help/fr/figures/interface_biblepane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_biblepane.png -------------------------------------------------------------------------------- /help/fr/figures/interface_commentarypane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_commentarypane.png -------------------------------------------------------------------------------- /help/fr/figures/interface_dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_dictionary.png -------------------------------------------------------------------------------- /help/fr/figures/interface_menubar-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_menubar-view.png -------------------------------------------------------------------------------- /help/fr/figures/interface_menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_menubar.png -------------------------------------------------------------------------------- /help/fr/figures/interface_parallel-separate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_parallel-separate.png -------------------------------------------------------------------------------- /help/fr/figures/interface_parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_parallel.png -------------------------------------------------------------------------------- /help/fr/figures/interface_searchpane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_searchpane.png -------------------------------------------------------------------------------- /help/fr/figures/interface_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_shortcut.png -------------------------------------------------------------------------------- /help/fr/figures/interface_sidepane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_sidepane.png -------------------------------------------------------------------------------- /help/fr/figures/interface_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_toolbar.png -------------------------------------------------------------------------------- /help/fr/figures/interface_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/interface_viewer.png -------------------------------------------------------------------------------- /help/fr/figures/journal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/journal.png -------------------------------------------------------------------------------- /help/fr/figures/module-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/module-overview.png -------------------------------------------------------------------------------- /help/fr/figures/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/module.png -------------------------------------------------------------------------------- /help/fr/figures/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/personal.png -------------------------------------------------------------------------------- /help/fr/figures/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/preferences.png -------------------------------------------------------------------------------- /help/fr/figures/preferences_fonts-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/preferences_fonts-color.png -------------------------------------------------------------------------------- /help/fr/figures/preferences_fonts-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/preferences_fonts-misc.png -------------------------------------------------------------------------------- /help/fr/figures/preferences_general-biblesync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/preferences_general-biblesync.png -------------------------------------------------------------------------------- /help/fr/figures/preferences_general-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/preferences_general-misc.png -------------------------------------------------------------------------------- /help/fr/figures/preferences_modules-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/preferences_modules-misc.png -------------------------------------------------------------------------------- /help/fr/figures/preferences_modules-parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/preferences_modules-parallel.png -------------------------------------------------------------------------------- /help/fr/figures/search_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/search_search.png -------------------------------------------------------------------------------- /help/fr/figures/studypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/studypad.png -------------------------------------------------------------------------------- /help/fr/figures/sword3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/sword3.png -------------------------------------------------------------------------------- /help/fr/figures/sword_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/sword_config.png -------------------------------------------------------------------------------- /help/fr/figures/sword_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/sword_install.png -------------------------------------------------------------------------------- /help/fr/figures/sword_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/sword_remove.png -------------------------------------------------------------------------------- /help/fr/figures/sword_sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/figures/sword_sources.png -------------------------------------------------------------------------------- /help/fr/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/fr/fr.po -------------------------------------------------------------------------------- /help/it/figures/first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/first_start.png -------------------------------------------------------------------------------- /help/it/figures/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface.png -------------------------------------------------------------------------------- /help/it/figures/interface_biblepane-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_biblepane-options.png -------------------------------------------------------------------------------- /help/it/figures/interface_biblepane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_biblepane.png -------------------------------------------------------------------------------- /help/it/figures/interface_commentarypane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_commentarypane.png -------------------------------------------------------------------------------- /help/it/figures/interface_dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_dictionary.png -------------------------------------------------------------------------------- /help/it/figures/interface_menubar-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_menubar-view.png -------------------------------------------------------------------------------- /help/it/figures/interface_menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_menubar.png -------------------------------------------------------------------------------- /help/it/figures/interface_parallel-separate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_parallel-separate.png -------------------------------------------------------------------------------- /help/it/figures/interface_parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_parallel.png -------------------------------------------------------------------------------- /help/it/figures/interface_searchpane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_searchpane.png -------------------------------------------------------------------------------- /help/it/figures/interface_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_shortcut.png -------------------------------------------------------------------------------- /help/it/figures/interface_sidepane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_sidepane.png -------------------------------------------------------------------------------- /help/it/figures/interface_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_toolbar.png -------------------------------------------------------------------------------- /help/it/figures/interface_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/interface_viewer.png -------------------------------------------------------------------------------- /help/it/figures/journal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/journal.png -------------------------------------------------------------------------------- /help/it/figures/module-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/module-overview.png -------------------------------------------------------------------------------- /help/it/figures/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/module.png -------------------------------------------------------------------------------- /help/it/figures/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/preferences.png -------------------------------------------------------------------------------- /help/it/figures/preferences_fonts-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/preferences_fonts-color.png -------------------------------------------------------------------------------- /help/it/figures/preferences_fonts-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/preferences_fonts-misc.png -------------------------------------------------------------------------------- /help/it/figures/preferences_general-biblesync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/preferences_general-biblesync.png -------------------------------------------------------------------------------- /help/it/figures/preferences_general-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/preferences_general-misc.png -------------------------------------------------------------------------------- /help/it/figures/preferences_modules-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/preferences_modules-misc.png -------------------------------------------------------------------------------- /help/it/figures/preferences_modules-parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/preferences_modules-parallel.png -------------------------------------------------------------------------------- /help/it/figures/search_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/search_search.png -------------------------------------------------------------------------------- /help/it/figures/sword_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/sword_config.png -------------------------------------------------------------------------------- /help/it/figures/sword_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/sword_install.png -------------------------------------------------------------------------------- /help/it/figures/sword_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/sword_remove.png -------------------------------------------------------------------------------- /help/it/figures/sword_sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/figures/sword_sources.png -------------------------------------------------------------------------------- /help/it/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/it/it.po -------------------------------------------------------------------------------- /help/xiphos.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/xiphos.pot -------------------------------------------------------------------------------- /help/xml/html.css.custom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/xml/html.css.custom.xsl -------------------------------------------------------------------------------- /help/xml/mal2hh.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/xml/mal2hh.xsl -------------------------------------------------------------------------------- /help/xml/mallard-1.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/help/xml/mallard-1.0.rng -------------------------------------------------------------------------------- /pixmaps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/CMakeLists.txt -------------------------------------------------------------------------------- /pixmaps/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/about.png -------------------------------------------------------------------------------- /pixmaps/book_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/book_closed.png -------------------------------------------------------------------------------- /pixmaps/book_closed_rtol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/book_closed_rtol.png -------------------------------------------------------------------------------- /pixmaps/book_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/book_open.png -------------------------------------------------------------------------------- /pixmaps/book_open_rtol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/book_open_rtol.png -------------------------------------------------------------------------------- /pixmaps/chat_icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/chat_icon-16.png -------------------------------------------------------------------------------- /pixmaps/dlg-un-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/dlg-un-16.png -------------------------------------------------------------------------------- /pixmaps/dlg-un.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/dlg-un.png -------------------------------------------------------------------------------- /pixmaps/epiphany-bookmark-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/epiphany-bookmark-page.png -------------------------------------------------------------------------------- /pixmaps/epiphany-bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/epiphany-bookmarks.png -------------------------------------------------------------------------------- /pixmaps/epiphany-secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/epiphany-secure.png -------------------------------------------------------------------------------- /pixmaps/epiphany-unsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/epiphany-unsecure.png -------------------------------------------------------------------------------- /pixmaps/gnome-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/gnome-session.png -------------------------------------------------------------------------------- /pixmaps/gnome-window-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/gnome-window-manager.png -------------------------------------------------------------------------------- /pixmaps/gnome-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/gnome-windows.png -------------------------------------------------------------------------------- /pixmaps/gs2-48x48-old.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/gs2-48x48-old.ico -------------------------------------------------------------------------------- /pixmaps/gs2-48x48-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/gs2-48x48-old.png -------------------------------------------------------------------------------- /pixmaps/gs2-48x48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/gs2-48x48.ico -------------------------------------------------------------------------------- /pixmaps/gs2-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/gs2-48x48.png -------------------------------------------------------------------------------- /pixmaps/gs2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/gs2.xpm -------------------------------------------------------------------------------- /pixmaps/indexed-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/indexed-16.png -------------------------------------------------------------------------------- /pixmaps/indexed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/indexed.png -------------------------------------------------------------------------------- /pixmaps/init-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/init-settings.png -------------------------------------------------------------------------------- /pixmaps/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/logo.png -------------------------------------------------------------------------------- /pixmaps/mailing_list_icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/mailing_list_icon-16.png -------------------------------------------------------------------------------- /pixmaps/mozilla-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/mozilla-icon.png -------------------------------------------------------------------------------- /pixmaps/new_tab_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/new_tab_button.png -------------------------------------------------------------------------------- /pixmaps/screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/screenshots/README.md -------------------------------------------------------------------------------- /pixmaps/screenshots/advanced-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/screenshots/advanced-search.jpg -------------------------------------------------------------------------------- /pixmaps/screenshots/global-display-options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/screenshots/global-display-options.jpg -------------------------------------------------------------------------------- /pixmaps/screenshots/main-window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/screenshots/main-window.jpg -------------------------------------------------------------------------------- /pixmaps/screenshots/module-display-options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/screenshots/module-display-options.jpg -------------------------------------------------------------------------------- /pixmaps/screenshots/module-manager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/screenshots/module-manager.jpg -------------------------------------------------------------------------------- /pixmaps/screenshots/parallel-display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/screenshots/parallel-display.jpg -------------------------------------------------------------------------------- /pixmaps/silk-edit-bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/silk-edit-bookmarks.png -------------------------------------------------------------------------------- /pixmaps/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/splash.png -------------------------------------------------------------------------------- /pixmaps/sword-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/sword-big.png -------------------------------------------------------------------------------- /pixmaps/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/sword.png -------------------------------------------------------------------------------- /pixmaps/sword_icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/sword_icon-16.png -------------------------------------------------------------------------------- /pixmaps/translation_icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/translation_icon-16.png -------------------------------------------------------------------------------- /pixmaps/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/tt.png -------------------------------------------------------------------------------- /pixmaps/window-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/window-close.png -------------------------------------------------------------------------------- /pixmaps/xiphos-button-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/xiphos-button-125.png -------------------------------------------------------------------------------- /pixmaps/xiphos-x-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/xiphos-x-16.png -------------------------------------------------------------------------------- /pixmaps/xiphos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/xiphos.svg -------------------------------------------------------------------------------- /pixmaps/xiphos.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/pixmaps/xiphos.xpm -------------------------------------------------------------------------------- /po/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/CMakeLists.txt -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/Guidelines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/Guidelines -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | ##xiphos.desktop.in 2 | -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/cy.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/de.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/ko_KR.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/my.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi_VN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/vi_VN.po -------------------------------------------------------------------------------- /po/xiphos.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/xiphos.pot -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /src/backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/backend/CMakeLists.txt -------------------------------------------------------------------------------- /src/backend/gs_stringmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/backend/gs_stringmgr.cpp -------------------------------------------------------------------------------- /src/backend/gs_stringmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/backend/gs_stringmgr.h -------------------------------------------------------------------------------- /src/backend/module_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/backend/module_manager.cc -------------------------------------------------------------------------------- /src/backend/module_manager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/backend/module_manager.hh -------------------------------------------------------------------------------- /src/backend/sword_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/backend/sword_main.cc -------------------------------------------------------------------------------- /src/backend/sword_main.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/backend/sword_main.hh -------------------------------------------------------------------------------- /src/editor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/CMakeLists.txt -------------------------------------------------------------------------------- /src/editor/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/editor.c -------------------------------------------------------------------------------- /src/editor/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/editor.h -------------------------------------------------------------------------------- /src/editor/link_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/link_dialog.c -------------------------------------------------------------------------------- /src/editor/link_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/link_dialog.h -------------------------------------------------------------------------------- /src/editor/slib-editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/slib-editor.c -------------------------------------------------------------------------------- /src/editor/slib-editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/slib-editor.h -------------------------------------------------------------------------------- /src/editor/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/template.h -------------------------------------------------------------------------------- /src/editor/webkit_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/webkit_editor.c -------------------------------------------------------------------------------- /src/editor/webkit_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/editor/webkit_editor.h -------------------------------------------------------------------------------- /src/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/examples/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/examples/Makefile -------------------------------------------------------------------------------- /src/examples/ipc_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/examples/ipc_client.c -------------------------------------------------------------------------------- /src/examples/ipc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/examples/ipc_client.py -------------------------------------------------------------------------------- /src/examples/marshal.list: -------------------------------------------------------------------------------- 1 | VOID:STRING,INT 2 | -------------------------------------------------------------------------------- /src/examples/xiphos-nav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/examples/xiphos-nav.c -------------------------------------------------------------------------------- /src/gtk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/CMakeLists.txt -------------------------------------------------------------------------------- /src/gtk/about_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/about_modules.c -------------------------------------------------------------------------------- /src/gtk/about_sword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/about_sword.c -------------------------------------------------------------------------------- /src/gtk/about_trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/about_trans.c -------------------------------------------------------------------------------- /src/gtk/about_xiphos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/about_xiphos.c -------------------------------------------------------------------------------- /src/gtk/bibletext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/bibletext.c -------------------------------------------------------------------------------- /src/gtk/bibletext_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/bibletext_dialog.c -------------------------------------------------------------------------------- /src/gtk/bookmark_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/bookmark_dialog.c -------------------------------------------------------------------------------- /src/gtk/bookmarks_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/bookmarks_menu.c -------------------------------------------------------------------------------- /src/gtk/bookmarks_treeview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/bookmarks_treeview.c -------------------------------------------------------------------------------- /src/gtk/cipher_key_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/cipher_key_dialog.c -------------------------------------------------------------------------------- /src/gtk/commentary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/commentary.c -------------------------------------------------------------------------------- /src/gtk/commentary_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/commentary_dialog.c -------------------------------------------------------------------------------- /src/gtk/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/dialog.c -------------------------------------------------------------------------------- /src/gtk/dictlex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/dictlex.c -------------------------------------------------------------------------------- /src/gtk/dictlex_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/dictlex_dialog.c -------------------------------------------------------------------------------- /src/gtk/display_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/display_info.c -------------------------------------------------------------------------------- /src/gtk/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/dummy.cpp -------------------------------------------------------------------------------- /src/gtk/export_bookmarks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/export_bookmarks.c -------------------------------------------------------------------------------- /src/gtk/export_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/export_dialog.c -------------------------------------------------------------------------------- /src/gtk/find_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/find_dialog.c -------------------------------------------------------------------------------- /src/gtk/font_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/font_dialog.c -------------------------------------------------------------------------------- /src/gtk/gbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/gbs.c -------------------------------------------------------------------------------- /src/gtk/gbs_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/gbs_dialog.c -------------------------------------------------------------------------------- /src/gtk/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/gui.c -------------------------------------------------------------------------------- /src/gtk/ipc-interface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/ipc-interface.xml -------------------------------------------------------------------------------- /src/gtk/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/ipc.c -------------------------------------------------------------------------------- /src/gtk/main_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/main_menu.c -------------------------------------------------------------------------------- /src/gtk/main_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/main_window.c -------------------------------------------------------------------------------- /src/gtk/marshal.list: -------------------------------------------------------------------------------- 1 | VOID:STRING,INT 2 | -------------------------------------------------------------------------------- /src/gtk/menu_popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/menu_popup.c -------------------------------------------------------------------------------- /src/gtk/mod_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/mod_mgr.c -------------------------------------------------------------------------------- /src/gtk/navbar_book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/navbar_book.c -------------------------------------------------------------------------------- /src/gtk/navbar_book_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/navbar_book_dialog.c -------------------------------------------------------------------------------- /src/gtk/navbar_versekey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/navbar_versekey.c -------------------------------------------------------------------------------- /src/gtk/navbar_versekey_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/navbar_versekey_dialog.c -------------------------------------------------------------------------------- /src/gtk/navbar_versekey_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/navbar_versekey_editor.c -------------------------------------------------------------------------------- /src/gtk/navbar_versekey_parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/navbar_versekey_parallel.c -------------------------------------------------------------------------------- /src/gtk/parallel_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/parallel_dialog.c -------------------------------------------------------------------------------- /src/gtk/parallel_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/parallel_tab.c -------------------------------------------------------------------------------- /src/gtk/parallel_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/parallel_view.c -------------------------------------------------------------------------------- /src/gtk/preferences_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/preferences_dialog.c -------------------------------------------------------------------------------- /src/gtk/search_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/search_dialog.c -------------------------------------------------------------------------------- /src/gtk/search_sidebar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/search_sidebar.c -------------------------------------------------------------------------------- /src/gtk/sidebar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/sidebar.c -------------------------------------------------------------------------------- /src/gtk/sidebar_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/sidebar_dialog.c -------------------------------------------------------------------------------- /src/gtk/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/splash.c -------------------------------------------------------------------------------- /src/gtk/tabbed_browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/tabbed_browser.c -------------------------------------------------------------------------------- /src/gtk/treekey-editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/treekey-editor.c -------------------------------------------------------------------------------- /src/gtk/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/utilities.c -------------------------------------------------------------------------------- /src/gtk/xiphos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gtk/xiphos.c -------------------------------------------------------------------------------- /src/gui/about_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/about_modules.h -------------------------------------------------------------------------------- /src/gui/about_sword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/about_sword.h -------------------------------------------------------------------------------- /src/gui/about_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/about_trans.h -------------------------------------------------------------------------------- /src/gui/about_xiphos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/about_xiphos.h -------------------------------------------------------------------------------- /src/gui/bibletext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/bibletext.h -------------------------------------------------------------------------------- /src/gui/bibletext_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/bibletext_dialog.h -------------------------------------------------------------------------------- /src/gui/bookmark_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/bookmark_dialog.h -------------------------------------------------------------------------------- /src/gui/bookmarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/bookmarks.h -------------------------------------------------------------------------------- /src/gui/bookmarks_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/bookmarks_menu.h -------------------------------------------------------------------------------- /src/gui/bookmarks_treeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/bookmarks_treeview.h -------------------------------------------------------------------------------- /src/gui/cipher_key_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/cipher_key_dialog.h -------------------------------------------------------------------------------- /src/gui/commentary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/commentary.h -------------------------------------------------------------------------------- /src/gui/commentary_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/commentary_dialog.h -------------------------------------------------------------------------------- /src/gui/debug_glib_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/debug_glib_null.h -------------------------------------------------------------------------------- /src/gui/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/dialog.h -------------------------------------------------------------------------------- /src/gui/dictlex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/dictlex.h -------------------------------------------------------------------------------- /src/gui/dictlex_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/dictlex_dialog.h -------------------------------------------------------------------------------- /src/gui/display_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/display_info.h -------------------------------------------------------------------------------- /src/gui/export_bookmarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/export_bookmarks.h -------------------------------------------------------------------------------- /src/gui/export_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/export_dialog.h -------------------------------------------------------------------------------- /src/gui/find_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/find_dialog.h -------------------------------------------------------------------------------- /src/gui/font_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/font_dialog.h -------------------------------------------------------------------------------- /src/gui/gbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/gbs.h -------------------------------------------------------------------------------- /src/gui/gbs_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/gbs_dialog.h -------------------------------------------------------------------------------- /src/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/gui.h -------------------------------------------------------------------------------- /src/gui/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/ipc.h -------------------------------------------------------------------------------- /src/gui/main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/main_menu.h -------------------------------------------------------------------------------- /src/gui/main_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/main_window.h -------------------------------------------------------------------------------- /src/gui/menu_popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/menu_popup.h -------------------------------------------------------------------------------- /src/gui/mod_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/mod_mgr.h -------------------------------------------------------------------------------- /src/gui/navbar_book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/navbar_book.h -------------------------------------------------------------------------------- /src/gui/navbar_book_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/navbar_book_dialog.h -------------------------------------------------------------------------------- /src/gui/navbar_versekey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/navbar_versekey.h -------------------------------------------------------------------------------- /src/gui/navbar_versekey_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/navbar_versekey_dialog.h -------------------------------------------------------------------------------- /src/gui/navbar_versekey_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/navbar_versekey_editor.h -------------------------------------------------------------------------------- /src/gui/navbar_versekey_parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/navbar_versekey_parallel.h -------------------------------------------------------------------------------- /src/gui/parallel_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/parallel_dialog.h -------------------------------------------------------------------------------- /src/gui/parallel_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/parallel_tab.h -------------------------------------------------------------------------------- /src/gui/parallel_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/parallel_view.h -------------------------------------------------------------------------------- /src/gui/preferences_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/preferences_dialog.h -------------------------------------------------------------------------------- /src/gui/search_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/search_dialog.h -------------------------------------------------------------------------------- /src/gui/search_sidebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/search_sidebar.h -------------------------------------------------------------------------------- /src/gui/sidebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/sidebar.h -------------------------------------------------------------------------------- /src/gui/sidebar_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/sidebar_dialog.h -------------------------------------------------------------------------------- /src/gui/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/splash.h -------------------------------------------------------------------------------- /src/gui/tabbed_browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/tabbed_browser.h -------------------------------------------------------------------------------- /src/gui/treekey-editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/treekey-editor.h -------------------------------------------------------------------------------- /src/gui/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/utilities.h -------------------------------------------------------------------------------- /src/gui/widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/widgets.h -------------------------------------------------------------------------------- /src/gui/xiphos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/gui/xiphos.h -------------------------------------------------------------------------------- /src/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/CMakeLists.txt -------------------------------------------------------------------------------- /src/main/biblesync_glue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/biblesync_glue.cc -------------------------------------------------------------------------------- /src/main/biblesync_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/biblesync_glue.h -------------------------------------------------------------------------------- /src/main/configs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/configs.cc -------------------------------------------------------------------------------- /src/main/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/configs.h -------------------------------------------------------------------------------- /src/main/cpp-errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/cpp-errors.txt -------------------------------------------------------------------------------- /src/main/display.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/display.cc -------------------------------------------------------------------------------- /src/main/display.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/display.hh -------------------------------------------------------------------------------- /src/main/export_passage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/export_passage.cc -------------------------------------------------------------------------------- /src/main/export_passage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/export_passage.h -------------------------------------------------------------------------------- /src/main/global_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/global_ops.cc -------------------------------------------------------------------------------- /src/main/global_ops.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/global_ops.hh -------------------------------------------------------------------------------- /src/main/gtk_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/gtk_compat.h -------------------------------------------------------------------------------- /src/main/lists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/lists.cc -------------------------------------------------------------------------------- /src/main/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/lists.h -------------------------------------------------------------------------------- /src/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/main.c -------------------------------------------------------------------------------- /src/main/mod_mgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/mod_mgr.cc -------------------------------------------------------------------------------- /src/main/mod_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/mod_mgr.h -------------------------------------------------------------------------------- /src/main/module_dialogs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/module_dialogs.cc -------------------------------------------------------------------------------- /src/main/module_dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/module_dialogs.h -------------------------------------------------------------------------------- /src/main/modulecache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/modulecache.cc -------------------------------------------------------------------------------- /src/main/modulecache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/modulecache.hh -------------------------------------------------------------------------------- /src/main/navbar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/navbar.cc -------------------------------------------------------------------------------- /src/main/navbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/navbar.h -------------------------------------------------------------------------------- /src/main/navbar_book.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/navbar_book.cc -------------------------------------------------------------------------------- /src/main/navbar_book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/navbar_book.h -------------------------------------------------------------------------------- /src/main/navbar_book_dialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/navbar_book_dialog.cc -------------------------------------------------------------------------------- /src/main/navbar_book_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/navbar_book_dialog.h -------------------------------------------------------------------------------- /src/main/navbar_versekey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/navbar_versekey.cc -------------------------------------------------------------------------------- /src/main/navbar_versekey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/navbar_versekey.h -------------------------------------------------------------------------------- /src/main/parallel_view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/parallel_view.cc -------------------------------------------------------------------------------- /src/main/parallel_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/parallel_view.h -------------------------------------------------------------------------------- /src/main/prayerlists.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/prayerlists.cc -------------------------------------------------------------------------------- /src/main/prayerlists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/prayerlists.h -------------------------------------------------------------------------------- /src/main/previewer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/previewer.cc -------------------------------------------------------------------------------- /src/main/previewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/previewer.h -------------------------------------------------------------------------------- /src/main/search_dialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/search_dialog.cc -------------------------------------------------------------------------------- /src/main/search_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/search_dialog.h -------------------------------------------------------------------------------- /src/main/search_sidebar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/search_sidebar.cc -------------------------------------------------------------------------------- /src/main/search_sidebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/search_sidebar.h -------------------------------------------------------------------------------- /src/main/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/settings.c -------------------------------------------------------------------------------- /src/main/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/settings.h -------------------------------------------------------------------------------- /src/main/sidebar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/sidebar.cc -------------------------------------------------------------------------------- /src/main/sidebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/sidebar.h -------------------------------------------------------------------------------- /src/main/sword.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/sword.cc -------------------------------------------------------------------------------- /src/main/sword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/sword.h -------------------------------------------------------------------------------- /src/main/sword_treekey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/sword_treekey.cc -------------------------------------------------------------------------------- /src/main/sword_treekey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/sword_treekey.h -------------------------------------------------------------------------------- /src/main/tab_history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/tab_history.c -------------------------------------------------------------------------------- /src/main/tab_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/tab_history.h -------------------------------------------------------------------------------- /src/main/url.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/url.cc -------------------------------------------------------------------------------- /src/main/url.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/url.hh -------------------------------------------------------------------------------- /src/main/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/xml.c -------------------------------------------------------------------------------- /src/main/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/main/xml.h -------------------------------------------------------------------------------- /src/webkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/webkit/CMakeLists.txt -------------------------------------------------------------------------------- /src/webkit/marshal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/webkit/marshal.list -------------------------------------------------------------------------------- /src/webkit/wk-html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/webkit/wk-html.c -------------------------------------------------------------------------------- /src/webkit/wk-html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/webkit/wk-html.h -------------------------------------------------------------------------------- /src/xiphos_html/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/xiphos_html/CMakeLists.txt -------------------------------------------------------------------------------- /src/xiphos_html/marshal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/xiphos_html/marshal.list -------------------------------------------------------------------------------- /src/xiphos_html/xiphos_html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/xiphos_html/xiphos_html.c -------------------------------------------------------------------------------- /src/xiphos_html/xiphos_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/src/xiphos_html/xiphos_html.h -------------------------------------------------------------------------------- /ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/CMakeLists.txt -------------------------------------------------------------------------------- /ui/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/arrow_down.png -------------------------------------------------------------------------------- /ui/arrow_down_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/arrow_down_box.png -------------------------------------------------------------------------------- /ui/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/arrow_up.png -------------------------------------------------------------------------------- /ui/arrow_up_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/arrow_up_box.png -------------------------------------------------------------------------------- /ui/biblesync-v1-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/biblesync-v1-30.png -------------------------------------------------------------------------------- /ui/biblesync-v1-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/biblesync-v1-50.png -------------------------------------------------------------------------------- /ui/biblesync_icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/biblesync_icon-16.png -------------------------------------------------------------------------------- /ui/bookmarks.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/bookmarks.glade -------------------------------------------------------------------------------- /ui/bookmarks.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/bookmarks.gtkbuilder -------------------------------------------------------------------------------- /ui/chat_icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/chat_icon-16.png -------------------------------------------------------------------------------- /ui/dlg-un-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/dlg-un-16.png -------------------------------------------------------------------------------- /ui/editor_link_dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/editor_link_dialog.glade -------------------------------------------------------------------------------- /ui/editor_link_dialog.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/editor_link_dialog.gtkbuilder -------------------------------------------------------------------------------- /ui/editor_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/editor_note.xml -------------------------------------------------------------------------------- /ui/editor_studypad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/editor_studypad.xml -------------------------------------------------------------------------------- /ui/epiphany-bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/epiphany-bookmarks.png -------------------------------------------------------------------------------- /ui/export-dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/export-dialog.glade -------------------------------------------------------------------------------- /ui/export-dialog.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/export-dialog.gtkbuilder -------------------------------------------------------------------------------- /ui/gnome-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/gnome-session.png -------------------------------------------------------------------------------- /ui/gnome-sound-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/gnome-sound-properties.png -------------------------------------------------------------------------------- /ui/gnome-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/gnome-windows.png -------------------------------------------------------------------------------- /ui/gs2-48x48-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/gs2-48x48-old.png -------------------------------------------------------------------------------- /ui/gtk2_webedit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/gtk2_webedit.ui -------------------------------------------------------------------------------- /ui/gtk_webedit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/gtk_webedit.ui -------------------------------------------------------------------------------- /ui/languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/languages -------------------------------------------------------------------------------- /ui/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/logo.png -------------------------------------------------------------------------------- /ui/mailing_list_icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/mailing_list_icon-16.png -------------------------------------------------------------------------------- /ui/markverse.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/markverse.glade -------------------------------------------------------------------------------- /ui/markverse.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/markverse.gtkbuilder -------------------------------------------------------------------------------- /ui/module-manager.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/module-manager.glade -------------------------------------------------------------------------------- /ui/module-manager.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/module-manager.gtkbuilder -------------------------------------------------------------------------------- /ui/navbar_versekey.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/navbar_versekey.glade -------------------------------------------------------------------------------- /ui/navbar_versekey.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/navbar_versekey.gtkbuilder -------------------------------------------------------------------------------- /ui/new_tab_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/new_tab_button.png -------------------------------------------------------------------------------- /ui/prefs.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/prefs.glade -------------------------------------------------------------------------------- /ui/prefs.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/prefs.gtkbuilder -------------------------------------------------------------------------------- /ui/search-dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/search-dialog.glade -------------------------------------------------------------------------------- /ui/search-dialog.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/search-dialog.gtkbuilder -------------------------------------------------------------------------------- /ui/selector-prefs.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/selector-prefs.glade -------------------------------------------------------------------------------- /ui/selector-prefs.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/selector-prefs.gtkbuilder -------------------------------------------------------------------------------- /ui/silk-edit-bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/silk-edit-bookmarks.png -------------------------------------------------------------------------------- /ui/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/sword.png -------------------------------------------------------------------------------- /ui/sword3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/sword3.png -------------------------------------------------------------------------------- /ui/sword_icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/sword_icon-16.png -------------------------------------------------------------------------------- /ui/translation_icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/translation_icon-16.png -------------------------------------------------------------------------------- /ui/wscript_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/wscript_build -------------------------------------------------------------------------------- /ui/xi-export-bookmarks.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/xi-export-bookmarks.glade -------------------------------------------------------------------------------- /ui/xi-menus-popup.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/xi-menus-popup.gtkbuilder -------------------------------------------------------------------------------- /ui/xi-menus.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/xi-menus.glade -------------------------------------------------------------------------------- /ui/xi-menus.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/xi-menus.gtkbuilder -------------------------------------------------------------------------------- /ui/xi-splash.gtkbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/xi-splash.gtkbuilder -------------------------------------------------------------------------------- /ui/xiphos-x-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/ui/xiphos-x-16.png -------------------------------------------------------------------------------- /win32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/CMakeLists.txt -------------------------------------------------------------------------------- /win32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/Dockerfile -------------------------------------------------------------------------------- /win32/WindowsBuildNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/WindowsBuildNotes.txt -------------------------------------------------------------------------------- /win32/bin/sword.conf: -------------------------------------------------------------------------------- 1 | [Install] 2 | LocalePath=../share/sword/ -------------------------------------------------------------------------------- /win32/bin/utils.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/bin/utils.bat -------------------------------------------------------------------------------- /win32/build_sword.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/build_sword.sh -------------------------------------------------------------------------------- /win32/etc/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/etc/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /win32/festival/festival.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/festival.exe -------------------------------------------------------------------------------- /win32/festival/festival_client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/festival_client.exe -------------------------------------------------------------------------------- /win32/festival/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/Makefile -------------------------------------------------------------------------------- /win32/festival/lib/Sable.v0_2.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/Sable.v0_2.dtd -------------------------------------------------------------------------------- /win32/festival/lib/Singing.v0_1.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/Singing.v0_1.dtd -------------------------------------------------------------------------------- /win32/festival/lib/VCLocalRules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/VCLocalRules -------------------------------------------------------------------------------- /win32/festival/lib/VCMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/VCMakefile -------------------------------------------------------------------------------- /win32/festival/lib/apml.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/apml.scm -------------------------------------------------------------------------------- /win32/festival/lib/apml_f2bf0lr.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/apml_f2bf0lr.scm -------------------------------------------------------------------------------- /win32/festival/lib/apml_kaldurtreeZ.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/apml_kaldurtreeZ.scm -------------------------------------------------------------------------------- /win32/festival/lib/cart_aux.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/cart_aux.scm -------------------------------------------------------------------------------- /win32/festival/lib/clunits.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/clunits.scm -------------------------------------------------------------------------------- /win32/festival/lib/clunits_build.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/clunits_build.scm -------------------------------------------------------------------------------- /win32/festival/lib/cmusphinx2_phones.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/cmusphinx2_phones.scm -------------------------------------------------------------------------------- /win32/festival/lib/cslush.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/cslush.scm -------------------------------------------------------------------------------- /win32/festival/lib/cstr.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/cstr.scm -------------------------------------------------------------------------------- /win32/festival/lib/darpa_phones.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/darpa_phones.scm -------------------------------------------------------------------------------- /win32/festival/lib/dicts/COPYING.poslex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/COPYING.poslex -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/COPYING -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/Makefile -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/allowables.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/allowables.scm -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/cmu2ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/cmu2ft -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/cmu_lts_rules.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/cmu_lts_rules.scm -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/cmudict-0.4.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/cmudict-0.4.diff -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/cmudict-0.4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/cmudict-0.4.out -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/cmudict-0.4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/cmudict-0.4.scm -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/cmudict_extensions.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/cmudict_extensions.scm -------------------------------------------------------------------------------- /win32/festival/lib/dicts/cmu/cmulex.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/cmu/cmulex.scm -------------------------------------------------------------------------------- /win32/festival/lib/dicts/wsj.wp39.poslexR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/wsj.wp39.poslexR -------------------------------------------------------------------------------- /win32/festival/lib/dicts/wsj.wp39.tri.ngrambin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/dicts/wsj.wp39.tri.ngrambin -------------------------------------------------------------------------------- /win32/festival/lib/display.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/display.scm -------------------------------------------------------------------------------- /win32/festival/lib/duration.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/duration.scm -------------------------------------------------------------------------------- /win32/festival/lib/email-mode.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/email-mode.scm -------------------------------------------------------------------------------- /win32/festival/lib/engmorph.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/engmorph.scm -------------------------------------------------------------------------------- /win32/festival/lib/engmorphsyn.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/engmorphsyn.scm -------------------------------------------------------------------------------- /win32/festival/lib/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/etc/Makefile -------------------------------------------------------------------------------- /win32/festival/lib/etc/VCMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/etc/VCMakefile -------------------------------------------------------------------------------- /win32/festival/lib/etc/email_filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/etc/email_filter -------------------------------------------------------------------------------- /win32/festival/lib/f2bdurtreeZ.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/f2bdurtreeZ.scm -------------------------------------------------------------------------------- /win32/festival/lib/f2bf0lr.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/f2bf0lr.scm -------------------------------------------------------------------------------- /win32/festival/lib/festdoc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/festdoc.scm -------------------------------------------------------------------------------- /win32/festival/lib/festival.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/festival.el -------------------------------------------------------------------------------- /win32/festival/lib/festival.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/festival.scm -------------------------------------------------------------------------------- /win32/festival/lib/festtest.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/festtest.scm -------------------------------------------------------------------------------- /win32/festival/lib/fringe.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/fringe.scm -------------------------------------------------------------------------------- /win32/festival/lib/gswdurtreeZ.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/gswdurtreeZ.scm -------------------------------------------------------------------------------- /win32/festival/lib/holmes_phones.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/holmes_phones.scm -------------------------------------------------------------------------------- /win32/festival/lib/hts.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/hts.scm -------------------------------------------------------------------------------- /win32/festival/lib/init.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/init.scm -------------------------------------------------------------------------------- /win32/festival/lib/intonation.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/intonation.scm -------------------------------------------------------------------------------- /win32/festival/lib/java.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/java.scm -------------------------------------------------------------------------------- /win32/festival/lib/klatt_durs.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/klatt_durs.scm -------------------------------------------------------------------------------- /win32/festival/lib/languages.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/languages.scm -------------------------------------------------------------------------------- /win32/festival/lib/lexicons.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/lexicons.scm -------------------------------------------------------------------------------- /win32/festival/lib/lts.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/lts.scm -------------------------------------------------------------------------------- /win32/festival/lib/lts_build.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/lts_build.scm -------------------------------------------------------------------------------- /win32/festival/lib/mbrola.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/mbrola.scm -------------------------------------------------------------------------------- /win32/festival/lib/mettree.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/mettree.scm -------------------------------------------------------------------------------- /win32/festival/lib/module_description.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/module_description.scm -------------------------------------------------------------------------------- /win32/festival/lib/mrpa_allophones.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/mrpa_allophones.scm -------------------------------------------------------------------------------- /win32/festival/lib/mrpa_durs.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/mrpa_durs.scm -------------------------------------------------------------------------------- /win32/festival/lib/mrpa_phones.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/mrpa_phones.scm -------------------------------------------------------------------------------- /win32/festival/lib/multisyn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/multisyn/Makefile -------------------------------------------------------------------------------- /win32/festival/lib/multisyn/VCMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/multisyn/VCMakefile -------------------------------------------------------------------------------- /win32/festival/lib/multisyn/multisyn.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/multisyn/multisyn.scm -------------------------------------------------------------------------------- /win32/festival/lib/multisyn/multisyn_pauses.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/multisyn/multisyn_pauses.scm -------------------------------------------------------------------------------- /win32/festival/lib/multisyn/radio_phones_multisyn.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/multisyn/radio_phones_multisyn.scm -------------------------------------------------------------------------------- /win32/festival/lib/multisyn/send_xwaves.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/multisyn/send_xwaves.scm -------------------------------------------------------------------------------- /win32/festival/lib/multisyn/target_cost.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/multisyn/target_cost.scm -------------------------------------------------------------------------------- /win32/festival/lib/ogimarkup-mode.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/ogimarkup-mode.scm -------------------------------------------------------------------------------- /win32/festival/lib/pauses.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/pauses.scm -------------------------------------------------------------------------------- /win32/festival/lib/phoneset.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/phoneset.scm -------------------------------------------------------------------------------- /win32/festival/lib/phrase.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/phrase.scm -------------------------------------------------------------------------------- /win32/festival/lib/pos.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/pos.scm -------------------------------------------------------------------------------- /win32/festival/lib/postlex.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/postlex.scm -------------------------------------------------------------------------------- /win32/festival/lib/radio_phones.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/radio_phones.scm -------------------------------------------------------------------------------- /win32/festival/lib/sable-latin.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/sable-latin.ent -------------------------------------------------------------------------------- /win32/festival/lib/sable-mode.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/sable-mode.scm -------------------------------------------------------------------------------- /win32/festival/lib/scfg.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/scfg.scm -------------------------------------------------------------------------------- /win32/festival/lib/scfg_wsj_wp20.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/scfg_wsj_wp20.gram -------------------------------------------------------------------------------- /win32/festival/lib/sec.B.hept.ngrambin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/sec.B.hept.ngrambin -------------------------------------------------------------------------------- /win32/festival/lib/sec.ts20.quad.ngrambin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/sec.ts20.quad.ngrambin -------------------------------------------------------------------------------- /win32/festival/lib/singing-mode.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/singing-mode.scm -------------------------------------------------------------------------------- /win32/festival/lib/siod.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/siod.scm -------------------------------------------------------------------------------- /win32/festival/lib/siteinit.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/siteinit.scm -------------------------------------------------------------------------------- /win32/festival/lib/soleml-mode.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/soleml-mode.scm -------------------------------------------------------------------------------- /win32/festival/lib/speech.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/speech.properties -------------------------------------------------------------------------------- /win32/festival/lib/synthesis.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/synthesis.scm -------------------------------------------------------------------------------- /win32/festival/lib/tilt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/tilt.scm -------------------------------------------------------------------------------- /win32/festival/lib/tobi.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/tobi.scm -------------------------------------------------------------------------------- /win32/festival/lib/tobi_rules.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/tobi_rules.scm -------------------------------------------------------------------------------- /win32/festival/lib/token.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/token.scm -------------------------------------------------------------------------------- /win32/festival/lib/tokenpos.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/tokenpos.scm -------------------------------------------------------------------------------- /win32/festival/lib/tts.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/tts.scm -------------------------------------------------------------------------------- /win32/festival/lib/unilex_phones.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/unilex_phones.scm -------------------------------------------------------------------------------- /win32/festival/lib/voices.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/voices.scm -------------------------------------------------------------------------------- /win32/festival/lib/voices/english/ked_diphone/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/voices/english/ked_diphone/COPYING -------------------------------------------------------------------------------- /win32/festival/lib/voices/english/ked_diphone/festvox/kddurtreeZ.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/voices/english/ked_diphone/festvox/kddurtreeZ.scm -------------------------------------------------------------------------------- /win32/festival/lib/voices/english/ked_diphone/festvox/ked_diphone.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/voices/english/ked_diphone/festvox/ked_diphone.scm -------------------------------------------------------------------------------- /win32/festival/lib/voices/english/ked_diphone/group/kedlpc16k.group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/voices/english/ked_diphone/group/kedlpc16k.group -------------------------------------------------------------------------------- /win32/festival/lib/web.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/festival/lib/web.scm -------------------------------------------------------------------------------- /win32/include/X11/keysymdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/include/X11/keysymdef.h -------------------------------------------------------------------------------- /win32/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/po/fa.po -------------------------------------------------------------------------------- /win32/res/xiphos-winres.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/res/xiphos-winres.rc.in -------------------------------------------------------------------------------- /win32/share/icons/gnome/16x16/stock/object/stock_insert-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/share/icons/gnome/16x16/stock/object/stock_insert-rule.png -------------------------------------------------------------------------------- /win32/share/icons/gnome/16x16/stock/table/stock_insert-cells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/share/icons/gnome/16x16/stock/table/stock_insert-cells.png -------------------------------------------------------------------------------- /win32/share/icons/gnome/16x16/stock/table/stock_insert-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/share/icons/gnome/16x16/stock/table/stock_insert-table.png -------------------------------------------------------------------------------- /win32/share/icons/gnome/16x16/stock/text/stock_text-monospaced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/share/icons/gnome/16x16/stock/text/stock_text-monospaced.png -------------------------------------------------------------------------------- /win32/share/icons/gnome/scalable/actions/insert-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/share/icons/gnome/scalable/actions/insert-link.svg -------------------------------------------------------------------------------- /win32/share/icons/gnome/scalable/apps/xiphos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/share/icons/gnome/scalable/apps/xiphos.svg -------------------------------------------------------------------------------- /win32/xc-xiphos-win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/win32/xc-xiphos-win.sh -------------------------------------------------------------------------------- /xiphos.doap.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosswire/xiphos/HEAD/xiphos.doap.rdf --------------------------------------------------------------------------------