Skip to content

Commit 8543f3a

Browse files
committed
v1.8.2
1 parent 391ffde commit 8543f3a

File tree

7 files changed

+28
-10
lines changed

7 files changed

+28
-10
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [1.8.2](https://github.com/thomiceli/opengist/compare/v1.8.1...v1.8.2) - 2024-11-25
4+
See here how to [update](/docs/update.md) Opengist.
5+
6+
### Added
7+
- More translation strings (#373) (#388)
8+
9+
### Changed
10+
- Enforce git config on startup (#383)
11+
- Respect file scheme URIs for SQLite. (#387)
12+
13+
### Fixed
14+
- Convert octal notation file names in Git (#380)
15+
- Git clone on SSH with MySQL (#382)
16+
- Escaping for embed gists (#381)
17+
18+
### Other
19+
- Update deps Golang & JS deps
20+
321
## [1.8.1](https://github.com/thomiceli/opengist/compare/v1.8.0...v1.8.1) - 2024-11-02
422
See here how to [update](/docs/update.md) Opengist.
523

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ Download the archive for your system from the release page [here](https://github
7676

7777
```shell
7878
# example for linux amd64
79-
wget https://github.com/thomiceli/opengist/releases/download/v1.8.1/opengist1.8.1-linux-amd64.tar.gz
79+
wget https://github.com/thomiceli/opengist/releases/download/v1.8.2/opengist1.8.2-linux-amd64.tar.gz
8080
81-
tar xzvf opengist1.8.1-linux-amd64.tar.gz
81+
tar xzvf opengist1.8.2-linux-amd64.tar.gz
8282
cd opengist
8383
chmod +x opengist
8484
./opengist # with or without `--config config.yml`

deploy/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ namespace: opengist
2828
2929
resources:
3030
- namespace.yaml
31-
- https://github.com/thomiceli/opengist/deploy/?ref:v1.8.1
31+
- https://github.com/thomiceli/opengist/deploy/?ref:v1.8.2
3232
3333
images:
3434
- name: ghcr.io/thomiceli/opengist
35-
newTag: 1.8.1
35+
newTag: 1.8.2
3636
3737
patches:
3838
# Add your ingress

docs/.vitepress/theme/Home.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default {
1919
<div class="mx-auto lg:text-center">
2020
<img class="rotating h-36 mx-auto my-8 " src="https://raw.githubusercontent.com/thomiceli/opengist/master/public/opengist.svg" alt="" >
2121
<a target="_blank" href="https://github.com/thomiceli/opengist/releases" class="inline-flex items-center rounded-full bg-indigo-100 hover:bg-indigo-200 px-4 py-1.5 text-lg font-medium text-indigo-700">
22-
<span class="pr-1">Released 1.8.0</span>
22+
<span class="pr-1">Released 1.8.2</span>
2323
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-4">
2424
<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 19.5 15-15m0 0H8.25m11.25 0v11.25" />
2525
</svg>

docs/installation/binary.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Download the archive for your system from the release page [here](https://github
44

55
```shell
66
# example for linux amd64
7-
wget https://github.com/thomiceli/opengist/releases/download/v1.8.1/opengist1.8.1-linux-amd64.tar.gz
7+
wget https://github.com/thomiceli/opengist/releases/download/v1.8.2/opengist1.8.2-linux-amd64.tar.gz
88

9-
tar xzvf opengist1.8.1-linux-amd64.tar.gz
9+
tar xzvf opengist1.8.2-linux-amd64.tar.gz
1010
cd opengist
1111
chmod +x opengist
1212
./opengist # with or without `--config config.yml`

docs/installation/source.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Requirements:
1010
git clone https://github.com/thomiceli/opengist
1111
cd opengist
1212

13-
git checkout v1.8.1 # optional, to checkout the latest release
13+
git checkout v1.8.2 # optional, to checkout the latest release
1414

1515
make
1616
./opengist

docs/update.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Stop the running instance; then like your first installation of Opengist, downlo
2727

2828
```shell
2929
# example for linux amd64
30-
wget https://github.com/thomiceli/opengist/releases/download/v1.8.1/opengist1.8.1-linux-amd64.tar.gz
30+
wget https://github.com/thomiceli/opengist/releases/download/v1.8.2/opengist1.8.2-linux-amd64.tar.gz
3131

32-
tar xzvf opengist1.8.1-linux-amd64.tar.gz
32+
tar xzvf opengist1.8.2-linux-amd64.tar.gz
3333
cd opengist
3434
chmod +x opengist
3535
./opengist # with or without `--config config.yml`

0 commit comments

Comments
 (0)