Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikVerheul committed Dec 20, 2024
1 parent 611d647 commit 38e940b
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 38 deletions.
78 changes: 46 additions & 32 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "onebacklog",
"version": "2.5.0.1",
"version": "2.6.0",
"private": true,
"scripts": {
"dev": "vite",
Expand All @@ -26,7 +26,7 @@
"@vueup/vue-quill": "^1.2.0",
"axios": "^1.7.9",
"bootstrap": "^5.3.3",
"bootstrap-vue-next": "^0.26.15",
"bootstrap-vue-next": "^0.26.17",
"mitt": "^3.0.1",
"vue": "^3.5.13",
"vue-draggable-next": "^2.2.1",
Expand All @@ -41,9 +41,9 @@
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.13.0",
"globals": "^15.14.0",
"prettier": "3.4.2",
"unplugin-vue-components": "^0.27.5",
"unplugin-vue-components": "^0.28.0",
"vite": "^6.0.3"
},
"eslintConfig": {
Expand Down
9 changes: 9 additions & 0 deletions src/components/rel-notes/RelNotes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
<BRow>
<BCol cols="12" class="left-column">
<h1>RELEASE NOTES</h1>
<h3>v.2.6.0 - 20 December 2024 Merge views</h3>
<p>Due to performance improvements in Vue and the current browsers there is no need to limit the number of rows in the tree view.</p>
<p>Refactoring</p>
<ul>
<li>Merge detail- and coarse view (overview) to one Backlog tree view</li>
<li>Update APO rights</li>
<li>Upgrade dependencies</li>
<li>Update modal prop to latest bootstrap-vue-next version</li>
</ul>
<h3>v.2.5.0 - 13 December 2024 Refactoring move functionality</h3>
<p>Refactoring</p>
<ul>
Expand Down
3 changes: 1 addition & 2 deletions src/store/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function getCurrentEvt(eventsArray, key) {
const store = createStore({
state() {
return {
appVersion: '2.5.0.1',
appVersion: '2.6.0',
// generic helper functions
helpersRef: null,
// console log settings
Expand Down Expand Up @@ -788,7 +788,6 @@ const store = createStore({
// stop the timers
if (state.authentication) clearInterval(state.authentication.runningCookieRefreshId)
if (state.watchdog) clearInterval(state.watchdog.runningWatchdogId)
if (state.debug) console.log(`endSession: caller = ${caller}`)
state.signedOut = true
// reset the app by reloading and skipping the cache (Firefox only)
window.location.reload(true)
Expand Down

0 comments on commit 38e940b

Please sign in to comment.