1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00

Fix paths

This commit is contained in:
Laurent Cozic 2020-11-05 17:18:38 +00:00
parent 6856f84faa
commit c1e2fd125c
3 changed files with 9 additions and 9 deletions

4
.gitignore vendored
View File

@ -45,8 +45,8 @@ QtClient/data/
sparse_test.php
sync_staging.sh
TODO.md
Tools/commit_hook.txt
Tools/github_oauth_token.txt
packages/tools/commit_hook.txt
packages/tools/github_oauth_token.txt
lerna-debug.log
# AUTO-GENERATED - EXCLUDED TYPESCRIPT BUILD

View File

@ -228,33 +228,33 @@ const operations = [
{
source: 5,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon.ico',
dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon.ico',
},
{
source: 2,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon_16.png',
dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon_16.png',
},
{
source: 3,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon_32.png',
dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon_32.png',
width: 32,
height: 32,
},
{
source: 4,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon_75.png',
dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon_75.png',
width: 75,
height: 75,
},
{
source: 4,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon_128.png',
dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon_128.png',
width: 128,
height: 128,
},
{
source: 4,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/Launcher/splash.jpg',
dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/Launcher/splash.jpg',
width: 144,
height: 144,
},

View File

@ -29,7 +29,7 @@ async function main() {
console.info(`Created GitHub release: ${release.html_url}`);
console.info('GitHub release page: https://github.com/laurent22/joplin/releases');
console.info(`To create changelog: node Tools/git-changelog.js ${version}`);
console.info(`To create changelog: node packages/tools/git-changelog.js ${version}`);
}
main().catch((error) => {