Fix res dtor calls; Update logo colours;
This commit is contained in:
parent
74047840b1
commit
71c711ffea
3 changed files with 13 additions and 11 deletions
|
@ -1,3 +1,8 @@
|
|||
# 1.1.1
|
||||
|
||||
* Fix res dtor calls;
|
||||
* Update logo colours;
|
||||
|
||||
# 1.1.0
|
||||
|
||||
* Bump extension version;
|
||||
|
|
15
zp.svg
15
zp.svg
|
@ -1,14 +1,14 @@
|
|||
<svg height="192" width="192" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- gradients -->
|
||||
<linearGradient id="foregroundColour" x1="0" x2="1" y1="0" y2="1">
|
||||
<stop offset="0%" stop-color="#222222" />
|
||||
<stop offset="100%" stop-color="#131313" />
|
||||
</linearGradient>
|
||||
<!-- clips -->
|
||||
<clipPath id="curve">
|
||||
<polygon points="192,0 192,192 120,192 120,72" />
|
||||
</clipPath>
|
||||
<!-- masks -->
|
||||
<mask id="shadow">
|
||||
<polygon fill="#FFF" points="136.972,55.028 192,110.056 192,192 136.972,192" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="12" />
|
||||
<circle cx="120" cy="72" fill="#000" r="24" />
|
||||
<polygon fill="#FFF" points="96,48 192,144 192,192 96,192 48,144 72,120 48,96 96,96" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="12" />
|
||||
</mask>
|
||||
<mask id="foreground">
|
||||
<polyline fill="none" points="96,48 96,144 48,144 72,120" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="12" />
|
||||
<polyline fill="none" points="48,96 120,96" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="12" />
|
||||
|
@ -16,6 +16,7 @@
|
|||
<circle cx="136.972" cy="55.028" fill="#FFF" r="6" />
|
||||
</mask>
|
||||
<!-- fills -->
|
||||
<rect fill="#fa9f1d" height="192" width="192" x="0" y="0" />
|
||||
<rect fill="url(#foregroundColour)" height="192" mask="url(#foreground)" width="192" x="0" y="0" />
|
||||
<rect fill="#B12727" height="192" width="192" x="0" y="0" />
|
||||
<rect fill="#9C0514" height="192" mask="url(#shadow)" width="192" x="0" y="0" />
|
||||
<rect fill="#FDF3E9" height="192" mask="url(#foreground)" width="192" x="0" y="0" />
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -136,8 +136,6 @@ template<typename okytyp,typename errtyp> template<typename funtyp,typename msgt
|
|||
}
|
||||
|
||||
template<typename okytyp,typename errtyp> auto ::zp::res<okytyp,errtyp>::operator =(::zp::res<okytyp,errtyp> const& oth) -> ::zp::res<okytyp,errtyp> & {
|
||||
this->~res();
|
||||
|
||||
this->_hasoky = oth._hasoky;
|
||||
zp_lik (oth._hasoky) {this->_okyval = oth._okyval;}
|
||||
else {this->_errval = oth._errval;}
|
||||
|
@ -146,8 +144,6 @@ template<typename okytyp,typename errtyp> auto ::zp::res<okytyp,errtyp>::operato
|
|||
}
|
||||
|
||||
template<typename okytyp,typename errtyp> auto ::zp::res<okytyp,errtyp>::operator =(::zp::res<okytyp,errtyp> && oth) -> ::zp::res<okytyp,errtyp> & {
|
||||
this->~res();
|
||||
|
||||
this->_hasoky = oth._hasoky;
|
||||
zp_lik (oth._hasoky) {this->_okyval = oth._okyval;}
|
||||
else {this->_errval = oth._errval;}
|
||||
|
|
Reference in a new issue