Skip to content

Commit

Permalink
Merge pull request #61 from wallabag/features/release-note-1-2
Browse files Browse the repository at this point in the history
Features/release note 1 2
  • Loading branch information
bourvill authored Jan 8, 2017
2 parents acadf25 + 2d7e8c0 commit 6412fbe
Show file tree
Hide file tree
Showing 27 changed files with 688 additions and 86 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fastlane/report.xml
fastlane/Deliverfile
fastlane/Appfile
#fastlane/Preview.html
Preview.html
#Preview.html
#fastlane/screenshots
fastlane/test_output

Expand Down
53 changes: 35 additions & 18 deletions Preview.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>deliver - Wallabag 2
</title>
<title>deliver - Wallabag 2 Official</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style>
.app-name {
Expand Down Expand Up @@ -115,8 +114,7 @@


<div class="app-name">
en-US: Wallabag 2

en-US: Wallabag 2 Official
</div>


Expand All @@ -126,9 +124,7 @@


<div class="app-url-descr">
support_url: <a target="_blank" class="app-url" href="
">
</a>
support_url: <a target="_blank" class="app-url" href="https://github.com/wallabag/ios-app/issues">https://github.com/wallabag/ios-app/issues</a>
</div>


Expand All @@ -154,6 +150,8 @@

<li>poche</li>

<li>read it later</li>

</ul>
</div>

Expand All @@ -162,31 +160,50 @@
<div class="app-description">
<div class="cat-headline">Description</div>
<div class="app-description-text">
Wallabag, a self hostable application for saving web pages<br /><br /><br />Unlike other services, Wallabag is free (as in freedom) and open source.<br /><br />In order to use this app, you need a hosted wallabag instance. You can either install wallabag on your server/webspace or you can register at framabag.org (for free).
Wallabag, a self hostable application for saving web pages<br /><br />Unlike other services, Wallabag is free (as in freedom) and open source.<br /><br />In order to use this app, you need a hosted wallabag instance. You can either install wallabag on your server/webspace or you can register at www.wallabag.it.
</div>
</div>



<div class="app-changelog">
<div class="cat-headline">Changelog</div>
<br />
We add some new cool features like :<br /> - Theme<br /> - Ability to justify article or not<br /> - Share extension<br /> - Add some icon on article for unread or favorite<br /> - Support non standart port<br /><br />And Bug fix
</div>


<div class="app-screenshots">
<div class="cat-headline">Screenshots</div>


<!-- no screenshots -->
<div style="border: 3px solid red; padding: 0px 20px">
<h2 style="color: red">No Screenshots Found</h2>
<p>
deliver couldn't find any screenshots. This will <b>remove</b> existing screenshots, but will also not upload any.
<p>
Please make sure to store your screenshots in the screenshots folder. If you want to download your existing screenshots, run <i>deliver download_screenshots</i>.
</p>
</div>






<h4>iPhone 6 Plus</h4>
<div class="app-screenshot-row">


<a href="./fastlane/screenshots/en-US/iPhone6Plus-01Home.png" target="_blank"><img class="app-screenshot" src="./fastlane/screenshots/en-US/iPhone6Plus-01Home.png" title="Screenshot #0 for en-US"></a>

<a href="./fastlane/screenshots/en-US/iPhone6Plus-02Article.png" target="_blank"><img class="app-screenshot" src="./fastlane/screenshots/en-US/iPhone6Plus-02Article.png" title="Screenshot #1 for en-US"></a>

</div>



<h4>iPad Pro</h4>
<div class="app-screenshot-row">


<a href="./fastlane/screenshots/en-US/iPadPro(12.9inch)-01Home.png" target="_blank"><img class="app-screenshot" src="./fastlane/screenshots/en-US/iPadPro(12.9inch)-01Home.png" title="Screenshot #0 for en-US"></a>

<a href="./fastlane/screenshots/en-US/iPadPro(12.9inch)-02Article.png" target="_blank"><img class="app-screenshot" src="./fastlane/screenshots/en-US/iPadPro(12.9inch)-02Article.png" title="Screenshot #1 for en-US"></a>

</div>


</div>

Expand Down
13 changes: 8 additions & 5 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ default_platform :ios
platform :ios do
before_all do
cocoapods
cert
sigh(force: true)
end

desc "Runs all the tests"
Expand All @@ -20,17 +18,22 @@ platform :ios do
desc "This will also make sure the profile is up to date"
lane :beta do
increment_build_number
cert
sigh(force: true)
gym(scheme: "wallabag") # Build your app - more options available
pilot
end

lane :snapshot do
snapshot(scheme: "wallabagScreenshot")
end

desc "Deploy a new version to the App Store"
lane :release do
# match(type: "appstore")
# snapshot
cert
sigh(force: true)
gym(scheme: "wallabag") # Build your app - more options available
deliver(force: true)
# frameit
end

# You can define as many lanes as you want
Expand Down
5 changes: 5 additions & 0 deletions fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ fastlane ios beta
Submit a new Beta Build to Apple TestFlight

This will also make sure the profile is up to date
### ios snapshot
```
fastlane ios snapshot
```

### ios release
```
fastlane ios release
Expand Down
15 changes: 6 additions & 9 deletions fastlane/Snapfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
# Uncomment the lines below you want to change by removing the # in the beginning

# A list of devices you want to take the screenshots from
# devices([
# "iPhone 6",
devices([
"iPhone 6 Plus",
# "iPhone 6 Plus",
# "iPhone 5",
# "iPad Pro (12.9 inch)",
"iPad Pro (12.9 inch)"
# "iPad Pro (9.7 inch)"
# ])
])

languages([
"en-US",
"de-DE",
"it-IT",
["pt", "pt_BR"] # Portuguese with Brazilian locale
"en-US"
])

# The name of the scheme which contains the UI Tests
Expand All @@ -22,7 +19,7 @@ languages([
# Where should the resulting screenshots be stored?
# output_directory "./screenshots"

# clear_previous_screenshots true # remove the '#' to clear all previously generated screenshots before creating new ones
clear_previous_screenshots true # remove the '#' to clear all previously generated screenshots before creating new ones

# Choose which project/workspace to use
# project "./Project.xcodeproj"
Expand Down
5 changes: 2 additions & 3 deletions fastlane/metadata/en-US/description.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
Wallabag, a self hostable application for saving web pages

Unlike other services, wallabag is free (as in freedom) and open source.

Unlike other services, Wallabag is free (as in freedom) and open source.

In order to use this app, you need a hosted wallabag instance. You can either install wallabag on your server/webspace or you can register at framabag.org (for free).
In order to use this app, you need a hosted wallabag instance. You can either install wallabag on your server/webspace or you can register at www.wallabag.it.
2 changes: 1 addition & 1 deletion fastlane/metadata/en-US/keywords.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
wallabag, pocket, poche
wallabag, pocket, poche, read it later
2 changes: 1 addition & 1 deletion fastlane/metadata/en-US/name.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Wallabag 2
Wallabag 2 Official
15 changes: 7 additions & 8 deletions fastlane/metadata/en-US/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
- Fix crash on start
- Fix add article
We add some new cool features like :
- Theme
- Ability to justify article or not
- Share extension
- Add some icon on article for unread or favorite
- Support non standart port

- Add menu About
- Add menu Disconnect
- Add menu parameter, now you can choose your favorite default opening view
- Now you can add link from app
- More help in registering processus
- Fix bug rendering video in article view
And Bug fix
Binary file removed fastlane/screenshots/en-US/0Home-129.png
Binary file not shown.
Binary file removed fastlane/screenshots/en-US/0Home-55.png
Binary file not shown.
Binary file removed fastlane/screenshots/en-US/1Article-129.png
Binary file not shown.
Binary file removed fastlane/screenshots/en-US/1Article-55.png
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6412fbe

Please sign in to comment.