Skip to content

Commit 49739b7

Browse files
author
Josh Varga
committed
Initial commit
0 parents  commit 49739b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1702
-0
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Embroidermodder
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Embroidermodder Mobile
2+
View, tweak, and convert machine embroidery files on your Android device
3+
4+
# Installation
5+
Install from Google Play. Offical release is located:
6+
7+
https://play.google.com/store/apps/details?id=com.embroidermodder.android
8+
9+
# Overview
10+
The main emphasis on this project, currently, is to serve as a cursory app for hacking and working with Android and embroidery.
11+
This has lead to some spin-off functionality and utilities like EmbroideryIO which also shares parentage with `EmbroiderPy/pyembroidery` and `Embroidermodder/libembroidery`.
12+
13+
## Formats
14+
Loading and saving is possible between many different formats. This functionality is part of the EmbroideryIO project which is a sister project to this one.
15+
16+
https://github.com/EmbroidePy/EmbroideryIO
17+
18+
The EmbroideryIO project includes 40+ formats for reading and 10+ for writing.
19+
- Writing: .pes, .dst, .exp, .jef, .vp3, .u01, .pec, .xxx, .csv, .emm
20+
- Reading: .pes, .dst, .exp, .jef, .vp3, .10o, .100, .bro, .dat, .dsz, .emd, .exy, .fxy, .gt, .inb, .jpx, .ksm, .max, .mit, .new, .pcd, .pcm, .pcq, .pcs, .pec, .phb, .phc, .sew, .shv, .stc, .stx, .tap, .tbf, .u01, .xxx, .zxy, .csv, .emm
21+
22+
## Thumbnail directory viewer.
23+
Thumbnail directory viewer generates and caches thumbnail view.
24+
25+
## Thread color revision
26+
Ability to change thread colors for visualization and end result.
27+
28+
## Realisitic embroidery view
29+
Fancyview allows for a more realistic view of the threads.
30+
31+
## Share and save
32+
Share and save these visualizations, or view them from your device while sewing your project.
33+
34+
# Want to help?
35+
The primary goal of this project is to provide a solid functional base mobile embroidery application for people. If you would like to contribute to this project, need a different embroidery format, or want to suggest an idea, raise an issue.
36+
37+
Enhancements (no particular order)
38+
-------------------------------------------------
39+
- Potentially use "Android Instant Apps" (when available)

app/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 28
5+
buildToolsVersion '28.0.3'
6+
7+
defaultConfig {
8+
applicationId "com.embroidermodder.embroideryviewer"
9+
minSdkVersion 16
10+
targetSdkVersion 28
11+
versionCode 4000
12+
versionName "1.0"
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18+
}
19+
}
20+
compileOptions {
21+
sourceCompatibility JavaVersion.VERSION_1_7
22+
targetCompatibility JavaVersion.VERSION_1_7
23+
}
24+
}
25+
26+
dependencies {
27+
implementation fileTree(include: ['*.jar'], dir: 'libs')
28+
implementation 'com.android.support:support-v4:28.0.0'
29+
implementation 'com.android.support:appcompat-v7:28.0.0'
30+
implementation 'com.android.support:design:28.0.0'
31+
implementation 'com.github.yukuku:ambilwarna:2.0.1'
32+
implementation 'com.github.EmbroidePy.EmbroideryIO:embroideryio-android:0.0.11'
33+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
34+
}

app/proguard-rules.pro

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}

0 commit comments

Comments
 (0)