Skip to content

Commit 306cc6f

Browse files
committed
[new release] slipshow (0.3.0)
CHANGES: - Fix file watching issues by vendoring a (modified) irmin-watcher, and watching all files the presentation depends on (images, themes, ...) (panglesd/slipshow#113) - Adds a favicon to the presentation file (panglesd/slipshow#115) - Fix missing attributes on images (panglesd/slipshow#117) - Fix missing mime type on images that made svg undisplayable (panglesd/slipshow#120) - Fix detection of math inside inline attributes (panglesd/slipshow#124) - Add `--dimension` to specify the dimension of the presentation (panglesd/slipshow#131) - Add less boring name for versions (panglesd/slipshow#132) - Add `{include src="path/to/file.md"}` to include a file in another (panglesd/slipshow#114) - Allow `pause` to have a target (panglesd/slipshow#118) - Remove the need for `step` to execute actions (panglesd/slipshow#118) - Added support for subslips and slides (panglesd/slipshow#118) - Added pause blocks (panglesd/slipshow#127) - Use horizontal lines (`---`) to group blocks (panglesd/slipshow#129) - Pass attributes to children with `children:` (panglesd/slipshow#130) - Consistently remove the need for `-at-unpause` (panglesd/slipshow#133) - Simplify table of content by removing preview (panglesd/slipshow#118) - Fix wrong computation of location (panglesd/slipshow#118, panglesd/slipshow#119) - Improve zooming behaviour and performance (panglesd/slipshow#121) - Add PageUp and PageDown as navigation keys, adding support for pointers (panglesd/slipshow#126) - Do not act when control is pressed (panglesd/slipshow#126) - Fix wrong positioning on scaled slips (panglesd/slipshow#128)
1 parent 0818490 commit 306cc6f

File tree

1 file changed

+64
-0
lines changed
  • packages/slipshow/slipshow.0.3.0

1 file changed

+64
-0
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
opam-version: "2.0"
2+
synopsis: "A compiler from markdown to slipshow"
3+
description:
4+
"Slipshow is an engine to write slips, a concept evolved from slides."
5+
maintainer: ["Paul-Elliot"]
6+
authors: ["Paul-Elliot"]
7+
license: "GPL-3.0-or-later"
8+
tags: ["slipshow" "presentation" "slideshow" "beamer"]
9+
homepage: "https://github.com/panglesd/slipshow"
10+
doc: "https://slipshow.readthedocs.io"
11+
bug-reports: "https://github.com/panglesd/slipshow/issues"
12+
depends: [
13+
"ocaml" {>= "4.14"}
14+
"dune" {>= "3.6"}
15+
"crunch" {with-dev-setup}
16+
"cmdliner" {>= "1.3.0"}
17+
"base64"
18+
"bos"
19+
"lwt"
20+
"inotify" {os = "linux"}
21+
"cf-lwt" {>= "0.4"}
22+
"astring"
23+
"fmt"
24+
"logs"
25+
"fsevents-lwt"
26+
"js_of_ocaml-compiler"
27+
"js_of_ocaml-lwt"
28+
"magic-mime"
29+
"dream" {>= "1.0.0~alpha5"}
30+
"fpath"
31+
"ppx_blob" {>= "0.8.0"}
32+
"sexplib"
33+
"ppx_sexp_conv"
34+
"odoc" {with-doc}
35+
"ocamlformat" {with-dev-setup & = "0.27.0"}
36+
]
37+
build: [
38+
["dune" "subst"] {dev}
39+
[
40+
"dune"
41+
"build"
42+
"-p"
43+
name
44+
"-j"
45+
jobs
46+
"@install"
47+
"@runtest" {with-test}
48+
"@doc" {with-doc}
49+
]
50+
]
51+
dev-repo: "git+https://github.com/panglesd/slipshow.git"
52+
# We avoid 32 bits arcitecture because our usage of ppx_blob generates strings
53+
# whose size exceed the maximum size in 32 bits OCaml...
54+
available: arch != "arm32" & arch != "x86_32"
55+
x-maintenance-intent: [ "(latest)" ]
56+
url {
57+
src:
58+
"https://github.com/panglesd/slipshow/releases/download/v0.3.0/slipshow-0.3.0.tbz"
59+
checksum: [
60+
"sha256=fd5fe1d51413e6391d7f06543240040b2b2b6b50d166c971c743a16534c17ca5"
61+
"sha512=264144cafe390b7a90d033bc1502812f2f69de1d1f99687263ee2e2a321a943814a2b94c941d7b44f64eada81776ffa89f0ee4d041f88bd7af4cd0e259ea931e"
62+
]
63+
}
64+
x-commit-hash: "5b1fccb00c93d1710758dacc936301253a978150"

0 commit comments

Comments
 (0)