├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── build-deb.yml │ ├── build-windows.yml │ ├── run-tests.yml │ └── web.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── TODO.md ├── _config.yml ├── data ├── rednotebook.appdata.xml └── rednotebook.desktop ├── debian ├── changelog ├── control ├── copyright ├── docs ├── patches │ └── series ├── rednotebook-crashdb.conf ├── rednotebook.1 ├── rednotebook.dirs ├── rednotebook.links ├── rednotebook.manpages ├── rules ├── source │ └── format ├── source_rednotebook.py ├── upstream │ └── metadata └── watch ├── dev ├── benchmarks │ └── findall.py ├── build_translations.py ├── generate-help.py ├── generate-pot.sh ├── mac-homebrew.md ├── update-translations.sh └── whitelist.py ├── po ├── ar.po ├── ast.po ├── be.po ├── bg.po ├── bs.po ├── ca.po ├── cs.po ├── cy.po ├── da.po ├── de.po ├── el.po ├── en_GB.po ├── eo.po ├── es.po ├── eu.po ├── fi.po ├── fo.po ├── fr.po ├── ga.po ├── gl.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── id.po ├── ie.po ├── it.po ├── ja.po ├── ka.po ├── kk.po ├── ko.po ├── ky.po ├── lt.po ├── ml.po ├── mn.po ├── ms.po ├── my.po ├── nb.po ├── nds.po ├── nl.po ├── nn.po ├── oc.po ├── pl.po ├── pt.po ├── pt_BR.po ├── rednotebook.pot ├── ro.po ├── ru.po ├── si.po ├── sk.po ├── sl.po ├── sr.po ├── sv.po ├── sw.po ├── ta.po ├── te.po ├── tl.po ├── tr.po ├── ug.po ├── uk.po ├── uz.po ├── vi.po ├── wae.po ├── xh.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── pyproject.toml ├── rednotebook.png ├── rednotebook ├── __init__.py ├── backup.py ├── configuration.py ├── data.py ├── external │ ├── __init__.py │ ├── elibintl.py │ ├── spellcheck.py │ └── txt2tags.py ├── files │ ├── default.cfg │ ├── main_window.glade │ ├── rednotebook-highlight-style.xml │ └── t2t.lang ├── gui │ ├── __init__.py │ ├── browser.py │ ├── categories.py │ ├── clouds.py │ ├── customwidgets.py │ ├── editor.py │ ├── exports.py │ ├── format_menu.py │ ├── insert_menu.py │ ├── main_window.py │ ├── menu.py │ ├── options.py │ └── search.py ├── help.py ├── images │ ├── bulletlist.png │ ├── date.png │ ├── formula.png │ ├── insert-image-16.png │ ├── insert-image-22.png │ ├── line.png │ ├── linebreak.png │ ├── link.png │ ├── numberedlist.png │ ├── picture.png │ ├── rednotebook-icon │ │ ├── export-to-png.sh │ │ ├── rednotebook.svg │ │ ├── rn-128.png │ │ ├── rn-14.png │ │ ├── rn-16.png │ │ ├── rn-192.png │ │ ├── rn-22.png │ │ ├── rn-256.png │ │ ├── rn-32.png │ │ ├── rn-48.png │ │ └── rn-64.png │ ├── table.png │ └── title.png ├── info.py ├── journal.py ├── rednotebook ├── storage.py ├── templates.py └── util │ ├── __init__.py │ ├── dates.py │ ├── filesystem.py │ ├── markup.py │ ├── pango_markup.py │ ├── statistics.py │ ├── urls.py │ └── utils.py ├── run ├── scripts ├── rednotebook_merge.py └── text2rednotebook.py ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── test_configuration.py ├── test_day.py ├── test_filesystem.py ├── test_hashtags.py ├── test_markup.py └── test_utils.py ├── tox.ini ├── web ├── .gitignore ├── .well-known │ └── org.flathub.VerifiedApps.txt ├── build.sh ├── css │ ├── defaults.css │ ├── downloads.css │ ├── style.css │ └── system-menus.css ├── favicon.ico ├── fonts │ ├── aller_rg-webfont.eot │ ├── aller_rg-webfont.svg │ ├── aller_rg-webfont.ttf │ └── aller_rg-webfont.woff ├── images │ ├── background.png │ ├── body-decoration.png │ ├── bullet.png │ ├── debian-logo.png │ ├── download-block-blank.png │ ├── download-button-bg.png │ ├── facebook-18.png │ ├── fedora-logo.png │ ├── footer-top-gradient.png │ ├── footer.png │ ├── leopard-logo.png │ ├── logo.png │ ├── logo.xcf │ ├── other-logo.png │ ├── primary-links-hover.png │ ├── primary-links.png │ ├── source-logo.png │ ├── thin-download.png │ ├── twitter-18.png │ ├── ubuntu-logo.png │ └── windows-logo.png ├── install.html ├── js │ ├── download.js │ └── prototype.js ├── screenshots │ ├── rednotebook-1.1-1.png │ ├── rednotebook-1.1-2.png │ ├── rednotebook-1.1-3.png │ ├── rednotebook-2.0-1.png │ └── rednotebook-2.0-2.png ├── src │ ├── changelog2html.py │ ├── downloads.html │ ├── index.html │ ├── participate.html │ ├── screenshots.html │ ├── spider.py │ ├── template.html │ └── thanks.html └── thumbnails │ ├── rednotebook-1.1-1.png │ ├── rednotebook-1.1-2.png │ ├── rednotebook-1.1-3.png │ ├── rednotebook-2.0-1.png │ └── rednotebook-2.0-2.png └── win ├── README.txt ├── fetch-dictionary.py ├── rednotebook.ico ├── rednotebook.iss ├── rednotebook.spec ├── requirements.txt ├── sampleapp.py └── utils.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/.github/workflows/build-deb.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/.github/workflows/web.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/TODO.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/_config.yml -------------------------------------------------------------------------------- /data/rednotebook.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/data/rednotebook.appdata.xml -------------------------------------------------------------------------------- /data/rednotebook.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/data/rednotebook.desktop -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/rednotebook-crashdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/rednotebook-crashdb.conf -------------------------------------------------------------------------------- /debian/rednotebook.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/rednotebook.1 -------------------------------------------------------------------------------- /debian/rednotebook.dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /debian/rednotebook.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/rednotebook.links -------------------------------------------------------------------------------- /debian/rednotebook.manpages: -------------------------------------------------------------------------------- 1 | debian/rednotebook.1 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/source_rednotebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/source_rednotebook.py -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/upstream/metadata -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/debian/watch -------------------------------------------------------------------------------- /dev/benchmarks/findall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/dev/benchmarks/findall.py -------------------------------------------------------------------------------- /dev/build_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/dev/build_translations.py -------------------------------------------------------------------------------- /dev/generate-help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/dev/generate-help.py -------------------------------------------------------------------------------- /dev/generate-pot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/dev/generate-pot.sh -------------------------------------------------------------------------------- /dev/mac-homebrew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/dev/mac-homebrew.md -------------------------------------------------------------------------------- /dev/update-translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/dev/update-translations.sh -------------------------------------------------------------------------------- /dev/whitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/dev/whitelist.py -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/cy.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/es.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/fo.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ky.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/mn.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/my.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/nds.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/rednotebook.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/rednotebook.pot -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/sw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/sw.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/te.po -------------------------------------------------------------------------------- /po/tl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/tl.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/wae.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/wae.po -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/xh.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rednotebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook.png -------------------------------------------------------------------------------- /rednotebook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rednotebook/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/backup.py -------------------------------------------------------------------------------- /rednotebook/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/configuration.py -------------------------------------------------------------------------------- /rednotebook/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/data.py -------------------------------------------------------------------------------- /rednotebook/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rednotebook/external/elibintl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/external/elibintl.py -------------------------------------------------------------------------------- /rednotebook/external/spellcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/external/spellcheck.py -------------------------------------------------------------------------------- /rednotebook/external/txt2tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/external/txt2tags.py -------------------------------------------------------------------------------- /rednotebook/files/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/files/default.cfg -------------------------------------------------------------------------------- /rednotebook/files/main_window.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/files/main_window.glade -------------------------------------------------------------------------------- /rednotebook/files/rednotebook-highlight-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/files/rednotebook-highlight-style.xml -------------------------------------------------------------------------------- /rednotebook/files/t2t.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/files/t2t.lang -------------------------------------------------------------------------------- /rednotebook/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rednotebook/gui/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/browser.py -------------------------------------------------------------------------------- /rednotebook/gui/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/categories.py -------------------------------------------------------------------------------- /rednotebook/gui/clouds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/clouds.py -------------------------------------------------------------------------------- /rednotebook/gui/customwidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/customwidgets.py -------------------------------------------------------------------------------- /rednotebook/gui/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/editor.py -------------------------------------------------------------------------------- /rednotebook/gui/exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/exports.py -------------------------------------------------------------------------------- /rednotebook/gui/format_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/format_menu.py -------------------------------------------------------------------------------- /rednotebook/gui/insert_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/insert_menu.py -------------------------------------------------------------------------------- /rednotebook/gui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/main_window.py -------------------------------------------------------------------------------- /rednotebook/gui/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/menu.py -------------------------------------------------------------------------------- /rednotebook/gui/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/options.py -------------------------------------------------------------------------------- /rednotebook/gui/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/gui/search.py -------------------------------------------------------------------------------- /rednotebook/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/help.py -------------------------------------------------------------------------------- /rednotebook/images/bulletlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/bulletlist.png -------------------------------------------------------------------------------- /rednotebook/images/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/date.png -------------------------------------------------------------------------------- /rednotebook/images/formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/formula.png -------------------------------------------------------------------------------- /rednotebook/images/insert-image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/insert-image-16.png -------------------------------------------------------------------------------- /rednotebook/images/insert-image-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/insert-image-22.png -------------------------------------------------------------------------------- /rednotebook/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/line.png -------------------------------------------------------------------------------- /rednotebook/images/linebreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/linebreak.png -------------------------------------------------------------------------------- /rednotebook/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/link.png -------------------------------------------------------------------------------- /rednotebook/images/numberedlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/numberedlist.png -------------------------------------------------------------------------------- /rednotebook/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/picture.png -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/export-to-png.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/export-to-png.sh -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rednotebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rednotebook.svg -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rn-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rn-128.png -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rn-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rn-14.png -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rn-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rn-16.png -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rn-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rn-192.png -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rn-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rn-22.png -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rn-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rn-256.png -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rn-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rn-32.png -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rn-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rn-48.png -------------------------------------------------------------------------------- /rednotebook/images/rednotebook-icon/rn-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/rednotebook-icon/rn-64.png -------------------------------------------------------------------------------- /rednotebook/images/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/table.png -------------------------------------------------------------------------------- /rednotebook/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/images/title.png -------------------------------------------------------------------------------- /rednotebook/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/info.py -------------------------------------------------------------------------------- /rednotebook/journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/journal.py -------------------------------------------------------------------------------- /rednotebook/rednotebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/rednotebook -------------------------------------------------------------------------------- /rednotebook/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/storage.py -------------------------------------------------------------------------------- /rednotebook/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/templates.py -------------------------------------------------------------------------------- /rednotebook/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rednotebook/util/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/util/dates.py -------------------------------------------------------------------------------- /rednotebook/util/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/util/filesystem.py -------------------------------------------------------------------------------- /rednotebook/util/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/util/markup.py -------------------------------------------------------------------------------- /rednotebook/util/pango_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/util/pango_markup.py -------------------------------------------------------------------------------- /rednotebook/util/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/util/statistics.py -------------------------------------------------------------------------------- /rednotebook/util/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/util/urls.py -------------------------------------------------------------------------------- /rednotebook/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/rednotebook/util/utils.py -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/run -------------------------------------------------------------------------------- /scripts/rednotebook_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/scripts/rednotebook_merge.py -------------------------------------------------------------------------------- /scripts/text2rednotebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/scripts/text2rednotebook.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/tests/test_configuration.py -------------------------------------------------------------------------------- /tests/test_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/tests/test_day.py -------------------------------------------------------------------------------- /tests/test_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/tests/test_filesystem.py -------------------------------------------------------------------------------- /tests/test_hashtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/tests/test_hashtags.py -------------------------------------------------------------------------------- /tests/test_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/tests/test_markup.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/tox.ini -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.well-known/org.flathub.VerifiedApps.txt: -------------------------------------------------------------------------------- 1 | 2152a8d4-5b57-4e32-a5d1-824a51c92930 2 | -------------------------------------------------------------------------------- /web/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/build.sh -------------------------------------------------------------------------------- /web/css/defaults.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/css/defaults.css -------------------------------------------------------------------------------- /web/css/downloads.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/css/downloads.css -------------------------------------------------------------------------------- /web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/css/style.css -------------------------------------------------------------------------------- /web/css/system-menus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/css/system-menus.css -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/fonts/aller_rg-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/fonts/aller_rg-webfont.eot -------------------------------------------------------------------------------- /web/fonts/aller_rg-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/fonts/aller_rg-webfont.svg -------------------------------------------------------------------------------- /web/fonts/aller_rg-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/fonts/aller_rg-webfont.ttf -------------------------------------------------------------------------------- /web/fonts/aller_rg-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/fonts/aller_rg-webfont.woff -------------------------------------------------------------------------------- /web/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/background.png -------------------------------------------------------------------------------- /web/images/body-decoration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/body-decoration.png -------------------------------------------------------------------------------- /web/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/bullet.png -------------------------------------------------------------------------------- /web/images/debian-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/debian-logo.png -------------------------------------------------------------------------------- /web/images/download-block-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/download-block-blank.png -------------------------------------------------------------------------------- /web/images/download-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/download-button-bg.png -------------------------------------------------------------------------------- /web/images/facebook-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/facebook-18.png -------------------------------------------------------------------------------- /web/images/fedora-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/fedora-logo.png -------------------------------------------------------------------------------- /web/images/footer-top-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/footer-top-gradient.png -------------------------------------------------------------------------------- /web/images/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/footer.png -------------------------------------------------------------------------------- /web/images/leopard-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/leopard-logo.png -------------------------------------------------------------------------------- /web/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/logo.png -------------------------------------------------------------------------------- /web/images/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/logo.xcf -------------------------------------------------------------------------------- /web/images/other-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/other-logo.png -------------------------------------------------------------------------------- /web/images/primary-links-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/primary-links-hover.png -------------------------------------------------------------------------------- /web/images/primary-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/primary-links.png -------------------------------------------------------------------------------- /web/images/source-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/source-logo.png -------------------------------------------------------------------------------- /web/images/thin-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/thin-download.png -------------------------------------------------------------------------------- /web/images/twitter-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/twitter-18.png -------------------------------------------------------------------------------- /web/images/ubuntu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/ubuntu-logo.png -------------------------------------------------------------------------------- /web/images/windows-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/images/windows-logo.png -------------------------------------------------------------------------------- /web/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/install.html -------------------------------------------------------------------------------- /web/js/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/js/download.js -------------------------------------------------------------------------------- /web/js/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/js/prototype.js -------------------------------------------------------------------------------- /web/screenshots/rednotebook-1.1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/screenshots/rednotebook-1.1-1.png -------------------------------------------------------------------------------- /web/screenshots/rednotebook-1.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/screenshots/rednotebook-1.1-2.png -------------------------------------------------------------------------------- /web/screenshots/rednotebook-1.1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/screenshots/rednotebook-1.1-3.png -------------------------------------------------------------------------------- /web/screenshots/rednotebook-2.0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/screenshots/rednotebook-2.0-1.png -------------------------------------------------------------------------------- /web/screenshots/rednotebook-2.0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/screenshots/rednotebook-2.0-2.png -------------------------------------------------------------------------------- /web/src/changelog2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/src/changelog2html.py -------------------------------------------------------------------------------- /web/src/downloads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/src/downloads.html -------------------------------------------------------------------------------- /web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/src/index.html -------------------------------------------------------------------------------- /web/src/participate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/src/participate.html -------------------------------------------------------------------------------- /web/src/screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/src/screenshots.html -------------------------------------------------------------------------------- /web/src/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/src/spider.py -------------------------------------------------------------------------------- /web/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/src/template.html -------------------------------------------------------------------------------- /web/src/thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/src/thanks.html -------------------------------------------------------------------------------- /web/thumbnails/rednotebook-1.1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/thumbnails/rednotebook-1.1-1.png -------------------------------------------------------------------------------- /web/thumbnails/rednotebook-1.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/thumbnails/rednotebook-1.1-2.png -------------------------------------------------------------------------------- /web/thumbnails/rednotebook-1.1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/thumbnails/rednotebook-1.1-3.png -------------------------------------------------------------------------------- /web/thumbnails/rednotebook-2.0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/thumbnails/rednotebook-2.0-1.png -------------------------------------------------------------------------------- /web/thumbnails/rednotebook-2.0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/web/thumbnails/rednotebook-2.0-2.png -------------------------------------------------------------------------------- /win/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/win/README.txt -------------------------------------------------------------------------------- /win/fetch-dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/win/fetch-dictionary.py -------------------------------------------------------------------------------- /win/rednotebook.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/win/rednotebook.ico -------------------------------------------------------------------------------- /win/rednotebook.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/win/rednotebook.iss -------------------------------------------------------------------------------- /win/rednotebook.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/win/rednotebook.spec -------------------------------------------------------------------------------- /win/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/win/requirements.txt -------------------------------------------------------------------------------- /win/sampleapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/win/sampleapp.py -------------------------------------------------------------------------------- /win/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jendrikseipp/rednotebook/HEAD/win/utils.py --------------------------------------------------------------------------------