Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
manojVivek committed Aug 17, 2024
1 parent 7292764 commit 5326597
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion desktop-app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Responsively-App",
"productName": "ResponsivelyApp",
"version": "1.13.0",
"version": "1.14.0",
"description": "A developer-friendly browser for developing responsive web apps",
"keywords": [
"developer-tools",
Expand Down
2 changes: 1 addition & 1 deletion desktop-app/release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ResponsivelyApp",
"version": "1.13.0",
"version": "1.14.0",
"description": "A developer-friendly browser for developing responsive web apps",
"license": "MIT",
"author": {
Expand Down
6 changes: 3 additions & 3 deletions desktop-app/src/store/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const migrations = {
},
]);
},
'1.13.0': (store: Store) => {
'1.14.0': (store: Store) => {
// Migrate dpi to dpr in custom devices
try {
const previousCustomDevices: any[] = store.get(
Expand All @@ -102,11 +102,11 @@ export const migrations = {
});
store.set('deviceManager.customDevices', newCustomDevices);
console.log(
'Migration for 1.13.0 successful',
'Migration for 1.14.0 successful',
store.get('deviceManager.customDevices')
);
} catch (e) {
console.log('Migration for 1.13.0 failed', e);
console.log('Migration for 1.14.0 failed', e);
}
},
};

0 comments on commit 5326597

Please sign in to comment.