diff --git a/_apps/com.github.tenderowl.turtle.desktop.md b/_apps/com.github.tenderowl.turtle.desktop.md new file mode 100644 index 00000000..f063da8e --- /dev/null +++ b/_apps/com.github.tenderowl.turtle.desktop.md @@ -0,0 +1,22 @@ +--- +app_id: com.github.tenderowl.turtle.desktop +title: "Turtle" +summary: "Add any app to the App Menu" +developer: "Tender Owl" +homepage: "#" +help_page: "#" +dist: flatpak +screenshots: + - https://raw.githubusercontent.com/tenderowl/turtle/master/data/images/turtle-screenshot.png +icons: + +color: + primary: "#485a6c" + primary-text: "#fff" +price: 0 +releases: + +redirect_from: /com.github.tenderowl.turtle.desktop.desktop/ +--- + +

Instantly add downloaded application to the App Menu. Event AppImage.

\ No newline at end of file diff --git a/_apps/maya-calendar.md b/_apps/maya-calendar.md new file mode 100644 index 00000000..3bab5402 --- /dev/null +++ b/_apps/maya-calendar.md @@ -0,0 +1,276 @@ +--- +app_id: io.elementary.calendar +title: "Calendar" +summary: "View and schedule events" +developer: "elementary, Inc." +homepage: "https://elementary.io/" +help_page: "https://github.com/elementary/calendar/discussions/categories/q-a" +dist: odin +icons: + "64": https://github.com/elementary/appstream-data/raw/master/pantheon-data/main/icons/64x64/maya-calendar_io.elementary.calendar.png + "128": https://github.com/elementary/appstream-data/raw/master/pantheon-data/main/icons/128x128/maya-calendar_io.elementary.calendar.png + "64@2": https://github.com/elementary/appstream-data/raw/master/pantheon-data/main/icons/64x64@2/maya-calendar_io.elementary.calendar.png +color: + primary: "#485a6c" + primary-text: "#fff" +price: 0 +releases: +- version: 6.0.2 + unix-timestamp: 1632268800 + description: |- +

Fixes:

+ + + +

Minor Updates:

+ + +- version: 6.0.1 + unix-timestamp: 1629763200 + description: |- +

Fixes:

+ + + +

Minor Updates:

+ + +- version: 6.0.0 + unix-timestamp: 1626652800 + description: |- +

New Features:

+ + + +

Fixes:

+ + + +

Minor Updates:

+ + +- version: 5.1.1 + unix-timestamp: 1602115200 + description: |- +

New Features:

+ + + +

Minor Updates:

+ + +- version: 5.1.0 + unix-timestamp: 1599004800 + description: |- +

Improvements:

+ + + +

Minor Updates:

+ + +- version: 5.0.6 + unix-timestamp: 1593475200 + description: |- +

Minor Updates:

+ + +- version: 5.0.5 + unix-timestamp: 1590969600 + description: |- +

Minor Updates:

+ + +- version: 5.0.4 + unix-timestamp: 1585872000 + description: |- +

Minor Updates:

+ + +- version: 5.0.3 + unix-timestamp: 1574812800 + description: |- +

Fix crash when editing an event with no location

+- version: 5.0.2 + unix-timestamp: 1574726400 + description: |- +

Fix potential crash when loading events with no start or end time

+- version: 5.0.1 + unix-timestamp: 1574640000 + description: |- +

Make agenda pane fill the whole space

+ +

Set the suggested time for new events to the next whole hour

+ +

Fix issues with recurring events

+ +

Performance improvements

+ +

Updated translations

+- version: 5.0 + unix-timestamp: 1551312000 + description: |- +

Present import window when opening ICS files

+ +

Add a search entry for calendars

+ +

Always use calendar icon in notifications

+ +

Agenda view can now be navigated by keyboard

+ +

Right-to-left improvements

+ +

Various UI overhauls including lime accent color

+ +

Overall code cleanup and rewrites

+ +

Updated translations

+- version: 4.2.3 + unix-timestamp: 1539648000 + description: |- +

Styling adjustments

+ +

Fix location panel initialization

+ +

New translations

+- version: 0.4.2.1 + unix-timestamp: 1529625600 + description: |- +

Update wingpanel-indicator-datetime settings path.

+ +

New translations.

+- version: 0.4.2 + unix-timestamp: 1528243200 + description: |- +

Various bug fixes and improvements.

+- version: 0.4.1 + unix-timestamp: 1509062400 + description: |- +

Fixes for calendar accuracy and integrity issues.

+ +

Fixes exporting, importing and printing calendars.

+ +

Various bug fixes and improvements.

+- version: 0.4.0.2 + unix-timestamp: 1473189266 +- version: 0.4.0.1 + unix-timestamp: 1471195865 +- version: 0.4 + unix-timestamp: 1470925887 +- version: 0.3.1.1 + unix-timestamp: 1432996164 +- version: 0.3.1 + unix-timestamp: 1428358074 +- version: 0.3 + unix-timestamp: 1386579562 +- version: 0.2.2 + unix-timestamp: 1376200121 +- version: 0.2.1 + unix-timestamp: 1370820403 +- version: 0.2.0 + unix-timestamp: 1313053217 +redirect_from: + - /maya-calendar.desktop/ +--- + +

A slim, lightweight calendar app that syncs and manages multiple calendars in one place, like Google Calendar, Outlook and CalDAV.

\ No newline at end of file diff --git a/_layouts/app.html b/_layouts/app.html index 4ac95c83..b52a4942 100644 --- a/_layouts/app.html +++ b/_layouts/app.html @@ -78,6 +78,9 @@

What's New:

{% if page.help_page %} Help {% endif %} + {% if page.source_code %} + Source Code + {% endif %} diff --git a/generate-flatpak.rb b/generate-flatpak.rb index f15cf373..c363b392 100644 --- a/generate-flatpak.rb +++ b/generate-flatpak.rb @@ -21,6 +21,7 @@ developer: "((dev))" homepage: ((site)) help_page: ((help)) +source_code: ((vcs)) bugtracker: ((bugtracker)) dist: flatpak screenshots: @@ -82,6 +83,13 @@ end appFile.sub!('((help))', help) + vcs = "false" + vcs_url = component.at_css('url[type="vcs-browser]') + if not vcs_url.nil? + vcs = vcs_url.content + end + appFile.sub!('((vcs))', vcs) + bugtracker = "false" url_bugtracker = component.at_css('url[type="bugtracker"]') if not url_bugtracker.nil?