Skip to content

Commit 9c31550

Browse files
Merge branch 'main' into Internationalization-support
2 parents 25964fa + 97f2221 commit 9c31550

File tree

141 files changed

+3017
-1953
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+3017
-1953
lines changed

.clj-kondo/config.edn

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@
1919
:unused-alias {:level :warning}
2020
:redundant-call {:level :warning}
2121
:redundant-str-call {:level :warning}
22+
:line-length {:max-line-length 90
23+
:exclude-urls true}
2224
:clojure-lsp/unused-public-var {:exclude-regex #{"pages.*"}}
2325
:consistent-alias {:level :warning
2426
:aliases {clojure.core.matrix matrix
25-
clojure.core.matrix.stats mat.stats
27+
clojure.core.matrix.stats matrix.stats
2628
clojure.set set
2729
clojure.string string
2830
malli.core m

.clj-kondo/funcool/promesa/config.edn

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/demo.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
uses: crate-ci/[email protected]
4747

4848
- name: Install clojure tools
49-
uses: DeLaGuardo/setup-clojure@13.2
49+
uses: DeLaGuardo/setup-clojure@13.4
5050
with:
51-
cli: 1.12.0.1530
52-
clj-kondo: 2025.04.07
51+
cli: 1.12.1.1550
52+
clj-kondo: 2025.06.05
5353

5454
- name: Lint
5555
run: npm run lint

.github/workflows/studio.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,9 @@ jobs:
3636
java-version: '21'
3737

3838
- name: Install clojure tools
39-
uses: DeLaGuardo/setup-clojure@13.2
39+
uses: DeLaGuardo/setup-clojure@13.4
4040
with:
41-
cli: 1.12.0.1530
42-
43-
# Required for font-scanner.
44-
- name: Install python setuptools
45-
if: matrix.os == 'macos-latest'
46-
run: brew install python-setuptools
47-
48-
- name: Install fontconfig
49-
if: matrix.os == 'ubuntu-latest'
50-
run: sudo apt -y install libfontconfig1-dev
41+
cli: 1.12.1.1550
5142

5243
- name: Electron Builder Action
5344
uses: samuelmeuli/[email protected]

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
Repath Studio is a cross platform vector graphics editor, that combines procedural tooling with traditional design workflows. It includes an interactive shell, which allows evaluating code to generate shapes, or even extend the editor on the fly. Supporting multiple programming languages and enriching the existing API is planned. The tool relies heavily on the [SVG](https://developer.mozilla.org/en-US/docs/Web/SVG) specification, and aims to educate users about it. Creating and editing [SMIL](https://developer.mozilla.org/en-US/docs/Web/SVG/SVG_animation_with_SMIL) animations - an SVG extension – is an important aspect of the project, that is yet to be fully implemented. An advanced undo/redo mechanism is used to maintain a full history tree of actions in memory, so users will never lose their redo stack.
1919

2020

21-
## Supported by
21+
## Funding
22+
23+
This project is funded through [NGI0 Commons Fund](https://nlnet.nl/commonsfund), a fund established by [NLnet](https://nlnet.nl) with financial support from the European Commission's [Next Generation Internet](https://ngi.eu) program. Learn more at the [NLnet project page](https://nlnet.nl/project/RepathStudio).
2224

2325
<section data-markdown>
2426
<div>

deps.edn

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
day8.re-frame/test {:mvn/version "0.1.5"}
1010
day8.re-frame/tracing {:mvn/version "0.6.2"}
1111
day8/shadow-git-inject {:mvn/version "0.0.5"}
12-
metosin/malli {:mvn/version "0.18.0"}
12+
metosin/malli {:mvn/version "0.19.1"}
1313
net.mikera/core.matrix {:mvn/version "0.63.0"}
1414
org.clj-commons/hickory {:mvn/version "0.7.7"}
1515
org.clojure/math.combinatorics {:mvn/version "0.3.0"}
@@ -18,11 +18,11 @@
1818
re-pressed/re-pressed {:mvn/version "0.3.2"}
1919
reagent/reagent {:mvn/version "1.3.0"}
2020
replumb/replumb {:mvn/version "0.2.4"}
21-
thheller/shadow-cljs {:mvn/version "3.1.4"}}
21+
thheller/shadow-cljs {:mvn/version "3.1.7"}}
2222
:aliases
2323
{:dev {:extra-paths ["test" "portfolio/src"]
24-
:extra-deps {cider/cider-nrepl {:mvn/version "0.55.7"}
24+
:extra-deps {cider/cider-nrepl {:mvn/version "0.56.0"}
2525
day8.re-frame/re-frame-10x {:mvn/version "1.10.0"}
2626
no.cjohansen/portfolio {:mvn/version "2025.01.28"}}}
2727
:format {:deps {dev.weavejester/cljfmt {:mvn/version "0.13.1"}}}
28-
:lint {:deps {clj-kondo/clj-kondo {:mvn/version "2025.04.07"}}}}}
28+
:lint {:deps {clj-kondo/clj-kondo {:mvn/version "2025.06.05"}}}}}

0 commit comments

Comments
 (0)