Andy Meneely
c1e410fe72
First foray into args class refactoring: rect
...
So far, I really like this approach. It allows us to push validation logic out of the Card class and into its own set of classes that can be more easily tested.
Fixes #75 , but we've got a lot more work to do in getting this full scale
2015-06-08 13:36:23 -04:00
Andy Meneely
6c60f21bb0
Refactored drawing to get fill_n_stroke
...
Contributes to #75
2015-06-04 16:40:55 -04:00
Andy Meneely
da0fe1b118
Onward and upward.
2015-05-26 21:04:15 -04:00
Andy Meneely
981a9eab0e
I dub thee v0.6.0
2015-05-26 20:57:58 -04:00
Andy Meneely
a20100f3f8
Hiding private stuff from public documentation
2015-05-26 20:55:11 -04:00
Andy Meneely
3bbc787025
Add polygon method to dsl
...
Testing and documentation too.
Closes #67
2015-05-22 06:12:48 -04:00
Andy Meneely
f0b71531aa
Allowing close_path to pass through
2015-05-22 05:59:08 -04:00
Andy Meneely
c3e76a93aa
Fix a syntax error
2015-05-22 05:36:32 -04:00
Andy Meneely
6d8e44920b
Allow unit conversion on radius for star
2015-05-22 05:32:27 -04:00
Andy Meneely
6cf6ec8099
Fix documentation for shapes
2015-05-22 05:32:03 -04:00
Andy Meneely
0853b6a708
Finish regression testing of star
2015-05-21 18:29:38 -04:00
Andy Meneely
4b63716dfc
Star feature works, testing is still pending
2015-05-21 09:29:01 -04:00
Andy Meneely
14e04a89c7
Started the star feature
...
Contributes to #72
[skip ci]
2015-05-21 09:29:00 -04:00
Andy Meneely
ae1a7bd084
Set a non-symbol default for text embeds
...
Fixes #73 , but in #74 we'll get it right.
2015-05-20 18:30:08 -04:00
Andy Meneely
0154b13e68
Use cairo context wrapper for fill colors on marketing
...
Actually deliver what I promised
Fixes #71
2015-05-19 16:49:13 -04:00
Andy Meneely
31b583d134
Implementation of hand
2015-05-19 14:40:21 -04:00
Andy Meneely
824e26d2c2
Hacked together a basic example to work from
2015-05-13 09:42:14 -04:00
Andy Meneely
f0f9b7680d
Starting a basic hand command
2015-05-11 23:30:30 -04:00
Andy Meneely
d80d3884b1
Cleanup
2015-04-30 11:48:47 -04:00
Andy Meneely
dab544a53b
Add ellipse method
...
Also experimenting with using stroke_preserve, which in turn may make the other methods less repetitive.
Closes #66
2015-04-30 11:48:21 -04:00
Andy Meneely
71defb9e33
Fix color handling with text outline stroking
...
Needed to set squibcolor prior to translating the coordinate system so that gradients are relative to the card (as is documented). This also means stroking is done AFTER drawing the text, which looks better anyway.
2015-04-30 09:54:41 -04:00
Andy Meneely
e974880e03
Add 'data' field to svg method for loading XML directly
...
Implements #65
2015-04-29 16:49:38 -04:00
Andy Meneely
ca70b88be9
Cleanup
2015-04-28 22:31:04 -04:00
Andy Meneely
7c69cad506
Text: outline a string with a color or gradient
...
Fill color is still the same with 'color' (i.e. can be overridden by markup still), but now there's a stroke_width and a stroke_color option that, when stroke_width > 0, will draw an outline below the text. Since this isn't a Pango feature, we can't do markup for outlines. (Maybe make that a feature request to Pango if you want it.)
Implements #51
2015-04-28 22:27:26 -04:00
Andy Meneely
1c76d03e19
Dead code
2015-04-28 21:08:01 -04:00
Andy Meneely
1dc89ae76a
Port global text hints to the new conf
2015-04-28 21:01:49 -04:00
Andy Meneely
923f346575
Redesigning how config files are read, stored, and delegated
...
With the new design, we take the load off of deck.rb and simply delegate methods over to the new conf.rb. This means that things like `antialias` is now available as a method to the normal Squib scripts for easy checking (without being mutable). Squib::Conf also handles parsing and defaults, and any potential input validation we need to do in the future.
Typographer is also set up now as a deck-wide configuration. This may change in the future if we want typography customization per-command, although that seems like a strange use case.
Lots of tests for this one, and lots of cross-cutting concerns in this commit.
This commit also includes some tweaks to rspec tests, including tagging of slow tests for a `rake spec_fastonly`
Conflicts:
spec/samples/samples_regression_spec.rb
spec/spec_helper.rb
squib.sublime-project
2015-04-28 20:31:53 -04:00
Andy Meneely
25773a8ee5
Better regression tests for roo
2015-04-27 08:50:03 -04:00
Andy Meneely
035cd6259e
Fix global hinting logic
...
Fixes #63
2015-04-16 21:24:21 -04:00
Andy Meneely
a64e608b0a
Onward and upward.
2015-04-16 20:56:01 -04:00
Andy Meneely
4a0c5e78b6
Fix PDF scaling issue
...
Properly compute the size of the PDF based on DPI and PDF-specific resolution (i.e. 72dpi).
Closes #62
2015-04-13 22:59:34 -04:00
Andy Meneely
a47e26535d
Starting a bugfix version
2015-04-13 22:49:42 -04:00
Andy Meneely
8ec0a5e09a
Onward and upward.
2015-04-13 21:44:37 -04:00
Andy Meneely
fbefe098cc
I dub thee v0.5.0
2015-04-13 21:42:39 -04:00
Andy Meneely
0616512bd6
Set font antialiasing from global antialiasing
...
This is a workaround until we get a proper solution in #59
2015-04-13 21:26:41 -04:00
Andy Meneely
e268246337
Allow specific gray and subpixel choices for antialiasing
2015-04-13 21:01:46 -04:00
Andy Meneely
0e22c52b0f
Fix up config defaults
...
Also: removing include because Yard is stupid.
2015-04-07 21:32:55 -04:00
Andy Meneely
063d5156d6
Allow configuration of typographical replacements, e.g. smart quotes
...
If you're living in a non-UTF-8 character set, then you can configure what quotes are smartly changed.
If my regexes are messing things up, you can also turn this off with smart_quotes: false
Also updated docs.
This closes #50
2015-04-07 21:21:00 -04:00
Andy Meneely
beb46a9e1c
Place embedded icons based on byte offset
...
Fixes #57
2015-04-07 19:43:16 -04:00
Andy Meneely
211e7c13b3
Fix typography replacements with embeds
...
Enable embedded icons tests again
2015-04-07 12:20:40 -04:00
Andy Meneely
a5d1cb60f2
Complete overhaul of smart quotes to "typographer"
...
See README for details
Contributes to #50
2015-04-07 00:16:06 -04:00
Andy Meneely
674397c005
Smart quotes!
...
Closes #50
2015-04-04 16:02:20 -04:00
Andy Meneely
874bdba8bc
Fix a string replacement issue.
...
Contributes to #30
2015-04-04 09:33:04 -04:00
Andy Meneely
19cad2cdb8
Using a platform-specific fix for zero-width letters on embedding icons
...
Contributes to #30 and our zero-width letter woes.
2015-04-04 09:15:21 -04:00
Andy Meneely
84fa97a4d1
More debugging on this stupid error
2015-04-02 10:19:22 -04:00
Andy Meneely
91ba48f80b
Explicitly saving and restoring the matrix
2015-04-02 10:14:08 -04:00
Andy Meneely
c9f9235be7
Attempting travis fix by saving and restoring the matrix
2015-04-02 10:00:26 -04:00
Andy Meneely
b123a132ef
Better debugging to fix this travis issue
2015-04-01 10:19:46 -04:00
Andy Meneely
44a6334b26
Allowing :get_matrix in the wrapper
2015-04-01 10:13:59 -04:00
Andy Meneely
d4cd7897ab
Catching the error and printing the current cairo matrix
2015-04-01 10:12:16 -04:00
Andy Meneely
acdb56d894
Travis fix: adding save/restore to fix matrix problem
2015-04-01 10:02:16 -04:00
Andy Meneely
5c4d7c368f
Switching back to zero to try to break Travis
2015-04-01 09:47:45 -04:00
Andy Meneely
7941adc2aa
Font size of 1/1024 pixel to fix non invertible matrix error
2015-03-31 21:15:06 -04:00
Andy Meneely
03e41c7e81
Adding regression tests for various cases to test PR #53
...
Close #53 .
2015-03-31 17:05:03 -04:00
pickfifteen
f18730e927
Embed cleanup unused lines
2015-03-30 16:23:33 -04:00
pickfifteen
7cc75b24a2
Embed wrapping fix
...
Draw call locations now calculated after all string replacements. Does this fix the center and right align embed? Quick testing could not find any errors, but more thorough testing needed.
2015-03-30 16:19:19 -04:00
pickfifteen
30df4cd115
Embed size fix
...
Missed the trailing word character in last commit
2015-03-30 16:06:32 -04:00
pickfifteen
67c834960a
Embed fix size, first / last issue
...
One more fix needed to fix wrapping-- draw_calls all need to be calculated after all string substitutions have been made.
2015-03-30 16:02:24 -04:00
Andy Meneely
574b76873e
Updating regression tests, renamed bezier curve params
2015-03-26 19:50:12 -04:00
Andy Meneely
42ae2144e0
Fix index location issue, working on vertical placement
...
Contributes to #30
Also added little adjusters for the icons in case your icon is a little off.
[skip ci]
2015-03-24 14:59:21 -04:00
Andy Meneely
014646ce9f
Better default to avoid CAIRO_STATUS_INVALID_SIZE errors
...
For some silly reason Cairo checks the width and height for invalid size, not the product: http://lists.cairographics.org/archives/cairo/2010-December/021424.html
2015-03-23 13:53:23 -04:00
Andy Meneely
2cc9cc8e93
Initial implementation of curves
...
Contributes to #37
2015-03-19 18:15:24 -04:00
Andy Meneely
eee1bcf90d
Default key is specified
2015-03-19 17:24:46 -04:00
Andy Meneely
ac2b46921d
Add support for embedding pngs
...
Refactored into passing a Proc. I love those things.
2015-03-19 17:00:27 -04:00
Andy Meneely
cb7ff5f4d7
Yard: Add in lots of @api private directives
2015-03-19 13:45:47 -04:00
Andy Meneely
188112d581
Record this as a known issue and point to the bug
2015-03-19 00:24:50 -04:00
Andy Meneely
77e5fcce06
Cleaning up
...
Although it appears we still have issues with text_options being different on different cards. Very strange.
2015-03-19 00:24:49 -04:00
Andy Meneely
c6cb0ca288
Saving a wonky bug example for posterity
2015-03-19 00:24:48 -04:00
Andy Meneely
666dae393d
Base functionality of icon embedding working
...
Contributes to #30
2015-03-19 00:24:47 -04:00
Andy Meneely
58a2f9cd89
Onward and upward.
2015-02-28 21:57:02 -05:00
Andy Meneely
2caacaeece
Fixing compatibility with linux os
...
Thank you, Travis! Turns out the cairo gem isn't perfectly the same in Linux...
2015-02-28 21:39:26 -05:00
Andy Meneely
cae7144040
I dub thee v0.4.0
2015-02-28 20:59:58 -05:00
Andy Meneely
82c141fbf4
Better docs on gradient coordinate behaviors
2015-02-28 20:53:59 -05:00
Andy Meneely
d744d9d815
Documentation for backend option
2015-02-28 20:36:21 -05:00
Andy Meneely
f49bff2388
Add antialias config option
...
Closes #41
2015-02-28 19:34:46 -05:00
Andy Meneely
b5016f90c0
Sorting lines
2015-02-28 09:33:27 -05:00
Andy Meneely
612c042d52
SVG backend: PDF implemented, tests passing
...
Wrapping up the svg backend work
Still some bugs to stamp out, but this is getting close to release ready.
2015-02-24 22:33:32 -05:00
Andy Meneely
8876b27473
Merging in svg back end work. All but save_doc is done.
2015-02-20 22:56:07 -05:00
Andy Meneely
d2543473c7
Fix a leftover x,y stroke on circles
...
Fixes #35
2015-02-13 12:54:19 -05:00
Andy Meneely
0afe6868c9
Making save more of a true alias for save_png and save_png
2015-02-07 17:22:55 -05:00
Andy Meneely
5235b15fe4
Fixing progress bar increment error.
...
Fixes #34
2015-02-07 08:19:17 -05:00
Andy Meneely
de9568ead8
Onward and upward.
2015-02-02 00:39:19 -05:00
Andy Meneely
52c042af5e
I dub thee v0.3.0
2015-02-02 00:33:55 -05:00
Andy Meneely
086fd5fad9
Unit conversion on save_pdf, and arbitrary paper sizes
...
Closes #21 and #20
2015-02-02 00:20:25 -05:00
Andy Meneely
d848178bfe
Unit conversion on Squib::Deck.new
...
Contributes to #21
2015-02-01 23:55:01 -05:00
Andy Meneely
1896689614
Refactoring out the unit conversion to its own place
2015-02-01 23:48:09 -05:00
Andy Meneely
4ecbaa4e31
Implementing format strings for filename counts on multisaves
2015-02-01 23:25:57 -05:00
Andy Meneely
7a53f68393
Implementing mask feature for images
...
Fixes #32 .
2015-02-01 23:04:39 -05:00
Andy Meneely
ad66374ae0
Documentation for gradients
2015-01-26 22:52:56 -05:00
Andy Meneely
bfbf7a7eba
Added support for linear and radial gradients
...
Closes #29
2015-01-26 22:22:09 -05:00
Andy Meneely
cbac56f25d
Onward and upward
2015-01-12 23:16:36 -05:00
Andy Meneely
5bce857bed
I dub thee v0.2.0
2015-01-12 23:13:39 -05:00
Andy Meneely
e4a56a27c5
Fixing docs
2015-01-12 23:07:56 -05:00
Andy Meneely
73d6eb992b
Extending a non-existent parent yells at you now
...
Fixes #24
2015-01-05 23:59:09 -05:00
Andy Meneely
c0556153b7
Achievement Unlocked: true 100% coverage.
2015-01-05 23:26:13 -05:00
Andy Meneely
b0d4ce8018
Removing dead code
2015-01-05 23:08:52 -05:00
Andy Meneely
31e5d75f59
Refactoring out LayoutParser
2015-01-05 23:07:46 -05:00
Andy Meneely
04783ef8de
Add and document basic rakefile
2015-01-05 22:01:15 -05:00
Andy Meneely
f3e3082f0e
Implement showcase feature
...
#Closes 26
2015-01-05 21:09:35 -05:00
Andy Meneely
03ea11251d
Onwards and upwards
2014-12-31 11:07:28 -05:00