Current section
37 Versions
Jump to
Current section
37 Versions
Compare versions
25
files changed
+475
additions
-438
deletions
| @@ -30,7 +30,7 @@ _If you are having problems, view `README_INSTALL.md` for manual instructions._ | |
| 30 30 | |
| 31 31 | ```elixir |
| 32 32 | def deps do |
| 33 | - [{:thesis, "~> 0.0.17"}] |
| 33 | + [{:thesis, "~> 0.0.18"}] |
| 34 34 | end |
| 35 35 | |
| 36 36 | def application do |
| @@ -6,7 +6,7 @@ For automatic setup, see `README.md`. | |
| 6 6 | |
| 7 7 | ```elixir |
| 8 8 | def deps do |
| 9 | - [{:thesis, "~> 0.0.17"}] |
| 9 | + [{:thesis, "~> 0.0.18"}] |
| 10 10 | end |
| 11 11 | |
| 12 12 | def application do |
| @@ -114,19 +114,21 @@ | |
| 114 114 | <<"web/static/js/components/cancel_button.js">>, |
| 115 115 | <<"web/static/js/components/delete_button.js">>, |
| 116 116 | <<"web/static/js/components/edit_button.js">>, |
| 117 | - <<"web/static/js/components/image_tray.js">>, |
| 118 | - <<"web/static/js/components/raw_html_tray.js">>, |
| 119 117 | <<"web/static/js/components/save_button.js">>, |
| 120 118 | <<"web/static/js/components/settings_button.js">>, |
| 121 119 | <<"web/static/js/components/settings_tray.js">>, |
| 122 | - <<"web/static/js/content_types/html.js">>, |
| 123 | - <<"web/static/js/content_types/raw_html.js">>, |
| 120 | + <<"web/static/js/content_types/html_editor.js">>, |
| 121 | + <<"web/static/js/content_types/image_editor.js">>, |
| 122 | + <<"web/static/js/content_types/image_tray.js">>, |
| 123 | + <<"web/static/js/content_types/raw_html_editor.js">>, |
| 124 | + <<"web/static/js/content_types/raw_html_tray.js">>, |
| 125 | + <<"web/static/js/content_types/text_editor.js">>, |
| 124 126 | <<"web/static/js/thesis-editor.js">>,<<"web/static/js/utilities/net.js">>, |
| 125 127 | <<"mix.exs">>,<<"README.md">>,<<"README_INSTALL.md">>,<<"LICENSE.md">>, |
| 126 128 | <<"package.json">>]}. |
| 127 129 | {<<"licenses">>,[<<"MIT">>]}. |
| 128 130 | {<<"links">>, |
| 129 | - [{<<"Docs">>,<<"https://hexdocs.pm/thesis/0.0.17/api-reference.html">>}, |
| 131 | + [{<<"Docs">>,<<"https://hexdocs.pm/thesis/0.0.18/api-reference.html">>}, |
| 130 132 | {<<"GitHub">>,<<"https://github.com/infinite_red/thesis">>}]}. |
| 131 133 | {<<"maintainers">>, |
| 132 134 | [<<"Jamon Holmgren">>,<<"Ken Miller">>,<<"Daniel Berkompas">>]}. |
| @@ -156,4 +158,4 @@ | |
| 156 158 | {<<"name">>,<<"html_sanitize_ex">>}, |
| 157 159 | {<<"optional">>,false}, |
| 158 160 | {<<"requirement">>,<<">= 1.0.1">>}]]}. |
| 159 | - {<<"version">>,<<"0.0.17">>}. |
| 161 | + {<<"version">>,<<"0.0.18">>}. |
| @@ -1,6 +1,6 @@ | |
| 1 1 | defmodule Thesis.Mixfile do |
| 2 2 | use Mix.Project |
| 3 | - @version "0.0.17" # REMEMBER TO UPDATE package.json and both READMEs! |
| 3 | + @version "0.0.18" # REMEMBER TO UPDATE package.json and both READMEs! |
| 4 4 | |
| 5 5 | def project do |
| 6 6 | [ |
| @@ -1,6 +1,6 @@ | |
| 1 1 | { |
| 2 2 | "name": "thesis", |
| 3 | - "version": "0.0.17-dev", |
| 3 | + "version": "0.0.18-dev", |
| 4 4 | "main": "./priv/static/thesis.js", |
| 5 5 | "repository": {}, |
| 6 6 | "license" : "MIT", |
Loading more files…