mirror of
https://github.com/falk-werner/webfused
synced 2024-10-27 20:44:08 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
e1ab67f6b4 | ||
|
f37a9342ec | ||
|
03332d2f46 | ||
|
e8f36edfce |
@ -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
42
changelog.md
Normal 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
|
||||
|
@ -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')
|
||||
|
Loading…
Reference in New Issue
Block a user