Separate footer and fixed expiry date #46
2 changed files with 6 additions and 4 deletions
Update changelog
commit
c743486643
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
- Remove the background gradient on the index page
|
||||
|
||||
## [0.4.1] (2024-01-02)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ It is recommended to use cargo for building as such make sure the `cargo` compon
|
|||
For a release build you can run `cargo build --release` this should build all dependencies and place the final binary in
|
||||
the `./target/release/` folder.
|
||||
|
||||
For a development build you may run `cargo build --features=dev-mode`.
|
||||
For a development build you may run `cargo build --features=dev_mode`.
|
||||
The dev-mode features allows enabling `development` mode which allows for live template reload.
|
||||
With the feature specified a login provider which accepts all username password combinations is also added.
|
||||
Enabling this feature will also place a banner at the top of the page informing of the fact that it's running from a dev-build.
|
||||
|
|
@ -30,7 +30,7 @@ By default, it starts in `production` mode, when build with the `dev-mode` featu
|
|||
The table below list the default config path, it can be overridden using the `--config` flag.
|
||||
|
||||
| OS | Path |
|
||||
|-----------------------------------------|---------------------------------------------------|
|
||||
| --------------------------------------- | ------------------------------------------------- |
|
||||
| Linux | `/etc/jobboerse/config.toml` |
|
||||
| Windows, if `${PROGRAMDATA}` is defined | `${PROGRAMDATA}/fs-infmath/jobboerse/config.toml` |
|
||||
| Fallback | `./config.toml` |
|
||||
|
|
@ -54,7 +54,7 @@ The config file uses the toml format.
|
|||
The expected fields are defined by the `ProgramConfig` struct in `./src/server_config.rs`.
|
||||
|
||||
| config field | required | default |
|
||||
|---------------------|----------|----------------|
|
||||
| ------------------- | -------- | -------------- |
|
||||
| `url_base_path` | false | empty |
|
||||
| `data_storage_path` | false | `./job_offers` |
|
||||
| `banner` | false | no banner |
|
||||
|
|
@ -114,7 +114,7 @@ Cutting a Release
|
|||
|
||||
* Update the version in the root Cargo.toml according to semver, this will be the version to-be-cut
|
||||
* Update the changelog to reflect all changes since the last release unter `[Unreleased]`
|
||||
* It's generally recommended to keep the Changelog upto date by adding changes to the unreleased section in the commit that introduces the change
|
||||
* It's generally recommended to keep the Changelog up to date by adding changes to the unreleased section in the commit that introduces the change
|
||||
* In the now up-to-date changelog add a new section heading for the version to-be-cut between `[Unreleased]` and the first entry of the unreleased section
|
||||
* Add a matching link definition at the bottom of a changelog
|
||||
* Update the version in dist/arch/PKGBUILD to match the version to-be-cut
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue