mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2025-12-22 12:42:44 +01:00
Refactor towards modular structure
This commit is contained in:
38
src/shell/components/WhatsNewResultView.tsx
Normal file
38
src/shell/components/WhatsNewResultView.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
import React from 'react';
|
||||
import CommandLink from '../../core/components/CommandLink';
|
||||
import './WhatsNewResultView.css';
|
||||
|
||||
function WhatsnewResultView() {
|
||||
|
||||
return <div className="changelog">
|
||||
<h3>Changelog</h3>
|
||||
<div className="item item-new">
|
||||
<p><span className="soft date">Jun 14th, 2021</span> <br/>
|
||||
Added support of ip addresses and subnet masks notatioans. Try them out:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Single IP address <CommandLink text="127.0.0.1" /></li>
|
||||
<li>Multiple IP addresses and subnet mask notations <CommandLink text="127.0.0.1 192.168.0.0/24" /></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<div className="item">
|
||||
<p><span className="soft date">Jun 6th, 2017</span> <br/>
|
||||
Added <code><CommandLink text="guid" /></code> command. Use it for generating v4 GUIDs </p>
|
||||
</div>
|
||||
<div className="item">
|
||||
<p><span className="soft date">May 27th, 2017</span> <br/>
|
||||
Added support of binary number notation (e.g. <code><CommandLink text="0b10101" /></code>). </p>
|
||||
</div>
|
||||
<div className="item">
|
||||
<p><span className="soft">May 20th, 2017</span> <br/>
|
||||
New <CommandLink text="Midnight" /> theme added. </p>
|
||||
</div>
|
||||
<div className="item">
|
||||
<p><span className="soft">May 16th, 2017</span> <br/>
|
||||
Complete rewrite using React. Old implementation is available at <a href="http://bitwisecmd.com/old">http://bitwisecmd.com/old</a>. Please let me know if you have problems with this release by <a href="https://github.com/BorysLevytskyi/BitwiseCmd/issues">creating issue</a> in Github Repo.</p>
|
||||
</div>
|
||||
</div>;
|
||||
}
|
||||
|
||||
export default WhatsnewResultView;
|
||||
Reference in New Issue
Block a user