Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #147 from marksuth/1.3.0
Browse files Browse the repository at this point in the history
1.3.0
  • Loading branch information
marksuth authored Nov 10, 2021
2 parents 00be238 + 917d865 commit e27e0c3
Show file tree
Hide file tree
Showing 46 changed files with 18,287 additions and 1,507 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
out
.DS_Store
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ I'm currently going through and getting up to speed with the status of both this
----

An IndieWeb app with extensions for sharing information to micropub endpoints and reading
from microsub endpoints. Written in Electron, so available for Windows, MacOS and Linux.
from microsub endpoints. Written in Electron, so available for Windows, macOS and Linux.

The philosophy at the moment of the app is that it will not be a full blown client like
the Android version. The main focus is on the most common features used on a daily basis.
Expand All @@ -20,8 +20,7 @@ Android: https://github.com/swentel/indigenous-android
iOS: https://github.com/marksuth/indigenous-ios

## Screenshot

<img src="https://realize.be/sites/default/files/indigenous-desktop-timeline.png" width="800" />
![Indigenous on Desktop](https://indigenous.marksuth.dev/images/indigenous-desktop-screenshot.png "Indigenous Desktop")

## Functionality

Expand All @@ -31,7 +30,6 @@ iOS: https://github.com/marksuth/indigenous-ios
- Screen state: remember position, fullscreen etc
- Developer: view response of microsub requests in console
- Microsub
- You can use https://indigenous.realize.be to test the reader
- Allow for global unread start screen if the server supports it
- Different displays: Cards, titles and feed with overlay view
- Autoload more posts
Expand All @@ -58,8 +56,6 @@ iOS: https://github.com/marksuth/indigenous-ios
- Tags, with autocomplete
- Upload a file to media endpoint (soon in posts)

Video of first release: https://www.youtube.com/watch?v=7egdRBg70XA

## Roadmap

There are a few outstanding feaures coming somewhere in the near future:
Expand Down Expand Up @@ -137,6 +133,7 @@ This app uses following libraries:
- https://github.com/mawie81/electron-window-state
- https://github.com/dimsemenov/Magnific-Popup
- https://github.com/HubSpot/pace
- https://github.com/electron-userland/electron-forge

## Other Micropub and Microsub clients

Expand Down
23 changes: 12 additions & 11 deletions css/indigenous.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** Variables **/
//Variables

:root {
--primary-color: #DD645E;
--primary-color-accent: #DD645E;
--primary-color: #D54049;
--primary-color-accent: #D54049;
--background-color: #fdfdfd;
--highlight-color: #f7f7f7;
--link-color: #0000ff;
Expand All @@ -11,7 +11,7 @@
--reader-top-color: #fff;
--nav-h3-color: #000;

--color-error: #DD645E;
--color-error: #D54049;
--color-success: #28a745;

--text-color: #333333;
Expand Down Expand Up @@ -46,11 +46,11 @@
--input-border-color: #c0c2c8;
--input-background-color: #474d5c;

--color-error: #DD645E;
--color-error: #D54049;
--color-success: #28a745;
}

/** End variables **/
//End variables

html {
color: var(--text-color);
Expand Down Expand Up @@ -81,7 +81,7 @@ p {
margin: 0 0 1em 0;
}

/** Based on https://xel-toolkit.org/elements/x-box **/
//Based on https://xel-toolkit.org/elements/x-box
#main {
position: relative;
display: flex;
Expand Down Expand Up @@ -118,7 +118,7 @@ p {
}
}

/** end based on x-box **/
//end based on x-box

.no-connection {
margin-top: 20px;
Expand Down Expand Up @@ -155,6 +155,7 @@ p {

.settings-button-wrapper {
margin: 20px 0;
padding-bottom: 20px;
.button-wrapper {
display: inline-block;
margin-right: 20px;
Expand Down Expand Up @@ -375,7 +376,7 @@ p {
.button {
cursor: pointer;
text-align: center;
background-color: rgb(221, 100, 94);
background-color: var(--primary-color);
color: #fff;
padding: 10px 25px;
border: 0 none;
Expand Down Expand Up @@ -613,7 +614,7 @@ input, textarea {

}

/** jQuery UI autocomplete */
//jQuery UI autocomplete */
.ui-autocomplete {
max-height: 150px;
overflow-y: auto;
Expand Down Expand Up @@ -719,7 +720,7 @@ a {
}

a:hover {
color: var(--primary-color-accent);
color: var(--primary-color);
background-color: var(--list-background-color);
}
}
Expand Down
Loading

0 comments on commit e27e0c3

Please sign in to comment.