Compare commits
No commits in common. "8269adcee7aae546a736de72a7a8f08347d1d466" and "20ee941b82153b0c0c330f80f5dc807999d35757" have entirely different histories.
8269adcee7
...
20ee941b82
|
|
@ -8,9 +8,9 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu, macos]
|
os: [ubuntu, macos]
|
||||||
ruby: ['3.0', '3.1', '3.2', head]
|
ruby: [2.7, 3.0, head]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}-latest
|
||||||
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
|
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || (matrix.ruby == '3.0' && matrix.os == 'macos')}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: ruby/setup-ruby@v1
|
- uses: ruby/setup-ruby@v1
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,7 @@
|
||||||
# Squib CHANGELOG
|
# Squib CHANGELOG
|
||||||
Squib follows [semantic versioning](http://semver.org).
|
Squib follows [semantic versioning](http://semver.org).
|
||||||
|
|
||||||
## v0.19.0 / 2023-04-08
|
## v0.18.0 / Unreleased
|
||||||
|
|
||||||
Chores:
|
|
||||||
* Bumping dependencies, which should fix installation issues (e.g. [#376](https://github.com/andymeneely/squib/issues/376))
|
|
||||||
|
|
||||||
## v0.18.0 / 2021-10-26
|
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
* Placeholders! Missing images to `svg` and `png` can be replaced by a `placeholder` (#339)
|
* Placeholders! Missing images to `svg` and `png` can be replaced by a `placeholder` (#339)
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ Wanna see more? Check out the website: http://andymeneely.github.io/squib/
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Squib requires Ruby 3.0 or later.
|
Squib requires Ruby 2.7 or later.
|
||||||
|
|
||||||
Install it yourself with:
|
Install it yourself with:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -55,9 +55,9 @@ author = u'Andy Meneely'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = u'v0.19'
|
version = u'v0.18'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = u'v0.19.0'
|
release = u'v0.18.0'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,6 @@ module Squib
|
||||||
crop_margin_bottom crop_margin_left crop_margin_right crop_margin_top
|
crop_margin_bottom crop_margin_left crop_margin_right crop_margin_top
|
||||||
rtl trim trim_radius
|
rtl trim trim_radius
|
||||||
range
|
range
|
||||||
fill_color
|
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,6 @@ module Squib
|
||||||
track_progress(range, sheet) do |bar|
|
track_progress(range, sheet) do |bar|
|
||||||
range.each do |i|
|
range.each do |i|
|
||||||
card = @deck.cards[i]
|
card = @deck.cards[i]
|
||||||
cc.set_source_color(sheet.fill_color)
|
|
||||||
cc.paint
|
|
||||||
cc.translate(x, y)
|
cc.translate(x, y)
|
||||||
cc.rectangle(sheet.trim, sheet.trim, card_width, card_height)
|
cc.rectangle(sheet.trim, sheet.trim, card_width, card_height)
|
||||||
cc.clip
|
cc.clip
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,6 @@ module Squib
|
||||||
# Most of the time this is in the alpha of the next release.
|
# Most of the time this is in the alpha of the next release.
|
||||||
# e.g. v0.0.5a is on its way to becoming v0.0.5
|
# e.g. v0.0.5a is on its way to becoming v0.0.5
|
||||||
#
|
#
|
||||||
VERSION = '0.20.0a'
|
VERSION = '0.19.0'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
||||||
spec.specification_version = 2 if spec.respond_to? :specification_version=
|
spec.specification_version = 2 if spec.respond_to? :specification_version=
|
||||||
spec.required_rubygems_version = Gem::Requirement.new('>= 0') if spec.respond_to? :required_rubygems_version=
|
spec.required_rubygems_version = Gem::Requirement.new('>= 0') if spec.respond_to? :required_rubygems_version=
|
||||||
spec.rubygems_version = '2.2.2'
|
spec.rubygems_version = '2.2.2'
|
||||||
spec.required_ruby_version = '>= 3.0.0'
|
spec.required_ruby_version = '>= 2.7.0'
|
||||||
|
|
||||||
spec.name = 'squib'
|
spec.name = 'squib'
|
||||||
spec.version = Squib::VERSION
|
spec.version = Squib::VERSION
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue