Skip to content

Commit

Permalink
Release for version 10.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Findeton committed Sep 10, 2024
1 parent d2f20c9 commit f9af691
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

var pkg = require('./package.json');
var SEQUENT_CONFIG_VERSION = '10.5.0';
var SEQUENT_CONFIG_VERSION = '10.5.1';

//Using exclusion patterns slows down Grunt significantly
//instead of creating a set of patterns like '**/*.js' and '!**/node_modules/**'
Expand Down Expand Up @@ -165,10 +165,10 @@ module.exports = function (grunt) {
options: {
remove: ['script[data-remove!="false"]','link[data-remove!="false"]'],
append: [
{selector:'body',html:'<script src="/libnocompat-v10.5.0.js"></script>'},
{selector:'body',html:'<script src="/libnocompat-v10.5.1.js"></script>'},
{selector:'body',html:'<!--All the source code of this program under copyright. Take a look at the license details at https://github.com/sequent/sequent-core-common/blob/master/README.md -->'},
{selector:'body',html:'<script src="/appCommon-v10.5.0.js"></script>'},
{selector:'body',html:'<script src="/SequentPlugins-v10.5.0.js"></script>'},
{selector:'body',html:'<script src="/appCommon-v10.5.1.js"></script>'},
{selector:'body',html:'<script src="/SequentPlugins-v10.5.1.js"></script>'},
{selector:'head',html:'<link rel="stylesheet" id="theme" href="/themes/default/app.min.css">'}
]
},
Expand All @@ -194,14 +194,14 @@ module.exports = function (grunt) {
'temp/libnocompat.js': ['<%= dom_munger.data.libnocompatjs %>'],
'temp/lib.js': ['<%= dom_munger.data.libjs %>'],
'temp/app.js': ['<%= dom_munger.data.appjs %>','<%= ngtemplates.main.dest %>'],
'dist/SequentConfig-v10.5.0.js': ['SequentConfig.js'],
'dist/SequentThemes-v10.5.0.js': ['SequentThemes.js'],
'dist/SequentPlugins-v10.5.0.js': ['plugins/**/*.js']
'dist/SequentConfig-v10.5.1.js': ['SequentConfig.js'],
'dist/SequentThemes-v10.5.1.js': ['SequentThemes.js'],
'dist/SequentPlugins-v10.5.1.js': ['plugins/**/*.js']
}
},
postUglify: {
files: {
'dist/libCommon-v10.5.0.js': ['dist/libCommon-v10.5.0.js', 'node_modules/i18next/dist/umd/i18next.js']
'dist/libCommon-v10.5.1.js': ['dist/libCommon-v10.5.1.js', 'node_modules/i18next/dist/umd/i18next.js']
}
},
},
Expand Down Expand Up @@ -236,9 +236,9 @@ module.exports = function (grunt) {
beautify: true
},
files: {
'dist/appCommon-v10.5.0.js': 'temp/app.js',
'dist/libCommon-v10.5.0.js': ['temp/lib.js'],
'dist/libnocompat-v10.5.0.js': 'temp/libnocompat.js',
'dist/appCommon-v10.5.1.js': 'temp/app.js',
'dist/libCommon-v10.5.1.js': ['temp/lib.js'],
'dist/libnocompat-v10.5.1.js': 'temp/libnocompat.js',
'dist/avWidgets.js': 'avWidgets.js',

"dist/locales/moment/es.js": "node_modules/moment/locale/es.js",
Expand Down
4 changes: 2 additions & 2 deletions SequentConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* in this same file, which you might want to edit and tune if needed.
*/

var SEQUENT_CONFIG_VERSION = '10.5.0';
var SEQUENT_CONFIG_VERSION = '10.5.1';

var SequentConfigData = {
// the base url path for ajax requests, for example for sending ballots or
Expand Down Expand Up @@ -236,7 +236,7 @@ var SequentConfigData = {
title: ""
},

mainVersion: '10.5.0',
mainVersion: '10.5.1',
repoVersions: [],

// Number of seconds after which an authentication token expires.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "common-ui",
"version" : "10.5.0",
"version" : "10.5.1",
"license": "AGPL-3.0-only",
"author": {
"name": "Sequent Tech Inc and others",
Expand Down

0 comments on commit f9af691

Please sign in to comment.