Skip to content

Commit 3dcdf8f

Browse files
committed
Prepared Release 1.0.0
1 parent 1887b2c commit 3dcdf8f

3 files changed

Lines changed: 9 additions & 11 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# InstaCrop
22

3+
We all know, the image cropping of portrait pictures on Instagram and other services is ridiculous. So I build this app to get the pictures in the right format without the need to crop them. Simply drop a bunch of images to the app and they will be processed and saved in the same path in a new folder.
4+
35
> Boilerplate to kickstart creating an app with [Electron](https://github.com/electron/electron)
46
57
See [awesome-electron](https://github.com/sindresorhus/awesome-electron) for more useful Electron resources.

menu.js

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ const showPreferences = () => {
2323
const helpSubmenu = [
2424
openUrlMenuItem({
2525
label: 'Website',
26-
url: 'https://github.com/sindresorhus/electron-boilerplate'
27-
}),
28-
openUrlMenuItem({
29-
label: 'Source Code',
30-
url: 'https://github.com/sindresorhus/electron-boilerplate'
26+
url: 'https://github.com/artifactdev/InstaCrop'
3127
}),
3228
{
3329
label: 'Report an Issue…',
@@ -41,8 +37,8 @@ const helpSubmenu = [
4137
${debugInfo()}`;
4238

4339
openNewGitHubIssue({
44-
user: 'sindresorhus',
45-
repo: 'electron-boilerplate',
40+
user: 'artifactdev',
41+
repo: 'InstaCrop',
4642
body
4743
});
4844
}
@@ -56,7 +52,7 @@ if (!is.macos) {
5652
},
5753
aboutMenuItem({
5854
icon: path.join(__dirname, 'static', 'icon.png'),
59-
text: 'Created by Your Name'
55+
text: 'Created by ART-ifact / Jerry Arnstadt'
6056
})
6157
);
6258
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "InstaCrop",
33
"productName": "InstaCrop",
4-
"version": "0.0.1",
4+
"version": "1.0.0",
55
"description": "No Crop for Instagram",
66
"license": "MIT",
7-
"repository": "sindresorhus/electron-boilerplate",
7+
"repository": "artifactdev/InstaCrop",
88
"author": {
99
"name": "Jerry Arnstadt",
1010
"email": "j.arnstadt@art-ifact.de",
@@ -45,7 +45,7 @@
4545
"releaseDraft": false
4646
},
4747
"build": {
48-
"appId": "com.company.AppName",
48+
"appId": "com.artifactdev.InstaCrop",
4949
"mac": {
5050
"category": "public.app-category.social-networking",
5151
"darkModeSupport": true

0 commit comments

Comments
 (0)