mirror of
https://github.com/responsively-org/responsively-app
synced 2024-11-10 06:44:13 +00:00
Version bump
This commit is contained in:
parent
72927644fa
commit
5326597668
3 changed files with 5 additions and 5 deletions
|
@ -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",
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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(
|
||||
|
@ -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);
|
||||
}
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue