about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4260bde..a5b6ca8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
1# lingo-archipelago Releases 1# lingo-archipelago Releases
2 2
3## Early Color Hallways: [v0.12.4](https://code.fourisland.com/lingo-archipelago/tag/?h=v0.12.4) - 2023-11-10
4
5- Fixed an issue that slipped through the cracks of the previous update.
6
7Download:
8[lingo-archipelago-v0.12.4.zip](https://files.fourisland.com/releases/lingo-archipelago/lingo-archipelago-v0.12.4.zip)
9
3## Early Color Hallways: [v0.12.3](https://code.fourisland.com/lingo-archipelago/tag/?h=v0.12.3) - 2023-11-10 10## Early Color Hallways: [v0.12.3](https://code.fourisland.com/lingo-archipelago/tag/?h=v0.12.3) - 2023-11-10
4 11
5- Compatibility update for the latest version of the game. 12- Compatibility update for the latest version of the game.
lass="highlight">
#!/usr/bin/env ruby

# This file loads spring without using Bundler, in order to be fast.
# It gets overwritten when you run the `spring binstub` command.

unless defined?(Spring)
  require 'rubygems'
  require 'bundler'

  lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
  spring = lockfile.specs.detect { |spec| spec.name == "spring" }
  if spring
    Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
    gem 'spring', spring.version
    require 'spring/binstub'
  end
end