texture_packer 1.6.2 → 1.6.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4ba2de7ec969e1e33c64b0d9f08bf06c89a0ec92232a4baa6fc778fc69287ea
4
- data.tar.gz: c413b1775d5723823359c565f8cd6e0b27e805f6abf7baca6b179ea4f0ffeea5
3
+ metadata.gz: 443372b8d9b00fe3ab7b14e2f54316ed5ffbb0c0e9700cf1f263fa885e141c46
4
+ data.tar.gz: 3b3ff06f3c6de8e5538fcf049393f2a5aa622647f4aa411763a8ca852a14ed43
5
5
  SHA512:
6
- metadata.gz: 3665c88ac4ac4a235e155933b701648a1ad3b062c427b58f7a128c5120a8779ad4fbf5d3967b779b9b6715e80b435a40afe7145e7f15a9a82c0a24c7bd7c49a6
7
- data.tar.gz: 6499c0446991e700179ebf4e1edea885406b4fb882da88b9715796dab4273dde5b7572f8102269285ea090881d26ff1ada358a032be2c65d8ae037026e340ec8
6
+ metadata.gz: dd6246ba5907057e3843b8e9196cfef248300b9ae2e9b5eb4f0b61d971ba180aed5ec1ad9a4025c2e4a5a4f61703788e47ab334b7e7f71e9ede3c3ea8198bd22
7
+ data.tar.gz: eabd0cbe6b460bea4ab892cbab33fb179b4ed2b500ae7f8b62c6c21f3626281c4eab1a33d304d2338f6cb237af406c6db63f8ae0342df6f374639b9c2d9dba5d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  ## Change Log
2
2
 
3
+ ### [v1.6.2](https://github.com/khiav223577/texture_packer/compare/v1.6.1...v1.6.2) 2020/04/14
4
+ - [#18](https://github.com/khiav223577/texture_packer/pull/18) Fix: it needs global mixins when split type is by i18n + mobile (@khiav223577)
5
+
3
6
  ### [v1.6.1](https://github.com/khiav223577/texture_packer/compare/v1.6.0...v1.6.1) 2020/04/13
4
7
  - [#17](https://github.com/khiav223577/texture_packer/pull/17) auto correct coding style by rubocop (@khiav223577)
5
8
 
@@ -1,3 +1,3 @@
1
1
  class TexturePacker
2
- VERSION = '1.6.2'
2
+ VERSION = '1.6.3'
3
3
  end
@@ -42,9 +42,10 @@ class TexturePacker
42
42
  prefixs = string_prefix.scan(/\[\w+\]|\:\w+/) # [m]:disabled => ['[m]', ':disabled']
43
43
  prefixs.map! do |prefix|
44
44
  case prefix
45
- when '[active]' then ':active' # 因為 TexturePacker 會把 xxx-active-hover 轉成 xxx-active:hover 而不是 xxx:active:hover
46
- when '[hover]' then ':hover'
47
- else prefix
45
+ when '[active]' then ':active' # 因為 TexturePacker 會把 xxx-active-hover 轉成 xxx-active:hover 而不是 xxx:active:hover
46
+ when '[hover]' then ':hover'
47
+ when '[disabled]' then ':disabled'
48
+ else prefix
48
49
  end
49
50
  end
50
51
  # p [selector, prefix, css]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: texture_packer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.2
4
+ version: 1.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - khiav reoy
8
8
  autorequire:
9
9
  bindir: executables
10
10
  cert_chain: []
11
- date: 2020-04-14 00:00:00.000000000 Z
11
+ date: 2020-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler