1-2 Release notes 發(fā)行說(shuō)明


layout: default
type: about
shortname: Docs
title: Release notes
subtitle: About this release


{% include toc.html %}

<style>
.breaking {
color: red;
text-transform: capitalize;
}
</style>

Release 1.2.3 (2015-11-16)

This release fixes the following issues:

  • Fixes #2381,
    #2708: Fix ordering
    issues with custom-style elements that apply custom properties defined
    in other custom-style elements.

Release 1.2.2 (2015-11-12)

This release includes a number of small optimizations affecting startup time.

This release includes the following new features:

  • Fixes #2511. Add
    support for strip-whitespace attribute on templates. A template defined
    with the strip-whitespace attribute removes any empty text nodes from the
    template contents, which can result in a minor performance improvement.
  • Fixes #2537. Add optional
    incremental "chunked" rendering to dom-repeat.

    New properties:

    • initialCount. Enables incremental rendering and sets initial render count
    • targetFramerate. Determines the target frame budget for rendering the remaining items.

    If initialCount is set, after setting (or re-setting) items, the initial count will be rendered pre-paint, and all remaining items will be incrementally rendered at requestAnimationFrame timing. The template makes a best-effort attempt to hit
    the framerate specified by targetFramerate.

  • Fixes #2690. Add new
    getComputedStyleValue method to determine the computedn style of a custom
    property. Usage:

    <code><var>propertyValue</var> = <var>element</var>.getComputedStyleValue(<var>propertyName</var>);</code>

    This is equivalent to the native:

    <code><var>propertyValue</var> = getComputedStyle(<var>element</var>).getPropertyValue(<var>property</var>);

This release includes the following bug fixes and improvements:

  • Fix compound bindings with braces in literals.

  • Fixes #2639. Fix for
    BEM-like CSS selectors under media queries. This issue affected CSS selectors
    that included two dashes inline, such as foo--bar.

  • Fixes #2641. Fix gestures
    when using shadow DOM polyfill.

  • Fixes #2649.
    queryAllEffectiveChildren method throws an exception.

  • Fixes #2650. Add support
    for short unicode escape sequences in CSS rules.

  • Fixes #2660. Fix parsing
    of custom properties with 'var' in value.

  • Fixes #2670. Fix
    for multiple consequent spaces present in CSS selectors.

  • Fixes #2685: dom-if
    throws exception if detached before instance is stamped.

Release 1.2.1 (2015-10-29)

This release includes the following new features:

  • Add deepContains method to DOM API.

This release includes fixes for the following issues:

  • Make parsing of mixin declarations more robust.

  • Fixes #2556.
    notifyPath: Ensure outer paths aren't forwarded to instance props.

  • Fixes #2610.
    isLightDescendant should return false for self.

Release 1.2.0 (2015-10-22)

This release includes the following new features:

  • Compound binding support. In place of a single binding annotation, you
    can now use a compound binding consisting of string literals and
    binding annotations:

    <span>Name: {%raw%}{{lastname}}, {{firstname}}{%endraw%}</span>
    

    See Compound bindings for details.

  • New observeNodes method for tracking addition and removal of child
    nodes and distributed nodes. See Observe added and removed children.

  • New effective children APIs that provide a composition-aware view of
    light DOM children. See Effective children.

  • Improvements to path API.
    Fixes #2007,
    #2509.

    • Allows set to take paths with array keys, identified by
      <code>#<var>key</var></code>.
    • Allows notifyPath to take paths with array indices.
    • Exposes public notifySplices API.
  • Fixes #2582. Fix IE10 regressions
    in dom-repeat, dom-bind, and dom-module-inline

  • Fix deepEqual on Safari 9 due to Safari enumeration bug.

  • Add Polymer.dom(node).notifyObservers method to 'kick' observers, for example,
    when attributes change under Shadow DOM.

Release 1.1.5 (2015-10-08)

This release includes the following new features:

  • Added isLightDescendent and isLocalDescendent utility methods to
    {{site.project_title}} elements.

  • The fire method's detail argument can take any primitive value, not just objects.

This release fixes the following issues:

  • Fixes #2504. Templatizer: Variables in the parent scope are not passed during initialization.

  • Fixes #2505. Templatizer: Changes to array/object properties from the parent scope not notified.

Release 1.1.4 (2015-09-25)

This release fixes the following issues:

Web Components polyfill updated to 0.7.13. The latest version of webcomponents-lite.js
fixes an issue that affected SEO of Polymer 1.x apps.
{: .alert .alert-info }

Release 1.1.3 (2015-09-04)

  • Fixes #2403. Fixes a regression
    that affected legacy projects using Chrome 39.

Release 1.1.2 (2015-08-28)

  • Fixes #2356. Log a warning
    if the included style module cannot be found.

  • Fixes #2357. Styles included
    with include= are inserted before any styles defined in the body of
    the style element.

  • Fixes #2363. Explicitly create
    Polymer object on window to satisfy strict mode.

  • Fixes #2329. Registration changes
    to support ES6 classes.

  • Fixes #2341. Branch Polymer.dom to
    use native dom methods under Shadow DOM for appendChild, insertBefore, removeChild,
    replaceChild, and cloneNode.

  • Fixes #2334. When composing nodes
    in shady DOM, check if a node is where we expect it to be before removing it from
    its distributed position. We do this because the node may have been moved by
    Polymer.dom in a way that triggered distribution of its previous location. The
    node is already where it needs to be so removing it from its parent when it's no
    longer distributed is destructive.

Release 1.1.1 (2015-08-20)

This release fixes a serious regression in Release 1.1 related to shady DOM distribution. Related issues:

  • Fixes #2276: DOM API fails to select an element in a dom-repeat in Polymer 1.1. (commit)

  • Fixes #2311, #2323: When elements are removed from their previous position when they are added elsewhere, make sure to remove them from composed, not logical parent. (commit)

  • Fixes #2253: Refine logical tree check and populate parents of insertion points with logical info only if necessary. Fixes #2283: when a node is removed, we need to potentially distribute not only its host but also its parent. (commit)

Other fixed issues:

  • Fixes #2263: Ensure custom-style can parse variable definitions in supported selectors (e.g. /deep/) without exception due to unknown css. (commit)

  • array-selector: Add selectedItem property. (commit)

  • dom-repeat: Fixes #2297, Where a
    dom-repeat with a sort property threw an exception when removing 10 or more items at a time. (commit)

  • Fixes #2267: Properly find dom-module for mixed case elements. (commit)

  • Fixes #2304: Avoid trying to read style data from imports that did not load. (commit)

  • Support for negative numbers in computed bindings. (commit)

Release 1.1.0 (2015-08-13)

Shared style change

This release includes support for a new style sharing mechanism. The new mechanism
should be used in place of <link rel="import" type="css">.

See Shared styles and external stylesheets in
the Developer guide for details.

As a result of these changes, several recommendations are changing:

  • <link rel="import" type="css"> is deprecated and will eventually be removed. This syntax
    allowed users to use a pure .css file, but the file is parsed as HTML which is a
    security and performance concern.

  • We now recommend placing an element's <style> tag inside the element's local DOM
    template, not outside. The older style is still supported, but does not perform as well
    as placing the styles inside the template.

Fixed issues:

  • Fixes #2251: Resolve imported stylesheets against correct document. (commit)

  • Reduce keySplices to minimum change set before notifying. Fixes #2261. (commit)

  • array-selector: Make clearSelection method public. (commit)

  • Add logical info if an element being added is an insertion point; do not add logical info for any element in a shady root. (commit)

  • Fixes #2235. Manages logical information in shady distribution more directly by capturing it explicitly when needed and not whenever distribution is run. (commit)

  • Ensure path fixup is applied correctly to styles in templates. (commit)

  • dom-module no longer needs to eagerly upgrade custom elements since the web components polyfills do this automatically. (commit)

v1.0.9 (2015-08-07)

  • array-selector. Numerous fixes around selection. Default selected to empty array. Add isSelected API. Add default values and update docs. (commit, commit, commit, commit)

  • Fixes #2218: Match style properties against scope transformed selector (not property unique selector). (commit)

  • Gestures: Make sure mouse position is not a factor for .click() in IE 10. (commit)

  • Gestures: Always trigger tap for synthetic click events. (commit)

  • Fixes #2193: Implements workaround for chromium bug #516550 by adding Polymer.RenderStatus.whenReady and using it to defer attached. (commit)

  • Fixes vulcanize#209.
    Fixes issue where polyfilled templates may not upgrade correctly.
    (commit)

  • Use _clientsReadied to avoid missing attribute->property sets in ready. (commit)

  • Make propagation of attribute changes at configure time more efficient. (commit)

  • Fixes #1673: Ensure instance effects exist before marshaling attributes. (commit)

  • Custom properties: Make properties replacement robust against properties which start with a leading semicolon (;). (commit)

  • Fixes #2154: Ensure Polymer.dom always sees wrapped nodes when Shadow DOM polyfill is in use. (commit)

  • Use CSS parser's property stripping code in custom-style. (commit)

  • Gestures: Automatically filter mouse events without the left mouse button. (commit)

  • Fixes #2113: Ensure custom-style rules that use @apply combined with defining properties apply correctly. (commit)

  • More loosely match expression function names. (commit)

  • Update behaviors order. Fixes #2144. (commit)

  • dom-if: Cache style.display & textContent and re-apply on true. Fixes #2037. (commit)

  • Fixes #2118: force element is to be lowercase: mixing case causes confusion and breaks style shimming for type extensions. (commit)

  • Allow array mutation APIs to accept string & negative args. Fixes #2062. Brings the API more in line with native Array methods. (commit)

  • Fix #2107: improve binding expression parser to match valid JavaScript property names. (commit)

Release 1.0.8 (2015-07-23)

  • Gestures: Disable track gestures when scrolling. (commit)

  • Fixes #2125: Add a register method to dom-module to support imperative creation. (commit)

  • Gestures: Move recognizer reset into start of event flow. (commit)

  • Remove alternate calculation for _rootDataHost (commit)

  • dom-bind: Don't call dom-change when detached. (commit)

  • Fixes #1998: add API doc for customStyle property. (commit)

  • Handle comment nodes correctly for textContent and innerHTML. (commit)

  • Data binding: Fixes #2098: Ignore undefined values as initial config (commit)

  • Data binding: Allow setting non-index array properties. Fixes #2096. (commit).

  • dom-bind: Added render method to dom-bind which can be called when async imports are used; documented template render functions (commit).

  • Fixes #2039: Polymer.dom.flush now triggers Custom Elements polyfill mutations and includes an api (Polymer.dom.addDebouncer(debouncer)) for adding debouncers which should run at flush time. Template rendering debouncers are placed in the flush list. (commit)

  • Fixes #2010 and #1818: Shady DOM mutations which trigger additional mutations are now successfully enqueued. (commit)

  • debounce returns debouncer. (commit)

Release 1.0.7 (2015-07-16)

  • dom-repeat: Remove unnecessary keys bookkeeping. (commit)

  • dom-repeat: Always use placeholders; fix insertion reference bug. (commit,
    commit)

  • dom-repeat: Fix reuse logic to handle multiple mutations in same turn. Fixes #2009. (commit)

  • Add Polymer.instanceof & isInstance. Fixes #2083. (commit)

  • Make Polymer.dom(element).getDistributedNodes and Polymer.dom(element).getDestinationInsertionPoints() always return at least an empty array (was generating exception under Shadow DOM); make element.getContentChildNodes and element.getContentChildren always return at least an empty array when a selector is passed that does not find a <content> (was generating exception under Shadow DOM). (commit). Fixes #2081.

  • Fixes #2077: Workaround IE text node splitting issue that can make text bindings fail. (commit)

  • Fixes #2078: When computing custom style properties, make sure the styling scope is valid when the element is attached to a shadowRoot whose host is not a Polymer element. (commit)

Release 1.0.6 (2015-07-09)

Fixed issues:

  • Basic support for host-context \#1895

  • Custom property resolver tripping over some selectors? \#1938

  • Parsing compressed CSS does not work \#1927

  • Support Polymer.dom().classList.contains \#1907

  • Add support for :host-context \#1900

  • Grey overlay in mobile Safari \#1970

  • node.unlisten removes native event listeners too often \#1988

  • notifyPath doesn't return as its documentation says \#1966

  • "TypeError: Cannot set property 'display' of undefined" when HTML comment is present inside a dom-if template that evaluates to truthy \#1786

  • dom-repeat in a falsy dom-if should hide newly stamped children \#1751

  • Typo in Polymer.mixin API documentation \#2001

  • Low-level changes for iron-list integration (fire & modelForElemennt) \#2003

  • Normalized event difference with ShadowDOM and Shady \#1921

  • DOM API innerHTML adds only first element \#1972

  • With Polymer\#1.05-update, style-sheets and custom-style-elements are not parsed in my project anymore \#1974

  • Expected behavior for importNode, cloneNode \#1888

  • \#1.0.5 computed property function name limitations? \#2016

Release 1.0.5 (2015-06-25)

Fixed issues:

  • Bindings to concrete types not propagating correctly from template to collection \#1839

  • Setting individual array elements not working \#1854

  • CustomStyle change has no effect \#1851

  • With Shady DOM, <content> doesn't get passed to another element inside dom-if #1902

  • Provide a convenience method for setting customStyle and calling updateStyles \#1915

  • If an async callback throws an error, it's never removed from the callback list \#1759

  • dom-if: undefined is considered falsy only once \#1742

  • Setting readOnly and computed on properties \#1925

  • Uncaught TypeError: this.mixin is not a function \#1911

  • Polymer.Base.async "infinite loop" condition \#1933

  • Custom property resolver tripping over some selectors? \#1938

  • Annotated attribute binding issues \#1874

  • Parsing compressed CSS does not work \#1927

Release 1.0.4 (2015-06-17)

Fixed issues:

  • Need a way to cancel track and tap from down #1823

  • array-selector doesn't work with multi unless toggle is specified #1810

  • Style shim only converts a single ::shadow or /deep/ in a selector #1809

  • Incorrect style for custom CSS properties when extending a native element #1807

  • Unwrapped dom-if causes DOMException #1804

  • dom-if fails to add rows to a table if they contain <content> #1800

  • Data binding causes infinite loop if value is NaN #1799

  • Do not resolve hash-only urls used for routing #1757

  • Content nodes in dom-if template do not distribute correctly #1753

  • An element that uses only values supplied by variable defaults can be styled incorrectly #1752

  • Nested dom-repeat with sort attribute shows duplicate entries when adding new items. #1744

  • ::before / ::after pseudo selectors in a custom-style #1668

  • Need Polymer.Base.unlisten to remove the event listener #1639

  • custom-style sometimes does not apply variables #1637

  • dom-if template doesn't stamp when its content contains a wrapped insertion point #1631

Documentation updates 10 June 2015

  • Documented extending behaviors.
  • Corrected @apply example in Migration guide to show only one mixin per @apply statement.
  • Added documentation for custom properties API.
  • Moved <script> tags inside <dom-module> according to latest recommendations.
  • Updated documentation on computed bindings to
    cover literal arguments and no-arg computed bindings.
  • Added notes on several more renamed element and helper methods to the migration guide.
  • Added notes about replacing template-bound and templateInstance when using the template helper elements.
  • Updated docs on ready callback to clarify element initialization order.
  • Added a note about replacing the domReady callback.
  • Fixed some accessibility issues related to text contrast and bad alt text.

Release 1.0.3

Release 1.0.3 includes the following bug fixes:

  • dom-if showing invalid HTML. Fixes #1632.

  • Custom CSS property fix for IE. (commit)

  • Move non-webcomponents script unresolved case to load instead of synchronous. (commit)

  • dom-repeat: re-insert rows when re-attaching. Fixes #1498.

  • Make __styleScoped a one-time optimization. Fixes #1733.

Release 1.0.2

Release 1.0.2 includes the following bug fix:

  • Refactor ghost click code. (commit)

Release 1.0.1

Release 1.0.1 includes the following bug fixes:

Release 1.0

Release 1.0 includes the following bug fixes since 0.9:

  • Custom style system performance optimizations and parsing robustness.
  • Fixed Shady DOM style scoping on IE.
  • Avoid binding undefined string into textContent and inputs.
  • Allow behaviors to accept nested arrays of behaviors.
  • Properly update dom-repeat rendering following array mutations when both sort and filter are used.
  • Support literal strings & numbers in inline computed functions.
  • Support no-argument functions in inline computed functions.
  • Update Shady DOM distribution when using Polymer.dom(node).classList or Polymer.dom(node).setAttribute on distribution candidates.
  • Fixed gesture exception when dragging outside the document.
  • Fix ordering of behavior application.
  • Allow dom-bind to be imperatively created and filled with elements to be bound.
  • Fixed tap not firing the first time after tracking another element.
  • Fix dom-bind to ensure dependencies have resolved before stamping.
  • Fixed certain use cases of dynamically stamping a <content> using dom-if.
  • Prevent mustache content from being set to <input> value on IE.
  • Added warnings for common user mistakes.
  • Fix dom-bind from improperly scoping element classes.
  • Allow observation and binding of array.length.
  • Fix :host specificity for custom style properties.
  • Added Polymer.version property.

