Skip to content

Commit

Permalink
fix: open file paths, not just folders
Browse files Browse the repository at this point in the history
fix: ignore dotfiles in storage
  • Loading branch information
hoodie committed Jan 5, 2020
1 parent 60c44ae commit 69c9cf7
Show file tree
Hide file tree
Showing 8 changed files with 1,816 additions and 407 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# [3.9.1](https://github.com/ascii-dresden/asciii/compare/v3.9.0...v) (2020-01-05)


### Bug Fixes

* open file paths, not just folders ([1b59d45](https://github.com/ascii-dresden/asciii/commit/1b59d45))



# [3.9.0](https://github.com/ascii-dresden/asciii/compare/v3.8.0...v3.9.0) (2019-11-24)


### Features

* change fallback behavior ([fd8d91f](https://github.com/ascii-dresden/asciii/commit/fd8d91f))
* print warning if yaml values are invalid ([cd0fea8](https://github.com/ascii-dresden/asciii/commit/cd0fea8)), closes [#81](https://github.com/ascii-dresden/asciii/issues/81)



# [3.8.0](https://github.com/ascii-dresden/asciii/compare/v3.7.3...v3.8.0) (2019-10-27)


Expand Down
428 changes: 214 additions & 214 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asciii"
version = "3.9.0"
version = "3.9.1"
authors = ["Hendrik Sollich <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -91,6 +91,7 @@ pretty_assertions = "0.6"
[features]
default = ["cli", "document_export", "git_statuses", "serialization", "deserialization", "server", "shell", "localize"]
travis_compatible = ["cli", "document_export", "git_statuses", "serialization", "deserialization", "shell", "meta", "version_string"]
mini_tool = ["cli", "document_export"]
full_tool = ["travis_compatible", "localize"]
server= ["actix", "actix-files", "actix-web", "actix-web-actors"]
webapp = ["server"]
Expand Down
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,20 @@ msgmerge -U lang/de.po lang/default.pot

to update the german local file `lang/de.po`. Now you only need to update any empty field and check the file in as well.

## CI/CD
## Features
asciii comes with different sets of feature configurations, most of which are there to speed up development time. By default most useful features are turned on, such as `webapp`, `shell` and `localization`. You can build asciii with a reduced features set by passing these arguments to `cargo build`:

### Travis-CI [![Build Status](https://travis-ci.org/ascii-dresden/asciii.svg?branch=master)](https://travis-ci.org/ascii-dresden/asciii)
<<<<<<< HEAD
### `--no-default-features --features full_tool`
* everything except the `webserver`

### `--no-default-features --features mini_tool`
=======
### `--no-default-features --features full_tool`
* everything except the `webserver`

### `--no-default-features --features mini_tool`
>>>>>>> a76b17a24... fix: open file paths, not just folders
* no `shell`, `git_statuses`, `localization`, `meta` or `serde`, just `cli` and `document_export`

Please check `Cargo.toml` for all features.
Loading

0 comments on commit 69c9cf7

Please sign in to comment.