Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified rebar
Binary file not shown.
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{deps, [
{boss, ".*", {git, "https://github.com/ChicagoBoss/ChicagoBoss.git", {tag, "v0.8.13"}}}
{boss, "0\.9.*", {git, "git://github.com/ChicagoBoss/ChicagoBoss", {tag, "932e33a017d3abb3b55b08dced05835260a093f3"}}}
]}.
{plugin_dir, ["priv/rebar"]}.
{plugins, [boss_plugin]}.
Expand Down
2 changes: 1 addition & 1 deletion src/cb_admin.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, cb_admin, [
{description, "Chicago Boss Admin Interface"},
{vsn, "0.7.2"},
{vsn, "0.8.0"},
{modules, []},
{registered, []},
{applications, [kernel, stdlib, crypto, boss]},
Expand Down
4 changes: 2 additions & 2 deletions src/controller/cb_admin_lang_controller.erl
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ edit('POST', [App, Lang|Fmt], Auth) ->
LangFile = boss_files_util:lang_path(AppAtom, Lang),
{ok, IODevice} = file:open(LangFile, [write, append]),
lists:map(fun(Message) ->
Original = proplists:get_value("orig", Message),
Translation = proplists:get_value("trans", Message),
Original = binary_to_list(proplists:get_value("orig", Message)),
Translation = binary_to_list(proplists:get_value("trans", Message)),
case Translation of
"" ->
case WithBlanks of
Expand Down