1
0
mirror of https://github.com/falk-werner/webfused synced 2024-10-27 20:44:08 +00:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Falk Werner
e1ab67f6b4 add end-of-life notification 2023-02-11 09:57:20 +01:00
Falk Werner
f37a9342ec
Merge pull request #13 from falk-werner/increase_version
set version to 0.8.0
2020-11-14 12:31:34 +01:00
Falk Werner
03332d2f46 set version to 0.7.0 2020-11-14 12:18:04 +01:00
Falk Werner
e8f36edfce added changelog 2020-11-14 12:17:36 +01:00
3 changed files with 47 additions and 1 deletions

View File

@ -5,6 +5,10 @@
Reference implementation of webfuse daemon (webfused).
**Note:** This repository refers to [webfuse-legacy](https://github.com/falk-werner/webfuse/tree/webfuse-legacy).
Since `webfuse-legacy` is out-dated, the repository is archived and will be removed in future.
_Please leave an issue if you are still interested in this code._
## Further information
- [Build Instructions](doc/build.md)

42
changelog.md Normal file
View File

@ -0,0 +1,42 @@
# webfused changelog
## 0.7.0 _(unknown)_
* __Chore:__ added changelog
## 0.6.0 _(Sat Nov 14 2020)_
* __Feature:__ allow to specify mount options via config file
* __Feature:__ make userdb optional
* __Feature:__ reduce versions of depencies to required minimum
* __Chore:__ updated dependencies (libwebsockets 4.1.3, libjansson 2.13.1, libfuse 3.10.0, webfuse 0.7.0)
* __Chore:__ remove meson subprojects (use install_deps to fetch depedencies)
* __Fix:__ ensure that syslog ident is valid while logger is active (invalid memory access)
## 0.5.0 _(Sun Jul 19 2020)_
* __Chore:__ updated depedencies (webfuse 0.5.0)
## 0.4.1 _(Sun Jul 05 2020)_
* __Fix:__ removed gtest dependency, when built without tests
## 0.4.0 _(Sun Jul 05 2020)_
* __Feature:__ allow to build without tests
* __Chore:__ updated dependencies (libwebsockets 4.0.0, webfuse 0.4.0)
## 0.3.0 _(Sat Jun 06 2020)_
* __Chore:__ switched build system to meson
## 0.2.0 _(Fri Mar 20 2020)_
* __Feature:__ enabled authentication (pam, userdb)
* __Feature:__ use config file
* __Feature:__ added syslog logger
## 0.1.0 _(Mon Mar 09 2020)_
* __Feature:__ initial version

View File

@ -1,4 +1,4 @@
project('webfused', 'c', 'cpp', version: '0.6.0', license: 'LGPL-3.0+',
project('webfused', 'c', 'cpp', version: '0.7.0', license: 'LGPL-3.0+',
default_options: ['c_std=gnu99', 'cpp_std=gnu++14'])
without_tests = get_option('without_tests')