Skip to content

Commit

Permalink
Updating changelog and some minor UI adjustments.
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomanuel committed Dec 30, 2019
1 parent 9ca49b4 commit 7fb97c0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CoopHub Changelog

## v0.1.4

* Adding [CHANGELOG](CHANGELOG.md).
* Adding [VERSION](VERSION) file to hold the **latest released version** (loaded at [mix.exs](mix.exs#L7) as project `vsn`).
* Keeping updated the project version by writting the `VERSION` file when a release is published.
* Increasing the amount of fetched repos per org to `100` for `PROD` env.

## v0.1.3

* Adding cooperatives page (removing dropdown from header).
Expand Down
2 changes: 1 addition & 1 deletion assets/js/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Footer: React.FC = () =>
<div className="col-sm-12">
<div className="copyright-box">
<div className="credits">
Created with ♥ by <a href="https://fiqus.coop/">Fiqus</a> | View the <a href="https://github.com/fiqus/coophub">GitHub repo</a>
Created with ♥ by <a href="https://fiqus.coop" target="_blank">Fiqus</a> | View the <a href="https://github.com/fiqus/coophub" target="_blank">GitHub repo</a>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions assets/js/pages/languageRepos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function resultsMessage(resultsLength: number, query: string | null) {
if (resultsLength) {
return (
<p className="subtitle-a">
Found <b>{resultsLength}</b> repositories for <b>{query}</b>
Found <b>{resultsLength}</b> repositories for <b>{query}</b> language
</p>
)
}
Expand All @@ -40,7 +40,7 @@ const LanguageReposPage: React.FC<RouteComponentProps<MatchParams>> = ({match})
<Container className="pt-xl-5 result-repos-cards">
<div className="title-box text-center">
<h3 className="title-a">
Language repos
{lang} repos
</h3>
{resultsMessage(repos.data.length, lang)}
<div className="line-mf"></div>
Expand Down
2 changes: 1 addition & 1 deletion config/prod.exs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ config :coophub, CoophubWeb.Endpoint,
port: 4443,
cipher_suite: :strong,
keyfile: "priv/ssl/privkey.pem",
certfile: "priv/ssl/cert.pem"
certfile: "priv/ssl/fullchain.pem"
],
secret_key_base: System.fetch_env!("SECRET_KEY_BASE"),
cache_static_manifest: "priv/static/cache_manifest.json"
Expand Down

0 comments on commit 7fb97c0

Please sign in to comment.