Skip to content

Commit

Permalink
v1.0.6 (#79)
Browse files Browse the repository at this point in the history
This maintenance release addresses all issues contained in the v1.0.6 milestone.
https://github.com/mivaecommerce/readytheme-shadows/milestone/7?closed=1

This closes #68, closes #69, closes #70, closes #71, closes #72, closes #73, closes #74, closes #75, closes #76, closes #77, and closes #78
  • Loading branch information
influxweb committed Oct 18, 2019
1 parent 52a7f24 commit 532429a
Show file tree
Hide file tree
Showing 31 changed files with 5,615 additions and 321 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

[1.0.5.1]: https://github.com/mivaecommerce/readytheme-shadows/compare/master...v1.0.5.1
[1.0.6]: https://github.com/mivaecommerce/readytheme-shadows/compare/v1.0.5.1...v1.0.6
## [1.0.6] - 2019-10-18

#### Fixed
This maintenance release addresses all issues contained in the v1.0.6 milestone.
- [Milestone v1.0.6](https://github.com/mivaecommerce/readytheme-shadows/milestone/7?closed=1)

[1.0.5.1]: https://github.com/mivaecommerce/readytheme-shadows/compare/v1.0.5...v1.0.5.1
## [1.0.5.1] - 2019-05-08

#### Fixed
This maintenance release addresses all issues contained in the v1.0.5.1 milestone.
- [Milestone v1.0.5.1](https://github.com/mivaecommerce/readytheme-shadows/milestone/6?closed=1)

[1.0.5]: https://github.com/mivaecommerce/readytheme-shadows/compare/master...v1.0.5
[1.0.5]: https://github.com/mivaecommerce/readytheme-shadows/compare/v1.0.4...v1.0.5
## [1.0.5] - 2019-05-01
There have been a few housekeeping items taken care of in this update. Most notably, the addition of subdirectories for
some of the extensions. This is to facilitate better organization and documentation for future extensions.
Expand All @@ -32,7 +39,7 @@ This maintenance release addresses all issues contained in the v1.0.5 milestone.
#### Removed
- Native CSS concatenation introduced in [v1.0.04 Issue #40](https://github.com/mivaecommerce/readytheme-shadows/issues/40).

[1.0.4]: https://github.com/mivaecommerce/readytheme-shadows/compare/master...v1.0.4
[1.0.4]: https://github.com/mivaecommerce/readytheme-shadows/compare/v1.0.3...v1.0.4
## [1.0.4] - 2019-01-09
#### Fixed
This maintenance release addresses all issues contained in the v1.0.4 milestone.
Expand Down Expand Up @@ -92,4 +99,3 @@ have been commented out of the code.
- Initial Framework `mm5/frameworks/00000001/shadows.pkg`
- Initial Theme Files `mm5/themes/shadows/*`
- Initial template export from Miva `editable_templates/shadows/mm5/*`

3 changes: 2 additions & 1 deletion docs/.htaccess
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DirectoryIndex index.html
RewriteEngine on
DirectoryIndex index.html
65 changes: 65 additions & 0 deletions docs/base.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Shadows Developer ReadyTheme :: CSS - Base</title>
<link href="themes/documentation/site-styles.css" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#efefef">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<header class="x-site-header" data-cms-block data-cms-content="global/global-header.html"></header>
<!-- /.x-site-header -->

<main>
<div class="o-wrapper">
<div class="o-layout">
<section class="o-layout__item u-width-9--m o-layout__last x-site-content">
<span id="start-install"></span>
<h1>
<span class="c-heading-bravo u-text-bold">Base</span>
<code class="x-inline-code u-font-small">THEME_NAME/core/css/base</code>
</h1>
<p>This level contains the global reset for HTML markup.</p>
<p>
Shadows utilizes <a href="http://necolas.github.io/normalize.css/" target="_blank">Normalize.css</a>
as well as a small set of additional resets. Properties for legacy browsers have been excluded.
</p>
<hr class="c-keyline">
</section>
<!-- /.x-site-content -->
<nav class="o-layout__item u-width-3--m o-layout__first x-site-navigation" data-cms-block data-cms-content="global/global-navigation.html"></nav>
<!-- /.x-site-navigation -->
</div>
</div>
</main>
<!-- /.x-site-content -->

<footer class="u-bg-gray-50 u-color-white u-font-small x-site-footer" data-cms-block data-cms-content="global/global-footer.html"></footer>
<!-- /.x-site-footer -->

<script src="themes/documentation/ui/js/scripts.js"></script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-20016-16', 'auto');
ga('send', 'pageview');
</script>
<!-- Scripts -->
</body>
</html>
Loading

0 comments on commit 532429a

Please sign in to comment.