release 2.3.1
This commit is contained in:
parent
80c1462866
commit
3a50e5cb4d
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -9,17 +9,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Added
|
||||
|
||||
- Clarify that the admin page only works for Mastodon and Pleroma instances.
|
||||
### Changed
|
||||
|
||||
### Deprecated
|
||||
|
||||
### Removed
|
||||
|
||||
### Fixed
|
||||
|
||||
### Security
|
||||
|
||||
## [2.3.1 - 2019-08-03]
|
||||
|
||||
### Added
|
||||
|
||||
- Added a warning on mobile devices suggesting to view the site on a larger computer.
|
||||
|
||||
### Changed
|
||||
|
||||
- Performance improvements when opening the app on something that isn't the graph.
|
||||
- There are now fewer irrelevant search results.
|
||||
|
||||
### Deprecated
|
||||
|
||||
### Removed
|
||||
- Clarify that the admin page only works for Mastodon and Pleroma instances.
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ config :backend, Backend.Repo, queue_target: 5000
|
|||
|
||||
instances_config_path =
|
||||
if System.get_env("MIX_ENV") == "prod",
|
||||
do: "lib/backend-2.3.0/priv/elasticsearch/instances.json",
|
||||
do: "lib/backend-2.3.1/priv/elasticsearch/instances.json",
|
||||
else: "priv/elasticsearch/instances.json"
|
||||
|
||||
config :backend, Backend.Elasticsearch.Cluster,
|
||||
|
|
|
@ -4,7 +4,7 @@ defmodule Backend.MixProject do
|
|||
def project do
|
||||
[
|
||||
app: :backend,
|
||||
version: "2.3.0",
|
||||
version: "2.3.1",
|
||||
elixir: "~> 1.5",
|
||||
elixirc_paths: elixirc_paths(Mix.env()),
|
||||
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "frontend",
|
||||
"version": "2.3.0",
|
||||
"version": "2.3.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "NODE_ENV=development react-scripts start",
|
||||
|
|
Loading…
Reference in a new issue