Skip to content

Commit

Permalink
Merge pull request #149 from uriweb/release-1.2.7
Browse files Browse the repository at this point in the history
Release 1.2.7
  • Loading branch information
bjcfuller authored Feb 28, 2019
2 parents a87ebf7 + 76a9ef1 commit 8183b28
Show file tree
Hide file tree
Showing 11 changed files with 111 additions and 84 deletions.
23 changes: 6 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,15 @@

URI Modern is a WordPress theme designed for the University of Rhode Island. It's designed to replace all themes currently being used on the university's websites, and unify the online brand and experience.

## What's new in 1.2.6
## What's new in 1.2.7

URI Modern 1.2.6 is a bug fix release.
URI Modern 1.2.7 is a bug fix release.

* Updates form styles to make click targets easier to see
* Improves Search and Filter styling of certain people groups
* Improves legibility of tags for screen readers

For complete details, see the [commit history](https://github.com/uriweb/uri-modern/pull/147/commits) and the [issue tracker](https://github.com/uriweb/uri-modern/issues).

## New in 1.2.5

URI Modern 1.2.5 is a bug fix release.

* Fixes an issue with long breadcrumbs not wrapping on mobile
* Fixes form styles to comply with using semantic html
* Cleans up Search & Filter results template code
* Corrects the way global variables are checked
* The static build now includes theme adjustments for the [Component Library](https://github.com/uriweb/uri-component-library)
* Updates development tools

For complete details, see the [commit history](https://github.com/uriweb/uri-modern/pull/145/commits) and the [issue tracker](https://github.com/uriweb/uri-modern/issues).
For complete details, see the [commit history](https://github.com/uriweb/uri-modern/pull/149/commits) and the [issue tracker](https://github.com/uriweb/uri-modern/issues).

## How do I get set up?

Expand All @@ -43,4 +32,4 @@ Contributors: Brandon Fuller, John Pennypacker
Tags: themes
Requires at least: 4.0
Tested up to: 5.0
Stable tag: 1.2.6
Stable tag: 1.2.7
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ function uri_modern_scripts() {
/**
* Enable styles in the WYSIWYG Editor (BETA FEATURE)
*/
if ( URI_BETA_FEATURES !== null && URI_BETA_FEATURES === true ) {
if ( defined( 'URI_BETA_FEATURES' ) && URI_BETA_FEATURES === true ) {

if ( is_admin() ) {
add_editor_style( get_template_directory_uri() . '/style.css', __FILE__ );
Expand Down
2 changes: 1 addition & 1 deletion header-parts/brandbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<div id="gateways">
<input type="checkbox" id="gateways-toggle" role="presentation" aria-label="Open the audience gateways menu when browsing on mobile">
<label for="gateways-toggle" id="gateways-label"><span><?php echo ( URI_EASTER_EGGS !== null && URI_EASTER_EGGS === true ) ? '&#128017' : 'You'; ?></span></label>
<label for="gateways-toggle" id="gateways-label"><span><?php echo ( defined( 'URI_EASTER_EGGS' ) && URI_EASTER_EGGS === true ) ? '&#128017' : 'You'; ?></span></label>
<ul id="gateways-menu" role="menu">
<li><a href="https://<?php uri_modern_the_subdomain(); ?>.uri.edu/gateway/future-students" role="menuitem">Future Students</a></li>
<li><a href="https://<?php uri_modern_the_subdomain(); ?>.uri.edu/gateway/students" role="menuitem">Students</a></li>
Expand Down
4 changes: 2 additions & 2 deletions js/script.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

139 changes: 88 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uri-modern",
"version": "1.2.6",
"version": "1.2.7",
"description": "URI Modern is a WordPress theme designed for the University of Rhode Island. It's designed to replace all themes currently being used on the university's websites, and unify the online brand and experience.",
"themeName": "URI Modern",
"textDomain": "uri",
Expand All @@ -22,7 +22,7 @@
"license": "GPL-3.0",
"licenseURI": "http://www.gnu.org/licenses/gpl.html",
"devDependencies": {
"autoprefixer": "^9.4.7",
"autoprefixer": "^9.4.9",
"gulp": ">=4.0.0",
"gulp-changed": ">=3.2.0",
"gulp-concat": ">=2.6.1",
Expand All @@ -34,7 +34,7 @@
"gulp-rename": ">=1.4.0",
"gulp-sass": "^4.0.2",
"gulp-shell": ">=0.6.5",
"gulp-sourcemaps": ">=2.6.4",
"gulp-sourcemaps": "^2.6.5",
"gulp-strip-debug": ">=3.0.0",
"gulp-uglify": ">=3.0.1",
"jshint": "^2.10.1"
Expand Down
3 changes: 2 additions & 1 deletion src/sass/static.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ STATIC VERSION
@import 'partials/breadcrumbs';
@import 'partials/localnav';
@import 'partials/search';
@import 'partials/404';
@import 'partials/404';
@import 'partials/components';
2 changes: 1 addition & 1 deletion static/map/style.static.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/script.static.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions static/style.static.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8183b28

Please sign in to comment.