Commit Graph

56 Commits

Author SHA1 Message Date
Jim Sproch
a74417fcef Upgrade imageviewer to build150 2021-02-10 15:53:42 -08:00
Roman Sedaikin
11e153736c Move ImageViewer to build149 and Kotlin 1.4.30. 2021-02-05 11:55:26 +03:00
Nikolay Igotti
40429e0cb9 Notarization sample. 2021-02-03 12:36:21 +03:00
Igor Demin
e00beacfbd Migrate to 0.3.0-build146 (imageviewer) 2021-01-28 19:37:05 +03:00
Igor Demin
728b4d5f76 ImageVIewer. Don't show splash screen on click on refresh button 2021-01-26 19:27:52 +03:00
Igor Demin
bde57fd891 ImageVIewer. Splash screen, composable window API 2021-01-26 18:19:19 +03:00
Nikolay Igotti
9354a554b4 iMove to 0.3.0-build135 and Kotlin 1.4.21. 2020-12-15 13:07:28 +03:00
Roman Sedaikin
1c39246706 New images for imageviewer 2020-11-27 13:12:00 +03:00
Nikolay Igotti
84163e7499 Move to 0.2.0-build132 2020-11-26 22:30:54 +03:00
Nikolay Igotti
18afa24fe0 Move to 0.2.0-build128 2020-11-23 10:08:22 +03:00
Alexey Tsvetkov
c105e3a8eb Change marker comment for Compose version
The verb `update` in `__UPDATE_COMPOSE_VERSION_MARKER__`
could be read as an instruction to update the plugin,
which might be confusing for users.
I suggest renaming the marker to more neutral
`__LATEST_COMPOSE_RELEASE_VERSION__`
2020-11-13 13:43:28 +03:00
Roman Sedaikin
f030439571 Added screenshots for examples. 2020-11-12 17:48:42 +03:00
Nikolay Igotti
aa2a8740ca Update to 0.1.0-build113 2020-11-09 18:23:34 +03:00
Igor Demin
3f31864f34 Imageviewer. Fix "./gradlew build" 2020-11-05 10:27:43 +03:00
Sebastian Aigner
33b041c31a ImageViewer: Use Ktor and expect/actual to make common source set pure Kotlin (#51)
* Add IDE resolution warning for examples sharing JVM & Android code.

* Use Ktor to remove JVM-specific networking code from common source set
Fix resolution for Picture class via expect/actual mechanism

Co-authored-by: Sebastian Aigner <sebastian.aigner@jetbrains.com>
2020-11-04 22:56:12 +03:00
Sebastian Aigner
c151746e53 Add IDE resolution warning for examples sharing JVM & Android code. (#49)
Co-authored-by: Sebastian Aigner <sebastian.aigner@jetbrains.com>
2020-11-04 19:47:58 +03:00
Igor Demin
3b583678c7 Migrate to Compose 0.1.0-m1-build62 2020-11-03 23:59:40 +03:00
Igor Demin
3799ca1f16 Fix typos 2020-11-03 22:49:57 +03:00
Alexey Tsvetkov
314f5af47f Update all examples with Compose Application DSL 2020-11-03 17:16:21 +03:00
Alexey Tsvetkov
3b7835fb4a Merge compose.desktop.application plugin with compose plugin
This change removes `org.jetbrains.compose.desktop.application` plugin id
in favor of doing everything in `org.jetbrains.compose`.
The change simplifies configuring Compose Desktop projects.
Now, just one plugin dependency is needed.

To avoid task name conflicts with common task names such as `package` and `run`,
the plugin creates tasks lazily only if `application` block/property is used in a script.
2020-11-03 17:16:21 +03:00
Roman Sedaikin
a35596ff03 Added zoom/drag feature to desktop imageviewer. Added image navigation support via shortcuts. 2020-11-02 14:23:43 +03:00
Roman Sedaikin
70ffa959c2 Added scrollbar to ImageViewer. 2020-11-02 11:53:24 +03:00
Nikolay Igotti
5fe9d53c3c Move few examples to m1-build57 2020-10-30 21:14:33 +03:00
Alexey Tsvetkov
d0859c665c Adjust settings for Windows
Enable dir chooser by default.
Also, treat menu as true if menuGroup is not null.
2020-10-29 20:40:27 +03:00
Alexey Tsvetkov
991b7ff6a7 Rename nativeExecutables to nativeDistributions 2020-10-29 20:40:27 +03:00
Alexey Tsvetkov
927abf0d03 Add icons support to packaging 2020-10-29 20:40:27 +03:00
Alexey Tsvetkov
7067691b10 Add dependency on jdk.crypto.ec 2020-10-29 20:40:27 +03:00
Alexey Tsvetkov
563dc37c9b Add desktop application Gradle plugin
For simplified packaging and running an app
2020-10-29 20:40:27 +03:00
Nikolay Igotti
b9b0064d7b Move some sameples to dev109 2020-10-29 13:42:51 +03:00
Igor Demin
6009cdd6cb Remove "Copyright 2020 The Android Open Source Project" 2020-10-28 11:16:55 +03:00
Igor Demin
6c2457240b Multiplatform template in IDEA / Android Studio. Add comment about issue 2020-10-28 11:05:15 +03:00
Igor Demin
1fdbf6868d Merge remote-tracking branch 'origin/master' into fix_multiplatfrom_template
# Conflicts:
#	examples/imageviewer/desktop/build.gradle.kts
#	examples/issues/desktop/build.gradle.kts
#	examples/todoapp/desktop/build.gradle.kts
#	templates/multiplatform-template/desktop/build.gradle.kts
2020-10-28 10:59:00 +03:00
Igor Demin
3bbac40969 Merge pull request #29 from JetBrains/gitignore_unification
Unify .gitignore across all examples and templates
2020-10-27 11:09:22 +03:00
Nikolay Igotti
3876014768 Move to compose.desktop.currentOs 2020-10-26 20:36:03 +03:00
Igor Demin
3b13944daf Fix multiplatform projects in IDEA / Android Studio
Fixes:
- https://github.com/JetBrains/compose-jb/issues/21
We need to move buildscript from settings.gradle.kts to build.gradle.kts
See also https://youtrack.jetbrains.com/issue/KT-36331

- https://github.com/JetBrains/compose-jb/issues/22
kotlin("jvm") plugin doesn't work well with MPP modules.
To fix this issue we need to use kotlin("multiplatform") even if we targeting single platform.
See also https://youtrack.jetbrains.com/issue/KT-42823
2020-10-26 19:29:39 +03:00
Igor Demin
c8812bd04b Unify .gitignore across all examples and templates 2020-10-26 19:27:58 +03:00
Nikolay Igotti
000507c755 Allow using mavenLocal() is samples. 2020-10-26 18:26:41 +03:00
Nikolay Igotti
c0c31e9506 Move to dev97 2020-10-20 21:48:28 +03:00
Roman Sedaikin
f440b6ddee Fixed loading screen when click on miniature. 2020-10-20 17:53:32 +03:00
Roman Sedaikin
79ddbaf7bd Updated android application to new version of compose api. 2020-10-20 16:01:37 +03:00
Roman Sedaikin
728210fdde Fixed loading screen issue. 2020-10-20 15:26:44 +03:00
Roman Sedaikin
df6fa95b9b Added app icon to desktop version of ImageViewer. 2020-10-20 11:03:26 +03:00
Nikolay Igotti
11543c4618 Move to dev87. 2020-10-16 15:13:35 +03:00
Nikolay Igotti
08ce747217 Move to dev85. 2020-10-15 11:06:33 +03:00
Nikolay Igotti
e2afc407c8 Move examples to piublic repo deps. 2020-10-09 10:08:17 +03:00
spvessel
345c409833 Added mouse hover interactivity to the desktop version of app. 2020-09-21 11:27:57 +03:00
Nikolay Igotti
d96a1090cb Add mouse move demo to imageviewer. 2020-09-16 17:25:21 +03:00
Nikolay Igotti
dfa22f0a01 Move sampels to build58 2020-09-15 17:41:15 +03:00
spvessel
b71d16381b Added/removed some imports. 2020-09-14 11:38:08 +03:00
spvessel
743a300bc0 Fixed Draggable & Scalable for desktop. 2020-09-14 11:15:51 +03:00