Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.7
ruby-version: 3.4.8
bundler-cache: true
- name: install dependencies
run: |
Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
addressable (2.8.8)
public_suffix (>= 2.0.2, < 8.0)
base64 (0.3.0)
bigdecimal (3.1.9)
coderay (1.1.3)
colorator (1.1.0)
concurrent-ruby (1.3.5)
concurrent-ruby (1.3.6)
cri (2.15.12)
csv (3.3.2)
ddmetrics (1.1.0)
Expand Down Expand Up @@ -74,26 +74,26 @@ GEM
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
nanoc (4.14.3)
nanoc (4.14.6)
addressable (~> 2.5)
nanoc-checking (~> 1.0, >= 1.0.2)
nanoc-cli (= 4.14.3)
nanoc-core (= 4.14.3)
nanoc-cli (= 4.14.6)
nanoc-core (= 4.14.6)
nanoc-deploying (~> 1.0)
parallel (~> 1.12)
tty-command (~> 0.8)
tty-which (~> 0.4)
nanoc-checking (1.0.6)
nanoc-cli (~> 4.12, >= 4.12.5)
nanoc-core (~> 4.12, >= 4.12.5)
nanoc-cli (4.14.3)
nanoc-cli (4.14.6)
cri (~> 2.15)
diff-lcs (~> 1.3)
logger (~> 1.6)
nanoc-core (= 4.14.3)
nanoc-core (= 4.14.6)
pry
zeitwerk (~> 2.1)
nanoc-core (4.14.3)
nanoc-core (4.14.6)
base64 (~> 0.2)
concurrent-ruby (~> 1.1)
ddmetrics (~> 1.0)
Expand Down Expand Up @@ -144,7 +144,7 @@ GEM
tty-which (0.5.0)
unicode-display_width (2.6.0)
webrick (1.9.1)
zeitwerk (2.7.3)
zeitwerk (2.7.4)

PLATFORMS
x86_64-linux
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

1. Run Ruby Docker image
```
docker run --network host -v ./:/data -it ruby:3.3.5 /bin/bash
docker run --network host -v ./:/data -it ruby:3.4.8 /bin/bash
cd /data
```

Expand Down Expand Up @@ -31,4 +31,4 @@

2. Edit the new post, created in `./_posts`

3. If there is a new relase also update _config.yml with the new release number.
3. If there is a new release also update _config.yml with the new release number.
2 changes: 1 addition & 1 deletion _plugins/svgconvert.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def destination(dest)

def write
# Generate output file if it doesn't exist or is less recent than the source file
if !File.exists?(@dest_path) || File.mtime(@dest_path) <= File.mtime(@source_path)
if !File.exist?(@dest_path) || File.mtime(@dest_path) <= File.mtime(@source_path)
print "Generating #{@format.upcase}: #{@source} -> #{@dest}\n"

options = "-o #{@dest_path}"
Expand Down
2 changes: 1 addition & 1 deletion _posts/2024-09-02-xcsoar-7-dot-43-released.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author: folken
layout: post
---

Please note that there are several CRICITAL issues addressed in this release. Please up-/sidegrade.
Please note that there are several CRITICAL issues addressed in this release. Please up-/sidegrade.

Android users: Due to new cryptographic signatures, you will need to uninstall and
remove all data. Install either from F-Droid or via APK File download.
Expand Down
2 changes: 1 addition & 1 deletion develop/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ If you would like to help, here are a few things you can do:
You can [pick an issue](https://github.com/XCSoar/XCSoar/issues) and make a pull request.
- **Testing**:
- [Download the released version](https://xcsoar.org/download/) of XCSoar, test it, and [report bugs](/develop/new_ticket.html).
- [Download XCSoar-testing (for Android)](https://play.google.com/store/apps/details?id=org.xcsoar.testing) or [the nightly-build version](https://download.xcsoar.org/nightly_builds/) of XCSoar, test it **on the ground only**, and [report bugs](/develop/new_ticket.html). This version is unstable, so **do not use it in flight**.
- [Download the testing version](https://download.xcsoar.org/testing/) of XCSoar, test it **on the ground only**, and [report bugs](/develop/new_ticket.html). This version is unstable, so **do not use it in flight**.
You will be at the cutting edge of XCSoar development, able to discover the new features and eventually report recently-introduced bugs.
- **Translation**: The XCSoar interface comes in more than 30 languages. Check our [Hosted Weblate page](https://hosted.weblate.org/projects/xcsoar) to improve the translations.
- **Documentation**:
Expand Down