Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From trunk
To v0.13.0
2025-09-07
| | |
13:45 |
|
...
(Leaf
check-in: 0a1ff448aa user: t73fde tags: trunk)
|
2025-09-02
| | |
16:19 |
|
...
(check-in: cec69262f9 user: stern tags: trunk)
|
2023-08-07
| | |
13:56 |
|
...
(check-in: d2fe74163e user: stern tags: trunk)
|
13:53 |
|
...
(check-in: 37fed58a18 user: stern tags: trunk, release, v0.13.0)
|
10:49 |
|
...
(check-in: 8da4351a55 user: stern tags: trunk)
|
| | |
Changes to .fossil-settings/ignore-glob.
1
2
|
1
2
3
|
+
|
bin/*
releases/*
parser/pikchr/*.out
|
Added .github/dependabot.yml.
|
1
2
3
4
5
6
7
8
9
10
11
12
|
+
+
+
+
+
+
+
+
+
+
+
+
|
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "gomod" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
rebase-strategy: "disabled"
|
| | | | | | | | | | |
Changes to Makefile.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
## Copyright (c) 2020-present Detlef Stern
##
## This file is part of Zettelstore.
##
## Zettelstore is licensed under the latest version of the EUPL (European Union
## Public License). Please see file LICENSE.txt for your rights and obligations
## under this license.
.PHONY: check relcheck api version build release clean
.PHONY: check relcheck api build release clean
check:
go run tools/check/check.go
go run tools/build.go check
relcheck:
go run tools/check/check.go -r
go run tools/build.go relcheck
api:
go run tools/testapi/testapi.go
go run tools/build.go testapi
version:
@echo $(shell go run tools/build/build.go version)
@echo $(shell go run tools/build.go version)
build:
go run tools/build/build.go build
go run tools/build.go build
release:
go run tools/build/build.go release
go run tools/build.go release
clean:
go run tools/clean/clean.go
go run tools/build.go clean
|
Changes to README.md.
︙ | | |
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
-
-
+
+
|
gradually, one major focus is a long-term store of these notes, hence the name
“Zettelstore”.
To get an initial impression, take a look at the
[manual](https://zettelstore.de/manual/). It is a live example of the
zettelstore software, running in read-only mode.
[Zettelstore Client](https://t73f.de/r/zsc) provides client software to access
Zettelstore via its API more easily, [Zettelstore
[Zettelstore Client](https://zettelstore.de/client) provides client
software to access Zettelstore via its API more easily, [Zettelstore
Contrib](https://zettelstore.de/contrib) contains contributed software, which
often connects to Zettelstore via its API. Some of the software packages may be
experimental.
The software, including the manual, is licensed
under the [European Union Public License 1.2 (or
later)](https://zettelstore.de/home/file?name=LICENSE.txt&ci=trunk).
|
︙ | | |
Changes to VERSION.
1
|
1
|
-
+
|
0.23.0-dev
0.13.0
|
Added ast/ast.go.