-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathreleases.edn
More file actions
22 lines (22 loc) · 888 Bytes
/
releases.edn
File metadata and controls
22 lines (22 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; this file is used by dirac command-line tool
; it describes mapping between Chromium versions and compatible Dirac releases
{:chromium
{; we match most recent Chromium version from the list below
; see https://github.com/binaryage/dirac/blob/master/src/home/dirac/home/chromium/mapping.clj
; ...
"88.0.4321" "1.7.2"
"88.0.4310" "1.7.1"
; botched release "88.0.4310" "1.7.0"
"86.0.4221" "1.6.1"
"86.0.4186" "1.6.0"
"84.0.4145" "1.5.12"
"84.0.4125" "1.5.11"
"84.0.4110" "1.5.10"
"82.0.4080" "1.5.9"
; deploy of version 1.5.8 is broken on clojars
"82.0.4052" "1.5.7"
"81.0.4000" "1.5.5"
:unsupported {:message "This Chromium version is too old and is not supported by Dirac 1.5.x"}
; alternatively you can point to a local folder with something like this:
; "80.0.4000" {:result :local :path "/Users/darwin/code/dirac-ws/dirac/resources/unpacked"}
}}