Documentation correction

The Migration guide has been updated to reflect that the
iron-flex-layout
custom properties are the recommended replacement for layout attributes in
Release 1.0. The layout classes previously described
in the Migration guide for Releases 0.8 and 0.9 will continue to work for
now, but are deprecated.

Release 0.9

A number of APIs changed between 0.8-rc.2 and 0.9. This section summarizes the changes.

Element registration changes

<span class="breaking">breaking change:</span> Mixins replaced by behaviors

Mixins have been replaced by behaviors, which can define properties, add
lifecycle callbacks, observers, and event listeners.

Specify behaviors using the behaviors array on the prototype:

Polymer({
  is: "enhanced-element",
  behaviors: [CoolBehavior]
});

For details, see Behaviors.

<span class="breaking">breaking change:</span> constructor renamed to factoryImpl

When creating a custom constructor, the configuration function is
renamed from constructor to factoryImpl, to aid compilation tools.

<span class="breaking">breaking change:</span> hostAttributes changes {#host-attributes}

Static attributes defined in hostAttributes can now be overridden from markup.

As a part of this change, the class attribute can no longer be set from
hostAttributes. If you need to set classes on the host, you can do so
imperatively (for example, by calling classList.add from the ready callback).

<span class="breaking">breaking change:</span> Property observer changes

The format for property observers has changed to be more like the format for computed properties:

Before:

observers: {
  'preload src size': 'updateImage'
},

updateImage: function(preload, src, size) {
  // ... do work using dependent values
}

After:

observers: [
  'updateImage(preload, src, size)'
],

updateImage: function(preload, src, size) {
  // ... do work using dependent values
}

Also, property observers are not invoked until all dependent properties are defined.
If the observer is not being invoked, make sure all dependent properties have non-undefined
default values set.

Styling changes

Custom property support

This release includes several enhancements and changes to custom property support:

  • Custom property support is enabled for all elements. The enableCustomStyleProperties
    flag is no longer required.

  • <span class="breaking">breaking change:</span> Style mixins are applied with @apply instead of mixin.

    @apply(--my-style-mixin)
    
  • The var function allows you to supply a default value, which is used if the custom
    property is not defined:

    background-color: var(--my-background, red);
    
  • Custom properties and mixins can be used inside a mixin.

    --foo: {
      color: var(--my-color);
      @apply(--my-theme);
    };
    

<span class="breaking">breaking change:</span> x-style renamed to custom-style

The custom-style element replaces the experimental x-style element.

Custom properties and CSS mixins can now be applied inside a custom-style element.

For more details, see Custom element for document styling.

Support for :root selector

Styling now supports the :root pseudo-class
inside custom-style. In the context of a custom-style element, the :root selector lets
you define a custom property that applies to all custom elements. (In 0.8, applying a property to
all custom elements required a more expensive * selector.)

Data binding changes

<span class="breaking">breaking change:</span> Template helper elements no longer experimental

The template helper elements are no longer experimental, and have been renamed:

  • x-repeat is now dom-repeat.
  • x-bind is now dom-bind.
  • x-array-selector is now array-selector.
  • x-if is now dom-if.

Nested template support

As of 0.9, nested templates can access their parent's scope. See Nesting dom-repeat templates for details.

<span class="breaking">breaking change:</span> Array mutation methods

In 0.8, an array observer was used to monitor the mutation of arrays, so adding an
item to an array was observed automatically, but changing a value in an array item required
the setPathValue method (now renamed to set).

0.9 replaces the array observers with a set of array mutation methods. For array changes
to be observed by data bindings, computed properties, or observers, you must use the provided
helper methods: push, pop, splice, shift, and unshift. Like set, the first argument
is a string path to the array.

this.push('users', { first: "Stephen", last: "Maturin" });

Gesture support

This release adds limited gesture support. For details, see Gesture events.

Content security policy (CSP) {#csp}

CSP issues in the initial release of 0.8 have been resolved. CSP still requires separate script and
HTML files.

The CSP-specific functions of vulcanize have been
split into a separate utility, crisper. To prepare a site for
deployment in a CSP environment, you can use a command like this:

vulcanize --inline-scripts --inline-css target.html | \\
    crisper --html build.html --js build.js

For more details on the vulcanize arguments, see the README.

Note: The latest versions of vulcanize are not compatible with {{site.project_title}} 0.5.
For 0.5 projects, use vulcanize versions earlier than 1.0. vulcanize 0.7.10 is the latest version
supporting 0.5 projects.
{: .alert .alert-info }

Utility functions

<span class="breaking">breaking change:</span> transform and translate3d API changes

The method signatures for the transform and translate3d utility methods have
changed to match the other utility methods. The node argument is now the last argument,
and is optional. If node is omitted, the methods act on this.

Before:

transform(node, transform);
translate3d(node, x, y, z);

After:

transform(transform, node);
translate3d(x, y, z, node);

<span class="breaking">breaking change:</span> fire API changes

The fire method now takes three arguments:

fire(type, [detail], [options]);

The options object can contain the following properties:

  • node. Node to fire the event on. Defaults to this.
  • bubbles. Whether the event should bubble. Defaults to true.
  • cancelable. Whether the event can be canceled with preventDefault. Defaults to false.

New utilities

The following utility functions were added since 0.8-rc.2 or were missing
from the earlier documentation:

  • $$
  • cancelAsync
  • debounce
  • cancelDebouncer
  • flushDebouncer
  • isDebouncerActive

For details, see Utility functions.

Bug fixes

Release 0.9 includes a number of bug fixes. A few notable fixes are listed below.

  • The id attribute can now be data bound. (Note that if id is data bound,
    the element is omitted from this.$.)

  • Default values are now set correctly for read-only properties.

  • An identifier with two dashes in the middle (c--foo) was improperly interpreted
    as a CSS custom property name.

  • Fixed several issues with computed bindings, including one where the computing function
    was not invoked unless its dependent property was included in another binding.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市纱烘,隨后出現(xiàn)的幾起案子谒所,更是在濱河造成了極大的恐慌赢织,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,042評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異狠毯,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)褥芒,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門嚼松,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人锰扶,你說(shuō)我怎么就攤上這事献酗。” “怎么了坷牛?”我有些...
    開封第一講書人閱讀 156,674評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵罕偎,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我京闰,道長(zhǎng)颜及,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,340評(píng)論 1 283
  • 正文 為了忘掉前任蹂楣,我火速辦了婚禮俏站,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘痊土。我一直安慰自己肄扎,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,404評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著犯祠,像睡著了一般萌丈。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上雷则,一...
    開封第一講書人閱讀 49,749評(píng)論 1 289
  • 那天辆雾,我揣著相機(jī)與錄音,去河邊找鬼月劈。 笑死度迂,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的猜揪。 我是一名探鬼主播惭墓,決...
    沈念sama閱讀 38,902評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼而姐!你這毒婦竟也來(lái)了腊凶?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,662評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤拴念,失蹤者是張志新(化名)和其女友劉穎钧萍,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體政鼠,經(jīng)...
    沈念sama閱讀 44,110評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡风瘦,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了公般。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片万搔。...
    茶點(diǎn)故事閱讀 38,577評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖官帘,靈堂內(nèi)的尸體忽然破棺而出瞬雹,到底是詐尸還是另有隱情,我是刑警寧澤刽虹,帶...
    沈念sama閱讀 34,258評(píng)論 4 328
  • 正文 年R本政府宣布酗捌,位于F島的核電站,受9級(jí)特大地震影響状婶,放射性物質(zhì)發(fā)生泄漏意敛。R本人自食惡果不足惜馅巷,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,848評(píng)論 3 312
  • 文/蒙蒙 一膛虫、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧钓猬,春花似錦稍刀、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)综膀。三九已至,卻和暖如春局齿,著一層夾襖步出監(jiān)牢的瞬間剧劝,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工抓歼, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留讥此,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,271評(píng)論 2 360
  • 正文 我出身青樓谣妻,卻偏偏與公主長(zhǎng)得像萄喳,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子蹋半,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,452評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容